diff options
639 files changed, 3352 insertions, 2816 deletions
diff --git a/.drone.yml b/.drone.yml index da877a95d50..2ac98e4523f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -562,6 +562,26 @@ pipeline: when: matrix: TESTS: integration-ldap-features + integration-ldap-openldap-features: + image: nextcloudci/integration-php7.0:integration-php7.0-6 + commands: + - ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int + - ./occ app:enable user_ldap + - cd build/integration + - ./run.sh ldap_features/ldap-openldap.feature + when: + matrix: + TESTS: integration-ldap-openldap-features + integration-ldap-openldap-uid-features: + image: nextcloudci/integration-php7.0:integration-php7.0-6 + commands: + - ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int + - ./occ app:enable user_ldap + - cd build/integration + - ./run.sh ldap_features/openldap-uid-username.feature + when: + matrix: + TESTS: integration-ldap-openldap-uid-features integration-trashbin: image: nextcloudci/integration-php7.0:integration-php7.0-8 commands: @@ -828,6 +848,10 @@ matrix: - TESTS: integration-filesdrop-features - TESTS: integration-transfer-ownership-features - TESTS: integration-ldap-features + - TESTS: integration-ldap-openldap-features + ENABLE_OPENLDAP: true + - TESTS: integration-ldap-openldap-uid-features + ENABLE_OPENLDAP: true - TESTS: integration-trashbin - TESTS: integration-remote-api - TESTS: integration-download @@ -1007,5 +1031,15 @@ services: when: matrix: TESTS: acceptance + openldap: + image: nextcloudci/openldap:openldap-4 + environment: + - SLAPD_DOMAIN=nextcloud.ci + - SLAPD_ORGANIZATION=Nextcloud + - SLAPD_PASSWORD=admin + - SLAPD_ADDITIONAL_MODULES=memberof + when: + matrix: + ENABLE_OPENLDAP: true branches: [ master, stable* ] diff --git a/3rdparty b/3rdparty -Subproject 4b46a9176e392932702be12060a8c5899e09217 +Subproject 036b5f076bac8c5b0385ae9655100f0a2335807 diff --git a/apps/accessibility/lib/Controller/AccessibilityController.php b/apps/accessibility/lib/Controller/AccessibilityController.php index 4ee88b90a7a..0a1d091d1c5 100644 --- a/apps/accessibility/lib/Controller/AccessibilityController.php +++ b/apps/accessibility/lib/Controller/AccessibilityController.php @@ -70,6 +70,12 @@ class AccessibilityController extends Controller { /** @var IconsCacher */ protected $iconsCacher; + /** @var \OC_Defaults */ + private $defaults; + + /** @var null|string */ + private $injectedVariables; + /** * Account constructor. * @@ -82,6 +88,7 @@ class AccessibilityController extends Controller { * @param ITimeFactory $timeFactory * @param IUserSession $userSession * @param IAppManager $appManager + * @param \OC_Defaults $defaults */ public function __construct(string $appName, IRequest $request, @@ -92,7 +99,8 @@ class AccessibilityController extends Controller { ITimeFactory $timeFactory, IUserSession $userSession, IAppManager $appManager, - IconsCacher $iconsCacher) { + IconsCacher $iconsCacher, + \OC_Defaults $defaults) { parent::__construct($appName, $request); $this->appName = $appName; $this->config = $config; @@ -103,6 +111,7 @@ class AccessibilityController extends Controller { $this->userSession = $userSession; $this->appManager = $appManager; $this->iconsCacher = $iconsCacher; + $this->defaults = $defaults; $this->serverRoot = \OC::$SERVERROOT; $this->appRoot = $this->appManager->getAppPath($this->appName); @@ -141,6 +150,7 @@ class AccessibilityController extends Controller { $css .= $scss->compile( $imports . '@import "variables.scss";' . + $this->getInjectedVariables() . '@import "css-variables.scss";' ); } catch (ParserException $e) { @@ -220,4 +230,27 @@ class AccessibilityController extends Controller { private function invertSvgIconsColor(string $css) { return str_replace(['/000', '/fff', '/***'], ['/***', '/000', '/fff'], $css); } + + /** + * @return string SCSS code for variables from OC_Defaults + */ + private function getInjectedVariables(): string { + if ($this->injectedVariables !== null) { + return $this->injectedVariables; + } + $variables = ''; + foreach ($this->defaults->getScssVariables() as $key => $value) { + $variables .= '$' . $key . ': ' . $value . ';'; + } + + // check for valid variables / otherwise fall back to defaults + try { + $scss = new Compiler(); + $scss->compile($variables); + $this->injectedVariables = $variables; + } catch (ParserException $e) { + $this->logger->error($e, ['app' => 'core']); + } + return $variables; + } } diff --git a/apps/admin_audit/lib/Actions/UserManagement.php b/apps/admin_audit/lib/Actions/UserManagement.php index 5cf1494df6e..1ad6ba4e20f 100644 --- a/apps/admin_audit/lib/Actions/UserManagement.php +++ b/apps/admin_audit/lib/Actions/UserManagement.php @@ -97,14 +97,25 @@ class UserManagement extends Action { * @param array $params */ public function change(array $params) { - if ($params['feature'] === 'enabled') { - $this->log( - $params['value'] === 'true' ? 'User enabled: "%s"' : 'User disabled: "%s"', - ['user' => $params['user']->getUID()], - [ - 'user', - ] - ); + switch($params['feature']) { + case 'enabled': + $this->log( + $params['value'] === 'true' ? 'User enabled: "%s"' : 'User disabled: "%s"', + ['user' => $params['user']->getUID()], + [ + 'user', + ] + ); + break; + case 'eMailAddress': + $this->log( + 'Email address changed for user %s', + ['user' => $params['user']->getUID()], + [ + 'user', + ] + ); + break; } } diff --git a/apps/comments/l10n/cs.js b/apps/comments/l10n/cs.js index af49206e39f..f3ed331b1f1 100644 --- a/apps/comments/l10n/cs.js +++ b/apps/comments/l10n/cs.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Byli jste zmíněni v souboru “{file}”, v komentáři od uživatele, který byl později smazán", "%1$s mentioned you in a comment on “%2$s”" : "%1$s vás zmínil(a) v komentáři u %2$s", "{user} mentioned you in a comment on “{file}”" : "{user} vás zmínil v komentáři u “{file}”", - "Files app plugin to add comments to files" : "Zásuvný modul do aplikace Soubory pro přidávání komentářů k souborům", "Unknown user" : "Neznámý uživatel", "A (now) deleted user mentioned you in a comment on “%s”" : "A (now) deleted user mentioned you in a comment on “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Nyní již smazaný uživatel vás zmínil v komentáři u \"{file}\"" diff --git a/apps/comments/l10n/cs.json b/apps/comments/l10n/cs.json index 390f13bf54c..8c83b711da4 100644 --- a/apps/comments/l10n/cs.json +++ b/apps/comments/l10n/cs.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Byli jste zmíněni v souboru “{file}”, v komentáři od uživatele, který byl později smazán", "%1$s mentioned you in a comment on “%2$s”" : "%1$s vás zmínil(a) v komentáři u %2$s", "{user} mentioned you in a comment on “{file}”" : "{user} vás zmínil v komentáři u “{file}”", - "Files app plugin to add comments to files" : "Zásuvný modul do aplikace Soubory pro přidávání komentářů k souborům", "Unknown user" : "Neznámý uživatel", "A (now) deleted user mentioned you in a comment on “%s”" : "A (now) deleted user mentioned you in a comment on “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Nyní již smazaný uživatel vás zmínil v komentáři u \"{file}\"" diff --git a/apps/comments/l10n/en_GB.js b/apps/comments/l10n/en_GB.js index c3440623e3a..a217f0532c9 100644 --- a/apps/comments/l10n/en_GB.js +++ b/apps/comments/l10n/en_GB.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "You were mentioned on “{file}”, in a comment by a user that has since been deleted", "%1$s mentioned you in a comment on “%2$s”" : "%1$s mentioned you in a comment on “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} mentioned you in a comment on “{file}”", - "Files app plugin to add comments to files" : "Files app plugin to add comments to files", "Unknown user" : "Unknown user", "A (now) deleted user mentioned you in a comment on “%s”" : "A (now) deleted user mentioned you in a comment on “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "A (now) deleted user mentioned you in a comment on “{file}”" diff --git a/apps/comments/l10n/en_GB.json b/apps/comments/l10n/en_GB.json index fa2a74fadd1..358ad1eca81 100644 --- a/apps/comments/l10n/en_GB.json +++ b/apps/comments/l10n/en_GB.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "You were mentioned on “{file}”, in a comment by a user that has since been deleted", "%1$s mentioned you in a comment on “%2$s”" : "%1$s mentioned you in a comment on “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} mentioned you in a comment on “{file}”", - "Files app plugin to add comments to files" : "Files app plugin to add comments to files", "Unknown user" : "Unknown user", "A (now) deleted user mentioned you in a comment on “%s”" : "A (now) deleted user mentioned you in a comment on “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "A (now) deleted user mentioned you in a comment on “{file}”" diff --git a/apps/comments/l10n/es.js b/apps/comments/l10n/es.js index 657f53082e7..a6eeb71d30a 100644 --- a/apps/comments/l10n/es.js +++ b/apps/comments/l10n/es.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Te han mencionado en \"{file}\", en un comentario de un usuario que después ha sido eliminado", "%1$s mentioned you in a comment on “%2$s”" : "%1$s te mencionó en un comentario en “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} te mencionó en un comentario en “{file}”", - "Files app plugin to add comments to files" : "Plugin app Archivos para añadir comentarios a los archivos", "Unknown user" : "Usuario desconocido", "A (now) deleted user mentioned you in a comment on “%s”" : "Un usuario (ahora) eliminado, te mencionó en un comentario en “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Un usuario (ahora) eliminado, te mencionó en un comentario en “{file}”" diff --git a/apps/comments/l10n/es.json b/apps/comments/l10n/es.json index 7520f54e72d..3f11ce2f458 100644 --- a/apps/comments/l10n/es.json +++ b/apps/comments/l10n/es.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Te han mencionado en \"{file}\", en un comentario de un usuario que después ha sido eliminado", "%1$s mentioned you in a comment on “%2$s”" : "%1$s te mencionó en un comentario en “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} te mencionó en un comentario en “{file}”", - "Files app plugin to add comments to files" : "Plugin app Archivos para añadir comentarios a los archivos", "Unknown user" : "Usuario desconocido", "A (now) deleted user mentioned you in a comment on “%s”" : "Un usuario (ahora) eliminado, te mencionó en un comentario en “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Un usuario (ahora) eliminado, te mencionó en un comentario en “{file}”" diff --git a/apps/comments/l10n/es_MX.js b/apps/comments/l10n/es_MX.js index 010326d88de..1baee923197 100644 --- a/apps/comments/l10n/es_MX.js +++ b/apps/comments/l10n/es_MX.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Te mencionaron en \"{file}\", en un comentario de un usuario que ya ha sido borrado", "%1$s mentioned you in a comment on “%2$s”" : "%1$s te mencionó en un comentario en “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} te mencionó en un comentario en “{file}”", - "Files app plugin to add comments to files" : "Un complemento a la aplicación de Archivos para agregar comentarios a los archivos", "Unknown user" : "Usuario desconocido", "A (now) deleted user mentioned you in a comment on “%s”" : "Un usuario (ahora) borrado te mencionó en un commentario en “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Un usuario (ahora) borrado te mencionó en un commentario en “{file}”" diff --git a/apps/comments/l10n/es_MX.json b/apps/comments/l10n/es_MX.json index 97f0c209627..e450e55b323 100644 --- a/apps/comments/l10n/es_MX.json +++ b/apps/comments/l10n/es_MX.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Te mencionaron en \"{file}\", en un comentario de un usuario que ya ha sido borrado", "%1$s mentioned you in a comment on “%2$s”" : "%1$s te mencionó en un comentario en “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} te mencionó en un comentario en “{file}”", - "Files app plugin to add comments to files" : "Un complemento a la aplicación de Archivos para agregar comentarios a los archivos", "Unknown user" : "Usuario desconocido", "A (now) deleted user mentioned you in a comment on “%s”" : "Un usuario (ahora) borrado te mencionó en un commentario en “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Un usuario (ahora) borrado te mencionó en un commentario en “{file}”" diff --git a/apps/comments/l10n/fr.js b/apps/comments/l10n/fr.js index 111f63fc6ec..8f76393a9ea 100644 --- a/apps/comments/l10n/fr.js +++ b/apps/comments/l10n/fr.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Vous avez été mentionné sur \"{file}\", dans un commentaire par un utilisateur qui a été supprimé depuis lors.", "%1$s mentioned you in a comment on “%2$s”" : "%1$s vous a mentionné⋅e dans un commentaire sur “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} vous a mentionné⋅e dans un commentaire sur “{file}”", - "Files app plugin to add comments to files" : "Plugin Fichiers app pour ajouter des commentaires aux fichiers", "Unknown user" : "Utilisateur·trice inconnu·e", "A (now) deleted user mentioned you in a comment on “%s”" : "Un·e utilisateur·trice (maintenant supprimé·e) vous a mentionné·e dans un commentaire sur “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Un·e utilisateur·trice (maintenant supprimé·e) vous a mentionné·e dans un commentaire sur “{file}”" diff --git a/apps/comments/l10n/fr.json b/apps/comments/l10n/fr.json index e2cfeb2c5d5..4c4d9eb175a 100644 --- a/apps/comments/l10n/fr.json +++ b/apps/comments/l10n/fr.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Vous avez été mentionné sur \"{file}\", dans un commentaire par un utilisateur qui a été supprimé depuis lors.", "%1$s mentioned you in a comment on “%2$s”" : "%1$s vous a mentionné⋅e dans un commentaire sur “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} vous a mentionné⋅e dans un commentaire sur “{file}”", - "Files app plugin to add comments to files" : "Plugin Fichiers app pour ajouter des commentaires aux fichiers", "Unknown user" : "Utilisateur·trice inconnu·e", "A (now) deleted user mentioned you in a comment on “%s”" : "Un·e utilisateur·trice (maintenant supprimé·e) vous a mentionné·e dans un commentaire sur “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Un·e utilisateur·trice (maintenant supprimé·e) vous a mentionné·e dans un commentaire sur “{file}”" diff --git a/apps/comments/l10n/he.js b/apps/comments/l10n/he.js index 44514a6959a..23f70f051af 100644 --- a/apps/comments/l10n/he.js +++ b/apps/comments/l10n/he.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "אוזכרת ב־„{file}”, בתגובה של משתמש שנמחק בינתיים.", "%1$s mentioned you in a comment on “%2$s”" : "אוזכרת על ידי %1$s בתגובה על „%2$s”", "{user} mentioned you in a comment on “{file}”" : "אוזכרת על ידי „{user}” בתגובה על „{file}”", - "Files app plugin to add comments to files" : "תוסף ליישומון הקבצים כדי להוסיף הערות על הקבצים", "Unknown user" : "משתמש לא ידוע", "A (now) deleted user mentioned you in a comment on “%s”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „{file}”" diff --git a/apps/comments/l10n/he.json b/apps/comments/l10n/he.json index 8d1ff05ced4..3412f1c84bd 100644 --- a/apps/comments/l10n/he.json +++ b/apps/comments/l10n/he.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "אוזכרת ב־„{file}”, בתגובה של משתמש שנמחק בינתיים.", "%1$s mentioned you in a comment on “%2$s”" : "אוזכרת על ידי %1$s בתגובה על „%2$s”", "{user} mentioned you in a comment on “{file}”" : "אוזכרת על ידי „{user}” בתגובה על „{file}”", - "Files app plugin to add comments to files" : "תוסף ליישומון הקבצים כדי להוסיף הערות על הקבצים", "Unknown user" : "משתמש לא ידוע", "A (now) deleted user mentioned you in a comment on “%s”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „{file}”" diff --git a/apps/comments/l10n/is.js b/apps/comments/l10n/is.js index 4bf2ff6d9c7..7c82e2c8e2b 100644 --- a/apps/comments/l10n/is.js +++ b/apps/comments/l10n/is.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Minnst var á þig í “{file}”, í athugasemd frá notanda sem síðan þá hefur verið eytt", "%1$s mentioned you in a comment on “%2$s”" : "%1$s minntist á þig í athugasemd við “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} minntist á þig í athugasemd við “{file}”", - "Files app plugin to add comments to files" : "Viðbót við skráaforrit til að bæta athugasemdum við skrár", "Unknown user" : "Óþekktur notandi", "A (now) deleted user mentioned you in a comment on “%s”" : "Notandi (sem nú er búið að eyða) minntist á þig í athugasemd við “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Notandi (sem nú er búið að eyða) minntist á þig í athugasemd við “{file}”" diff --git a/apps/comments/l10n/is.json b/apps/comments/l10n/is.json index d89c745b4e5..1fa08ad5991 100644 --- a/apps/comments/l10n/is.json +++ b/apps/comments/l10n/is.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Minnst var á þig í “{file}”, í athugasemd frá notanda sem síðan þá hefur verið eytt", "%1$s mentioned you in a comment on “%2$s”" : "%1$s minntist á þig í athugasemd við “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} minntist á þig í athugasemd við “{file}”", - "Files app plugin to add comments to files" : "Viðbót við skráaforrit til að bæta athugasemdum við skrár", "Unknown user" : "Óþekktur notandi", "A (now) deleted user mentioned you in a comment on “%s”" : "Notandi (sem nú er búið að eyða) minntist á þig í athugasemd við “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Notandi (sem nú er búið að eyða) minntist á þig í athugasemd við “{file}”" diff --git a/apps/comments/l10n/nb.js b/apps/comments/l10n/nb.js index 766a1367f11..dcfb4102174 100644 --- a/apps/comments/l10n/nb.js +++ b/apps/comments/l10n/nb.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Du ble nevnte på \"{file}\", i en kommentar av en bruker som siden har blitt slettet", "%1$s mentioned you in a comment on “%2$s”" : "%1$s nevnte deg i en kommentar på “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} nevnte deg i en kommentar på “{file}”", - "Files app plugin to add comments to files" : "Program tillegg til filer for å legge til kommentarer for en fil", "Unknown user" : "Ukjent bruker", "A (now) deleted user mentioned you in a comment on “%s”" : "En (now) slettet bruker nevnte deg i en kommentar til “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "A (now) slettet bruker nevnte deg i en kommentar til “{file}”" diff --git a/apps/comments/l10n/nb.json b/apps/comments/l10n/nb.json index 1902da75024..26a3bd76d51 100644 --- a/apps/comments/l10n/nb.json +++ b/apps/comments/l10n/nb.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Du ble nevnte på \"{file}\", i en kommentar av en bruker som siden har blitt slettet", "%1$s mentioned you in a comment on “%2$s”" : "%1$s nevnte deg i en kommentar på “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} nevnte deg i en kommentar på “{file}”", - "Files app plugin to add comments to files" : "Program tillegg til filer for å legge til kommentarer for en fil", "Unknown user" : "Ukjent bruker", "A (now) deleted user mentioned you in a comment on “%s”" : "En (now) slettet bruker nevnte deg i en kommentar til “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "A (now) slettet bruker nevnte deg i en kommentar til “{file}”" diff --git a/apps/comments/l10n/nl.js b/apps/comments/l10n/nl.js index 1caa2a83e04..91c3b209b8e 100644 --- a/apps/comments/l10n/nl.js +++ b/apps/comments/l10n/nl.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Je werd vermeld op \"{file}\" in een reactie door een sindsdien verwijderde gebruiker", "%1$s mentioned you in a comment on “%2$s”" : "%1$s vermeldde jou in een reactie op “%2$s\"", "{user} mentioned you in a comment on “{file}”" : "{user} heeft je vermeld in een reactie op “{file}\"", - "Files app plugin to add comments to files" : "Bestanden app plugin om reacties op bestanden toe te voegen", "Unknown user" : "Onbekende gebruiker", "A (now) deleted user mentioned you in a comment on “%s”" : "Een (nu) verwijderde gebruiker vermeldde je in een reactie op \"%s\"", "A (now) deleted user mentioned you in a comment on “{file}”" : "Een (nu) verwijderde gebruiker vermeldde je in een reactie op \"{file}\"" diff --git a/apps/comments/l10n/nl.json b/apps/comments/l10n/nl.json index ca7698b625c..5c91038f6cb 100644 --- a/apps/comments/l10n/nl.json +++ b/apps/comments/l10n/nl.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Je werd vermeld op \"{file}\" in een reactie door een sindsdien verwijderde gebruiker", "%1$s mentioned you in a comment on “%2$s”" : "%1$s vermeldde jou in een reactie op “%2$s\"", "{user} mentioned you in a comment on “{file}”" : "{user} heeft je vermeld in een reactie op “{file}\"", - "Files app plugin to add comments to files" : "Bestanden app plugin om reacties op bestanden toe te voegen", "Unknown user" : "Onbekende gebruiker", "A (now) deleted user mentioned you in a comment on “%s”" : "Een (nu) verwijderde gebruiker vermeldde je in een reactie op \"%s\"", "A (now) deleted user mentioned you in a comment on “{file}”" : "Een (nu) verwijderde gebruiker vermeldde je in een reactie op \"{file}\"" diff --git a/apps/comments/l10n/pt_BR.js b/apps/comments/l10n/pt_BR.js index 13778fa2c89..4c28c70f43f 100644 --- a/apps/comments/l10n/pt_BR.js +++ b/apps/comments/l10n/pt_BR.js @@ -29,7 +29,7 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Você foi mencionado em \"{file}\", em um comentário por um usuário que já foi excluído", "%1$s mentioned you in a comment on “%2$s”" : "%1$s mencionou você em um comentário sobre “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} mencionou você em um comentário sobre “{file}”", - "Files app plugin to add comments to files" : "Plugin de aplicativo de arquivos para adicionar comentários aos arquivos", + "Files app plugin to add comments to files" : "Complemento do aplicativo Files para adicionar comentários", "Unknown user" : "Usuário desconhecido", "A (now) deleted user mentioned you in a comment on “%s”" : "Um usuário excluído (agora) mencionou você em um comentário sobre “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Um usuário (now) recém excluído mencionou você em um comentário sobre “{file}”" diff --git a/apps/comments/l10n/pt_BR.json b/apps/comments/l10n/pt_BR.json index 1806a26f817..e30e5f8edf3 100644 --- a/apps/comments/l10n/pt_BR.json +++ b/apps/comments/l10n/pt_BR.json @@ -27,7 +27,7 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Você foi mencionado em \"{file}\", em um comentário por um usuário que já foi excluído", "%1$s mentioned you in a comment on “%2$s”" : "%1$s mencionou você em um comentário sobre “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} mencionou você em um comentário sobre “{file}”", - "Files app plugin to add comments to files" : "Plugin de aplicativo de arquivos para adicionar comentários aos arquivos", + "Files app plugin to add comments to files" : "Complemento do aplicativo Files para adicionar comentários", "Unknown user" : "Usuário desconhecido", "A (now) deleted user mentioned you in a comment on “%s”" : "Um usuário excluído (agora) mencionou você em um comentário sobre “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "Um usuário (now) recém excluído mencionou você em um comentário sobre “{file}”" diff --git a/apps/comments/l10n/ru.js b/apps/comments/l10n/ru.js index 8067231fc19..f0a87d38d8f 100644 --- a/apps/comments/l10n/ru.js +++ b/apps/comments/l10n/ru.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Вы были упомянуты в комментарии к файлу «{file}» пользователем, учётная запись которого была удалена", "%1$s mentioned you in a comment on “%2$s”" : "%1$s упомянул вас в комментарии к \"%2$s\"", "{user} mentioned you in a comment on “{file}”" : "{user} упомянул вас в комментарии к “{file}”.", - "Files app plugin to add comments to files" : "Плагин для добавления комментариев к файлам", "Unknown user" : "Неизвестный пользователь", "A (now) deleted user mentioned you in a comment on “%s”" : "Пользователь (удалённый в настоящее время) упомянул вас в комментарии к “%s”.", "A (now) deleted user mentioned you in a comment on “{file}”" : "Пользователь (удалённый в настоящее время) упомянул вас в комментарии к “{file}”." diff --git a/apps/comments/l10n/ru.json b/apps/comments/l10n/ru.json index 6b86e3c6dbe..41a61fa2277 100644 --- a/apps/comments/l10n/ru.json +++ b/apps/comments/l10n/ru.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Вы были упомянуты в комментарии к файлу «{file}» пользователем, учётная запись которого была удалена", "%1$s mentioned you in a comment on “%2$s”" : "%1$s упомянул вас в комментарии к \"%2$s\"", "{user} mentioned you in a comment on “{file}”" : "{user} упомянул вас в комментарии к “{file}”.", - "Files app plugin to add comments to files" : "Плагин для добавления комментариев к файлам", "Unknown user" : "Неизвестный пользователь", "A (now) deleted user mentioned you in a comment on “%s”" : "Пользователь (удалённый в настоящее время) упомянул вас в комментарии к “%s”.", "A (now) deleted user mentioned you in a comment on “{file}”" : "Пользователь (удалённый в настоящее время) упомянул вас в комментарии к “{file}”." diff --git a/apps/comments/l10n/sr.js b/apps/comments/l10n/sr.js index 7aebd4e5b69..82ae7cc212d 100644 --- a/apps/comments/l10n/sr.js +++ b/apps/comments/l10n/sr.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Поменути сте на фајлу \"{file}\", у коментару који је оставио корисник који је од тада избрисан", "%1$s mentioned you in a comment on “%2$s”" : "%1$s Вас је поменуо у коментару на \"%2$s\"", "{user} mentioned you in a comment on “{file}”" : "{user} Вас је поменуо у коментару на “{file}”", - "Files app plugin to add comments to files" : "Додатак апликацији за фајлове да додајете коментаре на фајлове", "Unknown user" : "Непознат корисник", "A (now) deleted user mentioned you in a comment on “%s”" : "(Сада) обрисани корисник Вас је поменуо у коментару на “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "(Сада) обрисани корисник Вас је поменуо у коментару на “{file}”" diff --git a/apps/comments/l10n/sr.json b/apps/comments/l10n/sr.json index b8d0af4b5c9..0f2a7735382 100644 --- a/apps/comments/l10n/sr.json +++ b/apps/comments/l10n/sr.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Поменути сте на фајлу \"{file}\", у коментару који је оставио корисник који је од тада избрисан", "%1$s mentioned you in a comment on “%2$s”" : "%1$s Вас је поменуо у коментару на \"%2$s\"", "{user} mentioned you in a comment on “{file}”" : "{user} Вас је поменуо у коментару на “{file}”", - "Files app plugin to add comments to files" : "Додатак апликацији за фајлове да додајете коментаре на фајлове", "Unknown user" : "Непознат корисник", "A (now) deleted user mentioned you in a comment on “%s”" : "(Сада) обрисани корисник Вас је поменуо у коментару на “%s”", "A (now) deleted user mentioned you in a comment on “{file}”" : "(Сада) обрисани корисник Вас је поменуо у коментару на “{file}”" diff --git a/apps/comments/l10n/zh_CN.js b/apps/comments/l10n/zh_CN.js index c7e6f1e824f..bca98d9451a 100644 --- a/apps/comments/l10n/zh_CN.js +++ b/apps/comments/l10n/zh_CN.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "您在 “{file}” 上一名用户的评论中被提到过,该用户在那之后被删除了", "%1$s mentioned you in a comment on “%2$s”" : "%1$s 在 “%2$s” 的评论中提到了您", "{user} mentioned you in a comment on “{file}”" : "{user} 在 “{file}” 的评论中提到了您", - "Files app plugin to add comments to files" : "文件应用插件用于为文件添加注释", "Unknown user" : "未知用户", "A (now) deleted user mentioned you in a comment on “%s”" : "一个(已)被删除的用户在 “%s” 的评论中提到了您", "A (now) deleted user mentioned you in a comment on “{file}”" : "一个(已)被删除的用户在 “{file}” 的评论中提到了您" diff --git a/apps/comments/l10n/zh_CN.json b/apps/comments/l10n/zh_CN.json index 333b305af5a..e576a340cfe 100644 --- a/apps/comments/l10n/zh_CN.json +++ b/apps/comments/l10n/zh_CN.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "您在 “{file}” 上一名用户的评论中被提到过,该用户在那之后被删除了", "%1$s mentioned you in a comment on “%2$s”" : "%1$s 在 “%2$s” 的评论中提到了您", "{user} mentioned you in a comment on “{file}”" : "{user} 在 “{file}” 的评论中提到了您", - "Files app plugin to add comments to files" : "文件应用插件用于为文件添加注释", "Unknown user" : "未知用户", "A (now) deleted user mentioned you in a comment on “%s”" : "一个(已)被删除的用户在 “%s” 的评论中提到了您", "A (now) deleted user mentioned you in a comment on “{file}”" : "一个(已)被删除的用户在 “{file}” 的评论中提到了您" diff --git a/apps/comments/l10n/zh_TW.js b/apps/comments/l10n/zh_TW.js index 106717269f7..f24ee7d4706 100644 --- a/apps/comments/l10n/zh_TW.js +++ b/apps/comments/l10n/zh_TW.js @@ -29,7 +29,6 @@ OC.L10N.register( "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "一個已被刪除的用戶在 “{file}” 的留言中提到你", "%1$s mentioned you in a comment on “%2$s”" : "%1$s 在 “%2$s” 的留言中提到你", "{user} mentioned you in a comment on “{file}”" : "{user} 在 “{file}” 的留言中提到你", - "Files app plugin to add comments to files" : "檔案插件程式插件,用於為檔案增加註釋", "Unknown user" : "未知的使用者", "A (now) deleted user mentioned you in a comment on “%s”" : "一個已被刪除的用戶在 “%s” 的留言中提到你", "A (now) deleted user mentioned you in a comment on “{file}”" : "一個已被刪除的用戶在 “{file}” 的留言中提到你" diff --git a/apps/comments/l10n/zh_TW.json b/apps/comments/l10n/zh_TW.json index c3187b8b8c8..46379cdd263 100644 --- a/apps/comments/l10n/zh_TW.json +++ b/apps/comments/l10n/zh_TW.json @@ -27,7 +27,6 @@ "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "一個已被刪除的用戶在 “{file}” 的留言中提到你", "%1$s mentioned you in a comment on “%2$s”" : "%1$s 在 “%2$s” 的留言中提到你", "{user} mentioned you in a comment on “{file}”" : "{user} 在 “{file}” 的留言中提到你", - "Files app plugin to add comments to files" : "檔案插件程式插件,用於為檔案增加註釋", "Unknown user" : "未知的使用者", "A (now) deleted user mentioned you in a comment on “%s”" : "一個已被刪除的用戶在 “%s” 的留言中提到你", "A (now) deleted user mentioned you in a comment on “{file}”" : "一個已被刪除的用戶在 “{file}” 的留言中提到你" diff --git a/apps/dav/l10n/cs.js b/apps/dav/l10n/cs.js index 405eabb0f0a..cc02c8fcea4 100644 --- a/apps/dav/l10n/cs.js +++ b/apps/dav/l10n/cs.js @@ -56,10 +56,10 @@ OC.L10N.register( "Link:" : "Odkaz:", "Accept" : "Přijmout", "Decline" : "Zamítnout", + "More options …" : "Další volby…", "More options at %s" : "Další volby viz %s", "Contacts" : "Kontakty", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Adresa pro WebDAV", "Technical details" : "Technické detaily", "Remote Address: %s" : "Vzdálená adresa: %s", "Request ID: %s" : "ID požadavku: %s", @@ -69,6 +69,7 @@ OC.L10N.register( "Tentative" : "Nezávazně", "Save" : "Uložit", "Your attendance was updated successfully." : "Vaše účast byla úspěšně aktualizována.", + "Calendar server" : "Kalendářový server", "Send invitations to attendees" : "Poslat pozvánky na adresy účastníků", "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu.", "Automatically generate a birthday calendar" : "Automaticky vytvořit kalendář s narozeninami", diff --git a/apps/dav/l10n/cs.json b/apps/dav/l10n/cs.json index 9543b2eb3dc..d6eaab7cf69 100644 --- a/apps/dav/l10n/cs.json +++ b/apps/dav/l10n/cs.json @@ -54,10 +54,10 @@ "Link:" : "Odkaz:", "Accept" : "Přijmout", "Decline" : "Zamítnout", + "More options …" : "Další volby…", "More options at %s" : "Další volby viz %s", "Contacts" : "Kontakty", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Adresa pro WebDAV", "Technical details" : "Technické detaily", "Remote Address: %s" : "Vzdálená adresa: %s", "Request ID: %s" : "ID požadavku: %s", @@ -67,6 +67,7 @@ "Tentative" : "Nezávazně", "Save" : "Uložit", "Your attendance was updated successfully." : "Vaše účast byla úspěšně aktualizována.", + "Calendar server" : "Kalendářový server", "Send invitations to attendees" : "Poslat pozvánky na adresy účastníků", "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu.", "Automatically generate a birthday calendar" : "Automaticky vytvořit kalendář s narozeninami", diff --git a/apps/dav/l10n/da.js b/apps/dav/l10n/da.js index 9b676241c8b..cd0829acf80 100644 --- a/apps/dav/l10n/da.js +++ b/apps/dav/l10n/da.js @@ -56,7 +56,6 @@ OC.L10N.register( "Link:" : "Link:", "Contacts" : "Kontakter", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Fjernadresse: %s", "Request ID: %s" : "Forespørgsels-ID: %s", diff --git a/apps/dav/l10n/da.json b/apps/dav/l10n/da.json index 6fd0daf8cdc..9af8f4826d9 100644 --- a/apps/dav/l10n/da.json +++ b/apps/dav/l10n/da.json @@ -54,7 +54,6 @@ "Link:" : "Link:", "Contacts" : "Kontakter", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Fjernadresse: %s", "Request ID: %s" : "Forespørgsels-ID: %s", diff --git a/apps/dav/l10n/en_GB.js b/apps/dav/l10n/en_GB.js index 16d05b3ac1a..91ffe5a55be 100644 --- a/apps/dav/l10n/en_GB.js +++ b/apps/dav/l10n/en_GB.js @@ -56,7 +56,6 @@ OC.L10N.register( "Link:" : "Link:", "Contacts" : "Contacts", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Technical details", "Remote Address: %s" : "Remote Address: %s", "Request ID: %s" : "Request ID: %s", diff --git a/apps/dav/l10n/en_GB.json b/apps/dav/l10n/en_GB.json index bdcbabfa939..c23daf99ebe 100644 --- a/apps/dav/l10n/en_GB.json +++ b/apps/dav/l10n/en_GB.json @@ -54,7 +54,6 @@ "Link:" : "Link:", "Contacts" : "Contacts", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Technical details", "Remote Address: %s" : "Remote Address: %s", "Request ID: %s" : "Request ID: %s", diff --git a/apps/dav/l10n/es.js b/apps/dav/l10n/es.js index fb4a141b44c..0a524453675 100644 --- a/apps/dav/l10n/es.js +++ b/apps/dav/l10n/es.js @@ -60,7 +60,6 @@ OC.L10N.register( "More options at %s" : "Más opciones en %s", "Contacts" : "Contactos", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Extremo del WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/es.json b/apps/dav/l10n/es.json index 8251253abda..3b7ff053d13 100644 --- a/apps/dav/l10n/es.json +++ b/apps/dav/l10n/es.json @@ -58,7 +58,6 @@ "More options at %s" : "Más opciones en %s", "Contacts" : "Contactos", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Extremo del WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/es_MX.js b/apps/dav/l10n/es_MX.js index 97f9c266d55..a52f5afeb63 100644 --- a/apps/dav/l10n/es_MX.js +++ b/apps/dav/l10n/es_MX.js @@ -56,7 +56,6 @@ OC.L10N.register( "Link:" : "Enlace:", "Contacts" : "Contactos", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Endpoint WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/es_MX.json b/apps/dav/l10n/es_MX.json index 72b2b9753e3..31af8f9dbdd 100644 --- a/apps/dav/l10n/es_MX.json +++ b/apps/dav/l10n/es_MX.json @@ -54,7 +54,6 @@ "Link:" : "Enlace:", "Contacts" : "Contactos", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Endpoint WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/fr.js b/apps/dav/l10n/fr.js index 5ba33435d9f..1d84c216de6 100644 --- a/apps/dav/l10n/fr.js +++ b/apps/dav/l10n/fr.js @@ -60,7 +60,6 @@ OC.L10N.register( "More options at %s" : "Plus d'options à %s", "Contacts" : "Contacts", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Point d'accès WebDAV", "Technical details" : "Détails techniques", "Remote Address: %s" : "Adresse distante : %s", "Request ID: %s" : "ID de la requête : %s", diff --git a/apps/dav/l10n/fr.json b/apps/dav/l10n/fr.json index 3079607e595..68bfc4777e5 100644 --- a/apps/dav/l10n/fr.json +++ b/apps/dav/l10n/fr.json @@ -58,7 +58,6 @@ "More options at %s" : "Plus d'options à %s", "Contacts" : "Contacts", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Point d'accès WebDAV", "Technical details" : "Détails techniques", "Remote Address: %s" : "Adresse distante : %s", "Request ID: %s" : "ID de la requête : %s", diff --git a/apps/dav/l10n/he.js b/apps/dav/l10n/he.js index ecd321d20cd..7849579d19d 100644 --- a/apps/dav/l10n/he.js +++ b/apps/dav/l10n/he.js @@ -58,7 +58,6 @@ OC.L10N.register( "More options at %s" : "אפשרויות נוספים ב־%s", "Contacts" : "אנשי קשר", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "נקודת קצה WebDAV", "Technical details" : "פרטים טכניים", "Remote Address: %s" : "כתובת מרוחקת: %s", "Request ID: %s" : "מזהה בקשה: %s", diff --git a/apps/dav/l10n/he.json b/apps/dav/l10n/he.json index 6b4bd7d5e40..2cff39a3d1f 100644 --- a/apps/dav/l10n/he.json +++ b/apps/dav/l10n/he.json @@ -56,7 +56,6 @@ "More options at %s" : "אפשרויות נוספים ב־%s", "Contacts" : "אנשי קשר", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "נקודת קצה WebDAV", "Technical details" : "פרטים טכניים", "Remote Address: %s" : "כתובת מרוחקת: %s", "Request ID: %s" : "מזהה בקשה: %s", diff --git a/apps/dav/l10n/is.js b/apps/dav/l10n/is.js index f49cb266430..6f0cb0ecf10 100644 --- a/apps/dav/l10n/is.js +++ b/apps/dav/l10n/is.js @@ -59,7 +59,6 @@ OC.L10N.register( "More options at %s" : "Fleiri valkostir á %s", "Contacts" : "Tengiliðir", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV-endapunktur", "Technical details" : "Tæknilegar upplýsingar", "Remote Address: %s" : "Fjartengt vistfang: %s", "Request ID: %s" : "Beiðni um auðkenni: %s", diff --git a/apps/dav/l10n/is.json b/apps/dav/l10n/is.json index 89b89cb597a..88657801269 100644 --- a/apps/dav/l10n/is.json +++ b/apps/dav/l10n/is.json @@ -57,7 +57,6 @@ "More options at %s" : "Fleiri valkostir á %s", "Contacts" : "Tengiliðir", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV-endapunktur", "Technical details" : "Tæknilegar upplýsingar", "Remote Address: %s" : "Fjartengt vistfang: %s", "Request ID: %s" : "Beiðni um auðkenni: %s", diff --git a/apps/dav/l10n/nl.js b/apps/dav/l10n/nl.js index 46a1a456770..96878372422 100644 --- a/apps/dav/l10n/nl.js +++ b/apps/dav/l10n/nl.js @@ -60,7 +60,6 @@ OC.L10N.register( "More options at %s" : "Meer opties op %s", "Contacts" : "Contactpersonen", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Technische details", "Remote Address: %s" : "Extern adres: %s", "Request ID: %s" : "Aanvraag-ID: %s", diff --git a/apps/dav/l10n/nl.json b/apps/dav/l10n/nl.json index 62a21d359af..d08d3f4cc26 100644 --- a/apps/dav/l10n/nl.json +++ b/apps/dav/l10n/nl.json @@ -58,7 +58,6 @@ "More options at %s" : "Meer opties op %s", "Contacts" : "Contactpersonen", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "WebDAV endpoint", "Technical details" : "Technische details", "Remote Address: %s" : "Extern adres: %s", "Request ID: %s" : "Aanvraag-ID: %s", diff --git a/apps/dav/l10n/pt_BR.js b/apps/dav/l10n/pt_BR.js index c92aaa90edb..528bca571b6 100644 --- a/apps/dav/l10n/pt_BR.js +++ b/apps/dav/l10n/pt_BR.js @@ -60,7 +60,7 @@ OC.L10N.register( "More options at %s" : "Mais opções em %s", "Contacts" : "Contatos", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Ponto final WebDAV", + "WebDAV endpoint" : "Endpoint WebDAV", "Technical details" : "Detalhes técnicos", "Remote Address: %s" : "Endereço remoto: %s", "Request ID: %s" : "ID do solicitante: %s", diff --git a/apps/dav/l10n/pt_BR.json b/apps/dav/l10n/pt_BR.json index 6d6b5f4d839..f3d1f8b432e 100644 --- a/apps/dav/l10n/pt_BR.json +++ b/apps/dav/l10n/pt_BR.json @@ -58,7 +58,7 @@ "More options at %s" : "Mais opções em %s", "Contacts" : "Contatos", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Ponto final WebDAV", + "WebDAV endpoint" : "Endpoint WebDAV", "Technical details" : "Detalhes técnicos", "Remote Address: %s" : "Endereço remoto: %s", "Request ID: %s" : "ID do solicitante: %s", diff --git a/apps/dav/l10n/ru.js b/apps/dav/l10n/ru.js index 263fff671ec..7dbe87c21b5 100644 --- a/apps/dav/l10n/ru.js +++ b/apps/dav/l10n/ru.js @@ -60,7 +60,6 @@ OC.L10N.register( "More options at %s" : "Дополнительные параметры на %s", "Contacts" : "Контакты", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Конечная точка WebDAV", "Technical details" : "Технические подробности", "Remote Address: %s" : "Удаленный адрес: %s", "Request ID: %s" : "ID запроса: %s", diff --git a/apps/dav/l10n/ru.json b/apps/dav/l10n/ru.json index 01ecc61cf23..0ae5a345a62 100644 --- a/apps/dav/l10n/ru.json +++ b/apps/dav/l10n/ru.json @@ -58,7 +58,6 @@ "More options at %s" : "Дополнительные параметры на %s", "Contacts" : "Контакты", "WebDAV" : "WebDAV", - "WebDAV endpoint" : "Конечная точка WebDAV", "Technical details" : "Технические подробности", "Remote Address: %s" : "Удаленный адрес: %s", "Request ID: %s" : "ID запроса: %s", diff --git a/apps/dav/l10n/sr.js b/apps/dav/l10n/sr.js index 45827818454..b44c5cb8729 100644 --- a/apps/dav/l10n/sr.js +++ b/apps/dav/l10n/sr.js @@ -60,7 +60,6 @@ OC.L10N.register( "More options at %s" : "Још опција на %s", "Contacts" : "Контакти", "WebDAV" : "ВебДАВ", - "WebDAV endpoint" : "WebDAV крајња тачка", "Technical details" : "Технички детаљи", "Remote Address: %s" : "Удаљена адреса: %s", "Request ID: %s" : "ИД захтева: %s", diff --git a/apps/dav/l10n/sr.json b/apps/dav/l10n/sr.json index 43265e74ecd..97dc87419e1 100644 --- a/apps/dav/l10n/sr.json +++ b/apps/dav/l10n/sr.json @@ -58,7 +58,6 @@ "More options at %s" : "Још опција на %s", "Contacts" : "Контакти", "WebDAV" : "ВебДАВ", - "WebDAV endpoint" : "WebDAV крајња тачка", "Technical details" : "Технички детаљи", "Remote Address: %s" : "Удаљена адреса: %s", "Request ID: %s" : "ИД захтева: %s", diff --git a/apps/encryption/appinfo/info.xml b/apps/encryption/appinfo/info.xml index a0bf0fcf14c..04159890688 100644 --- a/apps/encryption/appinfo/info.xml +++ b/apps/encryption/appinfo/info.xml @@ -14,7 +14,7 @@ Please read the documentation to know all implications before you decide to enable server-side encryption. </description> - <version>2.1.0</version> + <version>2.2.0</version> <licence>agpl</licence> <author>Bjoern Schiessle</author> <author>Clark Tomlinson</author> @@ -43,6 +43,7 @@ <commands> <command>OCA\Encryption\Command\EnableMasterKey</command> <command>OCA\Encryption\Command\DisableMasterKey</command> + <command>OCA\Encryption\Command\RecoverUser</command> </commands> <settings> diff --git a/apps/encryption/composer/composer/autoload_classmap.php b/apps/encryption/composer/composer/autoload_classmap.php index 024f61bd6ce..a071387a392 100644 --- a/apps/encryption/composer/composer/autoload_classmap.php +++ b/apps/encryption/composer/composer/autoload_classmap.php @@ -9,6 +9,7 @@ return array( 'OCA\\Encryption\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', 'OCA\\Encryption\\Command\\DisableMasterKey' => $baseDir . '/../lib/Command/DisableMasterKey.php', 'OCA\\Encryption\\Command\\EnableMasterKey' => $baseDir . '/../lib/Command/EnableMasterKey.php', + 'OCA\\Encryption\\Command\\RecoverUser' => $baseDir . '/../lib/Command/RecoverUser.php', 'OCA\\Encryption\\Controller\\RecoveryController' => $baseDir . '/../lib/Controller/RecoveryController.php', 'OCA\\Encryption\\Controller\\SettingsController' => $baseDir . '/../lib/Controller/SettingsController.php', 'OCA\\Encryption\\Controller\\StatusController' => $baseDir . '/../lib/Controller/StatusController.php', diff --git a/apps/encryption/composer/composer/autoload_static.php b/apps/encryption/composer/composer/autoload_static.php index 3f0082a80c8..6ed6e72a87a 100644 --- a/apps/encryption/composer/composer/autoload_static.php +++ b/apps/encryption/composer/composer/autoload_static.php @@ -24,6 +24,7 @@ class ComposerStaticInitEncryption 'OCA\\Encryption\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', 'OCA\\Encryption\\Command\\DisableMasterKey' => __DIR__ . '/..' . '/../lib/Command/DisableMasterKey.php', 'OCA\\Encryption\\Command\\EnableMasterKey' => __DIR__ . '/..' . '/../lib/Command/EnableMasterKey.php', + 'OCA\\Encryption\\Command\\RecoverUser' => __DIR__ . '/..' . '/../lib/Command/RecoverUser.php', 'OCA\\Encryption\\Controller\\RecoveryController' => __DIR__ . '/..' . '/../lib/Controller/RecoveryController.php', 'OCA\\Encryption\\Controller\\SettingsController' => __DIR__ . '/..' . '/../lib/Controller/SettingsController.php', 'OCA\\Encryption\\Controller\\StatusController' => __DIR__ . '/..' . '/../lib/Controller/StatusController.php', diff --git a/apps/encryption/l10n/cs.js b/apps/encryption/l10n/cs.js index bcefe840168..c884bf94590 100644 --- a/apps/encryption/l10n/cs.js +++ b/apps/encryption/l10n/cs.js @@ -31,7 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Soubor nelze načíst, pravděpodobně se jedná o sdílený soubor. Požádejte prosím vlastníka souboru, aby vám jej znovu sdílel.", "Default encryption module" : "Výchozí šifrovací modul", - "Default encryption module for server-side encryption" : "Výchozí modul pro šifrování na straně serveru", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ahoj!\n\nAdministrátor povolil šifrování dat na serveru. Vaše soubory byly zašifrovány za použití hesla '%s'.\n\nPřihlašte se do webového rozhraní, přejděte do nastavení 'základního šifrovacího modulu' a aktualizujte šifrovací heslo zadáním hesla výše do pole 'původní přihlašovací heslo' a svého aktuálního přihlašovacího hesla.\n\n", "The share will expire on %s." : "Sdílení vyprší %s.", "Cheers!" : "Ať slouží!", diff --git a/apps/encryption/l10n/cs.json b/apps/encryption/l10n/cs.json index 99bb06a9e87..99237e40ad9 100644 --- a/apps/encryption/l10n/cs.json +++ b/apps/encryption/l10n/cs.json @@ -29,7 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Soubor nelze načíst, pravděpodobně se jedná o sdílený soubor. Požádejte prosím vlastníka souboru, aby vám jej znovu sdílel.", "Default encryption module" : "Výchozí šifrovací modul", - "Default encryption module for server-side encryption" : "Výchozí modul pro šifrování na straně serveru", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ahoj!\n\nAdministrátor povolil šifrování dat na serveru. Vaše soubory byly zašifrovány za použití hesla '%s'.\n\nPřihlašte se do webového rozhraní, přejděte do nastavení 'základního šifrovacího modulu' a aktualizujte šifrovací heslo zadáním hesla výše do pole 'původní přihlašovací heslo' a svého aktuálního přihlašovacího hesla.\n\n", "The share will expire on %s." : "Sdílení vyprší %s.", "Cheers!" : "Ať slouží!", diff --git a/apps/encryption/l10n/en_GB.js b/apps/encryption/l10n/en_GB.js index b813a951c8d..ba10d0a1659 100644 --- a/apps/encryption/l10n/en_GB.js +++ b/apps/encryption/l10n/en_GB.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.", "Default encryption module" : "Default encryption module", - "Default encryption module for server-side encryption" : "Default encryption module for server-side encryption", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n", "The share will expire on %s." : "The share will expire on %s.", "Cheers!" : "Cheers!", diff --git a/apps/encryption/l10n/en_GB.json b/apps/encryption/l10n/en_GB.json index d6dbb859383..95853945714 100644 --- a/apps/encryption/l10n/en_GB.json +++ b/apps/encryption/l10n/en_GB.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.", "Default encryption module" : "Default encryption module", - "Default encryption module for server-side encryption" : "Default encryption module for server-side encryption", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n", "The share will expire on %s." : "The share will expire on %s.", "Cheers!" : "Cheers!", diff --git a/apps/encryption/l10n/es.js b/apps/encryption/l10n/es.js index 595197233d6..c9a217f6ce4 100644 --- a/apps/encryption/l10n/es.js +++ b/apps/encryption/l10n/es.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No ha sido posible descifrar este archivo - probablemente se trate de un archivo compartido. Solicita al propietario del mismo que vuelva a compartirlo contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede leer este archivo, probablemente sea un archivo compartido. Pida al propietario del mismo que lo vuelva a compartir contigo.", "Default encryption module" : "Módulo de cifrado por defecto", - "Default encryption module for server-side encryption" : "Módulo de cifrado por defecto para el cifrado del lado del servidor", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para usar este módulo de cifrado necesitas activar\n\t\tel cifrado en el lado del servidor en la configuración de administrador. Una vez activado este módulo cifrará\n\t\ttodos tus archivos de forma transparente. El cifrado se basa en claves AES 256.\n\t\tEl módulo no tocará los archivos existentes, solo los archivos nuevos se cifrarán\n\t\tdespués de que se active el cifrado en el lado del servidor. Tampoco es posible\n\t\tdesactivar el cifrado y volver a un sistema sin cifrar.\n\t\tPor favor, lee la documentación para conocer todas las implicaciones antes de decidir\n\t\tactivar el cifrado en el lado del servidor.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha activado el cifrado de datos en servidor. Tus archivos han sido cifrados usando la contraseña '%s'.\n\nPor favor, inicia tu sesión desde la interfaz web, ves a la sección 'módulo de cifrado básico' de tu área de ajustes personales y actualiza la contraseña de cifrado. Para ello, deberás introducir esta contraseña en el campo 'contraseña de acceso antigua' junto con tu actual contraseña de acceso.\n\n", "The share will expire on %s." : "El objeto dejará de ser compartido el %s.", "Cheers!" : "¡Saludos!", diff --git a/apps/encryption/l10n/es.json b/apps/encryption/l10n/es.json index cf248a0575e..f6545188ac9 100644 --- a/apps/encryption/l10n/es.json +++ b/apps/encryption/l10n/es.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No ha sido posible descifrar este archivo - probablemente se trate de un archivo compartido. Solicita al propietario del mismo que vuelva a compartirlo contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede leer este archivo, probablemente sea un archivo compartido. Pida al propietario del mismo que lo vuelva a compartir contigo.", "Default encryption module" : "Módulo de cifrado por defecto", - "Default encryption module for server-side encryption" : "Módulo de cifrado por defecto para el cifrado del lado del servidor", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para usar este módulo de cifrado necesitas activar\n\t\tel cifrado en el lado del servidor en la configuración de administrador. Una vez activado este módulo cifrará\n\t\ttodos tus archivos de forma transparente. El cifrado se basa en claves AES 256.\n\t\tEl módulo no tocará los archivos existentes, solo los archivos nuevos se cifrarán\n\t\tdespués de que se active el cifrado en el lado del servidor. Tampoco es posible\n\t\tdesactivar el cifrado y volver a un sistema sin cifrar.\n\t\tPor favor, lee la documentación para conocer todas las implicaciones antes de decidir\n\t\tactivar el cifrado en el lado del servidor.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha activado el cifrado de datos en servidor. Tus archivos han sido cifrados usando la contraseña '%s'.\n\nPor favor, inicia tu sesión desde la interfaz web, ves a la sección 'módulo de cifrado básico' de tu área de ajustes personales y actualiza la contraseña de cifrado. Para ello, deberás introducir esta contraseña en el campo 'contraseña de acceso antigua' junto con tu actual contraseña de acceso.\n\n", "The share will expire on %s." : "El objeto dejará de ser compartido el %s.", "Cheers!" : "¡Saludos!", diff --git a/apps/encryption/l10n/es_MX.js b/apps/encryption/l10n/es_MX.js index 02a290ca985..baf3b97c018 100644 --- a/apps/encryption/l10n/es_MX.js +++ b/apps/encryption/l10n/es_MX.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", "Default encryption module" : "Módulo de encripción predeterminado", - "Default encryption module for server-side encryption" : "Modulo de encripción por defecto para encripción de lado del servidor", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para poder usar este módulo de encripción necesitas habilitar la \n\t\tencripción del lado del servidor en las configuraciónes de administración. Una vez habilitado este modulo encriptará\n\t\ttodos tus archivos de forma transparente. La encripción se basa en llaves AES de 256.\n\t\tEl módulo no tocará archivos existentes, solo los nuevos archivos serán encriptados\n\t\tdespues de que la encripción del lado del servidor sea habilitada. Tampoco es posible \n\t\tdeshabilitar la encripción de nuevo y volver a un sistema no encriptado. \n\t\tPor favor lee la documentación para conocer todas las implicaciones antes de que\n\t\tdecidas habilitar la encripción del lado del servidor. ", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", diff --git a/apps/encryption/l10n/es_MX.json b/apps/encryption/l10n/es_MX.json index 22f3eb0aece..d30ca40cc33 100644 --- a/apps/encryption/l10n/es_MX.json +++ b/apps/encryption/l10n/es_MX.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", "Default encryption module" : "Módulo de encripción predeterminado", - "Default encryption module for server-side encryption" : "Modulo de encripción por defecto para encripción de lado del servidor", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para poder usar este módulo de encripción necesitas habilitar la \n\t\tencripción del lado del servidor en las configuraciónes de administración. Una vez habilitado este modulo encriptará\n\t\ttodos tus archivos de forma transparente. La encripción se basa en llaves AES de 256.\n\t\tEl módulo no tocará archivos existentes, solo los nuevos archivos serán encriptados\n\t\tdespues de que la encripción del lado del servidor sea habilitada. Tampoco es posible \n\t\tdeshabilitar la encripción de nuevo y volver a un sistema no encriptado. \n\t\tPor favor lee la documentación para conocer todas las implicaciones antes de que\n\t\tdecidas habilitar la encripción del lado del servidor. ", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", diff --git a/apps/encryption/l10n/fi.js b/apps/encryption/l10n/fi.js index 80fe1140e4a..29892f47b55 100644 --- a/apps/encryption/l10n/fi.js +++ b/apps/encryption/l10n/fi.js @@ -31,7 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tiedostoa ei voi lukea, se on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto uudelleen kanssasi.", "Default encryption module" : "Oletus salausmoduuli", - "Default encryption module for server-side encryption" : "Oletusarvoinen salausmoduuli palvelinpuolen salaukseen", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hei,\n\nYlläpiäjä on ottanut käyttöön palvelimen salauksen. Tiedostosi salattiin salasanalla '%s'.\n\nOle hyvä ja kirjaudu palveluun verkkokäyttöliittymän kautta, siirry henkilökohtaisten asetustesi kohtaan \"perussalausmoduuli\" ja päivitä salaukseen käytettävä salasanasi syöttämällä yllä mainittu salasana \"vanha kirjautumissalasana\"-kenttään ja nykyinen kirjautumissalasanasi.\n\n", "The share will expire on %s." : "Jakaminen päättyy %s.", "Cheers!" : "Kiitos!", diff --git a/apps/encryption/l10n/fi.json b/apps/encryption/l10n/fi.json index d45e42756cb..59c53b62b11 100644 --- a/apps/encryption/l10n/fi.json +++ b/apps/encryption/l10n/fi.json @@ -29,7 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tiedostoa ei voi lukea, se on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto uudelleen kanssasi.", "Default encryption module" : "Oletus salausmoduuli", - "Default encryption module for server-side encryption" : "Oletusarvoinen salausmoduuli palvelinpuolen salaukseen", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hei,\n\nYlläpiäjä on ottanut käyttöön palvelimen salauksen. Tiedostosi salattiin salasanalla '%s'.\n\nOle hyvä ja kirjaudu palveluun verkkokäyttöliittymän kautta, siirry henkilökohtaisten asetustesi kohtaan \"perussalausmoduuli\" ja päivitä salaukseen käytettävä salasanasi syöttämällä yllä mainittu salasana \"vanha kirjautumissalasana\"-kenttään ja nykyinen kirjautumissalasanasi.\n\n", "The share will expire on %s." : "Jakaminen päättyy %s.", "Cheers!" : "Kiitos!", diff --git a/apps/encryption/l10n/fr.js b/apps/encryption/l10n/fr.js index c4a9c146dfb..c3c673a8a9e 100644 --- a/apps/encryption/l10n/fr.js +++ b/apps/encryption/l10n/fr.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de lire ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le repartager avec vous. ", "Default encryption module" : "Module de chiffrement par défaut", - "Default encryption module for server-side encryption" : "Module de chiffrement par défaut pour le chiffrement côté serveur", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Pour utiliser ce module de chiffrement, vous devez activer le chiffrement côté serveur dans les paramètres d'administration. Une fois activé, ce module chiffrera tous vos fichiers de manière transparente. Le chiffrement est basé sur des clés AES 256 bits.\nLe module ne touchera pas les fichiers existants, seuls les nouveaux fichiers seront chiffrés. Une fois le chiffrement côté serveur activé, il n'est pas possible de désactiver le chiffrement et de revenir à un système non chiffré.\n\t\tVeuillez lire la documentation pour connaître toutes les implications avant de vous décider à activer le chiffrement côté serveur.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Bonjour,\n\nL'administrateur a activé le chiffrement sur le serveur. Vos fichiers ont été chiffrés avec le mot de passe suivant :\n\n%s\n\nVeuillez suivre ces instructions :\n\n1. Connectez-vous à l'interface web et trouvez la section \"Module de chiffrement de base d'\" dans vos paramètres personnels;\n\n2. Entrez le mot de passe fourni ci-dessus dans le champ \"Ancien mot de passe de connexion\";\n\n3. Entrez le mot de passe que vous utilisez actuellement pour vous connecter dans le champ \"Actuel mot de passe de connexion\";\n\n4. Validez en cliquant sur le bouton \"Mettre à jour le mot de passe de votre clef privée\".\n", "The share will expire on %s." : "Le partage expirera le %s.", "Cheers!" : "À bientôt !", diff --git a/apps/encryption/l10n/fr.json b/apps/encryption/l10n/fr.json index a73cb2f39bf..9f0d72e39e9 100644 --- a/apps/encryption/l10n/fr.json +++ b/apps/encryption/l10n/fr.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de lire ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le repartager avec vous. ", "Default encryption module" : "Module de chiffrement par défaut", - "Default encryption module for server-side encryption" : "Module de chiffrement par défaut pour le chiffrement côté serveur", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Pour utiliser ce module de chiffrement, vous devez activer le chiffrement côté serveur dans les paramètres d'administration. Une fois activé, ce module chiffrera tous vos fichiers de manière transparente. Le chiffrement est basé sur des clés AES 256 bits.\nLe module ne touchera pas les fichiers existants, seuls les nouveaux fichiers seront chiffrés. Une fois le chiffrement côté serveur activé, il n'est pas possible de désactiver le chiffrement et de revenir à un système non chiffré.\n\t\tVeuillez lire la documentation pour connaître toutes les implications avant de vous décider à activer le chiffrement côté serveur.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Bonjour,\n\nL'administrateur a activé le chiffrement sur le serveur. Vos fichiers ont été chiffrés avec le mot de passe suivant :\n\n%s\n\nVeuillez suivre ces instructions :\n\n1. Connectez-vous à l'interface web et trouvez la section \"Module de chiffrement de base d'\" dans vos paramètres personnels;\n\n2. Entrez le mot de passe fourni ci-dessus dans le champ \"Ancien mot de passe de connexion\";\n\n3. Entrez le mot de passe que vous utilisez actuellement pour vous connecter dans le champ \"Actuel mot de passe de connexion\";\n\n4. Validez en cliquant sur le bouton \"Mettre à jour le mot de passe de votre clef privée\".\n", "The share will expire on %s." : "Le partage expirera le %s.", "Cheers!" : "À bientôt !", diff --git a/apps/encryption/l10n/he.js b/apps/encryption/l10n/he.js index 47251d654ae..b9390bc11c5 100644 --- a/apps/encryption/l10n/he.js +++ b/apps/encryption/l10n/he.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "לא ניתן להסיר את ההצפנה לקובץ זה, ייתכן ומדובר בקובץ משותף. יש לבקש מהבעלים של הקובץ לשתף מחדש את הקובץ אתך.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "לא ניתן לקרוא קובץ זה, ייתכן ומדובר בקובץ משותף. יש לבקש מהבעלים של הקובץ לשתף מחדש את הקובץ אתך.", "Default encryption module" : "מודול ההצפנה כבררת מחדל", - "Default encryption module for server-side encryption" : "מודול הצפנה כבררת מחדל להצפנה מצד השרת", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "כדי להשתמש במודול הצפנה זה עליך להפעיל הצפנה מצד השרת בהגדרות\n\t\tהניהול. לאחר ההפעלה המודול הזה יצפין את כל הקבצים שלך. ההצפנה\n\t\tמבוססת על מפתחות AES 256.\n\t\tהמודול לא ייגע בקבצים קיימים, רק קבצים חדשים יוצפנו לאחר הפעלת\n\t\tההצפנה בצד השרת. ניתן גם להשבית את ההצפנה שוב ולחזור למערכת\n\t\tבלתי מוצפנת.\n\t\tנא לקרוא את התיעוד כדי להבין את כל ההשלכות בטרם קבלת ההחלטה\n\t\tבנוגע להפעלת הצפנה מצד השרת.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "שלום,\n\nהמנהל אפשר את ההצפנה בצד השרת. הקבצים שלך הוצפנו על בסיס הסיסמא '%s'.\n\nיש להתחבר לממשק האינטרנט, ולגשת אל 'מודול הצפנה בסיסי של' בהגדרות הבסיסיות ולעדכן את סיסמת ההצפנה שלך על ידי הכנסת הסיסמא אל שדה 'סיסמת ההתחברות הישנה' ואת סיסמת ההתחברות הנוכחית.\n\n", "The share will expire on %s." : "השיתוף יפוג תוקף ב- %s.", "Cheers!" : "לחיים!", diff --git a/apps/encryption/l10n/he.json b/apps/encryption/l10n/he.json index 56511fa2edd..93133287a5c 100644 --- a/apps/encryption/l10n/he.json +++ b/apps/encryption/l10n/he.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "לא ניתן להסיר את ההצפנה לקובץ זה, ייתכן ומדובר בקובץ משותף. יש לבקש מהבעלים של הקובץ לשתף מחדש את הקובץ אתך.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "לא ניתן לקרוא קובץ זה, ייתכן ומדובר בקובץ משותף. יש לבקש מהבעלים של הקובץ לשתף מחדש את הקובץ אתך.", "Default encryption module" : "מודול ההצפנה כבררת מחדל", - "Default encryption module for server-side encryption" : "מודול הצפנה כבררת מחדל להצפנה מצד השרת", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "כדי להשתמש במודול הצפנה זה עליך להפעיל הצפנה מצד השרת בהגדרות\n\t\tהניהול. לאחר ההפעלה המודול הזה יצפין את כל הקבצים שלך. ההצפנה\n\t\tמבוססת על מפתחות AES 256.\n\t\tהמודול לא ייגע בקבצים קיימים, רק קבצים חדשים יוצפנו לאחר הפעלת\n\t\tההצפנה בצד השרת. ניתן גם להשבית את ההצפנה שוב ולחזור למערכת\n\t\tבלתי מוצפנת.\n\t\tנא לקרוא את התיעוד כדי להבין את כל ההשלכות בטרם קבלת ההחלטה\n\t\tבנוגע להפעלת הצפנה מצד השרת.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "שלום,\n\nהמנהל אפשר את ההצפנה בצד השרת. הקבצים שלך הוצפנו על בסיס הסיסמא '%s'.\n\nיש להתחבר לממשק האינטרנט, ולגשת אל 'מודול הצפנה בסיסי של' בהגדרות הבסיסיות ולעדכן את סיסמת ההצפנה שלך על ידי הכנסת הסיסמא אל שדה 'סיסמת ההתחברות הישנה' ואת סיסמת ההתחברות הנוכחית.\n\n", "The share will expire on %s." : "השיתוף יפוג תוקף ב- %s.", "Cheers!" : "לחיים!", diff --git a/apps/encryption/l10n/is.js b/apps/encryption/l10n/is.js index 2ba7c606abf..15397ca5707 100644 --- a/apps/encryption/l10n/is.js +++ b/apps/encryption/l10n/is.js @@ -31,7 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki afkóðað þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki lesið þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", "Default encryption module" : "Sjálfgefin dulritunareining", - "Default encryption module for server-side encryption" : "Sjálfgefin dulritunareining fyrir dulritun á vefþjóni", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hæ,\n\nkerfisstjórinn virkjaði dulritun á vefþjóni. Skrárnar þínar voru dulritaðar með lykilorðinu '%s'.\n\nSkráðu þig inn í vefviðmótinu, farðu í hlutann 'Grunn-dulritunareining' (basic encryption module) í persónulegu stillingunum þínum og uppfærðu dulritunarlykilorðið þitt með því að setja þetta lykilorð inn í reitinn 'Gamla innskráningarlykilorðið' ásamt núverandi innskráningarlykilorði.\n\n", "The share will expire on %s." : "Gildistími deilingar rennur út %s.", "Cheers!" : "Til hamingju!", diff --git a/apps/encryption/l10n/is.json b/apps/encryption/l10n/is.json index 6943895b62e..29564257e94 100644 --- a/apps/encryption/l10n/is.json +++ b/apps/encryption/l10n/is.json @@ -29,7 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki afkóðað þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki lesið þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", "Default encryption module" : "Sjálfgefin dulritunareining", - "Default encryption module for server-side encryption" : "Sjálfgefin dulritunareining fyrir dulritun á vefþjóni", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hæ,\n\nkerfisstjórinn virkjaði dulritun á vefþjóni. Skrárnar þínar voru dulritaðar með lykilorðinu '%s'.\n\nSkráðu þig inn í vefviðmótinu, farðu í hlutann 'Grunn-dulritunareining' (basic encryption module) í persónulegu stillingunum þínum og uppfærðu dulritunarlykilorðið þitt með því að setja þetta lykilorð inn í reitinn 'Gamla innskráningarlykilorðið' ásamt núverandi innskráningarlykilorði.\n\n", "The share will expire on %s." : "Gildistími deilingar rennur út %s.", "Cheers!" : "Til hamingju!", diff --git a/apps/encryption/l10n/it.js b/apps/encryption/l10n/it.js index 0756efea9cd..341b5bc80d6 100644 --- a/apps/encryption/l10n/it.js +++ b/apps/encryption/l10n/it.js @@ -32,7 +32,7 @@ OC.L10N.register( "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile leggere questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", "Default encryption module" : "Modulo di cifratura predefinito", "Default encryption module for server-side encryption" : "Modulo di cifratura predefinito per la cifratura lato server", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Per utilizzare questo modulo di cifratura, è necessario abilitare la cifratura\n\t\tlato server nelle impostazioni di amministrazione. Una volta abilitato, questo modulo\n\t\tcifrerà tutti i file in maniera trasparente. La cifratura è basata su chiavi AES 256.\n\t\tIl modulo non interesserà i file esistenti, solo i nuovi file saranno cifrati dopo\n\t\tl'abilitazione della cifratura lato server. Non è possibile disabilitare\n\t\tnuovamente la cifratura e tornare a un sistema non cifrato. Leggi la\n\t\tdocumentazione per sapere tutte le implicazioni prima di decidere di abilitare\n\t\tla cifratura lato server.", + "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Per utilizzare questo modulo di cifratura, è necessario abilitare la cifratura\n\t\tlato server nelle impostazioni di amministrazione. Una volta abilitato, questo modulo\n\t\tcifrerà tutti i file in maniera trasparente. La cifratura è basata su chiavi AES 256.\n\t\tIl modulo non interesserà i file esistenti, solo i nuovi file saranno cifrati dopo\n\t\tl'abilitazione della cifratura lato server. Non è possibile disabilitare\n\t\tnuovamente la cifratura e tornare a un sistema non cifrato. Leggi la\n\t\tdocumentazione per conoscere tutte le implicazioni prima di decidere di abilitare\n\t\tla cifratura lato server.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ciao,\n\nl'amministratore ha abilitato la cifratura lato server. I tuoi file sono stati\ncifrati utilizzando la password '%s'.\n\nAccedi all'interfaccia web, vai alla sezione 'modulo di cifratura base di' dalle nelle tue impostazioni personali e aggiorna la tua password di cifratura digitando la password nel campo 'vecchia password di accesso' e la tua nuova password.\n\n", "The share will expire on %s." : "La condivisione scadrà il %s.", "Cheers!" : "Saluti!", diff --git a/apps/encryption/l10n/it.json b/apps/encryption/l10n/it.json index b169c0d578c..2357e097304 100644 --- a/apps/encryption/l10n/it.json +++ b/apps/encryption/l10n/it.json @@ -30,7 +30,7 @@ "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile leggere questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", "Default encryption module" : "Modulo di cifratura predefinito", "Default encryption module for server-side encryption" : "Modulo di cifratura predefinito per la cifratura lato server", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Per utilizzare questo modulo di cifratura, è necessario abilitare la cifratura\n\t\tlato server nelle impostazioni di amministrazione. Una volta abilitato, questo modulo\n\t\tcifrerà tutti i file in maniera trasparente. La cifratura è basata su chiavi AES 256.\n\t\tIl modulo non interesserà i file esistenti, solo i nuovi file saranno cifrati dopo\n\t\tl'abilitazione della cifratura lato server. Non è possibile disabilitare\n\t\tnuovamente la cifratura e tornare a un sistema non cifrato. Leggi la\n\t\tdocumentazione per sapere tutte le implicazioni prima di decidere di abilitare\n\t\tla cifratura lato server.", + "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Per utilizzare questo modulo di cifratura, è necessario abilitare la cifratura\n\t\tlato server nelle impostazioni di amministrazione. Una volta abilitato, questo modulo\n\t\tcifrerà tutti i file in maniera trasparente. La cifratura è basata su chiavi AES 256.\n\t\tIl modulo non interesserà i file esistenti, solo i nuovi file saranno cifrati dopo\n\t\tl'abilitazione della cifratura lato server. Non è possibile disabilitare\n\t\tnuovamente la cifratura e tornare a un sistema non cifrato. Leggi la\n\t\tdocumentazione per conoscere tutte le implicazioni prima di decidere di abilitare\n\t\tla cifratura lato server.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ciao,\n\nl'amministratore ha abilitato la cifratura lato server. I tuoi file sono stati\ncifrati utilizzando la password '%s'.\n\nAccedi all'interfaccia web, vai alla sezione 'modulo di cifratura base di' dalle nelle tue impostazioni personali e aggiorna la tua password di cifratura digitando la password nel campo 'vecchia password di accesso' e la tua nuova password.\n\n", "The share will expire on %s." : "La condivisione scadrà il %s.", "Cheers!" : "Saluti!", diff --git a/apps/encryption/l10n/ja.js b/apps/encryption/l10n/ja.js index 4168636983d..35fd7b72f06 100644 --- a/apps/encryption/l10n/ja.js +++ b/apps/encryption/l10n/ja.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Default encryption module" : "デフォルトの暗号化モジュール", - "Default encryption module for server-side encryption" : "サーバーサイド暗号化のデフォルトの暗号化モジュール", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "この暗号化モジュールを使うには管理者画面でサーバーサイド暗号化を有効にする\n\t\t必要があります。このモジュールを一旦有効にすると全てのファイルが\n\t\t意識することなく暗号化されます。AES 256bit の鍵で暗号化されます。\n\t\tこのモジュールは既存ファイルはそのままで、サーバーサイド暗号化を\n\t\t有効にした後の新しいファイルのみ暗号化します。 一旦暗号化したシステムを\n\t\t無効化して元の暗号化されていない状態に戻すことはできません。\n\t\tサーバーサイド暗号化するかどうか決める前にドキュメントをよく読んで\n\t\t全ての要件を確認してください。", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "こんにちは\n\n管理者がサーバーサイド暗号化を有効にしました。'%s'というパスワードであなたのファイルが暗号化されました。\n\nWeb画面からログインして、個人設定画面の'基本暗号化モジュール' セクションにいき、暗号化パスワードの更新をお願いします。 '旧ログインパスワード'部分に上記パスワードを入力し、現在のログインパスワードで更新します。\n", "The share will expire on %s." : "共有は %s で有効期限が切れます。", "Cheers!" : "それでは!", diff --git a/apps/encryption/l10n/ja.json b/apps/encryption/l10n/ja.json index 0d22fd27739..7b898829e2c 100644 --- a/apps/encryption/l10n/ja.json +++ b/apps/encryption/l10n/ja.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Default encryption module" : "デフォルトの暗号化モジュール", - "Default encryption module for server-side encryption" : "サーバーサイド暗号化のデフォルトの暗号化モジュール", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "この暗号化モジュールを使うには管理者画面でサーバーサイド暗号化を有効にする\n\t\t必要があります。このモジュールを一旦有効にすると全てのファイルが\n\t\t意識することなく暗号化されます。AES 256bit の鍵で暗号化されます。\n\t\tこのモジュールは既存ファイルはそのままで、サーバーサイド暗号化を\n\t\t有効にした後の新しいファイルのみ暗号化します。 一旦暗号化したシステムを\n\t\t無効化して元の暗号化されていない状態に戻すことはできません。\n\t\tサーバーサイド暗号化するかどうか決める前にドキュメントをよく読んで\n\t\t全ての要件を確認してください。", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "こんにちは\n\n管理者がサーバーサイド暗号化を有効にしました。'%s'というパスワードであなたのファイルが暗号化されました。\n\nWeb画面からログインして、個人設定画面の'基本暗号化モジュール' セクションにいき、暗号化パスワードの更新をお願いします。 '旧ログインパスワード'部分に上記パスワードを入力し、現在のログインパスワードで更新します。\n", "The share will expire on %s." : "共有は %s で有効期限が切れます。", "Cheers!" : "それでは!", diff --git a/apps/encryption/l10n/pt_BR.js b/apps/encryption/l10n/pt_BR.js index 5563fd81d98..6b567002125 100644 --- a/apps/encryption/l10n/pt_BR.js +++ b/apps/encryption/l10n/pt_BR.js @@ -32,7 +32,7 @@ OC.L10N.register( "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não foi possível ler este arquivo pois provavelmente é um arquivo compartilhado. Por favor, peça ao dono do arquivo para recompartilhá-lo com você.", "Default encryption module" : "Módulo de criptografia padrão", "Default encryption module for server-side encryption" : "Módulo de criptografia padrão para criptografia do lado do servidor", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para usar este módulo de criptografia, é necessário ativar a criptografia do lado\n\t\t do servidor nas configurações administrativas. Uma vez ativado, irá criptografar\n\t\ttodos os arquivos de forma transparente. A criptografia é baseada em chaves AES 256.\n\t\tO módulo não vai mexer em arquivos existentes, apenas os novos serão criptografados\n\t\tdepois que a criptografia do lado do servidor for ativada. Também não é possível\n\t\tdesativar a criptografia e mudar novamente para um sistema não criptografado.\n\t\tPor favor, leia a documentação para saber todas as implicações antes de decidir\n\t\thabilitar a criptografia do lado do servidor.", + "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para usar este módulo de criptografia, é necessário ativar a criptografia do\n\t\tlado do servidor nas configurações. Ativada, este módulo irá criptografar\n\t\ttodos os arquivos. A criptografia é baseada em chaves AES 256.\n\t\tO módulo não tocará em arquivos existentes, apenas os novos serão\n\t\tcriptografados após a criptografia do lado do servidor ser ativada. É também\n\t\tpossível desativar a criptografia e voltar a um sistema não criptografado.\n\t\tLeia a documentação para saber todas as implicações antes de decidir\n\t\tativar a criptografia do lado do servidor.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Olá,\n\nO administrador habilitou a criptografia do lado do servidor. Os seus arquivos foram criptografados usando a senha '%s'.\n\nPor favor faça o login na interface web, vá para a seção 'módulo de criptografia básico' das suas definições pessoais e atualize sua senha de criptografia, inserindo esta senha no campo 'senha antiga de log-in' e sua senha de login atual.\n\n", "The share will expire on %s." : "O compartilhamento irá expirar em %s.", "Cheers!" : "Saudações!", diff --git a/apps/encryption/l10n/pt_BR.json b/apps/encryption/l10n/pt_BR.json index 0888b8fc356..2466683a2e4 100644 --- a/apps/encryption/l10n/pt_BR.json +++ b/apps/encryption/l10n/pt_BR.json @@ -30,7 +30,7 @@ "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não foi possível ler este arquivo pois provavelmente é um arquivo compartilhado. Por favor, peça ao dono do arquivo para recompartilhá-lo com você.", "Default encryption module" : "Módulo de criptografia padrão", "Default encryption module for server-side encryption" : "Módulo de criptografia padrão para criptografia do lado do servidor", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para usar este módulo de criptografia, é necessário ativar a criptografia do lado\n\t\t do servidor nas configurações administrativas. Uma vez ativado, irá criptografar\n\t\ttodos os arquivos de forma transparente. A criptografia é baseada em chaves AES 256.\n\t\tO módulo não vai mexer em arquivos existentes, apenas os novos serão criptografados\n\t\tdepois que a criptografia do lado do servidor for ativada. Também não é possível\n\t\tdesativar a criptografia e mudar novamente para um sistema não criptografado.\n\t\tPor favor, leia a documentação para saber todas as implicações antes de decidir\n\t\thabilitar a criptografia do lado do servidor.", + "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Para usar este módulo de criptografia, é necessário ativar a criptografia do\n\t\tlado do servidor nas configurações. Ativada, este módulo irá criptografar\n\t\ttodos os arquivos. A criptografia é baseada em chaves AES 256.\n\t\tO módulo não tocará em arquivos existentes, apenas os novos serão\n\t\tcriptografados após a criptografia do lado do servidor ser ativada. É também\n\t\tpossível desativar a criptografia e voltar a um sistema não criptografado.\n\t\tLeia a documentação para saber todas as implicações antes de decidir\n\t\tativar a criptografia do lado do servidor.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Olá,\n\nO administrador habilitou a criptografia do lado do servidor. Os seus arquivos foram criptografados usando a senha '%s'.\n\nPor favor faça o login na interface web, vá para a seção 'módulo de criptografia básico' das suas definições pessoais e atualize sua senha de criptografia, inserindo esta senha no campo 'senha antiga de log-in' e sua senha de login atual.\n\n", "The share will expire on %s." : "O compartilhamento irá expirar em %s.", "Cheers!" : "Saudações!", diff --git a/apps/encryption/l10n/ru.js b/apps/encryption/l10n/ru.js index 00e8f206684..6611a5a9b4a 100644 --- a/apps/encryption/l10n/ru.js +++ b/apps/encryption/l10n/ru.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удалось расшифровать файл, возможно это опубликованный файл. Попросите владельца файла повторно открыть к нему доступ.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удается прочитать файл, возможно это публичный файл. Пожалуйста попросите владельца открыть доступ снова.", "Default encryption module" : "Модуль шифрования по-умолчанию", - "Default encryption module for server-side encryption" : "Дефолтный модуль для шифрования на стороне сервера", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Чтобы использовать этот модуль шифрования, вам необходимо включить его в настройках администратора. После включения этот модуль будет шифровать все ваши файлы прозрачно. Шифрование основано на ключах AES 256.\nМодуль не будет касаться существующих файлов, будут зашифрованы только новые файлы после того, как было разрешено шифрование на стороне сервера. Также невозможно отключить шифрование и верниться к незашифрованной системе.\nПожалуйста, ознакомьтесь с документацией, чтобы узнать все последствия прежде, чем принимать решение для включения шифрования на стороне сервера.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Привет,\n\nадминистратор включил шифрование на стороне сервера. Ваши файлы были зашифрованы с использованием пароля «%s».\n\nПожалуйста войдите в веб-приложение, в разделе «простой модуль шифрования» в личных настройках вам нужно обновить пароль шифрования, указав этот пароль в поле \"старый пароль\".\n", "The share will expire on %s." : "Доступ будет закрыт %s", "Cheers!" : "Всего наилучшего!", diff --git a/apps/encryption/l10n/ru.json b/apps/encryption/l10n/ru.json index 0f9a61f31d9..e0caf68a5e5 100644 --- a/apps/encryption/l10n/ru.json +++ b/apps/encryption/l10n/ru.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удалось расшифровать файл, возможно это опубликованный файл. Попросите владельца файла повторно открыть к нему доступ.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удается прочитать файл, возможно это публичный файл. Пожалуйста попросите владельца открыть доступ снова.", "Default encryption module" : "Модуль шифрования по-умолчанию", - "Default encryption module for server-side encryption" : "Дефолтный модуль для шифрования на стороне сервера", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Чтобы использовать этот модуль шифрования, вам необходимо включить его в настройках администратора. После включения этот модуль будет шифровать все ваши файлы прозрачно. Шифрование основано на ключах AES 256.\nМодуль не будет касаться существующих файлов, будут зашифрованы только новые файлы после того, как было разрешено шифрование на стороне сервера. Также невозможно отключить шифрование и верниться к незашифрованной системе.\nПожалуйста, ознакомьтесь с документацией, чтобы узнать все последствия прежде, чем принимать решение для включения шифрования на стороне сервера.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Привет,\n\nадминистратор включил шифрование на стороне сервера. Ваши файлы были зашифрованы с использованием пароля «%s».\n\nПожалуйста войдите в веб-приложение, в разделе «простой модуль шифрования» в личных настройках вам нужно обновить пароль шифрования, указав этот пароль в поле \"старый пароль\".\n", "The share will expire on %s." : "Доступ будет закрыт %s", "Cheers!" : "Всего наилучшего!", diff --git a/apps/encryption/l10n/sr.js b/apps/encryption/l10n/sr.js index 09a307f919e..bcd4f9e0bc6 100644 --- a/apps/encryption/l10n/sr.js +++ b/apps/encryption/l10n/sr.js @@ -31,8 +31,6 @@ OC.L10N.register( "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да дешифрујем фајл. Вероватно је то дељен фајл. Затражите од власника да га поново подели.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да читам фајл. Вероватно је дељен. Питајте власника да га поново подели.", "Default encryption module" : "Подразумевани модул за шифровање", - "Default encryption module for server-side encryption" : "Подразумевани модул шифровања за шифровање на серверу", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Да бисте користили овај модул за шифровање, морате на страни сервера омогућити\n\t\tшифровање у администраторским поставкама. Једном када се укључи, овај модул ће шифровати\n\t\tсве Ваше фајлове транспарентно. Шифровање је базирано на AES 256 кључевима.\n\t\tМодул неће дирати постојеће фајлове, само ће нови фајлови бити шифровани\n\t\tпошто се укључи шифровање на серверској страни. Такође није могуће да\n\t\tсе искључи шифровање и да се пређе на нешифровани систем..\n\t\tПрочитајте документацију да сазнате све импликације пре него што \t\tсе одлучите да укључите шифровање на серверу.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Поштовање,\n\nадминистратор је укључио шифровање на серверској страни. Ваши фајлови су шифровани лозинком „%s“.\n\nПријавите се на веб сучеље, идите на одељак 'основни модул за шифровање' у личним поставкама и ажурирајте своју лозинку за шифровање уношењем ове лозинке у поље „стара лозинка за пријаву“ и своју тренутну лозинку за пријављивање.\n", "The share will expire on %s." : "Дељење истиче %s.", "Cheers!" : "Здраво!", diff --git a/apps/encryption/l10n/sr.json b/apps/encryption/l10n/sr.json index a69ba56d3f8..3b78ed5b7c7 100644 --- a/apps/encryption/l10n/sr.json +++ b/apps/encryption/l10n/sr.json @@ -29,8 +29,6 @@ "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да дешифрујем фајл. Вероватно је то дељен фајл. Затражите од власника да га поново подели.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да читам фајл. Вероватно је дељен. Питајте власника да га поново подели.", "Default encryption module" : "Подразумевани модул за шифровање", - "Default encryption module for server-side encryption" : "Подразумевани модул шифровања за шифровање на серверу", - "In order to use this encryption module you need to enable server-side\n\t\tencryption in the admin settings. Once enabled this module will encrypt\n\t\tall your files transparently. The encryption is based on AES 256 keys.\n\t\tThe module won't touch existing files, only new files will be encrypted\n\t\tafter server-side encryption was enabled. It is also not possible to\n\t\tdisable the encryption again and switch back to a unencrypted system.\n\t\tPlease read the documentation to know all implications before you decide\n\t\tto enable server-side encryption." : "Да бисте користили овај модул за шифровање, морате на страни сервера омогућити\n\t\tшифровање у администраторским поставкама. Једном када се укључи, овај модул ће шифровати\n\t\tсве Ваше фајлове транспарентно. Шифровање је базирано на AES 256 кључевима.\n\t\tМодул неће дирати постојеће фајлове, само ће нови фајлови бити шифровани\n\t\tпошто се укључи шифровање на серверској страни. Такође није могуће да\n\t\tсе искључи шифровање и да се пређе на нешифровани систем..\n\t\tПрочитајте документацију да сазнате све импликације пре него што \t\tсе одлучите да укључите шифровање на серверу.", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Поштовање,\n\nадминистратор је укључио шифровање на серверској страни. Ваши фајлови су шифровани лозинком „%s“.\n\nПријавите се на веб сучеље, идите на одељак 'основни модул за шифровање' у личним поставкама и ажурирајте своју лозинку за шифровање уношењем ове лозинке у поље „стара лозинка за пријаву“ и своју тренутну лозинку за пријављивање.\n", "The share will expire on %s." : "Дељење истиче %s.", "Cheers!" : "Здраво!", diff --git a/apps/encryption/lib/Command/RecoverUser.php b/apps/encryption/lib/Command/RecoverUser.php new file mode 100644 index 00000000000..8de105b5382 --- /dev/null +++ b/apps/encryption/lib/Command/RecoverUser.php @@ -0,0 +1,118 @@ +<?php +/** + * @copyright Copyright (c) 2018 Bjoern Schiessle <bjoern@schiessle.org> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\Encryption\Command; + + +use OC\Files\Filesystem; +use OC\User\NoUserException; +use OCA\Encryption\Crypto\Crypt; +use OCA\Encryption\KeyManager; +use OCA\Encryption\Recovery; +use OCA\Encryption\Util; +use OCP\IConfig; +use OCP\IUserManager; +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Helper\QuestionHelper; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Console\Question\Question; + +class RecoverUser extends Command { + + /** @var Util */ + protected $util; + + /** @var IUserManager */ + protected $userManager; + + /** @var QuestionHelper */ + protected $questionHelper; + + /** + * @param Util $util + * @param IConfig $config + * @param IUserManager $userManager + * @param QuestionHelper $questionHelper + */ + public function __construct(Util $util, + IConfig $config, + IUserManager $userManager, + QuestionHelper $questionHelper) { + + $this->util = $util; + $this->questionHelper = $questionHelper; + $this->userManager = $userManager; + parent::__construct(); + } + + protected function configure() { + $this + ->setName('encryption:recover-user') + ->setDescription('Recover user data in case of password lost. This only works if the user enabled the recovery key.'); + + $this->addArgument( + 'user', + InputArgument::REQUIRED, + 'user which should be recovered' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + + $isMasterKeyEnabled = $this->util->isMasterKeyEnabled(); + + if($isMasterKeyEnabled) { + $output->writeln('You use the master key, no individual user recovery needed.'); + return; + } + + $uid = $input->getArgument('user'); + $userExists = $this->userManager->userExists($uid); + if ($userExists === false) { + $output->writeln('User "' . $uid . '" unknown.'); + return; + } + + $recoveryKeyEnabled = $this->util->isRecoveryEnabledForUser($uid); + if($recoveryKeyEnabled === false) { + $output->writeln('Recovery key is not enabled for: ' . $uid); + return; + } + + $question = new Question('Please enter the recovery key password: '); + $question->setHidden(true); + $question->setHiddenFallback(false); + $recoveryPassword = $this->questionHelper->ask($input, $output, $question); + + $question = new Question('Please enter the new login password for the user: '); + $question->setHidden(true); + $question->setHiddenFallback(false); + $newLoginPassword = $this->questionHelper->ask($input, $output, $question); + + $output->write('Start to recover users files... This can take some time...'); + $this->userManager->get($uid)->setPassword($newLoginPassword, $recoveryPassword); + $output->writeln('Done.'); + + } + +} diff --git a/apps/encryption/lib/Hooks/UserHooks.php b/apps/encryption/lib/Hooks/UserHooks.php index dc3a4d3c428..48815892900 100644 --- a/apps/encryption/lib/Hooks/UserHooks.php +++ b/apps/encryption/lib/Hooks/UserHooks.php @@ -28,6 +28,7 @@ namespace OCA\Encryption\Hooks; use OC\Files\Filesystem; +use OCP\Encryption\Exceptions\GenericEncryptionException; use OCP\IUserManager; use OCP\Util as OCUtil; use OCA\Encryption\Hooks\Contracts\IHook; @@ -252,11 +253,12 @@ class UserHooks implements IHook { } // Get existing decrypted private key - $privateKey = $this->session->getPrivateKey(); $user = $this->user->getUser(); // current logged in user changes his own password - if ($user && $params['uid'] === $user->getUID() && $privateKey) { + if ($user && $params['uid'] === $user->getUID()) { + + $privateKey = $this->session->getPrivateKey(); // Encrypt private key with new user pwd as passphrase $encryptedPrivateKey = $this->crypt->encryptPrivateKey($privateKey, $params['password'], $params['uid']); @@ -277,6 +279,18 @@ class UserHooks implements IHook { $this->initMountPoints($user); $recoveryPassword = isset($params['recoveryPassword']) ? $params['recoveryPassword'] : null; + $recoveryKeyId = $this->keyManager->getRecoveryKeyId(); + $recoveryKey = $this->keyManager->getSystemPrivateKey($recoveryKeyId); + try { + $decryptedRecoveryKey = $this->crypt->decryptPrivateKey($recoveryKey, $recoveryPassword); + } catch (\Exception $e) { + $decryptedRecoveryKey = false; + } + if ($decryptedRecoveryKey === false) { + $message = 'Can not decrypt the recovery key. Maybe you provided the wrong password. Try again.'; + throw new GenericEncryptionException($message, $message); + } + // we generate new keys if... // ...we have a recovery password and the user enabled the recovery key // ...encryption was activated for the first time (no keys exists) diff --git a/apps/encryption/tests/Hooks/UserHooksTest.php b/apps/encryption/tests/Hooks/UserHooksTest.php index 91005e2746a..b14a1f6a559 100644 --- a/apps/encryption/tests/Hooks/UserHooksTest.php +++ b/apps/encryption/tests/Hooks/UserHooksTest.php @@ -210,9 +210,9 @@ class UserHooksTest extends TestCase { } public function testSetPassphrase() { - $this->sessionMock->expects($this->exactly(4)) + $this->sessionMock->expects($this->once()) ->method('getPrivateKey') - ->willReturnOnConsecutiveCalls(true, false); + ->willReturn(true); $this->cryptMock->expects($this->exactly(4)) ->method('encryptPrivateKey') @@ -236,7 +236,7 @@ class UserHooksTest extends TestCase { $this->recoveryMock->expects($this->exactly(3)) ->method('isRecoveryEnabledForUser') - ->with('testUser') + ->with('testUser1') ->willReturnOnConsecutiveCalls(true, false); @@ -257,13 +257,15 @@ class UserHooksTest extends TestCase { $this->instance->expects($this->exactly(3))->method('initMountPoints'); + $this->params['uid'] = 'testUser1'; + // Test first if statement $this->assertNull($this->instance->setPassphrase($this->params)); // Test Second if conditional $this->keyManagerMock->expects($this->exactly(2)) ->method('userHasKeys') - ->with('testUser') + ->with('testUser1') ->willReturn(true); $this->assertNull($this->instance->setPassphrase($this->params)); @@ -271,7 +273,7 @@ class UserHooksTest extends TestCase { // Test third and final if condition $this->utilMock->expects($this->once()) ->method('userHasFiles') - ->with('testUser') + ->with('testUser1') ->willReturn(false); $this->cryptMock->expects($this->once()) @@ -282,7 +284,7 @@ class UserHooksTest extends TestCase { $this->recoveryMock->expects($this->once()) ->method('recoverUsersFiles') - ->with('password', 'testUser'); + ->with('password', 'testUser1'); $this->assertNull($this->instance->setPassphrase($this->params)); } @@ -297,9 +299,6 @@ class UserHooksTest extends TestCase { } public function testSetPasswordNoUser() { - $this->sessionMock->expects($this->once()) - ->method('getPrivateKey') - ->willReturn(true); $userSessionMock = $this->getMockBuilder(IUserSession::class) ->disableOriginalConstructor() diff --git a/apps/federatedfilesharing/l10n/cs.js b/apps/federatedfilesharing/l10n/cs.js index 32e6297bc2f..bd408f7ff03 100644 --- a/apps/federatedfilesharing/l10n/cs.js +++ b/apps/federatedfilesharing/l10n/cs.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Sdílej se mnou pomocí mého #Nextcloud sdruženého cloud ID", "Sharing" : "Sdílení", "Federated file sharing" : "Federované sdílení souborů", - "Provide federated file sharing across servers" : "Poskytnout federované sdílení souborů napříč servery", "Federated Cloud Sharing" : "Propojené cloudové sdílení", "Open documentation" : "Otevřít dokumentaci", "Adjust how people can share between servers." : "Upravte, jak mohou lidé mezi servery sdílet.", diff --git a/apps/federatedfilesharing/l10n/cs.json b/apps/federatedfilesharing/l10n/cs.json index c74976a475b..8c9acf154cc 100644 --- a/apps/federatedfilesharing/l10n/cs.json +++ b/apps/federatedfilesharing/l10n/cs.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Sdílej se mnou pomocí mého #Nextcloud sdruženého cloud ID", "Sharing" : "Sdílení", "Federated file sharing" : "Federované sdílení souborů", - "Provide federated file sharing across servers" : "Poskytnout federované sdílení souborů napříč servery", "Federated Cloud Sharing" : "Propojené cloudové sdílení", "Open documentation" : "Otevřít dokumentaci", "Adjust how people can share between servers." : "Upravte, jak mohou lidé mezi servery sdílet.", diff --git a/apps/federatedfilesharing/l10n/en_GB.js b/apps/federatedfilesharing/l10n/en_GB.js index dffe7c9aa20..1f76e082c18 100644 --- a/apps/federatedfilesharing/l10n/en_GB.js +++ b/apps/federatedfilesharing/l10n/en_GB.js @@ -33,7 +33,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Share with me through my #Nextcloud Federated Cloud ID", "Sharing" : "Sharing", "Federated file sharing" : "Federated file sharing", - "Provide federated file sharing across servers" : "Provide federated file sharing across servers", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentation", "Adjust how people can share between servers." : "Adjust how people can share between servers.", diff --git a/apps/federatedfilesharing/l10n/en_GB.json b/apps/federatedfilesharing/l10n/en_GB.json index 552b8c33711..1471472e031 100644 --- a/apps/federatedfilesharing/l10n/en_GB.json +++ b/apps/federatedfilesharing/l10n/en_GB.json @@ -31,7 +31,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Share with me through my #Nextcloud Federated Cloud ID", "Sharing" : "Sharing", "Federated file sharing" : "Federated file sharing", - "Provide federated file sharing across servers" : "Provide federated file sharing across servers", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentation", "Adjust how people can share between servers." : "Adjust how people can share between servers.", diff --git a/apps/federatedfilesharing/l10n/es.js b/apps/federatedfilesharing/l10n/es.js index a16803e9e3f..83ef2ab024e 100644 --- a/apps/federatedfilesharing/l10n/es.js +++ b/apps/federatedfilesharing/l10n/es.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Compartirlo conmigo a través de mi ID de Nube Federada #Nextcloud", "Sharing" : "Compartir", "Federated file sharing" : "Compartir federado", - "Provide federated file sharing across servers" : "Provee compartición federada de archivos entre servidores", "Federated Cloud Sharing" : "Compartido en Cloud Federado", "Open documentation" : "Documentación abierta", "Adjust how people can share between servers." : "Ajusta cómo la gente puede compartir entre servidores.", diff --git a/apps/federatedfilesharing/l10n/es.json b/apps/federatedfilesharing/l10n/es.json index ce8067107f4..567e490d601 100644 --- a/apps/federatedfilesharing/l10n/es.json +++ b/apps/federatedfilesharing/l10n/es.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Compartirlo conmigo a través de mi ID de Nube Federada #Nextcloud", "Sharing" : "Compartir", "Federated file sharing" : "Compartir federado", - "Provide federated file sharing across servers" : "Provee compartición federada de archivos entre servidores", "Federated Cloud Sharing" : "Compartido en Cloud Federado", "Open documentation" : "Documentación abierta", "Adjust how people can share between servers." : "Ajusta cómo la gente puede compartir entre servidores.", diff --git a/apps/federatedfilesharing/l10n/es_MX.js b/apps/federatedfilesharing/l10n/es_MX.js index 9aa8097c272..911ea1914bb 100644 --- a/apps/federatedfilesharing/l10n/es_MX.js +++ b/apps/federatedfilesharing/l10n/es_MX.js @@ -33,7 +33,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Compartir conmigo a través de mi ID de Nube Federada #Nextcloud", "Sharing" : "Compartiendo", "Federated file sharing" : "Compartir elementos", - "Provide federated file sharing across servers" : "Provee el compartir archivos federados entre servidores", "Federated Cloud Sharing" : "Compartiendo en la Nube Federada", "Open documentation" : "Abrir documentación", "Adjust how people can share between servers." : "Ajustar cómo las personas pueden compartir entre servidores. ", diff --git a/apps/federatedfilesharing/l10n/es_MX.json b/apps/federatedfilesharing/l10n/es_MX.json index 4cd9eea5950..f73ed38e39d 100644 --- a/apps/federatedfilesharing/l10n/es_MX.json +++ b/apps/federatedfilesharing/l10n/es_MX.json @@ -31,7 +31,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Compartir conmigo a través de mi ID de Nube Federada #Nextcloud", "Sharing" : "Compartiendo", "Federated file sharing" : "Compartir elementos", - "Provide federated file sharing across servers" : "Provee el compartir archivos federados entre servidores", "Federated Cloud Sharing" : "Compartiendo en la Nube Federada", "Open documentation" : "Abrir documentación", "Adjust how people can share between servers." : "Ajustar cómo las personas pueden compartir entre servidores. ", diff --git a/apps/federatedfilesharing/l10n/fr.js b/apps/federatedfilesharing/l10n/fr.js index 276558d16b4..8f0b39030ba 100644 --- a/apps/federatedfilesharing/l10n/fr.js +++ b/apps/federatedfilesharing/l10n/fr.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Partagez avec moi grâce à mon identifiant de Cloud Fédéré #Nextcloud", "Sharing" : "Partage", "Federated file sharing" : "Partage de fichiers fédéré", - "Provide federated file sharing across servers" : "Fournir un partage de fichiers fédéré entre plusieurs serveurs", "Federated Cloud Sharing" : "Partage Cloud Fédéré", "Open documentation" : "Voir la documentation", "Adjust how people can share between servers." : "Réglez comment les personnes peuvent partager entre les serveurs.", diff --git a/apps/federatedfilesharing/l10n/fr.json b/apps/federatedfilesharing/l10n/fr.json index 4d125707d77..cf5fe7c5500 100644 --- a/apps/federatedfilesharing/l10n/fr.json +++ b/apps/federatedfilesharing/l10n/fr.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Partagez avec moi grâce à mon identifiant de Cloud Fédéré #Nextcloud", "Sharing" : "Partage", "Federated file sharing" : "Partage de fichiers fédéré", - "Provide federated file sharing across servers" : "Fournir un partage de fichiers fédéré entre plusieurs serveurs", "Federated Cloud Sharing" : "Partage Cloud Fédéré", "Open documentation" : "Voir la documentation", "Adjust how people can share between servers." : "Réglez comment les personnes peuvent partager entre les serveurs.", diff --git a/apps/federatedfilesharing/l10n/is.js b/apps/federatedfilesharing/l10n/is.js index 2cce749fff5..f79f06efbd3 100644 --- a/apps/federatedfilesharing/l10n/is.js +++ b/apps/federatedfilesharing/l10n/is.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #Nextcloud Federated Cloud ID", "Sharing" : "Deiling", "Federated file sharing" : "Deiling skráa milli þjóna (skýjasambandssameign)", - "Provide federated file sharing across servers" : "Sér um deilingu skráa milli skýjaþjóna (skýjasambandssameign)", "Federated Cloud Sharing" : "Deiling með skýjasambandi", "Open documentation" : "Opna hjálparskjöl", "Adjust how people can share between servers." : "Stilltu hvernig fólk getur deilt á milli þjóna.", diff --git a/apps/federatedfilesharing/l10n/is.json b/apps/federatedfilesharing/l10n/is.json index 457be9c38bf..2f1d7c49c9e 100644 --- a/apps/federatedfilesharing/l10n/is.json +++ b/apps/federatedfilesharing/l10n/is.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #Nextcloud Federated Cloud ID", "Sharing" : "Deiling", "Federated file sharing" : "Deiling skráa milli þjóna (skýjasambandssameign)", - "Provide federated file sharing across servers" : "Sér um deilingu skráa milli skýjaþjóna (skýjasambandssameign)", "Federated Cloud Sharing" : "Deiling með skýjasambandi", "Open documentation" : "Opna hjálparskjöl", "Adjust how people can share between servers." : "Stilltu hvernig fólk getur deilt á milli þjóna.", diff --git a/apps/federatedfilesharing/l10n/nl.js b/apps/federatedfilesharing/l10n/nl.js index 802be9a3504..9bf56a641e1 100644 --- a/apps/federatedfilesharing/l10n/nl.js +++ b/apps/federatedfilesharing/l10n/nl.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Deel met mij via mijn #Nextcloud gefedereerde Cloud ID", "Sharing" : "Delen", "Federated file sharing" : "Gefedereerd delen", - "Provide federated file sharing across servers" : "Maak gefedereerd bestanden delen mogelijk over servers heen.", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentatie", "Adjust how people can share between servers." : "Aanpassen hoe mensen tussen servers kunnen delen.", diff --git a/apps/federatedfilesharing/l10n/nl.json b/apps/federatedfilesharing/l10n/nl.json index 293c1ec9567..a630df0d422 100644 --- a/apps/federatedfilesharing/l10n/nl.json +++ b/apps/federatedfilesharing/l10n/nl.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Deel met mij via mijn #Nextcloud gefedereerde Cloud ID", "Sharing" : "Delen", "Federated file sharing" : "Gefedereerd delen", - "Provide federated file sharing across servers" : "Maak gefedereerd bestanden delen mogelijk over servers heen.", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentatie", "Adjust how people can share between servers." : "Aanpassen hoe mensen tussen servers kunnen delen.", diff --git a/apps/federatedfilesharing/l10n/pt_BR.js b/apps/federatedfilesharing/l10n/pt_BR.js index d9013dd4fc5..6c1b0cd8c4b 100644 --- a/apps/federatedfilesharing/l10n/pt_BR.js +++ b/apps/federatedfilesharing/l10n/pt_BR.js @@ -34,7 +34,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Compartilhe comigo através do meu ID de Nuvem Federada #Nextcloud", "Sharing" : "Compartilhar", "Federated file sharing" : "Compartilhamento federado de arquivos", - "Provide federated file sharing across servers" : "Fornecer compartilhamento de arquivos federado entre servidores", + "Provide federated file sharing across servers" : "Fornecer compartilhamento federado entre servidores", "Federated Cloud Sharing" : "Compartilhamento de Nuvem Federada", "Open documentation" : "Abrir documentação", "Adjust how people can share between servers." : "Ajustar como as pessoas podem compartilhar entre servidores.", diff --git a/apps/federatedfilesharing/l10n/pt_BR.json b/apps/federatedfilesharing/l10n/pt_BR.json index fc1fed37987..f14ec7048e8 100644 --- a/apps/federatedfilesharing/l10n/pt_BR.json +++ b/apps/federatedfilesharing/l10n/pt_BR.json @@ -32,7 +32,7 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Compartilhe comigo através do meu ID de Nuvem Federada #Nextcloud", "Sharing" : "Compartilhar", "Federated file sharing" : "Compartilhamento federado de arquivos", - "Provide federated file sharing across servers" : "Fornecer compartilhamento de arquivos federado entre servidores", + "Provide federated file sharing across servers" : "Fornecer compartilhamento federado entre servidores", "Federated Cloud Sharing" : "Compartilhamento de Nuvem Federada", "Open documentation" : "Abrir documentação", "Adjust how people can share between servers." : "Ajustar como as pessoas podem compartilhar entre servidores.", diff --git a/apps/federatedfilesharing/l10n/ru.js b/apps/federatedfilesharing/l10n/ru.js index 60b76223d4e..2bd4a4f334d 100644 --- a/apps/federatedfilesharing/l10n/ru.js +++ b/apps/federatedfilesharing/l10n/ru.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Поделитесь со мной через мой #Nextcloud ID в федерации облачных хранилищ", "Sharing" : "Общий доступ", "Federated file sharing" : "Федеративный обмен файлами", - "Provide federated file sharing across servers" : "Предоставление совместного использования файлов между серверами", "Federated Cloud Sharing" : "Федерация облачных хранилищ", "Open documentation" : "Открыть документацию", "Adjust how people can share between servers." : "Настройте общий доступ между серверами.", diff --git a/apps/federatedfilesharing/l10n/ru.json b/apps/federatedfilesharing/l10n/ru.json index 4639a220e9a..e5a66764f2c 100644 --- a/apps/federatedfilesharing/l10n/ru.json +++ b/apps/federatedfilesharing/l10n/ru.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Поделитесь со мной через мой #Nextcloud ID в федерации облачных хранилищ", "Sharing" : "Общий доступ", "Federated file sharing" : "Федеративный обмен файлами", - "Provide federated file sharing across servers" : "Предоставление совместного использования файлов между серверами", "Federated Cloud Sharing" : "Федерация облачных хранилищ", "Open documentation" : "Открыть документацию", "Adjust how people can share between servers." : "Настройте общий доступ между серверами.", diff --git a/apps/federatedfilesharing/l10n/sk.js b/apps/federatedfilesharing/l10n/sk.js index 5ea954e8bfe..e88e192aef9 100644 --- a/apps/federatedfilesharing/l10n/sk.js +++ b/apps/federatedfilesharing/l10n/sk.js @@ -33,7 +33,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Sprístupnite mi obsah prostredníctvom môjho #Nextcloud Federated Cloud ID", "Sharing" : "Sprístupnenie", "Federated file sharing" : "Združené sprístupňovanie súborov", - "Provide federated file sharing across servers" : "Poskytnúť združené sprístupňovanie súborov naprieč servermi", "Federated Cloud Sharing" : "Sprístupnenie prostredníctvom Federated Cloud", "Open documentation" : "Otvoriť dokumentáciu", "Adjust how people can share between servers." : "Nastavte ako môžu ľudia medzi sebou zdieľať servery.", diff --git a/apps/federatedfilesharing/l10n/sk.json b/apps/federatedfilesharing/l10n/sk.json index 802282ad4c4..63ee16e495a 100644 --- a/apps/federatedfilesharing/l10n/sk.json +++ b/apps/federatedfilesharing/l10n/sk.json @@ -31,7 +31,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Sprístupnite mi obsah prostredníctvom môjho #Nextcloud Federated Cloud ID", "Sharing" : "Sprístupnenie", "Federated file sharing" : "Združené sprístupňovanie súborov", - "Provide federated file sharing across servers" : "Poskytnúť združené sprístupňovanie súborov naprieč servermi", "Federated Cloud Sharing" : "Sprístupnenie prostredníctvom Federated Cloud", "Open documentation" : "Otvoriť dokumentáciu", "Adjust how people can share between servers." : "Nastavte ako môžu ľudia medzi sebou zdieľať servery.", diff --git a/apps/federatedfilesharing/l10n/sr.js b/apps/federatedfilesharing/l10n/sr.js index 637bb8e567c..7137d366ef9 100644 --- a/apps/federatedfilesharing/l10n/sr.js +++ b/apps/federatedfilesharing/l10n/sr.js @@ -34,7 +34,6 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID" : "Дели са мном преко мог #Некстклауд Здруженог облака", "Sharing" : "Дељење", "Federated file sharing" : "Здружено дељење фајлова", - "Provide federated file sharing across servers" : "Пружа здружено дељење фајлова између сервера", "Federated Cloud Sharing" : "Здружено дељење у облаку", "Open documentation" : "Отвори документацију", "Adjust how people can share between servers." : "Подеси како људи деле фајлове између сервера.", diff --git a/apps/federatedfilesharing/l10n/sr.json b/apps/federatedfilesharing/l10n/sr.json index 8aeeb447346..e3ea3ba9c76 100644 --- a/apps/federatedfilesharing/l10n/sr.json +++ b/apps/federatedfilesharing/l10n/sr.json @@ -32,7 +32,6 @@ "Share with me through my #Nextcloud Federated Cloud ID" : "Дели са мном преко мог #Некстклауд Здруженог облака", "Sharing" : "Дељење", "Federated file sharing" : "Здружено дељење фајлова", - "Provide federated file sharing across servers" : "Пружа здружено дељење фајлова између сервера", "Federated Cloud Sharing" : "Здружено дељење у облаку", "Open documentation" : "Отвори документацију", "Adjust how people can share between servers." : "Подеси како људи деле фајлове између сервера.", diff --git a/apps/federation/l10n/cs.js b/apps/federation/l10n/cs.js index 18d67820a00..3a43d72a40a 100644 --- a/apps/federation/l10n/cs.js +++ b/apps/federation/l10n/cs.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Nenalezen žádný server ke sdružování", "Could not add server" : "Nepodařilo se přidat server", "Federation" : "Federování", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federace vám umožňuje spojit se s ostatními důvěryhodnými servery a vyměňovat si adresář uživatelů.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Sdružování vám umožňuje se připojit k dalším důvěryhodným serverům za účelem výměny uživatelských adresářů. Používá se to např. pro automatické doplňování uživatelů při sdruženém sdílení.", "Trusted servers" : "Důvěryhodné servery", "Add server automatically once a federated share was created successfully" : "Přidat server automaticky jakmile je úspěšně vytvořeno sdružené sdílení", diff --git a/apps/federation/l10n/cs.json b/apps/federation/l10n/cs.json index b8ca97263a7..8d3d359154e 100644 --- a/apps/federation/l10n/cs.json +++ b/apps/federation/l10n/cs.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Nenalezen žádný server ke sdružování", "Could not add server" : "Nepodařilo se přidat server", "Federation" : "Federování", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federace vám umožňuje spojit se s ostatními důvěryhodnými servery a vyměňovat si adresář uživatelů.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Sdružování vám umožňuje se připojit k dalším důvěryhodným serverům za účelem výměny uživatelských adresářů. Používá se to např. pro automatické doplňování uživatelů při sdruženém sdílení.", "Trusted servers" : "Důvěryhodné servery", "Add server automatically once a federated share was created successfully" : "Přidat server automaticky jakmile je úspěšně vytvořeno sdružené sdílení", diff --git a/apps/federation/l10n/en_GB.js b/apps/federation/l10n/en_GB.js index 1a8658a678e..d7973332d25 100644 --- a/apps/federation/l10n/en_GB.js +++ b/apps/federation/l10n/en_GB.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "No server to federate with found", "Could not add server" : "Could not add server", "Federation" : "Federation", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federation allows you to connect with other trusted servers to exchange the user directory.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation allows you to connect with other trusted servers to exchange the user directory. For example: to auto-complete external users for federated sharing.", "Trusted servers" : "Trusted servers", "Add server automatically once a federated share was created successfully" : "Automatically add server once a federated share is successfully created", diff --git a/apps/federation/l10n/en_GB.json b/apps/federation/l10n/en_GB.json index d201b941f13..aee71d2a2d5 100644 --- a/apps/federation/l10n/en_GB.json +++ b/apps/federation/l10n/en_GB.json @@ -4,7 +4,6 @@ "No server to federate with found" : "No server to federate with found", "Could not add server" : "Could not add server", "Federation" : "Federation", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federation allows you to connect with other trusted servers to exchange the user directory.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation allows you to connect with other trusted servers to exchange the user directory. For example: to auto-complete external users for federated sharing.", "Trusted servers" : "Trusted servers", "Add server automatically once a federated share was created successfully" : "Automatically add server once a federated share is successfully created", diff --git a/apps/federation/l10n/es.js b/apps/federation/l10n/es.js index 109c010a6e8..ade71852fad 100644 --- a/apps/federation/l10n/es.js +++ b/apps/federation/l10n/es.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "No se ha encontrado ningún servidor con el que federarse.", "Could not add server" : "No se ha podido añadir el servidor", "Federation" : "Federación", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federación te permite conectar con otros servidores de confianza para intercambiar el directorio de usuarios.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación permite conectarte con otros servidores de confianza para intercambiar directorios. Por ejemplo, esto se usará para autocompletar la selección de usuarios externos al compartir en federación.", "Trusted servers" : "Servidores de confianza", "Add server automatically once a federated share was created successfully" : "Añadir el servidor automáticamente una vez que un compartido federado se haya creado exitosamente", diff --git a/apps/federation/l10n/es.json b/apps/federation/l10n/es.json index 347d8922f9b..dc3ab54c0e8 100644 --- a/apps/federation/l10n/es.json +++ b/apps/federation/l10n/es.json @@ -4,7 +4,6 @@ "No server to federate with found" : "No se ha encontrado ningún servidor con el que federarse.", "Could not add server" : "No se ha podido añadir el servidor", "Federation" : "Federación", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federación te permite conectar con otros servidores de confianza para intercambiar el directorio de usuarios.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación permite conectarte con otros servidores de confianza para intercambiar directorios. Por ejemplo, esto se usará para autocompletar la selección de usuarios externos al compartir en federación.", "Trusted servers" : "Servidores de confianza", "Add server automatically once a federated share was created successfully" : "Añadir el servidor automáticamente una vez que un compartido federado se haya creado exitosamente", diff --git a/apps/federation/l10n/es_MX.js b/apps/federation/l10n/es_MX.js index 3b46b8bb2dd..97516618355 100644 --- a/apps/federation/l10n/es_MX.js +++ b/apps/federation/l10n/es_MX.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "No se encontraron servidores para integrar a la federación", "Could not add server" : "No fue posible agregar el servidor", "Federation" : "Federación", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "La Federación te permite conectarte con otros servidores de confianza para intercambiar el directorio de usuarios.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación te permite conectarte con otros servidores de confianza para intercambiar el directorio de usuarios. Por ejemplo, esto se usará para auto-completar usuarios externos en el recurso compartido federado.", "Trusted servers" : "Servidores de confianza", "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", diff --git a/apps/federation/l10n/es_MX.json b/apps/federation/l10n/es_MX.json index f42fb9cda4a..0a62a6863c5 100644 --- a/apps/federation/l10n/es_MX.json +++ b/apps/federation/l10n/es_MX.json @@ -4,7 +4,6 @@ "No server to federate with found" : "No se encontraron servidores para integrar a la federación", "Could not add server" : "No fue posible agregar el servidor", "Federation" : "Federación", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "La Federación te permite conectarte con otros servidores de confianza para intercambiar el directorio de usuarios.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación te permite conectarte con otros servidores de confianza para intercambiar el directorio de usuarios. Por ejemplo, esto se usará para auto-completar usuarios externos en el recurso compartido federado.", "Trusted servers" : "Servidores de confianza", "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", diff --git a/apps/federation/l10n/fi.js b/apps/federation/l10n/fi.js index 35603ee15c7..33c8e805764 100644 --- a/apps/federation/l10n/fi.js +++ b/apps/federation/l10n/fi.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Palvelinta, johon liittyä, ei löytynyt", "Could not add server" : "Palvelimen lisääminen ei onnistunut", "Federation" : "Federaatio", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federaatio mahdollistaa yhdistämisen muihin luotettuihin palvelimiin ja siten käyttäjähakemiston tietojen välittämisen.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federointi sallii sinun liittyä toisten luotettujen palvelimien käyttäjäluetteloihin. Sitä käytetään esimerkiksi ulkoisten käyttäjänimien automaattiseen täydentämiseen.", "Trusted servers" : "Luotetut palvelimet", "Add server automatically once a federated share was created successfully" : "Lisää palvelin automaattisesti, kun federoitu jako on luotu onnistuneesti", diff --git a/apps/federation/l10n/fi.json b/apps/federation/l10n/fi.json index ab220840a2d..2fc6a0d871b 100644 --- a/apps/federation/l10n/fi.json +++ b/apps/federation/l10n/fi.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Palvelinta, johon liittyä, ei löytynyt", "Could not add server" : "Palvelimen lisääminen ei onnistunut", "Federation" : "Federaatio", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federaatio mahdollistaa yhdistämisen muihin luotettuihin palvelimiin ja siten käyttäjähakemiston tietojen välittämisen.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federointi sallii sinun liittyä toisten luotettujen palvelimien käyttäjäluetteloihin. Sitä käytetään esimerkiksi ulkoisten käyttäjänimien automaattiseen täydentämiseen.", "Trusted servers" : "Luotetut palvelimet", "Add server automatically once a federated share was created successfully" : "Lisää palvelin automaattisesti, kun federoitu jako on luotu onnistuneesti", diff --git a/apps/federation/l10n/fr.js b/apps/federation/l10n/fr.js index 5d97f4545af..4f1c484e56a 100644 --- a/apps/federation/l10n/fr.js +++ b/apps/federation/l10n/fr.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Aucun serveur avec lequel fédérer n'a été trouvé", "Could not add server" : "Impossible d'ajouter le serveur", "Federation" : "Fédération", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Une fédération vous permet de vous connecter avec d'autres serveurs de confiance pour échanger la liste des utilisateurs.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Une fédération vous permet de vous connecter avec d'autres serveurs de confiance pour échanger la liste des utilisateurs. Par exemple, ce sera utilisé pour auto-compléter les utilisateurs externes lors du partage fédéré.", "Trusted servers" : "Serveurs de confiance", "Add server automatically once a federated share was created successfully" : "Ajouter un serveur automatiquement une fois que le partage a été créé avec succès", diff --git a/apps/federation/l10n/fr.json b/apps/federation/l10n/fr.json index 5f93d760f14..7957227e572 100644 --- a/apps/federation/l10n/fr.json +++ b/apps/federation/l10n/fr.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Aucun serveur avec lequel fédérer n'a été trouvé", "Could not add server" : "Impossible d'ajouter le serveur", "Federation" : "Fédération", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Une fédération vous permet de vous connecter avec d'autres serveurs de confiance pour échanger la liste des utilisateurs.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Une fédération vous permet de vous connecter avec d'autres serveurs de confiance pour échanger la liste des utilisateurs. Par exemple, ce sera utilisé pour auto-compléter les utilisateurs externes lors du partage fédéré.", "Trusted servers" : "Serveurs de confiance", "Add server automatically once a federated share was created successfully" : "Ajouter un serveur automatiquement une fois que le partage a été créé avec succès", diff --git a/apps/federation/l10n/is.js b/apps/federation/l10n/is.js index 005ad618e70..6a52001ec6a 100644 --- a/apps/federation/l10n/is.js +++ b/apps/federation/l10n/is.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Enginn þjónn sem hæfur er til skýjasambands fannst", "Could not add server" : "Gat ekki bætt við þjóni", "Federation" : "Deilt milli þjóna", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Þjónasamband (federation) gerir þér kleift að tengjast öðrum treystum skýjum til að skiptast á notendaskrám.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Þjónasamband (federation) gerir þér kleift að tengjast öðrum treystum skýjum til að skiptast á notendaskrám. Þetta er til dæmis notað til að sjálfklára nöfn ytri notenda við deilingu sambandssameigna.", "Trusted servers" : "Treystir þjónar", "Add server automatically once a federated share was created successfully" : "Bæta þjóni við sjálfkrafa, hafi tekist að búa til sambandssameign", diff --git a/apps/federation/l10n/is.json b/apps/federation/l10n/is.json index 7489881baf3..ebdc0efbe8f 100644 --- a/apps/federation/l10n/is.json +++ b/apps/federation/l10n/is.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Enginn þjónn sem hæfur er til skýjasambands fannst", "Could not add server" : "Gat ekki bætt við þjóni", "Federation" : "Deilt milli þjóna", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Þjónasamband (federation) gerir þér kleift að tengjast öðrum treystum skýjum til að skiptast á notendaskrám.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Þjónasamband (federation) gerir þér kleift að tengjast öðrum treystum skýjum til að skiptast á notendaskrám. Þetta er til dæmis notað til að sjálfklára nöfn ytri notenda við deilingu sambandssameigna.", "Trusted servers" : "Treystir þjónar", "Add server automatically once a federated share was created successfully" : "Bæta þjóni við sjálfkrafa, hafi tekist að búa til sambandssameign", diff --git a/apps/federation/l10n/lt_LT.js b/apps/federation/l10n/lt_LT.js index 74937abab61..ca10401b746 100644 --- a/apps/federation/l10n/lt_LT.js +++ b/apps/federation/l10n/lt_LT.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Nerasta tinkama saugykla", "Could not add server" : "Nepavyko prijungti saugyklos", "Federation" : "Išorinė saugykla", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Išorinės saugyklos leidžia naudotojams dalintis duomenimis ir adresatais tarpusavyje", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Išorinės saugyklos leidžia naudotojams dalintis duomenimis ir adresatais tarpusavyje", "Trusted servers" : "Saugyklos", "Add server automatically once a federated share was created successfully" : "Prijungti automatiškai užmezgus ryšį", diff --git a/apps/federation/l10n/lt_LT.json b/apps/federation/l10n/lt_LT.json index 27b804d9c4e..4ef845e13a6 100644 --- a/apps/federation/l10n/lt_LT.json +++ b/apps/federation/l10n/lt_LT.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Nerasta tinkama saugykla", "Could not add server" : "Nepavyko prijungti saugyklos", "Federation" : "Išorinė saugykla", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Išorinės saugyklos leidžia naudotojams dalintis duomenimis ir adresatais tarpusavyje", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Išorinės saugyklos leidžia naudotojams dalintis duomenimis ir adresatais tarpusavyje", "Trusted servers" : "Saugyklos", "Add server automatically once a federated share was created successfully" : "Prijungti automatiškai užmezgus ryšį", diff --git a/apps/federation/l10n/lv.js b/apps/federation/l10n/lv.js index 31454251b09..68202ad0b49 100644 --- a/apps/federation/l10n/lv.js +++ b/apps/federation/l10n/lv.js @@ -5,6 +5,7 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Serveris jau ir uzticamo serveru sarakstā .", "No server to federate with found" : "Nav atrasts neviens serveris", "Could not add server" : "Nevarēja pievienot serveri", + "Federation" : "Federācija", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federācija ļauj savienot ar citiem uzticamiem serveriem ar Exchange lietotāja direktoriju. Piemēram, tas tiks izmantots, lai automātiski pieslēgtu ārējiem lietotājiem integrēto koplietošanu.", "Trusted servers" : "Uzticami serveri", "Add server automatically once a federated share was created successfully" : "Automātiski pievienots serveris federācijas koplietojumam, veiksmīgi", diff --git a/apps/federation/l10n/lv.json b/apps/federation/l10n/lv.json index e29123d8af1..b48c6cfeb6e 100644 --- a/apps/federation/l10n/lv.json +++ b/apps/federation/l10n/lv.json @@ -3,6 +3,7 @@ "Server is already in the list of trusted servers." : "Serveris jau ir uzticamo serveru sarakstā .", "No server to federate with found" : "Nav atrasts neviens serveris", "Could not add server" : "Nevarēja pievienot serveri", + "Federation" : "Federācija", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federācija ļauj savienot ar citiem uzticamiem serveriem ar Exchange lietotāja direktoriju. Piemēram, tas tiks izmantots, lai automātiski pieslēgtu ārējiem lietotājiem integrēto koplietošanu.", "Trusted servers" : "Uzticami serveri", "Add server automatically once a federated share was created successfully" : "Automātiski pievienots serveris federācijas koplietojumam, veiksmīgi", diff --git a/apps/federation/l10n/nl.js b/apps/federation/l10n/nl.js index ef290e928ee..ccf20071674 100644 --- a/apps/federation/l10n/nl.js +++ b/apps/federation/l10n/nl.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Geen server gevonden om mee te federeren", "Could not add server" : "Kon server niet toevoegen", "Federation" : "Federatie", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federatie maakt het mogelijk om te verbinden met andere vertrouwde servers om de gebuikersadministratie te delen.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federatie maakt het mogelijk om te verbinden met vertrouwde servers en de gebuikersadministratie te delen. Zo kun je automatisch externe gebruikers toevoegen voor federatief delen.", "Trusted servers" : "Vertrouwde servers", "Add server automatically once a federated share was created successfully" : "Voeg server automatisch toe zodra een gefedereerde share succesvol gecreëerd is", diff --git a/apps/federation/l10n/nl.json b/apps/federation/l10n/nl.json index 98d15e51213..cb697c41ce9 100644 --- a/apps/federation/l10n/nl.json +++ b/apps/federation/l10n/nl.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Geen server gevonden om mee te federeren", "Could not add server" : "Kon server niet toevoegen", "Federation" : "Federatie", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Federatie maakt het mogelijk om te verbinden met andere vertrouwde servers om de gebuikersadministratie te delen.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federatie maakt het mogelijk om te verbinden met vertrouwde servers en de gebuikersadministratie te delen. Zo kun je automatisch externe gebruikers toevoegen voor federatief delen.", "Trusted servers" : "Vertrouwde servers", "Add server automatically once a federated share was created successfully" : "Voeg server automatisch toe zodra een gefedereerde share succesvol gecreëerd is", diff --git a/apps/federation/l10n/pt_BR.js b/apps/federation/l10n/pt_BR.js index 9797dfcb855..7e19d521403 100644 --- a/apps/federation/l10n/pt_BR.js +++ b/apps/federation/l10n/pt_BR.js @@ -6,7 +6,7 @@ OC.L10N.register( "No server to federate with found" : "Nenhum servidor encontrado para federar", "Could not add server" : "Não foi possível adicionar servidor", "Federation" : "Federação", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "A Federação permite que você se conecte a outros servidores confiáveis.", + "Federation allows you to connect with other trusted servers to exchange the user directory." : "A federação permite que você se conecte a outros servidores confiáveis para trocar o diretório do usuário.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federação permite que você conecte com outros servidores confiáveis para trocar o diretório do usuário. Por exemplo, este atributo será usado para completar automaticamente usuários externos para compartilhamento federado.", "Trusted servers" : "Servidores confiáveis", "Add server automatically once a federated share was created successfully" : "Adicionar servidor automaticamente uma vez que um compartilhamento federado foi criado com êxito", diff --git a/apps/federation/l10n/pt_BR.json b/apps/federation/l10n/pt_BR.json index 6ef7113cc13..d551bc3e60d 100644 --- a/apps/federation/l10n/pt_BR.json +++ b/apps/federation/l10n/pt_BR.json @@ -4,7 +4,7 @@ "No server to federate with found" : "Nenhum servidor encontrado para federar", "Could not add server" : "Não foi possível adicionar servidor", "Federation" : "Federação", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "A Federação permite que você se conecte a outros servidores confiáveis.", + "Federation allows you to connect with other trusted servers to exchange the user directory." : "A federação permite que você se conecte a outros servidores confiáveis para trocar o diretório do usuário.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federação permite que você conecte com outros servidores confiáveis para trocar o diretório do usuário. Por exemplo, este atributo será usado para completar automaticamente usuários externos para compartilhamento federado.", "Trusted servers" : "Servidores confiáveis", "Add server automatically once a federated share was created successfully" : "Adicionar servidor automaticamente uma vez que um compartilhamento federado foi criado com êxito", diff --git a/apps/federation/l10n/ru.js b/apps/federation/l10n/ru.js index 15e60cd0b45..09eb4a7adf6 100644 --- a/apps/federation/l10n/ru.js +++ b/apps/federation/l10n/ru.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Сервер для объединения не найден", "Could not add server" : "Не удалось добавить сервер", "Federation" : "Федерация", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Федерация позволяет вам подключаться к другим доверенным серверам для обмена каталогами пользователей.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Федерация серверов позволит Вам подключиться к другим доверенным серверам для обмена каталогами пользователей. Это будет использовано, например, для автодополнения имён пользователей при открытии федеративного общего доступа.", "Trusted servers" : "Доверенные серверы", "Add server automatically once a federated share was created successfully" : "Добавить сервер автоматически после успешного создания федеративного ресурса общего доступа", diff --git a/apps/federation/l10n/ru.json b/apps/federation/l10n/ru.json index a849b1f864c..b505b6f8c7d 100644 --- a/apps/federation/l10n/ru.json +++ b/apps/federation/l10n/ru.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Сервер для объединения не найден", "Could not add server" : "Не удалось добавить сервер", "Federation" : "Федерация", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Федерация позволяет вам подключаться к другим доверенным серверам для обмена каталогами пользователей.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Федерация серверов позволит Вам подключиться к другим доверенным серверам для обмена каталогами пользователей. Это будет использовано, например, для автодополнения имён пользователей при открытии федеративного общего доступа.", "Trusted servers" : "Доверенные серверы", "Add server automatically once a federated share was created successfully" : "Добавить сервер автоматически после успешного создания федеративного ресурса общего доступа", diff --git a/apps/federation/l10n/sk.js b/apps/federation/l10n/sk.js index 88af7ca184a..54eb05bcf3c 100644 --- a/apps/federation/l10n/sk.js +++ b/apps/federation/l10n/sk.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Server pre združenie sa nenašiel", "Could not add server" : "Nebolo možné pridať server", "Federation" : "Združovanie", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Združovanie vám umožňuje sa pripojiť k iným dôveryhodným serverom za účelom výmeny adresára používateľov.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Združovanie vám umožňuje sa pripojiť k iným dôveryhodným serverom za účelom výmeny adresára používateľov. Používa sa to napr. pre automatické doplňovanie používateľov pri združenom zdieľaní.", "Trusted servers" : "Dôveryhodné servery", "Add server automatically once a federated share was created successfully" : "Pridať server automaticky akonáhle je úspešne vytvorené združené zdieľanie", diff --git a/apps/federation/l10n/sk.json b/apps/federation/l10n/sk.json index fd93c5bbc1f..ba60ae20665 100644 --- a/apps/federation/l10n/sk.json +++ b/apps/federation/l10n/sk.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Server pre združenie sa nenašiel", "Could not add server" : "Nebolo možné pridať server", "Federation" : "Združovanie", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Združovanie vám umožňuje sa pripojiť k iným dôveryhodným serverom za účelom výmeny adresára používateľov.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Združovanie vám umožňuje sa pripojiť k iným dôveryhodným serverom za účelom výmeny adresára používateľov. Používa sa to napr. pre automatické doplňovanie používateľov pri združenom zdieľaní.", "Trusted servers" : "Dôveryhodné servery", "Add server automatically once a federated share was created successfully" : "Pridať server automaticky akonáhle je úspešne vytvorené združené zdieľanie", diff --git a/apps/federation/l10n/sr.js b/apps/federation/l10n/sr.js index 4d3bf695848..0feea35298f 100644 --- a/apps/federation/l10n/sr.js +++ b/apps/federation/l10n/sr.js @@ -6,7 +6,6 @@ OC.L10N.register( "No server to federate with found" : "Није нађен сервер за здруживање", "Could not add server" : "Неуспело додавање сервера", "Federation" : "Здруживање", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Здруживање омогућава да се повежете са другим серверима од поверења и да размењујете корисничке директоријуме.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Здруживање омогућава да се повежете са другим серверима од поверења и да мењате корисничке директоријуме.", "Trusted servers" : "Сервери од поверења", "Add server automatically once a federated share was created successfully" : "Додај сервер аутоматски по успешном прављењу здруженог дељења", diff --git a/apps/federation/l10n/sr.json b/apps/federation/l10n/sr.json index 45207c0c61b..ffb64b96b39 100644 --- a/apps/federation/l10n/sr.json +++ b/apps/federation/l10n/sr.json @@ -4,7 +4,6 @@ "No server to federate with found" : "Није нађен сервер за здруживање", "Could not add server" : "Неуспело додавање сервера", "Federation" : "Здруживање", - "Federation allows you to connect with other trusted servers to exchange the user directory." : "Здруживање омогућава да се повежете са другим серверима од поверења и да размењујете корисничке директоријуме.", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Здруживање омогућава да се повежете са другим серверима од поверења и да мењате корисничке директоријуме.", "Trusted servers" : "Сервери од поверења", "Add server automatically once a federated share was created successfully" : "Додај сервер аутоматски по успешном прављењу здруженог дељења", diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 3623663ed6c..8ce8eddb0b0 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -558,7 +558,27 @@ } }); - this._renderMenuTrigger($tr, context); + function objectValues(obj) { + var res = []; + for (var i in obj) { + if (obj.hasOwnProperty(i)) { + res.push(obj[i]); + } + } + return res; + } + // polyfill + if (!Object.values) { + Object.values = objectValues; + } + + var menuActions = Object.values(this.actions.all).filter(function (action) { + return action.type !== OCA.Files.FileActions.TYPE_INLINE; + }); + // do not render the menu if nothing is in it + if (menuActions.length > 0) { + this._renderMenuTrigger($tr, context); + } if (triggerEvent){ fileList.$fileList.trigger(jQuery.Event("fileActionsReady", {fileList: fileList, $files: $tr})); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 8e7c60551a1..8fb8a021811 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1738,7 +1738,7 @@ } } - if (persist) { + if (persist && OC.getCurrentUser().uid) { $.post(OC.generateUrl('/apps/files/api/v1/sorting'), { mode: sort, direction: direction diff --git a/apps/files/l10n/cs.js b/apps/files/l10n/cs.js index 61ff9a3ed38..1da8dbb39c4 100644 --- a/apps/files/l10n/cs.js +++ b/apps/files/l10n/cs.js @@ -127,7 +127,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Soubor nebo adresář byl <strong>obnoven</strong>", "Unlimited" : "Neomezeně", "Upload (max. %s)" : "Nahrát (max. %s)", - "File Management" : "Správa souborů", "File handling" : "Zacházení se soubory", "Maximum upload size" : "Maximální velikost pro odesílání", "max. possible: " : "největší možná: ", diff --git a/apps/files/l10n/cs.json b/apps/files/l10n/cs.json index e38e4a26152..e08f12f6d08 100644 --- a/apps/files/l10n/cs.json +++ b/apps/files/l10n/cs.json @@ -125,7 +125,6 @@ "A file or folder has been <strong>restored</strong>" : "Soubor nebo adresář byl <strong>obnoven</strong>", "Unlimited" : "Neomezeně", "Upload (max. %s)" : "Nahrát (max. %s)", - "File Management" : "Správa souborů", "File handling" : "Zacházení se soubory", "Maximum upload size" : "Maximální velikost pro odesílání", "max. possible: " : "největší možná: ", diff --git a/apps/files/l10n/da.js b/apps/files/l10n/da.js index f12680aed2d..d62b6c2376b 100644 --- a/apps/files/l10n/da.js +++ b/apps/files/l10n/da.js @@ -126,7 +126,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "En fil eller mappe er blevet <strong>gendannet</strong>", "Unlimited" : "Ubegrænset", "Upload (max. %s)" : "Upload (max. %s)", - "File Management" : "Filhåndtering", "File handling" : "Filhåndtering", "Maximum upload size" : "Maksimal upload-størrelse", "max. possible: " : "max. mulige: ", diff --git a/apps/files/l10n/da.json b/apps/files/l10n/da.json index 3ac66179b41..01258636360 100644 --- a/apps/files/l10n/da.json +++ b/apps/files/l10n/da.json @@ -124,7 +124,6 @@ "A file or folder has been <strong>restored</strong>" : "En fil eller mappe er blevet <strong>gendannet</strong>", "Unlimited" : "Ubegrænset", "Upload (max. %s)" : "Upload (max. %s)", - "File Management" : "Filhåndtering", "File handling" : "Filhåndtering", "Maximum upload size" : "Maksimal upload-størrelse", "max. possible: " : "max. mulige: ", diff --git a/apps/files/l10n/en_GB.js b/apps/files/l10n/en_GB.js index 5f41f0c3571..6683613c371 100644 --- a/apps/files/l10n/en_GB.js +++ b/apps/files/l10n/en_GB.js @@ -126,7 +126,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "A file or folder has been <strong>restored</strong>", "Unlimited" : "Unlimited", "Upload (max. %s)" : "Upload (max. %s)", - "File Management" : "File Management", "File handling" : "File handling", "Maximum upload size" : "Maximum upload size", "max. possible: " : "max. possible: ", diff --git a/apps/files/l10n/en_GB.json b/apps/files/l10n/en_GB.json index e0f3c377b1a..d2a9b912410 100644 --- a/apps/files/l10n/en_GB.json +++ b/apps/files/l10n/en_GB.json @@ -124,7 +124,6 @@ "A file or folder has been <strong>restored</strong>" : "A file or folder has been <strong>restored</strong>", "Unlimited" : "Unlimited", "Upload (max. %s)" : "Upload (max. %s)", - "File Management" : "File Management", "File handling" : "File handling", "Maximum upload size" : "Maximum upload size", "max. possible: " : "max. possible: ", diff --git a/apps/files/l10n/es.js b/apps/files/l10n/es.js index 430341de265..55191cd61a3 100644 --- a/apps/files/l10n/es.js +++ b/apps/files/l10n/es.js @@ -11,7 +11,7 @@ OC.L10N.register( "Move or copy" : "Mover o copiar", "Download" : "Descargar", "Delete" : "Eliminar", - "Home" : "Particular", + "Home" : "Inicio", "Close" : "Cerrar", "Could not create folder \"{dir}\"" : "No se pudo crear la carpeta \"{dir}\"", "Upload cancelled." : "Subida cancelada.", @@ -22,13 +22,13 @@ OC.L10N.register( "Uploading …" : "Subiendo...", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", - "Uploading that item is not supported" : "Subir ese objeto no está soportado", - "Target folder does not exist any more" : "La carpeta destino yano existe", + "Uploading that item is not supported" : "Subir este archivo no es compatible", + "Target folder does not exist any more" : "La carpeta destino ya no existe", "Error when assembling chunks, status code {status}" : "Error al reunir las partes, código de estado {status}", "Actions" : "Acciones", "Rename" : "Renombrar", "Copy" : "Copiar", - "Target folder" : "Directorio destino", + "Target folder" : "Directorio de destino", "Disconnect storage" : "Desconectar almacenamiento", "Unshare" : "Dejar de compartir", "Could not load info for file \"{file}\"" : "No se ha podido cargar información para el archivo \"{file}\"", @@ -38,16 +38,16 @@ OC.L10N.register( "Pending" : "Pendiente", "Unable to determine date" : "No se ha podido determinar la fecha", "This operation is forbidden" : "Esta operación está prohibida", - "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contáctese con el administrador", - "Could not move \"{file}\", target exists" : "No se pudo mover \"{file}\", destino ya existe", + "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contacte con el administrador", + "Could not move \"{file}\", target exists" : "No se pudo mover \"{file}\", ya existe", "Could not move \"{file}\"" : "No se pudo mover \"{file}\"", "Could not copy \"{file}\", target exists" : "No se ha podido copiar \"{file}\", ya existe el destino", "Could not copy \"{file}\"" : "No se ha podido copiar \"{file}\"", "Copied {origin} inside {destination}" : "Se ha copiado {origin} dentro de {destination}", - "Copied {origin} and {nbfiles} other files inside {destination}" : "Se han copiado {origini} y {nbfiles} otros archivos dentro de {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "Se han copiado {origin} y {nbfiles} otros archivos dentro de {destination}", "{newName} already exists" : "{newName} ya existe", "Could not rename \"{fileName}\", it does not exist any more" : "No se pudo renombrar \"{fileName}\", ya no existe", - "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "El nombre \"{targetName}\" ya se utiliza en la carpeta \"{dir}\". Por favor elija un nombre diferente.", + "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "El nombre \"{targetName}\" ya está en uso en la carpeta \"{dir}\". Por favor elija un nombre diferente.", "Could not rename \"{fileName}\"" : "No se pudo renombrar \"{fileName}\"", "Could not create file \"{file}\"" : "No se pudo crear archivo \"{file}\"", "Could not create file \"{file}\" because it already exists" : "No se pudo crear archivo \"{file}\" porque ya existe", @@ -68,12 +68,12 @@ OC.L10N.register( "{used} used" : "{used} usados", "\"{name}\" is an invalid file name." : "\"{name}\" es un nombre de archivo inválido.", "File name cannot be empty." : "El nombre de archivo no puede estar vacío.", - "\"/\" is not allowed inside a file name." : "\"/\" no se permite dentro de un nombre de archivo.", + "\"/\" is not allowed inside a file name." : "\"/\" no se permite en un nombre de archivo.", "\"{name}\" is not an allowed filetype" : "\"{name}\" no es un tipo de archivo permitido", - "Storage of {owner} is full, files can not be updated or synced anymore!" : "El almacén de {owner} está repleto, ¡los archivos no se actualizarán ni sincronizarán más!", - "Your storage is full, files can not be updated or synced anymore!" : "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", - "Storage of {owner} is almost full ({usedSpacePercent}%)" : "El almacén de {owner} está casi lleno en un ({usedSpacePercent}%)", - "Your storage is almost full ({usedSpacePercent}%)" : "Su almacenamiento está casi lleno ({usedSpacePercent}%)", + "Storage of {owner} is full, files can not be updated or synced anymore!" : "El espacio de {owner} está lleno, ¡no se subirán ni se sincronizarán más archivos!", + "Your storage is full, files can not be updated or synced anymore!" : "Tu espacio está lleno, ¡no se subirán ni se sincronizarán más archivos!", + "Storage of {owner} is almost full ({usedSpacePercent}%)" : "El espacio de {owner} está casi lleno en un ({usedSpacePercent}%)", + "Your storage is almost full ({usedSpacePercent}%)" : "Tu espacio está casi lleno, ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["coincidencias '{filter}'","coincidencia '{filter}'"], "View in folder" : "Ver en carpeta", "Copied!" : "¡Copiado!", @@ -84,17 +84,17 @@ OC.L10N.register( "Favorite" : "Favorito", "New folder" : "Nueva carpeta", "Upload file" : "Subir archivo", - "Not favorited" : "No marcado como favorito", + "Not favorited" : "Quitado como favorito", "Remove from favorites" : "Eliminar de favoritos", "Add to favorites" : "Añadir a favoritos", "An error occurred while trying to update the tags" : "Se produjo un error al tratar de actualizar las etiquetas", "Added to favorites" : "Agregado a favoritos", "Removed from favorites" : "Borrado de favoritos", - "You added {file} to your favorites" : "Agregado {file} a tus favoritos", - "You removed {file} from your favorites" : "Borrado {file} de tus favoritos", + "You added {file} to your favorites" : "Has agregado {file} a tus favoritos", + "You removed {file} from your favorites" : "Has borrado {file} de tus favoritos", "File changes" : "Cambios del archivo", "Created by {user}" : "Creado por {user}", - "Changed by {user}" : "Cambiado por {user}", + "Changed by {user}" : "Modificado por {user}", "Deleted by {user}" : "Borrado por {user}", "Restored by {user}" : "Restaurado por {user}", "Renamed by {user}" : "Renombrado por {user}", @@ -105,34 +105,33 @@ OC.L10N.register( "{user} created {file}" : "{user} ha creado {file}", "{user} created an encrypted file in {file}" : "{user} ha creado un archivo cifrado en {file}", "{file} was created in a public folder" : "{file} se ha creado en una carpeta pública", - "You changed {file}" : "Usted ha cambiado {file}", + "You changed {file}" : "Has cambiado {file}", "You changed an encrypted file in {file}" : "Has modificado un archivo cifrado en {file}", "{user} changed {file}" : "{user} ha cambiado {file}", "{user} changed an encrypted file in {file}" : "{user} ha modificado un archivo cifrado en {file}", - "You deleted {file}" : "Usted ha borrado {file}", + "You deleted {file}" : "Has borrado {file}", "You deleted an encrypted file in {file}" : "Has borrado un archivo cifrado en {file}", "{user} deleted {file}" : "{user} eliminó {file}", "{user} deleted an encrypted file in {file}" : "{user} ha borrado un archivo cifrado en {file}", - "You restored {file}" : "Usted restauró {file}", + "You restored {file}" : "Has restaurado {file}", "{user} restored {file}" : "{user} restauró {file}", - "You renamed {oldfile} to {newfile}" : "Ha renombrado {oldfile} como {newfile}", - "{user} renamed {oldfile} to {newfile}" : "{user} ha renombrado {oldfile } como {newfile}", - "You moved {oldfile} to {newfile}" : "Ha movido {oldfile } a {newfile}", + "You renamed {oldfile} to {newfile}" : "Has renombrado {oldfile} como {newfile}", + "{user} renamed {oldfile} to {newfile}" : "{user} ha renombrado {oldfile} a {newfile}", + "You moved {oldfile} to {newfile}" : "Has movido {oldfile} a {newfile}", "{user} moved {oldfile} to {newfile}" : "{user} movió {oldfile} a {newfile}", "A file has been added to or removed from your <strong>favorites</strong>" : "Un archivo fue agregado o borrado de tus <strong>favoritos</strong>", "A file or folder has been <strong>changed</strong> or <strong>renamed</strong>" : "Un archivo o carpeta ha sido <strong>cambiado</strong> o <strong>renombrado</strong>", "A new file or folder has been <strong>created</strong>" : "Se ha <strong>creado</strong> un nuevo archivo o carpeta", "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", - "Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Limitar las notificaciones acerca de la creación y cambios de sus <strong>archivos favoritos</strong> <em>(solo flujos)</em>", + "Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Limitar las notificaciones sobre la creación y cambios en tus <strong>archivos favoritos</strong> <em>(solo transmisión)</em>", "A file or folder has been <strong>restored</strong>" : "Un archivo o carpeta ha sido <strong>restaurado</strong>", "Unlimited" : "Ilimitado", "Upload (max. %s)" : "Subida (máx. %s)", - "File Management" : "Manejo de archivos", - "File handling" : "Administración de archivos", - "Maximum upload size" : "Tamaño máximo de subida", - "max. possible: " : "máx. posible:", + "File handling" : "Manejo de archivos", + "Maximum upload size" : "Tamaño de subida máximo ", + "max. possible: " : "máx. posible: ", "Save" : "Guardar", - "With PHP-FPM it might take 5 minutes for changes to be applied." : "Con PHP-FPM podría tardar 5 minutos para que se realicen los cambios.", + "With PHP-FPM it might take 5 minutes for changes to be applied." : "Con PHP-FPM podría tardar hasta 5 minutos en realizarse los cambios.", "Missing permissions to edit from here." : "Faltan permisos para poder editar desde aquí.", "%s of %s used" : "%s de %s usado", "%s used" : "usado %s", @@ -148,16 +147,16 @@ OC.L10N.register( "Upload too large" : "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Los archivos que está intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "No favorites yet" : "Aún no hay favoritos", - "Files and folders you mark as favorite will show up here" : "Aquí aparecerán los archivos y carpetas que usted marque como favoritos", + "Files and folders you mark as favorite will show up here" : "Aquí aparecerán los archivos y carpetas que has marcado como favoritos", "Tags" : "Etiquetas", "Deleted files" : "Archivos eliminados", "Shares" : "Archivos compartidos", "Shared with others" : "Compartido con otros", - "Shared with you" : "Compartido contigo", + "Shared with you" : "Compartido conmigo", "Shared by link" : "Compartido por enlace", "Deleted shares" : "Recursos compartidos eliminados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo archivo de texto.txt", + "New text file.txt" : "Nuevo archivo.txt", "Move" : "Mover", "A new file or folder has been <strong>deleted</strong>" : "Se ha <strong>borrado</strong> un nuevo archivo o carpeta", "A new file or folder has been <strong>restored</strong>" : "Se ha <strong>restaurado</strong> un nuevo archivo o carpeta", diff --git a/apps/files/l10n/es.json b/apps/files/l10n/es.json index 3c0ac011545..605589bc602 100644 --- a/apps/files/l10n/es.json +++ b/apps/files/l10n/es.json @@ -9,7 +9,7 @@ "Move or copy" : "Mover o copiar", "Download" : "Descargar", "Delete" : "Eliminar", - "Home" : "Particular", + "Home" : "Inicio", "Close" : "Cerrar", "Could not create folder \"{dir}\"" : "No se pudo crear la carpeta \"{dir}\"", "Upload cancelled." : "Subida cancelada.", @@ -20,13 +20,13 @@ "Uploading …" : "Subiendo...", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", - "Uploading that item is not supported" : "Subir ese objeto no está soportado", - "Target folder does not exist any more" : "La carpeta destino yano existe", + "Uploading that item is not supported" : "Subir este archivo no es compatible", + "Target folder does not exist any more" : "La carpeta destino ya no existe", "Error when assembling chunks, status code {status}" : "Error al reunir las partes, código de estado {status}", "Actions" : "Acciones", "Rename" : "Renombrar", "Copy" : "Copiar", - "Target folder" : "Directorio destino", + "Target folder" : "Directorio de destino", "Disconnect storage" : "Desconectar almacenamiento", "Unshare" : "Dejar de compartir", "Could not load info for file \"{file}\"" : "No se ha podido cargar información para el archivo \"{file}\"", @@ -36,16 +36,16 @@ "Pending" : "Pendiente", "Unable to determine date" : "No se ha podido determinar la fecha", "This operation is forbidden" : "Esta operación está prohibida", - "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contáctese con el administrador", - "Could not move \"{file}\", target exists" : "No se pudo mover \"{file}\", destino ya existe", + "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contacte con el administrador", + "Could not move \"{file}\", target exists" : "No se pudo mover \"{file}\", ya existe", "Could not move \"{file}\"" : "No se pudo mover \"{file}\"", "Could not copy \"{file}\", target exists" : "No se ha podido copiar \"{file}\", ya existe el destino", "Could not copy \"{file}\"" : "No se ha podido copiar \"{file}\"", "Copied {origin} inside {destination}" : "Se ha copiado {origin} dentro de {destination}", - "Copied {origin} and {nbfiles} other files inside {destination}" : "Se han copiado {origini} y {nbfiles} otros archivos dentro de {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "Se han copiado {origin} y {nbfiles} otros archivos dentro de {destination}", "{newName} already exists" : "{newName} ya existe", "Could not rename \"{fileName}\", it does not exist any more" : "No se pudo renombrar \"{fileName}\", ya no existe", - "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "El nombre \"{targetName}\" ya se utiliza en la carpeta \"{dir}\". Por favor elija un nombre diferente.", + "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "El nombre \"{targetName}\" ya está en uso en la carpeta \"{dir}\". Por favor elija un nombre diferente.", "Could not rename \"{fileName}\"" : "No se pudo renombrar \"{fileName}\"", "Could not create file \"{file}\"" : "No se pudo crear archivo \"{file}\"", "Could not create file \"{file}\" because it already exists" : "No se pudo crear archivo \"{file}\" porque ya existe", @@ -66,12 +66,12 @@ "{used} used" : "{used} usados", "\"{name}\" is an invalid file name." : "\"{name}\" es un nombre de archivo inválido.", "File name cannot be empty." : "El nombre de archivo no puede estar vacío.", - "\"/\" is not allowed inside a file name." : "\"/\" no se permite dentro de un nombre de archivo.", + "\"/\" is not allowed inside a file name." : "\"/\" no se permite en un nombre de archivo.", "\"{name}\" is not an allowed filetype" : "\"{name}\" no es un tipo de archivo permitido", - "Storage of {owner} is full, files can not be updated or synced anymore!" : "El almacén de {owner} está repleto, ¡los archivos no se actualizarán ni sincronizarán más!", - "Your storage is full, files can not be updated or synced anymore!" : "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", - "Storage of {owner} is almost full ({usedSpacePercent}%)" : "El almacén de {owner} está casi lleno en un ({usedSpacePercent}%)", - "Your storage is almost full ({usedSpacePercent}%)" : "Su almacenamiento está casi lleno ({usedSpacePercent}%)", + "Storage of {owner} is full, files can not be updated or synced anymore!" : "El espacio de {owner} está lleno, ¡no se subirán ni se sincronizarán más archivos!", + "Your storage is full, files can not be updated or synced anymore!" : "Tu espacio está lleno, ¡no se subirán ni se sincronizarán más archivos!", + "Storage of {owner} is almost full ({usedSpacePercent}%)" : "El espacio de {owner} está casi lleno en un ({usedSpacePercent}%)", + "Your storage is almost full ({usedSpacePercent}%)" : "Tu espacio está casi lleno, ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["coincidencias '{filter}'","coincidencia '{filter}'"], "View in folder" : "Ver en carpeta", "Copied!" : "¡Copiado!", @@ -82,17 +82,17 @@ "Favorite" : "Favorito", "New folder" : "Nueva carpeta", "Upload file" : "Subir archivo", - "Not favorited" : "No marcado como favorito", + "Not favorited" : "Quitado como favorito", "Remove from favorites" : "Eliminar de favoritos", "Add to favorites" : "Añadir a favoritos", "An error occurred while trying to update the tags" : "Se produjo un error al tratar de actualizar las etiquetas", "Added to favorites" : "Agregado a favoritos", "Removed from favorites" : "Borrado de favoritos", - "You added {file} to your favorites" : "Agregado {file} a tus favoritos", - "You removed {file} from your favorites" : "Borrado {file} de tus favoritos", + "You added {file} to your favorites" : "Has agregado {file} a tus favoritos", + "You removed {file} from your favorites" : "Has borrado {file} de tus favoritos", "File changes" : "Cambios del archivo", "Created by {user}" : "Creado por {user}", - "Changed by {user}" : "Cambiado por {user}", + "Changed by {user}" : "Modificado por {user}", "Deleted by {user}" : "Borrado por {user}", "Restored by {user}" : "Restaurado por {user}", "Renamed by {user}" : "Renombrado por {user}", @@ -103,34 +103,33 @@ "{user} created {file}" : "{user} ha creado {file}", "{user} created an encrypted file in {file}" : "{user} ha creado un archivo cifrado en {file}", "{file} was created in a public folder" : "{file} se ha creado en una carpeta pública", - "You changed {file}" : "Usted ha cambiado {file}", + "You changed {file}" : "Has cambiado {file}", "You changed an encrypted file in {file}" : "Has modificado un archivo cifrado en {file}", "{user} changed {file}" : "{user} ha cambiado {file}", "{user} changed an encrypted file in {file}" : "{user} ha modificado un archivo cifrado en {file}", - "You deleted {file}" : "Usted ha borrado {file}", + "You deleted {file}" : "Has borrado {file}", "You deleted an encrypted file in {file}" : "Has borrado un archivo cifrado en {file}", "{user} deleted {file}" : "{user} eliminó {file}", "{user} deleted an encrypted file in {file}" : "{user} ha borrado un archivo cifrado en {file}", - "You restored {file}" : "Usted restauró {file}", + "You restored {file}" : "Has restaurado {file}", "{user} restored {file}" : "{user} restauró {file}", - "You renamed {oldfile} to {newfile}" : "Ha renombrado {oldfile} como {newfile}", - "{user} renamed {oldfile} to {newfile}" : "{user} ha renombrado {oldfile } como {newfile}", - "You moved {oldfile} to {newfile}" : "Ha movido {oldfile } a {newfile}", + "You renamed {oldfile} to {newfile}" : "Has renombrado {oldfile} como {newfile}", + "{user} renamed {oldfile} to {newfile}" : "{user} ha renombrado {oldfile} a {newfile}", + "You moved {oldfile} to {newfile}" : "Has movido {oldfile} a {newfile}", "{user} moved {oldfile} to {newfile}" : "{user} movió {oldfile} a {newfile}", "A file has been added to or removed from your <strong>favorites</strong>" : "Un archivo fue agregado o borrado de tus <strong>favoritos</strong>", "A file or folder has been <strong>changed</strong> or <strong>renamed</strong>" : "Un archivo o carpeta ha sido <strong>cambiado</strong> o <strong>renombrado</strong>", "A new file or folder has been <strong>created</strong>" : "Se ha <strong>creado</strong> un nuevo archivo o carpeta", "A file or folder has been <strong>deleted</strong>" : "Un archivo o carpeta ha sido <strong>eliminado</strong>", - "Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Limitar las notificaciones acerca de la creación y cambios de sus <strong>archivos favoritos</strong> <em>(solo flujos)</em>", + "Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>" : "Limitar las notificaciones sobre la creación y cambios en tus <strong>archivos favoritos</strong> <em>(solo transmisión)</em>", "A file or folder has been <strong>restored</strong>" : "Un archivo o carpeta ha sido <strong>restaurado</strong>", "Unlimited" : "Ilimitado", "Upload (max. %s)" : "Subida (máx. %s)", - "File Management" : "Manejo de archivos", - "File handling" : "Administración de archivos", - "Maximum upload size" : "Tamaño máximo de subida", - "max. possible: " : "máx. posible:", + "File handling" : "Manejo de archivos", + "Maximum upload size" : "Tamaño de subida máximo ", + "max. possible: " : "máx. posible: ", "Save" : "Guardar", - "With PHP-FPM it might take 5 minutes for changes to be applied." : "Con PHP-FPM podría tardar 5 minutos para que se realicen los cambios.", + "With PHP-FPM it might take 5 minutes for changes to be applied." : "Con PHP-FPM podría tardar hasta 5 minutos en realizarse los cambios.", "Missing permissions to edit from here." : "Faltan permisos para poder editar desde aquí.", "%s of %s used" : "%s de %s usado", "%s used" : "usado %s", @@ -146,16 +145,16 @@ "Upload too large" : "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Los archivos que está intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "No favorites yet" : "Aún no hay favoritos", - "Files and folders you mark as favorite will show up here" : "Aquí aparecerán los archivos y carpetas que usted marque como favoritos", + "Files and folders you mark as favorite will show up here" : "Aquí aparecerán los archivos y carpetas que has marcado como favoritos", "Tags" : "Etiquetas", "Deleted files" : "Archivos eliminados", "Shares" : "Archivos compartidos", "Shared with others" : "Compartido con otros", - "Shared with you" : "Compartido contigo", + "Shared with you" : "Compartido conmigo", "Shared by link" : "Compartido por enlace", "Deleted shares" : "Recursos compartidos eliminados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo archivo de texto.txt", + "New text file.txt" : "Nuevo archivo.txt", "Move" : "Mover", "A new file or folder has been <strong>deleted</strong>" : "Se ha <strong>borrado</strong> un nuevo archivo o carpeta", "A new file or folder has been <strong>restored</strong>" : "Se ha <strong>restaurado</strong> un nuevo archivo o carpeta", diff --git a/apps/files/l10n/es_MX.js b/apps/files/l10n/es_MX.js index 87d1aa3d5de..f7ffd711cbb 100644 --- a/apps/files/l10n/es_MX.js +++ b/apps/files/l10n/es_MX.js @@ -126,7 +126,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Un archivo o carpeta ha sido <strong>restaurado</strong>", "Unlimited" : "Ilimitado", "Upload (max. %s)" : "Cargar (max. %s)", - "File Management" : "Administración de Archivos", "File handling" : "Manejo de archivos", "Maximum upload size" : "Tamaño máximo de carga", "max. possible: " : "max. posible:", diff --git a/apps/files/l10n/es_MX.json b/apps/files/l10n/es_MX.json index 903238ffc93..1995fa701c9 100644 --- a/apps/files/l10n/es_MX.json +++ b/apps/files/l10n/es_MX.json @@ -124,7 +124,6 @@ "A file or folder has been <strong>restored</strong>" : "Un archivo o carpeta ha sido <strong>restaurado</strong>", "Unlimited" : "Ilimitado", "Upload (max. %s)" : "Cargar (max. %s)", - "File Management" : "Administración de Archivos", "File handling" : "Manejo de archivos", "Maximum upload size" : "Tamaño máximo de carga", "max. possible: " : "max. posible:", diff --git a/apps/files/l10n/fi.js b/apps/files/l10n/fi.js index c4444f9064b..7088d11aa58 100644 --- a/apps/files/l10n/fi.js +++ b/apps/files/l10n/fi.js @@ -118,7 +118,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Tiedosto tai kansio on <strong>palautettu</strong>", "Unlimited" : "Rajoittamaton", "Upload (max. %s)" : "Lähetys (enintään %s)", - "File Management" : "Tiedostohallinta", "File handling" : "Tiedostonhallinta", "Maximum upload size" : "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " : "suurin mahdollinen:", diff --git a/apps/files/l10n/fi.json b/apps/files/l10n/fi.json index 72cbc960a4e..3757ac04e6f 100644 --- a/apps/files/l10n/fi.json +++ b/apps/files/l10n/fi.json @@ -116,7 +116,6 @@ "A file or folder has been <strong>restored</strong>" : "Tiedosto tai kansio on <strong>palautettu</strong>", "Unlimited" : "Rajoittamaton", "Upload (max. %s)" : "Lähetys (enintään %s)", - "File Management" : "Tiedostohallinta", "File handling" : "Tiedostonhallinta", "Maximum upload size" : "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " : "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.js b/apps/files/l10n/fr.js index 142af6c68ce..2812bc73c53 100644 --- a/apps/files/l10n/fr.js +++ b/apps/files/l10n/fr.js @@ -127,7 +127,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Un fichier ou un répertoire a été <strong>restauré</strong>", "Unlimited" : "Illimité", "Upload (max. %s)" : "Envoi (max. %s)", - "File Management" : "Gestion de fichier", "File handling" : "Gestion de fichiers", "Maximum upload size" : "Taille max. d'envoi", "max. possible: " : "Max. possible :", diff --git a/apps/files/l10n/fr.json b/apps/files/l10n/fr.json index 9e064dd3fee..1bbc81834f1 100644 --- a/apps/files/l10n/fr.json +++ b/apps/files/l10n/fr.json @@ -125,7 +125,6 @@ "A file or folder has been <strong>restored</strong>" : "Un fichier ou un répertoire a été <strong>restauré</strong>", "Unlimited" : "Illimité", "Upload (max. %s)" : "Envoi (max. %s)", - "File Management" : "Gestion de fichier", "File handling" : "Gestion de fichiers", "Maximum upload size" : "Taille max. d'envoi", "max. possible: " : "Max. possible :", diff --git a/apps/files/l10n/he.js b/apps/files/l10n/he.js index 50f0611aa3a..aa8d20ea23d 100644 --- a/apps/files/l10n/he.js +++ b/apps/files/l10n/he.js @@ -127,7 +127,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "קובץ או תיקייה <strong>שוחזרו</strong>", "Unlimited" : "ללא הגבלה", "Upload (max. %s)" : "העלאה (מקסימום %s)", - "File Management" : "ניהול קבצים", "File handling" : "טיפול בקבצים", "Maximum upload size" : "גודל העלאה מקסימלי", "max. possible: " : "המרבי האפשרי: ", diff --git a/apps/files/l10n/he.json b/apps/files/l10n/he.json index 57417c2f271..cb24c1e5716 100644 --- a/apps/files/l10n/he.json +++ b/apps/files/l10n/he.json @@ -125,7 +125,6 @@ "A file or folder has been <strong>restored</strong>" : "קובץ או תיקייה <strong>שוחזרו</strong>", "Unlimited" : "ללא הגבלה", "Upload (max. %s)" : "העלאה (מקסימום %s)", - "File Management" : "ניהול קבצים", "File handling" : "טיפול בקבצים", "Maximum upload size" : "גודל העלאה מקסימלי", "max. possible: " : "המרבי האפשרי: ", diff --git a/apps/files/l10n/is.js b/apps/files/l10n/is.js index 7b1a8536792..a55395243ef 100644 --- a/apps/files/l10n/is.js +++ b/apps/files/l10n/is.js @@ -127,7 +127,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Skjal eða mappa hefur verið <strong>endurheimt</strong>", "Unlimited" : "Ótakmarkað", "Upload (max. %s)" : "Senda inn (hám. %s)", - "File Management" : "Skráastjórnun", "File handling" : "Meðhöndlun skráar", "Maximum upload size" : "Hámarksstærð innsendingar", "max. possible: " : "hámark mögulegt: ", diff --git a/apps/files/l10n/is.json b/apps/files/l10n/is.json index 2b8c3b8a29a..a61d95de7ae 100644 --- a/apps/files/l10n/is.json +++ b/apps/files/l10n/is.json @@ -125,7 +125,6 @@ "A file or folder has been <strong>restored</strong>" : "Skjal eða mappa hefur verið <strong>endurheimt</strong>", "Unlimited" : "Ótakmarkað", "Upload (max. %s)" : "Senda inn (hám. %s)", - "File Management" : "Skráastjórnun", "File handling" : "Meðhöndlun skráar", "Maximum upload size" : "Hámarksstærð innsendingar", "max. possible: " : "hámark mögulegt: ", diff --git a/apps/files/l10n/ja.js b/apps/files/l10n/ja.js index d9d6bb6fedb..d5ab0a4cc92 100644 --- a/apps/files/l10n/ja.js +++ b/apps/files/l10n/ja.js @@ -140,6 +140,7 @@ OC.L10N.register( "Files and folders you mark as favorite will show up here" : "お気に入りに登録されたファイルやフォルダーは、ここに表示されます。", "Tags" : "タグ", "Deleted files" : "ゴミ箱", + "Shares" : "共有", "Shared with others" : "他ユーザーと共有中", "Shared with you" : "他ユーザーがあなたと共有中", "Shared by link" : "URLリンクで共有中", diff --git a/apps/files/l10n/ja.json b/apps/files/l10n/ja.json index 8cb73a3cf94..6d836a1e411 100644 --- a/apps/files/l10n/ja.json +++ b/apps/files/l10n/ja.json @@ -138,6 +138,7 @@ "Files and folders you mark as favorite will show up here" : "お気に入りに登録されたファイルやフォルダーは、ここに表示されます。", "Tags" : "タグ", "Deleted files" : "ゴミ箱", + "Shares" : "共有", "Shared with others" : "他ユーザーと共有中", "Shared with you" : "他ユーザーがあなたと共有中", "Shared by link" : "URLリンクで共有中", diff --git a/apps/files/l10n/nb.js b/apps/files/l10n/nb.js index 73ba4a65844..d0ce5411041 100644 --- a/apps/files/l10n/nb.js +++ b/apps/files/l10n/nb.js @@ -126,7 +126,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "En fil eller mappe ble <strong>gjenopprettet</strong>", "Unlimited" : "Ubegrenset", "Upload (max. %s)" : "Opplasting (maks. %s)", - "File Management" : "Filbehandling", "File handling" : "Filhåndtering", "Maximum upload size" : "Største opplastingsstørrelse", "max. possible: " : "max. mulige:", diff --git a/apps/files/l10n/nb.json b/apps/files/l10n/nb.json index 2f0ac138055..7100d99d9ca 100644 --- a/apps/files/l10n/nb.json +++ b/apps/files/l10n/nb.json @@ -124,7 +124,6 @@ "A file or folder has been <strong>restored</strong>" : "En fil eller mappe ble <strong>gjenopprettet</strong>", "Unlimited" : "Ubegrenset", "Upload (max. %s)" : "Opplasting (maks. %s)", - "File Management" : "Filbehandling", "File handling" : "Filhåndtering", "Maximum upload size" : "Største opplastingsstørrelse", "max. possible: " : "max. mulige:", diff --git a/apps/files/l10n/ru.js b/apps/files/l10n/ru.js index e80df1bab23..72187e3fff4 100644 --- a/apps/files/l10n/ru.js +++ b/apps/files/l10n/ru.js @@ -127,7 +127,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Файл или каталог был <strong>восстановлен</strong>", "Unlimited" : "Неограничено", "Upload (max. %s)" : "Загрузка (максимум %s)", - "File Management" : "Управление файлами", "File handling" : "Управление файлами", "Maximum upload size" : "Максимальный размер загружаемого файла", "max. possible: " : "макс. возможно: ", diff --git a/apps/files/l10n/ru.json b/apps/files/l10n/ru.json index 52dedfb0938..fc0f7a124f6 100644 --- a/apps/files/l10n/ru.json +++ b/apps/files/l10n/ru.json @@ -125,7 +125,6 @@ "A file or folder has been <strong>restored</strong>" : "Файл или каталог был <strong>восстановлен</strong>", "Unlimited" : "Неограничено", "Upload (max. %s)" : "Загрузка (максимум %s)", - "File Management" : "Управление файлами", "File handling" : "Управление файлами", "Maximum upload size" : "Максимальный размер загружаемого файла", "max. possible: " : "макс. возможно: ", diff --git a/apps/files/l10n/sk.js b/apps/files/l10n/sk.js index 5b29f95962c..1861a347bb1 100644 --- a/apps/files/l10n/sk.js +++ b/apps/files/l10n/sk.js @@ -126,7 +126,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Súbor alebo priečinok bol <strong>obnovený</strong>", "Unlimited" : "Neobmedzené", "Upload (max. %s)" : "Nahrať (max. %s)", - "File Management" : "Správa súborov", "File handling" : "Nastavenie správania sa k súborom", "Maximum upload size" : "Maximálna veľkosť odosielaného súboru", "max. possible: " : "najväčšie možné:", diff --git a/apps/files/l10n/sk.json b/apps/files/l10n/sk.json index 2bd22e86e49..129c1606d7c 100644 --- a/apps/files/l10n/sk.json +++ b/apps/files/l10n/sk.json @@ -124,7 +124,6 @@ "A file or folder has been <strong>restored</strong>" : "Súbor alebo priečinok bol <strong>obnovený</strong>", "Unlimited" : "Neobmedzené", "Upload (max. %s)" : "Nahrať (max. %s)", - "File Management" : "Správa súborov", "File handling" : "Nastavenie správania sa k súborom", "Maximum upload size" : "Maximálna veľkosť odosielaného súboru", "max. possible: " : "najväčšie možné:", diff --git a/apps/files/l10n/sr.js b/apps/files/l10n/sr.js index ac0cbc6d4c4..c9871c0e397 100644 --- a/apps/files/l10n/sr.js +++ b/apps/files/l10n/sr.js @@ -127,7 +127,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "Фајл или фасцикла су <strong>враћени</strong>", "Unlimited" : "Неограничено", "Upload (max. %s)" : "Отпремање (макс. %s)", - "File Management" : "Управљање фајловима", "File handling" : "Руковање фајловима", "Maximum upload size" : "Највећа величина отпремања", "max. possible: " : "највише могуће:", diff --git a/apps/files/l10n/sr.json b/apps/files/l10n/sr.json index 0597bef11f1..ecda1377717 100644 --- a/apps/files/l10n/sr.json +++ b/apps/files/l10n/sr.json @@ -125,7 +125,6 @@ "A file or folder has been <strong>restored</strong>" : "Фајл или фасцикла су <strong>враћени</strong>", "Unlimited" : "Неограничено", "Upload (max. %s)" : "Отпремање (макс. %s)", - "File Management" : "Управљање фајловима", "File handling" : "Руковање фајловима", "Maximum upload size" : "Највећа величина отпремања", "max. possible: " : "највише могуће:", diff --git a/apps/files/l10n/zh_CN.js b/apps/files/l10n/zh_CN.js index d2e1665b85c..3a3fd93dd87 100644 --- a/apps/files/l10n/zh_CN.js +++ b/apps/files/l10n/zh_CN.js @@ -123,7 +123,6 @@ OC.L10N.register( "A file or folder has been <strong>restored</strong>" : "文件/文件夹已恢复", "Unlimited" : "无限制", "Upload (max. %s)" : "上传 (最大 %s)", - "File Management" : "文件管理", "File handling" : "文件处理", "Maximum upload size" : "最大上传大小", "max. possible: " : "最大允许: ", diff --git a/apps/files/l10n/zh_CN.json b/apps/files/l10n/zh_CN.json index 46b033cecd1..ffcb4aa9bfc 100644 --- a/apps/files/l10n/zh_CN.json +++ b/apps/files/l10n/zh_CN.json @@ -121,7 +121,6 @@ "A file or folder has been <strong>restored</strong>" : "文件/文件夹已恢复", "Unlimited" : "无限制", "Upload (max. %s)" : "上传 (最大 %s)", - "File Management" : "文件管理", "File handling" : "文件处理", "Maximum upload size" : "最大上传大小", "max. possible: " : "最大允许: ", diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js index 7947dd91f2d..50b336902b9 100644 --- a/apps/files/tests/js/filelistSpec.js +++ b/apps/files/tests/js/filelistSpec.js @@ -2614,6 +2614,20 @@ describe('OCA.Files.FileList tests', function() { }); }); describe('Sorting files', function() { + + var getCurrentUserStub; + + beforeEach(function() { + getCurrentUserStub = sinon.stub(OC, 'getCurrentUser').returns({ + uid: 1, + displayName: 'user1' + }); + }); + + afterEach(function() { + getCurrentUserStub.restore(); + }); + it('Toggles the sort indicator when clicking on a column header', function() { var ASC_CLASS = fileList.SORT_INDICATOR_ASC_CLASS; var DESC_CLASS = fileList.SORT_INDICATOR_DESC_CLASS; @@ -2739,6 +2753,23 @@ describe('OCA.Files.FileList tests', function() { sortStub.restore(); }); + + describe('if no user logged in', function() { + beforeEach(function() { + getCurrentUserStub.returns({ + uid: null, + displayName: 'Guest' + }); + }); + + it('shouldn\'t send an update sort order request', function() { + OC.currentUser = false; + fileList.$el.find('.column-size .columntitle').click(); + // check if there was no request + expect(fakeServer.requests.length).toEqual(0); + }); + }); + describe('with favorites', function() { it('shows favorite files on top', function() { testFiles.push(new FileInfo({ diff --git a/apps/files_external/l10n/cs.js b/apps/files_external/l10n/cs.js index f66e1013df8..fcd58518dc6 100644 --- a/apps/files_external/l10n/cs.js +++ b/apps/files_external/l10n/cs.js @@ -105,7 +105,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP podpora v PHP není povolena nebo nainstalována. Není možné připojit %s. Prosím požádejte svého správce systému ať ji nainstaluje.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" není instalováno. Není možné připojit %s. Prosím požádejte svého správce systému o instalaci.", "External storage support" : "Podpora Externího úložiště", - "Adds basic external storage support" : "Přidává základní podporu externích úložišť", "No external storage configured or you don't have the permission to configure them" : "Nemáte oprávněni pro nastavení externího úložiště", "Name" : "Název", "Storage type" : "Typ úložiště", @@ -133,7 +132,7 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Disk Google", - "No external storage configured" : "Není nakonfigurováno žádné externí úložiště", + "No external storage configured" : "Není nastavené žádné externí úložiště", "You can add external storages in the personal settings" : "Externí úložiště můžete přidat v osobních nastaveních", "Delete" : "Smazat", "Allow users to mount the following external storage" : "Povolit uživatelů připojit následující externí úložiště", diff --git a/apps/files_external/l10n/cs.json b/apps/files_external/l10n/cs.json index 8405cc38bcf..2d8d8ccdc7b 100644 --- a/apps/files_external/l10n/cs.json +++ b/apps/files_external/l10n/cs.json @@ -103,7 +103,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP podpora v PHP není povolena nebo nainstalována. Není možné připojit %s. Prosím požádejte svého správce systému ať ji nainstaluje.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" není instalováno. Není možné připojit %s. Prosím požádejte svého správce systému o instalaci.", "External storage support" : "Podpora Externího úložiště", - "Adds basic external storage support" : "Přidává základní podporu externích úložišť", "No external storage configured or you don't have the permission to configure them" : "Nemáte oprávněni pro nastavení externího úložiště", "Name" : "Název", "Storage type" : "Typ úložiště", @@ -131,7 +130,7 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Disk Google", - "No external storage configured" : "Není nakonfigurováno žádné externí úložiště", + "No external storage configured" : "Není nastavené žádné externí úložiště", "You can add external storages in the personal settings" : "Externí úložiště můžete přidat v osobních nastaveních", "Delete" : "Smazat", "Allow users to mount the following external storage" : "Povolit uživatelů připojit následující externí úložiště", diff --git a/apps/files_external/l10n/en_GB.js b/apps/files_external/l10n/en_GB.js index 98c35a5bcef..506772e03fe 100644 --- a/apps/files_external/l10n/en_GB.js +++ b/apps/files_external/l10n/en_GB.js @@ -104,8 +104,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "External storage support" : "External storage support", - "Adds basic external storage support" : "Adds basic external storage support", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation.", "No external storage configured or you don't have the permission to configure them" : "No external storage configured or you don't have the permission to configure them", "Name" : "Name", "Storage type" : "Storage type", @@ -135,7 +133,6 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation.", "No external storage configured" : "No external storage configured", "You can add external storages in the personal settings" : "You can add external storages in the personal settings", "Delete" : "Delete", diff --git a/apps/files_external/l10n/en_GB.json b/apps/files_external/l10n/en_GB.json index 9d38007b39a..cab26c33a06 100644 --- a/apps/files_external/l10n/en_GB.json +++ b/apps/files_external/l10n/en_GB.json @@ -102,8 +102,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "External storage support" : "External storage support", - "Adds basic external storage support" : "Adds basic external storage support", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation.", "No external storage configured or you don't have the permission to configure them" : "No external storage configured or you don't have the permission to configure them", "Name" : "Name", "Storage type" : "Storage type", @@ -133,7 +131,6 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation.", "No external storage configured" : "No external storage configured", "You can add external storages in the personal settings" : "You can add external storages in the personal settings", "Delete" : "Delete", diff --git a/apps/files_external/l10n/es.js b/apps/files_external/l10n/es.js index 5d793bbef91..28953a6b0ae 100644 --- a/apps/files_external/l10n/es.js +++ b/apps/files_external/l10n/es.js @@ -105,8 +105,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP desde PHP no esta habilitado o instalado. Montar el %s no ha sido posible. Por favor consulta al administrador de tu sistema para que lo instale.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no está instalado. El montaje de %s no es posible. Por favor, pregunte a su administrador del sistema para instalarlo.", "External storage support" : "Soporte de almacenamiento externo", - "Adds basic external storage support" : "Añade soporte básico de almacenamiento externo", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación permite a los administradores configurar conexiones a proveedores externos de almacenamiento, como servidores FTP, almacenamientos de objetos S3 o SWIFT, otros servidores Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de alacenamiento activar y pueden montar estas localizaciones de almacenamiento para un usuario, un grupo o el sistema entero. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, a la que pueden acceder y que pueden usar como cualquier otra carpeta. El almacenamiento externo también permite a los usuarios compartir los archivos almacenados en estas localizaciones externas. En estos casos, se usan las credenciales para el dueño del archivos cuando el receptor pide el archivo del almacenamiento externo, asegurando así que el receptor puede acceder al archivo compartido.\n\nEl almacenamiento externo se puede configurar usando la GUI o con la línea de comandos. La segunda opción proporciona al usuario avanzado más flexibilidad para configurar montajes de almacenamientos externos al por mayor y para configurar prioridades de montaje. Más información disponible en la documentación del almacenamiento externo y la documentación del archivo de configuración de almacenamiento externo.", "No external storage configured or you don't have the permission to configure them" : "No se ha configurado ningún almacenamiento externo o no tienes permiso para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", @@ -138,7 +136,6 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación permite a los administradores configurar conexiones a proveedores externos de almacenamiento, como servidores FTP, almacenamientos de objetos S3 o SWIFT, otros servidores Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de alacenamiento activar y pueden montar estas localizaciones de almacenamiento para un usuario, un grupo o el sistema entero. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, a la que pueden acceder y que pueden usar como cualquier otra carpeta. El almacenamiento externo también permite a los usuarios compartir los archivos almacenados en estas localizaciones externas. En estos casos, se usan las credenciales para el dueño del archivos cuando el receptor pide el archivo del almacenamiento externo, asegurando así que el receptor puede acceder al archivo compartido.\n\nEl almacenamiento externo se puede configurar usando la GUI o con la línea de comandos. La segunda opción proporciona al usuario avanzado más flexibilidad para configurar montajes de almacenamientos externos al por mayor y para configurar prioridades de montaje. Más información disponible en la documentación del almacenamiento externo y la documentación del archivo de configuración de almacenamiento externo.", "No external storage configured" : "No hay ningún almacenamiento externo configurado", "You can add external storages in the personal settings" : "Puede agregar almacenamientos externos en la configuración personal", "Delete" : "Eliminar", diff --git a/apps/files_external/l10n/es.json b/apps/files_external/l10n/es.json index 670ddef8e5e..a049aa7f310 100644 --- a/apps/files_external/l10n/es.json +++ b/apps/files_external/l10n/es.json @@ -103,8 +103,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP desde PHP no esta habilitado o instalado. Montar el %s no ha sido posible. Por favor consulta al administrador de tu sistema para que lo instale.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no está instalado. El montaje de %s no es posible. Por favor, pregunte a su administrador del sistema para instalarlo.", "External storage support" : "Soporte de almacenamiento externo", - "Adds basic external storage support" : "Añade soporte básico de almacenamiento externo", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación permite a los administradores configurar conexiones a proveedores externos de almacenamiento, como servidores FTP, almacenamientos de objetos S3 o SWIFT, otros servidores Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de alacenamiento activar y pueden montar estas localizaciones de almacenamiento para un usuario, un grupo o el sistema entero. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, a la que pueden acceder y que pueden usar como cualquier otra carpeta. El almacenamiento externo también permite a los usuarios compartir los archivos almacenados en estas localizaciones externas. En estos casos, se usan las credenciales para el dueño del archivos cuando el receptor pide el archivo del almacenamiento externo, asegurando así que el receptor puede acceder al archivo compartido.\n\nEl almacenamiento externo se puede configurar usando la GUI o con la línea de comandos. La segunda opción proporciona al usuario avanzado más flexibilidad para configurar montajes de almacenamientos externos al por mayor y para configurar prioridades de montaje. Más información disponible en la documentación del almacenamiento externo y la documentación del archivo de configuración de almacenamiento externo.", "No external storage configured or you don't have the permission to configure them" : "No se ha configurado ningún almacenamiento externo o no tienes permiso para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", @@ -136,7 +134,6 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación permite a los administradores configurar conexiones a proveedores externos de almacenamiento, como servidores FTP, almacenamientos de objetos S3 o SWIFT, otros servidores Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de alacenamiento activar y pueden montar estas localizaciones de almacenamiento para un usuario, un grupo o el sistema entero. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, a la que pueden acceder y que pueden usar como cualquier otra carpeta. El almacenamiento externo también permite a los usuarios compartir los archivos almacenados en estas localizaciones externas. En estos casos, se usan las credenciales para el dueño del archivos cuando el receptor pide el archivo del almacenamiento externo, asegurando así que el receptor puede acceder al archivo compartido.\n\nEl almacenamiento externo se puede configurar usando la GUI o con la línea de comandos. La segunda opción proporciona al usuario avanzado más flexibilidad para configurar montajes de almacenamientos externos al por mayor y para configurar prioridades de montaje. Más información disponible en la documentación del almacenamiento externo y la documentación del archivo de configuración de almacenamiento externo.", "No external storage configured" : "No hay ningún almacenamiento externo configurado", "You can add external storages in the personal settings" : "Puede agregar almacenamientos externos en la configuración personal", "Delete" : "Eliminar", diff --git a/apps/files_external/l10n/es_MX.js b/apps/files_external/l10n/es_MX.js index 06d70dd332c..4743029e43c 100644 --- a/apps/files_external/l10n/es_MX.js +++ b/apps/files_external/l10n/es_MX.js @@ -102,8 +102,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", "External storage support" : "Soporte de almacenamiento externo", - "Adds basic external storage support" : "Agrega soporte básico para almacenamiento externo", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación le permite a los adminsitradores configurar las conexiónes a los proveedores de almacenamiento externo, tales como servidores FTP, S3 o almacenamiento de objetos SWIFT, otros servidores de Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de almacenamiento habilitar y pueden montar estas ubicaciones de almacenamiento para un usuario, un grupo o para todo el sistema. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, la cual podrán acceder y usar como cualquier otra carpeta de Nextcloud. El almacenamiento externo también le permite a los usuarios compartir archivos almacenados en estas ubicaciones externas. En estos casos, las credenciales del dueño del archivo son usadas cunado el destinatario solicita el archivo de un almacenamiento externo, asegurando así que el destinatario pueda acceder el archivo compartido.\n\nEl almacenamiento externo puede ser configurado usando el GUI o la línea de comnados. Esta segunda opción le brinda a los usuarios avanzados más flexibilidad para configurar masivamente el montaje del almacenamiento externo y establecer la prioridad de montaje. Hay más información disponible en la documentación de almacenamiento externo GUi y la documentación del Archivo de configuración del almacenamiento externo. ", "No external storage configured or you don't have the permission to configure them" : "No se ha configurado almacenamiento externo o bien no cuentas con los permisos para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", @@ -133,7 +131,6 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación le permite a los administradores configurar conexiones a proveedores externos de almacenamiento, tales como servidores FTP, S3 o almacenamiento de objetos SWIFT, GoogleDrive, Dropbox, otros servidores Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de almacenamiento habilitar y pueden montar estas ubicaciones de almacenamiento para un usuario, un grupo o para todo el sistema. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, la cual podrán acceder y usar como cualquier otra carpeta de Nextcloud. El almacenamiento externo también le permite a los usuarios compartir archivos almacenados en estas ubicaciones externas. En estos casos, las credenciales del dueño del archivo son usadas cunado el destinatario solicita el archivo de un almacenamiento externo, asegurando así que el destinatario pueda acceder el archivo compartido.\n\nEl almacenamiento externo puede ser configurado usando el GUI o la línea de comnados. Esta segunda opción le brinda a los usuarios avanzados más flexibilidad para configurar masivamente el montaje del almacenamiento externo y establecer la prioridad de montaje. Hay más información disponible en la documentación de almacenamiento externo GUi y la documentación del Archivo de configuración del almacenamiento externo. ", "No external storage configured" : "No se ha configurado el almacenamiento externo", "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Delete" : "Borrar", diff --git a/apps/files_external/l10n/es_MX.json b/apps/files_external/l10n/es_MX.json index 38a1306900e..8a911e6e776 100644 --- a/apps/files_external/l10n/es_MX.json +++ b/apps/files_external/l10n/es_MX.json @@ -100,8 +100,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", "External storage support" : "Soporte de almacenamiento externo", - "Adds basic external storage support" : "Agrega soporte básico para almacenamiento externo", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación le permite a los adminsitradores configurar las conexiónes a los proveedores de almacenamiento externo, tales como servidores FTP, S3 o almacenamiento de objetos SWIFT, otros servidores de Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de almacenamiento habilitar y pueden montar estas ubicaciones de almacenamiento para un usuario, un grupo o para todo el sistema. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, la cual podrán acceder y usar como cualquier otra carpeta de Nextcloud. El almacenamiento externo también le permite a los usuarios compartir archivos almacenados en estas ubicaciones externas. En estos casos, las credenciales del dueño del archivo son usadas cunado el destinatario solicita el archivo de un almacenamiento externo, asegurando así que el destinatario pueda acceder el archivo compartido.\n\nEl almacenamiento externo puede ser configurado usando el GUI o la línea de comnados. Esta segunda opción le brinda a los usuarios avanzados más flexibilidad para configurar masivamente el montaje del almacenamiento externo y establecer la prioridad de montaje. Hay más información disponible en la documentación de almacenamiento externo GUi y la documentación del Archivo de configuración del almacenamiento externo. ", "No external storage configured or you don't have the permission to configure them" : "No se ha configurado almacenamiento externo o bien no cuentas con los permisos para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", @@ -131,7 +129,6 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esta aplicación le permite a los administradores configurar conexiones a proveedores externos de almacenamiento, tales como servidores FTP, S3 o almacenamiento de objetos SWIFT, GoogleDrive, Dropbox, otros servidores Nextcloud, servidores WebDAV y más. Los administradores pueden elegir qué tipos de almacenamiento habilitar y pueden montar estas ubicaciones de almacenamiento para un usuario, un grupo o para todo el sistema. Los usuarios verán aparecer una nueva carpeta en su directorio raíz de Nextcloud, la cual podrán acceder y usar como cualquier otra carpeta de Nextcloud. El almacenamiento externo también le permite a los usuarios compartir archivos almacenados en estas ubicaciones externas. En estos casos, las credenciales del dueño del archivo son usadas cunado el destinatario solicita el archivo de un almacenamiento externo, asegurando así que el destinatario pueda acceder el archivo compartido.\n\nEl almacenamiento externo puede ser configurado usando el GUI o la línea de comnados. Esta segunda opción le brinda a los usuarios avanzados más flexibilidad para configurar masivamente el montaje del almacenamiento externo y establecer la prioridad de montaje. Hay más información disponible en la documentación de almacenamiento externo GUi y la documentación del Archivo de configuración del almacenamiento externo. ", "No external storage configured" : "No se ha configurado el almacenamiento externo", "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Delete" : "Borrar", diff --git a/apps/files_external/l10n/fr.js b/apps/files_external/l10n/fr.js index cbf4c75807a..9226c495333 100644 --- a/apps/files_external/l10n/fr.js +++ b/apps/files_external/l10n/fr.js @@ -105,8 +105,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support du FTP dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Merci de demander à votre administrateur de l'installer.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" n'est pas installé. Le montage de %s n'est pas possible. Merci de demander à l'administrateur système de l'installer.", "External storage support" : "Support de stockage externe", - "Adds basic external storage support" : "Ajout de la prise en charge basique du stockage externe", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Cette application permet aux administrateurs de configurer des connexions à des stockage externes, tels que des serveurs FTP, des magasins d'objets S3 ou SWIFT, d'autres serveurs Nextcloud, des serveurs WebDAV, etc. Les administrateurs peuvent choisir les types de stockage à activer et peuvent monter ces emplacements de stockage pour un utilisateur, un groupe ou l'ensemble du système. Les utilisateurs verront apparaître un nouveau dossier dans leur répertoire racine Nextcloud, auquel ils pourront accéder et utiliser comme n'importe quel autre dossier Nextcloud. Le stockage externe permet également aux utilisateurs de partager des fichiers stockés dans ces emplacements externes. Dans ce cas, les informations d'identification du propriétaire du fichier sont utilisées lorsque le destinataire demande le fichier à partir du stockage externe, garantissant ainsi que le destinataire peut accéder au fichier partagé.\n\nLe stockage externe peut être configuré à l'aide de l'interface graphique ou via l'interface en ligne de commande. Cette deuxième option offre àaux utilisateurs avancés une plus grande flexibilité pour configurer les montages de stockage externes en masse et définir les priorités de montage. D'autres informations sont disponibles dans la documentation de l'interface graphique de stockage externe et la documentation du fichier de configuration de stockage externe.", "No external storage configured or you don't have the permission to configure them" : "Aucun stockage externe configuré ou vous n'avez pas l'autorisation de les configurer", "Name" : "Nom", "Storage type" : "Type de stockage", @@ -138,7 +136,6 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Cette application permet aux administrateurs de configurer des connexions à des fournisseurs de stockage externes, tels que des serveurs FTP, des magasins d'objets S3 ou SWIFT, Google Drive, Dropbox, d'autres serveurs Nextcloud, des serveurs WebDAV, etc. Les administrateurs peuvent choisir les types de stockage à activer et peuvent monter ces emplacements de stockage pour un utilisateur, un groupe ou l'ensemble du système. Les utilisateurs verront apparaître un nouveau dossier dans leur répertoire racine Nextcloud, auquel ils pourront accéder et utiliser comme n'importe quel autre dossier Nextcloud. Le stockage externe permet également aux utilisateurs de partager des fichiers stockés dans ces emplacements externes. Dans ce cas, les informations d'identification du propriétaire du fichier sont utilisées lorsque le destinataire demande le fichier à partir du stockage externe, garantissant ainsi que le destinataire peut accéder au fichier partagé.\n\nLe stockage externe peut être configuré à l'aide de l'interface graphique ou via l'interface en ligne de commande. Cette deuxième option offre aux utilisateurs avancés une plus grande flexibilité pour configurer les montages de stockage externes en masse et définir les priorités de montage. D'autres informations sont disponibles dans la documentation de l'interface graphique de stockage externe et la documentation du fichier de configuration de stockage externe.", "No external storage configured" : "Aucun stockage externe configuré", "You can add external storages in the personal settings" : "Vous pouvez ajouter des stockages externes via vos paramètres personnels", "Delete" : "Supprimer", diff --git a/apps/files_external/l10n/fr.json b/apps/files_external/l10n/fr.json index 3230f4c3d47..66ca54c3791 100644 --- a/apps/files_external/l10n/fr.json +++ b/apps/files_external/l10n/fr.json @@ -103,8 +103,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support du FTP dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Merci de demander à votre administrateur de l'installer.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" n'est pas installé. Le montage de %s n'est pas possible. Merci de demander à l'administrateur système de l'installer.", "External storage support" : "Support de stockage externe", - "Adds basic external storage support" : "Ajout de la prise en charge basique du stockage externe", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Cette application permet aux administrateurs de configurer des connexions à des stockage externes, tels que des serveurs FTP, des magasins d'objets S3 ou SWIFT, d'autres serveurs Nextcloud, des serveurs WebDAV, etc. Les administrateurs peuvent choisir les types de stockage à activer et peuvent monter ces emplacements de stockage pour un utilisateur, un groupe ou l'ensemble du système. Les utilisateurs verront apparaître un nouveau dossier dans leur répertoire racine Nextcloud, auquel ils pourront accéder et utiliser comme n'importe quel autre dossier Nextcloud. Le stockage externe permet également aux utilisateurs de partager des fichiers stockés dans ces emplacements externes. Dans ce cas, les informations d'identification du propriétaire du fichier sont utilisées lorsque le destinataire demande le fichier à partir du stockage externe, garantissant ainsi que le destinataire peut accéder au fichier partagé.\n\nLe stockage externe peut être configuré à l'aide de l'interface graphique ou via l'interface en ligne de commande. Cette deuxième option offre àaux utilisateurs avancés une plus grande flexibilité pour configurer les montages de stockage externes en masse et définir les priorités de montage. D'autres informations sont disponibles dans la documentation de l'interface graphique de stockage externe et la documentation du fichier de configuration de stockage externe.", "No external storage configured or you don't have the permission to configure them" : "Aucun stockage externe configuré ou vous n'avez pas l'autorisation de les configurer", "Name" : "Nom", "Storage type" : "Type de stockage", @@ -136,7 +134,6 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Cette application permet aux administrateurs de configurer des connexions à des fournisseurs de stockage externes, tels que des serveurs FTP, des magasins d'objets S3 ou SWIFT, Google Drive, Dropbox, d'autres serveurs Nextcloud, des serveurs WebDAV, etc. Les administrateurs peuvent choisir les types de stockage à activer et peuvent monter ces emplacements de stockage pour un utilisateur, un groupe ou l'ensemble du système. Les utilisateurs verront apparaître un nouveau dossier dans leur répertoire racine Nextcloud, auquel ils pourront accéder et utiliser comme n'importe quel autre dossier Nextcloud. Le stockage externe permet également aux utilisateurs de partager des fichiers stockés dans ces emplacements externes. Dans ce cas, les informations d'identification du propriétaire du fichier sont utilisées lorsque le destinataire demande le fichier à partir du stockage externe, garantissant ainsi que le destinataire peut accéder au fichier partagé.\n\nLe stockage externe peut être configuré à l'aide de l'interface graphique ou via l'interface en ligne de commande. Cette deuxième option offre aux utilisateurs avancés une plus grande flexibilité pour configurer les montages de stockage externes en masse et définir les priorités de montage. D'autres informations sont disponibles dans la documentation de l'interface graphique de stockage externe et la documentation du fichier de configuration de stockage externe.", "No external storage configured" : "Aucun stockage externe configuré", "You can add external storages in the personal settings" : "Vous pouvez ajouter des stockages externes via vos paramètres personnels", "Delete" : "Supprimer", diff --git a/apps/files_external/l10n/he.js b/apps/files_external/l10n/he.js index 803fc3eb7eb..5fbe00de221 100644 --- a/apps/files_external/l10n/he.js +++ b/apps/files_external/l10n/he.js @@ -101,7 +101,6 @@ OC.L10N.register( "Service name" : "שם שירות", "Request timeout (seconds)" : "פסק זמן מבוקש (שניות)", "External storage support" : "תמיכה באחסון חיצוני", - "Adds basic external storage support" : "מוסיף תמיכה בסיסית בהתקן חיצוני", "No external storage configured or you don't have the permission to configure them" : "לא הוגדר התקן חיצוני או שאין לך הרשאות להגדיר כאלה", "Name" : "שם", "Storage type" : "סוג אחסון", diff --git a/apps/files_external/l10n/he.json b/apps/files_external/l10n/he.json index 8a27fc69c53..0f2312011f0 100644 --- a/apps/files_external/l10n/he.json +++ b/apps/files_external/l10n/he.json @@ -99,7 +99,6 @@ "Service name" : "שם שירות", "Request timeout (seconds)" : "פסק זמן מבוקש (שניות)", "External storage support" : "תמיכה באחסון חיצוני", - "Adds basic external storage support" : "מוסיף תמיכה בסיסית בהתקן חיצוני", "No external storage configured or you don't have the permission to configure them" : "לא הוגדר התקן חיצוני או שאין לך הרשאות להגדיר כאלה", "Name" : "שם", "Storage type" : "סוג אחסון", diff --git a/apps/files_external/l10n/is.js b/apps/files_external/l10n/is.js index bfac582cb93..aa229823020 100644 --- a/apps/files_external/l10n/is.js +++ b/apps/files_external/l10n/is.js @@ -105,7 +105,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við FTP í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ekki uppsett. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "External storage support" : "Stuðningur við utanaðkomandi gagnageymslur", - "Adds basic external storage support" : "Bætir við grunnstuðningi fyrir utanaðkomandi gagnageymslur", "No external storage configured or you don't have the permission to configure them" : "Engin utanaðkomandi gagnageymsla er uppsett eða að þú hefur ekki heimild til að stilla slíkt", "Name" : "Nafn", "Storage type" : "Tegund gagnageymslu", diff --git a/apps/files_external/l10n/is.json b/apps/files_external/l10n/is.json index 5d4ba174f88..9aec898279b 100644 --- a/apps/files_external/l10n/is.json +++ b/apps/files_external/l10n/is.json @@ -103,7 +103,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við FTP í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ekki uppsett. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "External storage support" : "Stuðningur við utanaðkomandi gagnageymslur", - "Adds basic external storage support" : "Bætir við grunnstuðningi fyrir utanaðkomandi gagnageymslur", "No external storage configured or you don't have the permission to configure them" : "Engin utanaðkomandi gagnageymsla er uppsett eða að þú hefur ekki heimild til að stilla slíkt", "Name" : "Nafn", "Storage type" : "Tegund gagnageymslu", diff --git a/apps/files_external/l10n/it.js b/apps/files_external/l10n/it.js index 4682323ca8e..7029647d84c 100644 --- a/apps/files_external/l10n/it.js +++ b/apps/files_external/l10n/it.js @@ -106,7 +106,7 @@ OC.L10N.register( "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "External storage support" : "Supporto archiviazioni esterne", "Adds basic external storage support" : "Aggiunge un supporto di base per archiviazioni esterne", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, S3 o archivi di oggetti SWIFT, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne.", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, archivi di oggetti S3 o SWIFT, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o per l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia grafica dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne.", "No external storage configured or you don't have the permission to configure them" : "Nessuna archiviazione esterna configurata o non hai i permessi per configurarle", "Name" : "Nome", "Storage type" : "Tipo di archiviazione", @@ -138,7 +138,7 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, S3 o archivi di oggetti SWIFT, Google Drive, Dropbox, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, archivi di oggetti S3 o SWIFT, Google Drive, Dropbox, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o per l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia grafica dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne", "No external storage configured" : "Nessuna archiviazione esterna configurata", "You can add external storages in the personal settings" : "Puoi aggiungere archiviazioni esterne nelle impostazioni personali", "Delete" : "Elimina", diff --git a/apps/files_external/l10n/it.json b/apps/files_external/l10n/it.json index 0742d62110d..137c9491bb0 100644 --- a/apps/files_external/l10n/it.json +++ b/apps/files_external/l10n/it.json @@ -104,7 +104,7 @@ "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "External storage support" : "Supporto archiviazioni esterne", "Adds basic external storage support" : "Aggiunge un supporto di base per archiviazioni esterne", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, S3 o archivi di oggetti SWIFT, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne.", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, archivi di oggetti S3 o SWIFT, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o per l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia grafica dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne.", "No external storage configured or you don't have the permission to configure them" : "Nessuna archiviazione esterna configurata o non hai i permessi per configurarle", "Name" : "Nome", "Storage type" : "Tipo di archiviazione", @@ -136,7 +136,7 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, S3 o archivi di oggetti SWIFT, Google Drive, Dropbox, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Questa applicazione consente agli amministratori di configurare connessioni a fornitori di archiviazione esterna, come server FTP, archivi di oggetti S3 o SWIFT, Google Drive, Dropbox, altri server Nextcloud, server WebDAV e altro. Gli amministratori possono scegliere quale tipo di archiviazione abilitare e possono montare queste posizioni di archiviazione per un utente, un gruppo o per l'intero sistema. Gli utenti vedranno una nuova cartella apparire nella loro cartella radice di Nextcloud, che possono accedere e utilizzare come qualsiasi altra cartella di Nextcloud. L'archiviazione esterna consente anche agli utenti di condividere file archiviati in queste posizioni esterne. In questi casi, le credenziali del proprietario del file sono utilizzate quando il destinatario richiede il file da archiviazione esterna, assicurando in tal modo che il destinatario possa accedere al file condiviso.\n\nL'archiviazione esterna può essere configurata utilizzando l'interfaccia grafica o la riga di comando. Questa seconda opzione fornisce maggiore flessibilità all'utente avanzato per una configurazione massiva dei punti di mount delle archiviazioni esterne e l'impostazione delle priorità dei punti di mount. Altre informazioni sono disponibili nella documentazione dell'interfaccia grafica dell'archiviazione esterna e nella documentazione del file di configurazione delle archiviazioni esterne", "No external storage configured" : "Nessuna archiviazione esterna configurata", "You can add external storages in the personal settings" : "Puoi aggiungere archiviazioni esterne nelle impostazioni personali", "Delete" : "Elimina", diff --git a/apps/files_external/l10n/pt_BR.js b/apps/files_external/l10n/pt_BR.js index 6b132c1a759..acdd6c44724 100644 --- a/apps/files_external/l10n/pt_BR.js +++ b/apps/files_external/l10n/pt_BR.js @@ -105,8 +105,8 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte FTP no PHP não está habilitado ou instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" não está instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "External storage support" : "Suporte a armazenamento externo", - "Adds basic external storage support" : "Adiciona suporte básico ao armazenamento externo", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões com provedores de armazenamento externos, como servidores FTP, armazenamentos de objetos S3 ou SWIFT, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montar esses locais de armazenamento para usuário, grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta do Nextcloud. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou a linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens de armazenamento externo em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", + "Adds basic external storage support" : "Adiciona suporte básico para armazenamento externo", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões com provedores de armazenamento externos, como servidores FTP, armazenamentos de objetos S3 ou SWIFT, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montar esses locais de armazenamento para um usuário, um grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou pela linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", "No external storage configured or you don't have the permission to configure them" : "Sem armazenamento externo configurado ou você não tem permissão para configurá-los", "Name" : "Nome", "Storage type" : "Tipo de armazenamento", @@ -138,7 +138,7 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões a provedores de armazenamento externos, como servidores FTP, armazenamentos de objeto S3 ou SWIFT, Google Drive, Dropbox, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montar esses locais de armazenamento para usuário, grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta do Nextcloud. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou a linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens de armazenamento externo em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões com provedores de armazenamento externos, como servidores FTP, armazenamentos de objeto S3 ou SWIFT, Google Drive, Dropbox, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montá-los para um usuário, um grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou pela linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", "No external storage configured" : "Nenhum armazendo externo foi configurado", "You can add external storages in the personal settings" : "Você pode adicionar armazenamentos externos nas configurações pessoais", "Delete" : "Excluir", diff --git a/apps/files_external/l10n/pt_BR.json b/apps/files_external/l10n/pt_BR.json index 090fd5c5582..e6f73bff6eb 100644 --- a/apps/files_external/l10n/pt_BR.json +++ b/apps/files_external/l10n/pt_BR.json @@ -103,8 +103,8 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte FTP no PHP não está habilitado ou instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" não está instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "External storage support" : "Suporte a armazenamento externo", - "Adds basic external storage support" : "Adiciona suporte básico ao armazenamento externo", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões com provedores de armazenamento externos, como servidores FTP, armazenamentos de objetos S3 ou SWIFT, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montar esses locais de armazenamento para usuário, grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta do Nextcloud. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou a linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens de armazenamento externo em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", + "Adds basic external storage support" : "Adiciona suporte básico para armazenamento externo", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões com provedores de armazenamento externos, como servidores FTP, armazenamentos de objetos S3 ou SWIFT, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montar esses locais de armazenamento para um usuário, um grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou pela linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", "No external storage configured or you don't have the permission to configure them" : "Sem armazenamento externo configurado ou você não tem permissão para configurá-los", "Name" : "Nome", "Storage type" : "Tipo de armazenamento", @@ -136,7 +136,7 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões a provedores de armazenamento externos, como servidores FTP, armazenamentos de objeto S3 ou SWIFT, Google Drive, Dropbox, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montar esses locais de armazenamento para usuário, grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta do Nextcloud. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou a linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens de armazenamento externo em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", + "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Esse aplicativo permite que os administradores configurem conexões com provedores de armazenamento externos, como servidores FTP, armazenamentos de objeto S3 ou SWIFT, Google Drive, Dropbox, outros servidores Nextcloud, servidores WebDAV e muito mais. Os administradores podem escolher quais tipos de armazenamento serão habilitados e podem montá-los para um usuário, um grupo ou todo o sistema. Os usuários verão uma nova pasta aparecer no diretório raiz do Nextcloud, que eles podem acessar e usar como qualquer outra pasta. O armazenamento externo também permite que os usuários compartilhem arquivos armazenados nesses locais externos. Nesses casos, as credenciais do proprietário do arquivo são usadas quando o destinatário solicita o arquivo do armazenamento externo, garantindo, assim, que o destinatário possa acessar o arquivo compartilhado.\n\nO armazenamento externo pode ser configurado usando a GUI ou pela linha de comando. Essa segunda opção fornece ao usuário avançado mais flexibilidade para configurar montagens em massa e definir prioridades de montagem. Mais informações estão disponíveis na documentação da GUI de armazenamento externo e na documentação do Arquivo de Configuração de armazenamento externo.", "No external storage configured" : "Nenhum armazendo externo foi configurado", "You can add external storages in the personal settings" : "Você pode adicionar armazenamentos externos nas configurações pessoais", "Delete" : "Excluir", diff --git a/apps/files_external/l10n/ru.js b/apps/files_external/l10n/ru.js index dd0573d2d54..a5d9dbae6e4 100644 --- a/apps/files_external/l10n/ru.js +++ b/apps/files_external/l10n/ru.js @@ -105,8 +105,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Поддержка FTP в PHP не включена и/или не установлена, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "«%s» не установлен, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "External storage support" : "Поддержка внешних хранилищ", - "Adds basic external storage support" : "Добавьте поддержка внешних хранилищ", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Это приложение позволяет администраторам настраивать подключения к провайдерам внешних хранилищ, таким как FTP-серверы, хранилища объектов S3 или SWIFT, другие серверы Nextcloud, серверы WebDAV и т. Д. Администраторы могут выбирать типы хранилищ для использования и монтировать эти места хранения для пользователя, группы или всей системы. Пользователи увидят, что в их корневой директории Nextcloud появилась новая папка, которую они могут использовать, как и любую другую папку Nextcloud. Внешние хранилища также позволяют пользователям обмениваться файлами, хранящимися в них. В этих случаях учетные данные для владельца файла используются, когда получатель запрашивает файл из внешнего хранилища, тем самым гарантируя, что получатель может получить доступ к общему файлу. Внешнее хранилище можно настроить с помощью GUI или в командной строке. Второй вариант предоставляет продвинутому пользователю большую гибкость для настройки внешнего хранилища и установки приоритетов монтирования. Дополнительная информация доступна в документации по GUI внешного хранилища и документации файла конфигурации внешнего хранилища.", "No external storage configured or you don't have the permission to configure them" : "Нет настроенного внешнего хранилища или у вас нет прав доступа для их настройки", "Name" : "Имя", "Storage type" : "Тип хранилища", @@ -138,7 +136,6 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Диск", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Это приложение позволяет администраторам настраивать подключения к провайдерам внешних хранилищ, таким как FTP-серверы, хранилища объектов S3 или SWIFT, Google Drive, Dropbox, другие серверы Nextcloud, серверы WebDAV и т. Д. Администраторы могут выбирать типы хранилищ для использования и монтировать эти места хранения для пользователя, группы или всей системы. Пользователи увидят, что в их корневой директории Nextcloud появилась новая папка, которую они могут использовать, как и любую другую папку Nextcloud. Внешние хранилища также позволяют пользователям обмениваться файлами, хранящимися в них. В этих случаях учетные данные для владельца файла используются, когда получатель запрашивает файл из внешнего хранилища, тем самым гарантируя, что получатель может получить доступ к общему файлу. Внешнее хранилище можно настроить с помощью GUI или в командной строке. Второй вариант предоставляет продвинутому пользователю большую гибкость для настройки внешнего хранилища и установки приоритетов монтирования. Дополнительная информация доступна в документации по GUI внешного хранилища и документации файла конфигурации внешнего хранилища.", "No external storage configured" : "Внешние хранилища не настроены", "You can add external storages in the personal settings" : "Вы можете добавить внешние хранилища в личных настройках", "Delete" : "Удалить", diff --git a/apps/files_external/l10n/ru.json b/apps/files_external/l10n/ru.json index d47151d4490..898c038cf15 100644 --- a/apps/files_external/l10n/ru.json +++ b/apps/files_external/l10n/ru.json @@ -103,8 +103,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Поддержка FTP в PHP не включена и/или не установлена, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "«%s» не установлен, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "External storage support" : "Поддержка внешних хранилищ", - "Adds basic external storage support" : "Добавьте поддержка внешних хранилищ", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Это приложение позволяет администраторам настраивать подключения к провайдерам внешних хранилищ, таким как FTP-серверы, хранилища объектов S3 или SWIFT, другие серверы Nextcloud, серверы WebDAV и т. Д. Администраторы могут выбирать типы хранилищ для использования и монтировать эти места хранения для пользователя, группы или всей системы. Пользователи увидят, что в их корневой директории Nextcloud появилась новая папка, которую они могут использовать, как и любую другую папку Nextcloud. Внешние хранилища также позволяют пользователям обмениваться файлами, хранящимися в них. В этих случаях учетные данные для владельца файла используются, когда получатель запрашивает файл из внешнего хранилища, тем самым гарантируя, что получатель может получить доступ к общему файлу. Внешнее хранилище можно настроить с помощью GUI или в командной строке. Второй вариант предоставляет продвинутому пользователю большую гибкость для настройки внешнего хранилища и установки приоритетов монтирования. Дополнительная информация доступна в документации по GUI внешного хранилища и документации файла конфигурации внешнего хранилища.", "No external storage configured or you don't have the permission to configure them" : "Нет настроенного внешнего хранилища или у вас нет прав доступа для их настройки", "Name" : "Имя", "Storage type" : "Тип хранилища", @@ -136,7 +134,6 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Диск", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Это приложение позволяет администраторам настраивать подключения к провайдерам внешних хранилищ, таким как FTP-серверы, хранилища объектов S3 или SWIFT, Google Drive, Dropbox, другие серверы Nextcloud, серверы WebDAV и т. Д. Администраторы могут выбирать типы хранилищ для использования и монтировать эти места хранения для пользователя, группы или всей системы. Пользователи увидят, что в их корневой директории Nextcloud появилась новая папка, которую они могут использовать, как и любую другую папку Nextcloud. Внешние хранилища также позволяют пользователям обмениваться файлами, хранящимися в них. В этих случаях учетные данные для владельца файла используются, когда получатель запрашивает файл из внешнего хранилища, тем самым гарантируя, что получатель может получить доступ к общему файлу. Внешнее хранилище можно настроить с помощью GUI или в командной строке. Второй вариант предоставляет продвинутому пользователю большую гибкость для настройки внешнего хранилища и установки приоритетов монтирования. Дополнительная информация доступна в документации по GUI внешного хранилища и документации файла конфигурации внешнего хранилища.", "No external storage configured" : "Внешние хранилища не настроены", "You can add external storages in the personal settings" : "Вы можете добавить внешние хранилища в личных настройках", "Delete" : "Удалить", diff --git a/apps/files_external/l10n/sr.js b/apps/files_external/l10n/sr.js index 9ea93c02468..30385f6d9cf 100644 --- a/apps/files_external/l10n/sr.js +++ b/apps/files_external/l10n/sr.js @@ -105,8 +105,6 @@ OC.L10N.register( "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP подршка за PHP није омогућена или инсталирана. Монтирање %s није могуће. Затражите од вашег администратора система да је инсталира.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "„%s“ није инсталиран. Монтирање %s није могуће. Затражите од вашег администратора система да га инсталира.", "External storage support" : "Подршка за спољашње складиште", - "Adds basic external storage support" : "Додаје основу подршку за спољна складишта", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Ова апликација омогућава администраторима да подесе конекције на спољашња складишта, као што су FTP сервери, S3 или SWIFT објектна складишта, други Некстклауд сервери, WebDAV сервери и још много других. Администратори могу да одаберу које типове складишта желе да омогуће и могу да монтирају локације ових складишта посебно за корисника, за групу или за цео систем. Корисници ће видети нову фасциклу која ће се појавити у кореном директоријуму, којој могу да приступају и да је користе као и било коју другу Некстклауд фасциклу. Спољашња складишта такође омогућавају корисницима и да деле фајлове смештене на овим спољашњим локацијама. У овим случајевима, када неко затражи приступ фајлу из спољашњег складишта користе се акредитиви власника фајла, омогућавајући тако да прималац може да приступи дељеном фајлу.\n\nСпољашње складиште се може конфигурисати графички или командном линијом. Друга опција пружа више флексибилности напредним корисницима када треба монтирати велики број складишта и подесити велики број приоритета монтирања. Више информација је доступно у GUI документацији спољашњег складишта и у документацији Конфигурационог Фајла спољашњег складишта.", "No external storage configured or you don't have the permission to configure them" : "Нема конфигурисаних спољашњих складишта или немате потребне дозволе да их конфигуришете", "Name" : "Назив", "Storage type" : "Тип складишта", @@ -138,7 +136,6 @@ OC.L10N.register( "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Ова апликација омогућава администраторима да подесе конекције на спољашња складишта, као што су FTP сервери, S3 или SWIFT објектна складишта, Google Drive, Dropbox, други Некстклауд сервери, WebDAV сервери и још много других. Администратори могу да одаберу које типове складишта желе да омогуће и могу да монтирају локације ових складишта посебно за корисника, за групу или за цео систем. Корисници ће видети нову фасциклу која ће се појавити у кореном директоријуму, којој могу да приступају и да је користе као и било коју другу Некстклауд фасциклу. Спољашња складишта такође омогућавају корисницима и да деле фајлове смештене на овим спољашњим локацијама. У овим случајевима, када неко затражи приступ фајлу из спољашњег складишта користе се акредитиви власника фајла, омогућавајући тако да прималац може да приступи дељеном фајлу.\n\nСпољашње складиште се може конфигурисати графички или командном линијом. Друга опција пружа више флексибилности напредним корисницима када треба монтирати велики број складишта и подесити велики број приоритета монтирања. Више информација је доступно у GUI документацији спољашњег складишта и у документацији Конфигурационог Фајла спољашњег складишта.", "No external storage configured" : "Нема подешеног спољашњег складишта", "You can add external storages in the personal settings" : "Можете додати спољашња складишта у вашим личним подешавањима", "Delete" : "Обриши", diff --git a/apps/files_external/l10n/sr.json b/apps/files_external/l10n/sr.json index b2f2d819bd4..ec383f6bdf2 100644 --- a/apps/files_external/l10n/sr.json +++ b/apps/files_external/l10n/sr.json @@ -103,8 +103,6 @@ "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP подршка за PHP није омогућена или инсталирана. Монтирање %s није могуће. Затражите од вашег администратора система да је инсталира.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "„%s“ није инсталиран. Монтирање %s није могуће. Затражите од вашег администратора система да га инсталира.", "External storage support" : "Подршка за спољашње складиште", - "Adds basic external storage support" : "Додаје основу подршку за спољна складишта", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Ова апликација омогућава администраторима да подесе конекције на спољашња складишта, као што су FTP сервери, S3 или SWIFT објектна складишта, други Некстклауд сервери, WebDAV сервери и још много других. Администратори могу да одаберу које типове складишта желе да омогуће и могу да монтирају локације ових складишта посебно за корисника, за групу или за цео систем. Корисници ће видети нову фасциклу која ће се појавити у кореном директоријуму, којој могу да приступају и да је користе као и било коју другу Некстклауд фасциклу. Спољашња складишта такође омогућавају корисницима и да деле фајлове смештене на овим спољашњим локацијама. У овим случајевима, када неко затражи приступ фајлу из спољашњег складишта користе се акредитиви власника фајла, омогућавајући тако да прималац може да приступи дељеном фајлу.\n\nСпољашње складиште се може конфигурисати графички или командном линијом. Друга опција пружа више флексибилности напредним корисницима када треба монтирати велики број складишта и подесити велики број приоритета монтирања. Више информација је доступно у GUI документацији спољашњег складишта и у документацији Конфигурационог Фајла спољашњег складишта.", "No external storage configured or you don't have the permission to configure them" : "Нема конфигурисаних спољашњих складишта или немате потребне дозволе да их конфигуришете", "Name" : "Назив", "Storage type" : "Тип складишта", @@ -136,7 +134,6 @@ "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", "Google Drive" : "Google Drive", - "This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other Nextcloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root Nextcloud directory, which they can access and use like any other Nextcloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.\n\nExternal storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation." : "Ова апликација омогућава администраторима да подесе конекције на спољашња складишта, као што су FTP сервери, S3 или SWIFT објектна складишта, Google Drive, Dropbox, други Некстклауд сервери, WebDAV сервери и још много других. Администратори могу да одаберу које типове складишта желе да омогуће и могу да монтирају локације ових складишта посебно за корисника, за групу или за цео систем. Корисници ће видети нову фасциклу која ће се појавити у кореном директоријуму, којој могу да приступају и да је користе као и било коју другу Некстклауд фасциклу. Спољашња складишта такође омогућавају корисницима и да деле фајлове смештене на овим спољашњим локацијама. У овим случајевима, када неко затражи приступ фајлу из спољашњег складишта користе се акредитиви власника фајла, омогућавајући тако да прималац може да приступи дељеном фајлу.\n\nСпољашње складиште се може конфигурисати графички или командном линијом. Друга опција пружа више флексибилности напредним корисницима када треба монтирати велики број складишта и подесити велики број приоритета монтирања. Више информација је доступно у GUI документацији спољашњег складишта и у документацији Конфигурационог Фајла спољашњег складишта.", "No external storage configured" : "Нема подешеног спољашњег складишта", "You can add external storages in the personal settings" : "Можете додати спољашња складишта у вашим личним подешавањима", "Delete" : "Обриши", diff --git a/apps/files_external/lib/Lib/Storage/SMB.php b/apps/files_external/lib/Lib/Storage/SMB.php index 9c0e6910309..760cc9ef98b 100644 --- a/apps/files_external/lib/Lib/Storage/SMB.php +++ b/apps/files_external/lib/Lib/Storage/SMB.php @@ -41,6 +41,7 @@ use Icewind\SMB\Exception\Exception; use Icewind\SMB\Exception\ForbiddenException; use Icewind\SMB\Exception\InvalidArgumentException; use Icewind\SMB\Exception\NotFoundException; +use Icewind\SMB\Exception\TimedOutException; use Icewind\SMB\IFileInfo; use Icewind\SMB\Native\NativeServer; use Icewind\SMB\ServerFactory; @@ -78,6 +79,9 @@ class SMB extends Common implements INotifyStorage { */ protected $statCache; + /** @var ILogger */ + protected $logger; + public function __construct($params) { if (!isset($params['host'])) { throw new \Exception('Invalid configuration, no host provided'); @@ -92,6 +96,12 @@ class SMB extends Common implements INotifyStorage { throw new \Exception('Invalid configuration, no credentials provided'); } + if (isset($params['logger'])) { + $this->logger = $params['logger']; + } else { + $this->logger = \OC::$server->getLogger(); + } + $serverFactory = new ServerFactory(); $this->server = $serverFactory->createServer($params['host'], $auth); $this->share = $this->server->getShare(trim($params['share'], '/')); @@ -155,7 +165,7 @@ class SMB extends Common implements INotifyStorage { } return $this->statCache[$path]; } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while getting file info']); + $this->logger->logException($e, ['message' => 'Error while getting file info']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } } @@ -174,15 +184,20 @@ class SMB extends Common implements INotifyStorage { } return array_filter($files, function (IFileInfo $file) { try { + if ($file->isHidden()) { + $this->logger->debug('hiding hidden file ' . $file->getName()); + } return !$file->isHidden(); } catch (ForbiddenException $e) { + $this->logger->logException($e, ['level' => ILogger::DEBUG, 'message' => 'Hiding forbidden entry ' . $file->getName()]); return false; } catch (NotFoundException $e) { + $this->logger->logException($e, ['level' => ILogger::DEBUG, 'message' => 'Hiding not found entry ' . $file->getName()]); return false; } }); } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while getting folder content']); + $this->logger->logException($e, ['message' => 'Error while getting folder content']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } } @@ -225,7 +240,7 @@ class SMB extends Common implements INotifyStorage { $this->remove($target); $result = $this->share->rename($absoluteSource, $absoluteTarget, false); } else { - \OC::$server->getLogger()->logException($e, ['level' => ILogger::WARN]); + $this->logger->logException($e, ['level' => ILogger::WARN]); return false; } } catch (InvalidArgumentException $e) { @@ -233,24 +248,30 @@ class SMB extends Common implements INotifyStorage { $this->remove($target); $result = $this->share->rename($absoluteSource, $absoluteTarget, false); } else { - \OC::$server->getLogger()->logException($e, ['level' => ILogger::WARN]); + $this->logger->logException($e, ['level' => ILogger::WARN]); return false; } } catch (\Exception $e) { - \OC::$server->getLogger()->logException($e, ['level' => ILogger::WARN]); + $this->logger->logException($e, ['level' => ILogger::WARN]); return false; } unset($this->statCache[$absoluteSource], $this->statCache[$absoluteTarget]); return $result; } - public function stat($path) { + public function stat($path, $retry = true) { try { $result = $this->formatInfo($this->getFileInfo($path)); } catch (ForbiddenException $e) { return false; } catch (NotFoundException $e) { return false; + } catch (TimedOutException $e) { + if ($retry) { + return $this->stat($path, false); + } else { + throw $e; + } } if ($this->remoteIsShare() && $this->isRootDir($path)) { $result['mtime'] = $this->shareMTime(); @@ -320,7 +341,7 @@ class SMB extends Common implements INotifyStorage { } catch (ForbiddenException $e) { return false; } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while deleting file']); + $this->logger->logException($e, ['message' => 'Error while deleting file']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } } @@ -405,7 +426,7 @@ class SMB extends Common implements INotifyStorage { } catch (ForbiddenException $e) { return false; } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while opening file']); + $this->logger->logException($e, ['message' => 'Error while opening file']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } } @@ -432,7 +453,7 @@ class SMB extends Common implements INotifyStorage { } catch (ForbiddenException $e) { return false; } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while removing folder']); + $this->logger->logException($e, ['message' => 'Error while removing folder']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } } @@ -446,7 +467,7 @@ class SMB extends Common implements INotifyStorage { } return false; } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while creating file']); + $this->logger->logException($e, ['message' => 'Error while creating file']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } } @@ -482,7 +503,7 @@ class SMB extends Common implements INotifyStorage { $this->share->mkdir($path); return true; } catch (ConnectException $e) { - \OC::$server->getLogger()->logException($e, ['message' => 'Error while creating folder']); + $this->logger->logException($e, ['message' => 'Error while creating folder']); throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e); } catch (Exception $e) { return false; @@ -556,7 +577,7 @@ class SMB extends Common implements INotifyStorage { try { return parent::test(); } catch (Exception $e) { - \OC::$server->getLogger()->logException($e); + $this->logger->logException($e); return false; } } diff --git a/apps/files_sharing/css/public.scss b/apps/files_sharing/css/public.scss index 583912ad236..3d6fc62ceba 100644 --- a/apps/files_sharing/css/public.scss +++ b/apps/files_sharing/css/public.scss @@ -1,5 +1,5 @@ #preview { - background: #fff; + background: var(--color-main-background); text-align: center; } diff --git a/apps/files_sharing/css/sharetabview.scss b/apps/files_sharing/css/sharetabview.scss index 83790c9ec4f..14be9562228 100644 --- a/apps/files_sharing/css/sharetabview.scss +++ b/apps/files_sharing/css/sharetabview.scss @@ -168,6 +168,7 @@ margin-left: auto; display: flex; align-items: center; + white-space: nowrap; // can edit label > .shareOption > label { padding: 13px; @@ -179,8 +180,8 @@ display: block; .icon-more { padding: 14px; - height: 16px; - width: 16px; + height: 44px; + width: 44px; opacity: .5; display: block; cursor: pointer; @@ -196,12 +197,15 @@ } .username { padding: 0 8px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } } .ui-autocomplete { /* limit dropdown height to 4 1/2 entries */ - max-height: 200px; + max-height: calc(36px * 4.5);; overflow-y: auto; overflow-x: hidden; z-index: 1550 !important; diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 0f8dc58a85e..68529fd882f 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -42,14 +42,16 @@ var fileActions = fileList.fileActions; var oldCreateRow = fileList._createRow; fileList._createRow = function(fileData) { + + var tr = oldCreateRow.apply(this, arguments); + var sharePermissions = OCA.Sharing.Util.getSharePermissions(fileData); if (fileData.permissions === 0) { // no permission, disabling sidebar + delete fileActions.actions.all.Comment; delete fileActions.actions.all.Details; + delete fileActions.actions.all.Goto; } - - var tr = oldCreateRow.apply(this, arguments); - var sharePermissions = OCA.Sharing.Util.getSharePermissions(fileData); tr.attr('data-share-permissions', sharePermissions); if (fileData.shareOwner) { tr.attr('data-share-owner', fileData.shareOwner); diff --git a/apps/files_sharing/js/sharedfilelist.js b/apps/files_sharing/js/sharedfilelist.js index 71192497143..3a6de0d5012 100644 --- a/apps/files_sharing/js/sharedfilelist.js +++ b/apps/files_sharing/js/sharedfilelist.js @@ -166,24 +166,8 @@ }, updateRow: function($tr, fileInfo, options) { - if(!fileInfo instanceof OCA.Sharing.SharedFileInfo) { - // recycle SharedFileInfo values if something tries to overwrite it - var oldModel = this.getModelForFile($tr); - - if(_.isUndefined(fileInfo.recipientData) && oldModel.recipientData) { - fileInfo.recipientData = oldModel.recipientData; - } - if(_.isUndefined(fileInfo.recipients) && oldModel.recipientData) { - fileInfo.recipientData = oldModel.recipientData; - } - if(_.isUndefined(fileInfo.shares) && oldModel.shares) { - fileInfo.shares = oldModel.shares; - } - if(_.isUndefined(fileInfo.shareOwner) && oldModel.shareOwner) { - fileInfo.shareOwner = oldModel.shareOwner; - } - } - OCA.Files.FileList.prototype._createRow.updateRow(this, arguments); + // no-op, suppress re-rendering + return $tr; }, reload: function() { @@ -328,11 +312,11 @@ * Converts the OCS API share response data to a file info * list * @param {Array} data OCS API share array + * @param {bool} sharedWithUser * @return {Array.<OCA.Sharing.SharedFileInfo>} array of shared file info */ _makeFilesFromShares: function(data, sharedWithUser) { /* jshint camelcase: false */ - var self = this; var files = data; if (this._linksOnly) { @@ -447,8 +431,8 @@ // array of sorted names data.mountType = 'shared'; delete data.recipientsCount; - if (self._sharedWithUser) { - // only for outgoing shres + if (sharedWithUser) { + // only for outgoing shares delete data.shareTypes; } else { data.shareTypes = _.keys(data.shareTypes); diff --git a/apps/files_sharing/l10n/cs.js b/apps/files_sharing/l10n/cs.js index 538f6b03849..b7def6d396e 100644 --- a/apps/files_sharing/l10n/cs.js +++ b/apps/files_sharing/l10n/cs.js @@ -18,7 +18,9 @@ OC.L10N.register( "Shares will show up here" : "Sdílení se zobrazí zde", "Restore share" : "Obnovit sdílení", "Something happened. Unable to restore the share." : "Něco se stalo. Sdílení se nedaří obnovit.", + "Move or copy" : "Přesunout nebo zkopírovat", "Download" : "Stáhnout", + "Delete" : "Smazat", "You can upload into this folder" : "Do této složky můžete nahrávat", "No compatible server found at {remote}" : "Na {remote} nebyl nalezen kompatibilní server", "Invalid server URL" : "Neplatná URL serveru", diff --git a/apps/files_sharing/l10n/cs.json b/apps/files_sharing/l10n/cs.json index ba71287dbc6..e7c3acc1d99 100644 --- a/apps/files_sharing/l10n/cs.json +++ b/apps/files_sharing/l10n/cs.json @@ -16,7 +16,9 @@ "Shares will show up here" : "Sdílení se zobrazí zde", "Restore share" : "Obnovit sdílení", "Something happened. Unable to restore the share." : "Něco se stalo. Sdílení se nedaří obnovit.", + "Move or copy" : "Přesunout nebo zkopírovat", "Download" : "Stáhnout", + "Delete" : "Smazat", "You can upload into this folder" : "Do této složky můžete nahrávat", "No compatible server found at {remote}" : "Na {remote} nebyl nalezen kompatibilní server", "Invalid server URL" : "Neplatná URL serveru", diff --git a/apps/files_sharing/l10n/en_GB.js b/apps/files_sharing/l10n/en_GB.js index 6f4da3b80cb..708b6d30029 100644 --- a/apps/files_sharing/l10n/en_GB.js +++ b/apps/files_sharing/l10n/en_GB.js @@ -92,7 +92,6 @@ OC.L10N.register( "Add to your Nextcloud" : "Add to your Nextcloud", "Share API is disabled" : "Share API is disabled", "File sharing" : "File sharing", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation.", "No entries found in this folder" : "No entries found in this folder", "Name" : "Name", "Share time" : "Share time", diff --git a/apps/files_sharing/l10n/en_GB.json b/apps/files_sharing/l10n/en_GB.json index c4e902a27e5..14c51e7f17f 100644 --- a/apps/files_sharing/l10n/en_GB.json +++ b/apps/files_sharing/l10n/en_GB.json @@ -90,7 +90,6 @@ "Add to your Nextcloud" : "Add to your Nextcloud", "Share API is disabled" : "Share API is disabled", "File sharing" : "File sharing", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation.", "No entries found in this folder" : "No entries found in this folder", "Name" : "Name", "Share time" : "Share time", diff --git a/apps/files_sharing/l10n/es.js b/apps/files_sharing/l10n/es.js index 78fbcbd644c..f409029db2f 100644 --- a/apps/files_sharing/l10n/es.js +++ b/apps/files_sharing/l10n/es.js @@ -2,23 +2,25 @@ OC.L10N.register( "files_sharing", { "Shared with others" : "Compartido con otros", - "Shared with you" : "Compartido contigo", + "Shared with you" : "Compartido conmigo", "Shared by link" : "Compartido por enlace", "Deleted shares" : "Recursos compartidos eliminados", "Shares" : "Compartidos", - "Nothing shared with you yet" : "Todavía nada compartido contigo", + "Nothing shared with you yet" : "Aún no hay nada compartido contigo", "Files and folders others share with you will show up here" : "Aquí aparecerán archivos y carpetas que otros compartan contigo", "Nothing shared yet" : "Aún no hay nada compartido", "Files and folders you share will show up here" : "Aquí aparecerán los archivos y carpetas que compartas con otros", "No shared links" : "No hay enlaces compartidos", "Files and folders you share by link will show up here" : "Aquí aparecerán los archivos y carpetas que compartas mediante un enlace", - "No deleted shares" : "No hay recursos compartidos eliminados", + "No deleted shares" : "No hay archivos compartidos eliminados", "Shares you deleted will show up here" : "Los recursos compartidos que elimines aparecerán aquí", "No shares" : "No compartidos", - "Shares will show up here" : "Aquí aparecerán los recursos que compartas", + "Shares will show up here" : "Los archivos que compartas aparecerán aquí", "Restore share" : "Restaurar recurso compartido", - "Something happened. Unable to restore the share." : "Algo ha sucedido. No se puede restaurar el recurso compartido.", + "Something happened. Unable to restore the share." : "Algo ha sucedido. No se pudo restaurar el recurso compartido.", + "Move or copy" : "Mover o copiar", "Download" : "Descargar", + "Delete" : "Eliminar", "You can upload into this folder" : "Puedes subir archivos en esta carpeta", "No compatible server found at {remote}" : "No se ha encontrado un servidor compatible en {remote}", "Invalid server URL" : "URL del servidor inválida", @@ -32,17 +34,17 @@ OC.L10N.register( "Downloaded by {email}" : "Descargado por {email}", "{file} downloaded via public link" : "{file} descargado vía enlace público", "{email} downloaded {file}" : "{email} descargó {file}", - "Shared with group {group}" : "Compartido con el grupo {grupo}", - "Removed share for group {group}" : "Eliminado el compartido para el grupo {group}", + "Shared with group {group}" : "Compartido con el grupo {group}", + "Removed share for group {group}" : "Eliminado el recurso compartido para el grupo {group}", "{actor} shared with group {group}" : "{actor} compartió con el grupo {group}", - "{actor} removed share for group {group}" : "{actor} eliminó el compartido para el grupo {group}", + "{actor} removed share for group {group}" : "{actor} eliminó el recurso compartido para el grupo {group}", "You shared {file} with group {group}" : "Ha compartido {file} con el grupo {group}", "You removed group {group} from {file}" : "Ha eliminado el grupo {group} del {file}", "{actor} shared {file} with group {group}" : "{actor} compartió {file} con el grupo {group}", "{actor} removed group {group} from {file}" : "{actor} eliminó grupo {group} de {file}", "Shared as public link" : "Compartido como enlace público", - "Removed public link" : "Eliminado enlace público", - "Public link expired" : "El enlace público ha expirado", + "Removed public link" : "Enlace público eliminado", + "Public link expired" : "El enlace público ha caducado", "{actor} shared as public link" : "{actor} compartió como enlace público", "{actor} removed public link" : "{actor} eliminó el enlace público", "Public link of {actor} expired" : "Enlace público de {actor} caducado", @@ -85,35 +87,35 @@ OC.L10N.register( "Please specify a valid group" : "Por favor, especifica un grupo válido", "Public link sharing is disabled by the administrator" : "Compartir enlaces de forma pública está deshabilitado por el administrador", "Public upload disabled by the administrator" : "La subida pública está deshabilitado por el administrador", - "Public upload is only possible for publicly shared folders" : "La subida publica solo es posible poara las carpetas publicas compartidas", + "Public upload is only possible for publicly shared folders" : "La subida publica solo es posible para las carpetas publicas compartidas", "Invalid date, date format must be YYYY-MM-DD" : "Fecha inválida, el formato de las fechas debe ser YYYY-MM-DD", - "Sharing %s failed because the back end does not allow shares from type %s" : "Compartir %s ha fallado porque el repositorio no admite compartidos del tipo %s", + "Sharing %s failed because the back end does not allow shares from type %s" : "Compartir %s ha fallado porque el backend no admite recursos compartidos del tipo %s", "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Compartir %s enviando la contraseña por Nextcloud Talk ha falllado porque Nextcloud Talk no está activado", "You cannot share to a Circle if the app is not enabled" : "No puede compartir a un Circulo si la aplicación no esta activada", "Please specify a valid circle" : "Por favor especifique un circulo valido", - "Unknown share type" : "Tipo desconocido de recurso compartido", + "Sharing %s failed because the back end does not support room shares" : "Compartir %s ha fallado porque el backend no soporta habitaciones compartidas", + "Unknown share type" : "Tipo de recurso compartido desconocido", "Not a directory" : "No es un directorio", "Could not lock path" : "No se ha podido bloquear la ruta", "Wrong or no update parameter given" : "No se ha suministrado un parametro correcto", "Can't change permissions for public share links" : "No se pueden cambiar los permisos para los enlaces de recursos compartidos públicos", "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Compartir enviando la contraseña por Nextcloud Talk ha fallado porque Nextcloud Talk no está activado", - "Cannot increase permissions" : "No es posible aumentar permisos", + "Cannot increase permissions" : "No es posible aumentar los permisos", "shared by %s" : "compartido por %s", "Direct link" : "Enlace directo", "Add to your Nextcloud" : "Añadir a tu Nextcloud", "Share API is disabled" : "El API de compartir está deshabilitado", "File sharing" : "Compartir archivos", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permite a los usuarios compartir archivos dentro de Nextcloud. Si se activa, el administrador puede elegir qué grupos pueden compartir archivos. Los usuarios aplicables pueden entonces compartir archivos y carpetas con otros usuarios y grupos dentro de Nextcloud. Además, si el administrador activa la característica de enlace compartido, se puede usar un enlace externo para compartir archivos con otros usuarios fuera de Nextcloud. Los administradores pueden obligar a usar contraseñas o fechas de expiración y activar el compartir de servidor a servidor vía enlaces compartidos, así como compartir desde dispositivos móviles.\nApagar esta característica elimina los archivos compartidos y las carpetas en el servidor, para todos los receptores, y también los clientes de sincronización y móviles. Más información disponible en la documentación de Nextcloud.", - "No entries found in this folder" : "No hay entradas en esta carpeta", + "No entries found in this folder" : "No hay nada en esta carpeta", "Name" : "Nombre", "Share time" : "Compartido hace", "Expiration date" : "Fecha de caducidad", "Sorry, this link doesn’t seem to work anymore." : "Vaya, este enlace parece que no volverá a funcionar.", - "Reasons might be:" : "Las causas podrían ser:", + "Reasons might be:" : "Las causas podrían ser: ", "the item was removed" : "el elemento fue eliminado", - "the link expired" : "el enlace expiró", + "the link expired" : "el enlace caducó", "sharing is disabled" : "compartir está desactivado", - "For more info, please ask the person who sent this link." : "Para mayor información, contacte a la persona que le envió el enlace.", + "For more info, please ask the person who sent this link." : "Para más información, pregunte a la persona que le envió el enlace.", "Note:" : "Nota:", "Download %s" : "Descargar %s", "Upload files to %s" : "Subir archivos a %s", @@ -122,8 +124,8 @@ OC.L10N.register( "Uploaded files:" : "Archivos subidos:", "{actor} removed you from {file}" : "{actor} lo ha eliminado de {file}", "%s is publicly shared" : "%s está compartido públicamente", - "This share is password-protected" : "Este elemento compartido está protegido por contraseña", - "The password is wrong. Try again." : "La contraseña introducida es errónea. Inténtelo de nuevo.", + "This share is password-protected" : "Este recurso compartido está protegido por contraseña", + "The password is wrong. Try again." : "La contraseña no es correcta. Inténtelo de nuevo.", "Password" : "Contraseña" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es.json b/apps/files_sharing/l10n/es.json index 129e87a4ad9..cc90f6a2437 100644 --- a/apps/files_sharing/l10n/es.json +++ b/apps/files_sharing/l10n/es.json @@ -1,22 +1,24 @@ { "translations": { "Shared with others" : "Compartido con otros", - "Shared with you" : "Compartido contigo", + "Shared with you" : "Compartido conmigo", "Shared by link" : "Compartido por enlace", "Deleted shares" : "Recursos compartidos eliminados", "Shares" : "Compartidos", - "Nothing shared with you yet" : "Todavía nada compartido contigo", + "Nothing shared with you yet" : "Aún no hay nada compartido contigo", "Files and folders others share with you will show up here" : "Aquí aparecerán archivos y carpetas que otros compartan contigo", "Nothing shared yet" : "Aún no hay nada compartido", "Files and folders you share will show up here" : "Aquí aparecerán los archivos y carpetas que compartas con otros", "No shared links" : "No hay enlaces compartidos", "Files and folders you share by link will show up here" : "Aquí aparecerán los archivos y carpetas que compartas mediante un enlace", - "No deleted shares" : "No hay recursos compartidos eliminados", + "No deleted shares" : "No hay archivos compartidos eliminados", "Shares you deleted will show up here" : "Los recursos compartidos que elimines aparecerán aquí", "No shares" : "No compartidos", - "Shares will show up here" : "Aquí aparecerán los recursos que compartas", + "Shares will show up here" : "Los archivos que compartas aparecerán aquí", "Restore share" : "Restaurar recurso compartido", - "Something happened. Unable to restore the share." : "Algo ha sucedido. No se puede restaurar el recurso compartido.", + "Something happened. Unable to restore the share." : "Algo ha sucedido. No se pudo restaurar el recurso compartido.", + "Move or copy" : "Mover o copiar", "Download" : "Descargar", + "Delete" : "Eliminar", "You can upload into this folder" : "Puedes subir archivos en esta carpeta", "No compatible server found at {remote}" : "No se ha encontrado un servidor compatible en {remote}", "Invalid server URL" : "URL del servidor inválida", @@ -30,17 +32,17 @@ "Downloaded by {email}" : "Descargado por {email}", "{file} downloaded via public link" : "{file} descargado vía enlace público", "{email} downloaded {file}" : "{email} descargó {file}", - "Shared with group {group}" : "Compartido con el grupo {grupo}", - "Removed share for group {group}" : "Eliminado el compartido para el grupo {group}", + "Shared with group {group}" : "Compartido con el grupo {group}", + "Removed share for group {group}" : "Eliminado el recurso compartido para el grupo {group}", "{actor} shared with group {group}" : "{actor} compartió con el grupo {group}", - "{actor} removed share for group {group}" : "{actor} eliminó el compartido para el grupo {group}", + "{actor} removed share for group {group}" : "{actor} eliminó el recurso compartido para el grupo {group}", "You shared {file} with group {group}" : "Ha compartido {file} con el grupo {group}", "You removed group {group} from {file}" : "Ha eliminado el grupo {group} del {file}", "{actor} shared {file} with group {group}" : "{actor} compartió {file} con el grupo {group}", "{actor} removed group {group} from {file}" : "{actor} eliminó grupo {group} de {file}", "Shared as public link" : "Compartido como enlace público", - "Removed public link" : "Eliminado enlace público", - "Public link expired" : "El enlace público ha expirado", + "Removed public link" : "Enlace público eliminado", + "Public link expired" : "El enlace público ha caducado", "{actor} shared as public link" : "{actor} compartió como enlace público", "{actor} removed public link" : "{actor} eliminó el enlace público", "Public link of {actor} expired" : "Enlace público de {actor} caducado", @@ -83,35 +85,35 @@ "Please specify a valid group" : "Por favor, especifica un grupo válido", "Public link sharing is disabled by the administrator" : "Compartir enlaces de forma pública está deshabilitado por el administrador", "Public upload disabled by the administrator" : "La subida pública está deshabilitado por el administrador", - "Public upload is only possible for publicly shared folders" : "La subida publica solo es posible poara las carpetas publicas compartidas", + "Public upload is only possible for publicly shared folders" : "La subida publica solo es posible para las carpetas publicas compartidas", "Invalid date, date format must be YYYY-MM-DD" : "Fecha inválida, el formato de las fechas debe ser YYYY-MM-DD", - "Sharing %s failed because the back end does not allow shares from type %s" : "Compartir %s ha fallado porque el repositorio no admite compartidos del tipo %s", + "Sharing %s failed because the back end does not allow shares from type %s" : "Compartir %s ha fallado porque el backend no admite recursos compartidos del tipo %s", "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Compartir %s enviando la contraseña por Nextcloud Talk ha falllado porque Nextcloud Talk no está activado", "You cannot share to a Circle if the app is not enabled" : "No puede compartir a un Circulo si la aplicación no esta activada", "Please specify a valid circle" : "Por favor especifique un circulo valido", - "Unknown share type" : "Tipo desconocido de recurso compartido", + "Sharing %s failed because the back end does not support room shares" : "Compartir %s ha fallado porque el backend no soporta habitaciones compartidas", + "Unknown share type" : "Tipo de recurso compartido desconocido", "Not a directory" : "No es un directorio", "Could not lock path" : "No se ha podido bloquear la ruta", "Wrong or no update parameter given" : "No se ha suministrado un parametro correcto", "Can't change permissions for public share links" : "No se pueden cambiar los permisos para los enlaces de recursos compartidos públicos", "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Compartir enviando la contraseña por Nextcloud Talk ha fallado porque Nextcloud Talk no está activado", - "Cannot increase permissions" : "No es posible aumentar permisos", + "Cannot increase permissions" : "No es posible aumentar los permisos", "shared by %s" : "compartido por %s", "Direct link" : "Enlace directo", "Add to your Nextcloud" : "Añadir a tu Nextcloud", "Share API is disabled" : "El API de compartir está deshabilitado", "File sharing" : "Compartir archivos", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permite a los usuarios compartir archivos dentro de Nextcloud. Si se activa, el administrador puede elegir qué grupos pueden compartir archivos. Los usuarios aplicables pueden entonces compartir archivos y carpetas con otros usuarios y grupos dentro de Nextcloud. Además, si el administrador activa la característica de enlace compartido, se puede usar un enlace externo para compartir archivos con otros usuarios fuera de Nextcloud. Los administradores pueden obligar a usar contraseñas o fechas de expiración y activar el compartir de servidor a servidor vía enlaces compartidos, así como compartir desde dispositivos móviles.\nApagar esta característica elimina los archivos compartidos y las carpetas en el servidor, para todos los receptores, y también los clientes de sincronización y móviles. Más información disponible en la documentación de Nextcloud.", - "No entries found in this folder" : "No hay entradas en esta carpeta", + "No entries found in this folder" : "No hay nada en esta carpeta", "Name" : "Nombre", "Share time" : "Compartido hace", "Expiration date" : "Fecha de caducidad", "Sorry, this link doesn’t seem to work anymore." : "Vaya, este enlace parece que no volverá a funcionar.", - "Reasons might be:" : "Las causas podrían ser:", + "Reasons might be:" : "Las causas podrían ser: ", "the item was removed" : "el elemento fue eliminado", - "the link expired" : "el enlace expiró", + "the link expired" : "el enlace caducó", "sharing is disabled" : "compartir está desactivado", - "For more info, please ask the person who sent this link." : "Para mayor información, contacte a la persona que le envió el enlace.", + "For more info, please ask the person who sent this link." : "Para más información, pregunte a la persona que le envió el enlace.", "Note:" : "Nota:", "Download %s" : "Descargar %s", "Upload files to %s" : "Subir archivos a %s", @@ -120,8 +122,8 @@ "Uploaded files:" : "Archivos subidos:", "{actor} removed you from {file}" : "{actor} lo ha eliminado de {file}", "%s is publicly shared" : "%s está compartido públicamente", - "This share is password-protected" : "Este elemento compartido está protegido por contraseña", - "The password is wrong. Try again." : "La contraseña introducida es errónea. Inténtelo de nuevo.", + "This share is password-protected" : "Este recurso compartido está protegido por contraseña", + "The password is wrong. Try again." : "La contraseña no es correcta. Inténtelo de nuevo.", "Password" : "Contraseña" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_sharing/l10n/es_MX.js b/apps/files_sharing/l10n/es_MX.js index 97deac6c79c..b9b37744be7 100644 --- a/apps/files_sharing/l10n/es_MX.js +++ b/apps/files_sharing/l10n/es_MX.js @@ -92,7 +92,6 @@ OC.L10N.register( "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "File sharing" : "Compartir archivos", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación le permite a los usuarios compartir archivos dentro de Nextcloud. Si está habilitada, el administrador puede elegir que grupos pueden compartir archivos. Los usuarios correspondientes entonces pueden compartir archivos y carpetas con otros usuarios y grupos dentro de Nextcloid. Además, si el adminsitrador habilita la funcionalidad de compartir liga, una liga externa puede ser usada para compartir archivos con otros usuarios fuera de Nextcloud. Los administradores también pueden forzar contraseñas, fechas de expiración, y habilitar el compartir de servidor-a-servidor mediante ligas, asi como compartir desde dispositivos móviles. \nEl deshabilitar la funcionalidad, elimina en el servidor a los archivos y carpetas compartidos para todos los destinatarios del elemento compartido y también en los clientes de sincronización y dispositivos móviles. Hay mas información disponible en la Documentación de Nextcloud.", "No entries found in this folder" : "No se encontraron elementos en esta carpeta", "Name" : "Nombre", "Share time" : "Compartido desde", diff --git a/apps/files_sharing/l10n/es_MX.json b/apps/files_sharing/l10n/es_MX.json index 2f60b6cb5c9..24aacd3f495 100644 --- a/apps/files_sharing/l10n/es_MX.json +++ b/apps/files_sharing/l10n/es_MX.json @@ -90,7 +90,6 @@ "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "File sharing" : "Compartir archivos", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación le permite a los usuarios compartir archivos dentro de Nextcloud. Si está habilitada, el administrador puede elegir que grupos pueden compartir archivos. Los usuarios correspondientes entonces pueden compartir archivos y carpetas con otros usuarios y grupos dentro de Nextcloid. Además, si el adminsitrador habilita la funcionalidad de compartir liga, una liga externa puede ser usada para compartir archivos con otros usuarios fuera de Nextcloud. Los administradores también pueden forzar contraseñas, fechas de expiración, y habilitar el compartir de servidor-a-servidor mediante ligas, asi como compartir desde dispositivos móviles. \nEl deshabilitar la funcionalidad, elimina en el servidor a los archivos y carpetas compartidos para todos los destinatarios del elemento compartido y también en los clientes de sincronización y dispositivos móviles. Hay mas información disponible en la Documentación de Nextcloud.", "No entries found in this folder" : "No se encontraron elementos en esta carpeta", "Name" : "Nombre", "Share time" : "Compartido desde", diff --git a/apps/files_sharing/l10n/fr.js b/apps/files_sharing/l10n/fr.js index 9ffdf36f331..1ae57da363a 100644 --- a/apps/files_sharing/l10n/fr.js +++ b/apps/files_sharing/l10n/fr.js @@ -18,7 +18,9 @@ OC.L10N.register( "Shares will show up here" : "Les partages seront affichés ici", "Restore share" : "Restaurer le partage", "Something happened. Unable to restore the share." : "Quelque chose s'est passé. Impossible de restaurer le partage.", + "Move or copy" : "Déplacer ou copier", "Download" : "Télécharger", + "Delete" : "Supprimer", "You can upload into this folder" : "Vous pouvez téléverser dans ce dossier", "No compatible server found at {remote}" : "Aucun serveur compatible trouvé sur {remote}", "Invalid server URL" : "URL serveur invalide", @@ -103,7 +105,6 @@ OC.L10N.register( "Add to your Nextcloud" : "Ajouter à votre Nextcloud", "Share API is disabled" : "l'API de partage est désactivée", "File sharing" : "Partage de fichier", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Cette application permet aux utilisateurs de partager des fichiers au sein de Nextcloud. Lorsqu'elle est activée, l'administrateur peut choisir quels groupes peuvent partager des fichiers. Les utilisateurs concernés peuvent alors partager des fichiers et des dossiers avec d'autres utilisateurs et d'autres groupes au sein de Nextcloud. De plus, si l'administrateur active la fonctionnalité de partage par lien, un lien externe peut être utilisé pour partager des fichiers avec d'autres utilisateurs en dehors de Nextcloud. Les administrateurs peuvent aussi forcer l'utilisation de mots de passe et de dates d'expiration, et activer le partage de serveur à serveur au moyen de liens de partage, ainsi que le partage depuis un appareil mobile.\nDésactiver la fonctionnalité supprime les fichiers et les dossiers partagés sur le serveur pour tous les destinataires, et aussi dans les clients de synchronisation et les applications mobiles. Plus d'informations sont disponibles dans la documentation Nextcloud.", "No entries found in this folder" : "Aucune entrée trouvée dans ce dossier", "Name" : "Nom", "Share time" : "Date de partage", diff --git a/apps/files_sharing/l10n/fr.json b/apps/files_sharing/l10n/fr.json index f8f8e7e3e58..0c9123ace6c 100644 --- a/apps/files_sharing/l10n/fr.json +++ b/apps/files_sharing/l10n/fr.json @@ -16,7 +16,9 @@ "Shares will show up here" : "Les partages seront affichés ici", "Restore share" : "Restaurer le partage", "Something happened. Unable to restore the share." : "Quelque chose s'est passé. Impossible de restaurer le partage.", + "Move or copy" : "Déplacer ou copier", "Download" : "Télécharger", + "Delete" : "Supprimer", "You can upload into this folder" : "Vous pouvez téléverser dans ce dossier", "No compatible server found at {remote}" : "Aucun serveur compatible trouvé sur {remote}", "Invalid server URL" : "URL serveur invalide", @@ -101,7 +103,6 @@ "Add to your Nextcloud" : "Ajouter à votre Nextcloud", "Share API is disabled" : "l'API de partage est désactivée", "File sharing" : "Partage de fichier", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Cette application permet aux utilisateurs de partager des fichiers au sein de Nextcloud. Lorsqu'elle est activée, l'administrateur peut choisir quels groupes peuvent partager des fichiers. Les utilisateurs concernés peuvent alors partager des fichiers et des dossiers avec d'autres utilisateurs et d'autres groupes au sein de Nextcloud. De plus, si l'administrateur active la fonctionnalité de partage par lien, un lien externe peut être utilisé pour partager des fichiers avec d'autres utilisateurs en dehors de Nextcloud. Les administrateurs peuvent aussi forcer l'utilisation de mots de passe et de dates d'expiration, et activer le partage de serveur à serveur au moyen de liens de partage, ainsi que le partage depuis un appareil mobile.\nDésactiver la fonctionnalité supprime les fichiers et les dossiers partagés sur le serveur pour tous les destinataires, et aussi dans les clients de synchronisation et les applications mobiles. Plus d'informations sont disponibles dans la documentation Nextcloud.", "No entries found in this folder" : "Aucune entrée trouvée dans ce dossier", "Name" : "Nom", "Share time" : "Date de partage", diff --git a/apps/files_sharing/l10n/it.js b/apps/files_sharing/l10n/it.js index 73d47955e63..2db5f629a1f 100644 --- a/apps/files_sharing/l10n/it.js +++ b/apps/files_sharing/l10n/it.js @@ -106,7 +106,7 @@ OC.L10N.register( "Add to your Nextcloud" : "Aggiungi al tuo Nextcloud", "Share API is disabled" : "API di condivisione disabilitate", "File sharing" : "Condivisione di file", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Questa applicazione consente agli utenti di condividere file all'interno di Nextcloud. Se abilitata, l'amministratore può scegliere quali gruppi possono condividere file. Gli utenti ai quali si applica possono quindi condividere file e cartelle con altri utenti e gruppi all'interno di Nextcloud. In aggiunta, se l'amministratore abilita la funzionalità di condivisione dei collegamenti, un collegamento esterno può essere utilizzato per condividere file con altri utenti all'esterno di Nextcloud. Gli amministratori possono inoltre forzare le password, le date di scadenza e abilitare la condivisione tra server tramite collegamenti di condivisione, così come la condivisione tra dispositivi mobili.\nLa disattivazione della funzionalità rimuove i file condivisi e le cartelle sul server per tutti i destinatari della condivisione, e anche sui client di sincronizzazione e sulle applicazioni mobili. Altre informazioni sono disponibili nella documentazione di Nextcloud.", + "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Questa applicazione consente agli utenti di condividere file all'interno di Nextcloud. Se abilitata, l'amministratore può scegliere quali gruppi possono condividere file. Gli utenti ai quali si applica possono quindi condividere file e cartelle con altri utenti e gruppi all'interno di Nextcloud. In aggiunta, se l'amministratore abilita la funzionalità dei collegamenti di condivisione, un collegamento esterno può essere utilizzato per condividere file con altri utenti all'esterno di Nextcloud. Gli amministratori possono inoltre forzare le password, le date di scadenza e abilitare la condivisione tra server tramite collegamenti di condivisione, così come la condivisione da dispositivi mobili.\nLa disattivazione della funzionalità rimuove i file e le cartelle condivisi sul server per tutti i destinatari della condivisione, e anche sui client di sincronizzazione e sulle applicazioni mobili. Altre informazioni sono disponibili nella documentazione di Nextcloud.", "No entries found in this folder" : "Nessuna voce trovata in questa cartella", "Name" : "Nome", "Share time" : "Tempo di condivisione", diff --git a/apps/files_sharing/l10n/it.json b/apps/files_sharing/l10n/it.json index 37e17fd55b5..1f24765f17f 100644 --- a/apps/files_sharing/l10n/it.json +++ b/apps/files_sharing/l10n/it.json @@ -104,7 +104,7 @@ "Add to your Nextcloud" : "Aggiungi al tuo Nextcloud", "Share API is disabled" : "API di condivisione disabilitate", "File sharing" : "Condivisione di file", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Questa applicazione consente agli utenti di condividere file all'interno di Nextcloud. Se abilitata, l'amministratore può scegliere quali gruppi possono condividere file. Gli utenti ai quali si applica possono quindi condividere file e cartelle con altri utenti e gruppi all'interno di Nextcloud. In aggiunta, se l'amministratore abilita la funzionalità di condivisione dei collegamenti, un collegamento esterno può essere utilizzato per condividere file con altri utenti all'esterno di Nextcloud. Gli amministratori possono inoltre forzare le password, le date di scadenza e abilitare la condivisione tra server tramite collegamenti di condivisione, così come la condivisione tra dispositivi mobili.\nLa disattivazione della funzionalità rimuove i file condivisi e le cartelle sul server per tutti i destinatari della condivisione, e anche sui client di sincronizzazione e sulle applicazioni mobili. Altre informazioni sono disponibili nella documentazione di Nextcloud.", + "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Questa applicazione consente agli utenti di condividere file all'interno di Nextcloud. Se abilitata, l'amministratore può scegliere quali gruppi possono condividere file. Gli utenti ai quali si applica possono quindi condividere file e cartelle con altri utenti e gruppi all'interno di Nextcloud. In aggiunta, se l'amministratore abilita la funzionalità dei collegamenti di condivisione, un collegamento esterno può essere utilizzato per condividere file con altri utenti all'esterno di Nextcloud. Gli amministratori possono inoltre forzare le password, le date di scadenza e abilitare la condivisione tra server tramite collegamenti di condivisione, così come la condivisione da dispositivi mobili.\nLa disattivazione della funzionalità rimuove i file e le cartelle condivisi sul server per tutti i destinatari della condivisione, e anche sui client di sincronizzazione e sulle applicazioni mobili. Altre informazioni sono disponibili nella documentazione di Nextcloud.", "No entries found in this folder" : "Nessuna voce trovata in questa cartella", "Name" : "Nome", "Share time" : "Tempo di condivisione", diff --git a/apps/files_sharing/l10n/pt_BR.js b/apps/files_sharing/l10n/pt_BR.js index 1f2a79930a7..d92acf12c9c 100644 --- a/apps/files_sharing/l10n/pt_BR.js +++ b/apps/files_sharing/l10n/pt_BR.js @@ -21,7 +21,7 @@ OC.L10N.register( "Move or copy" : "Mover ou copiar", "Download" : "Baixar", "Delete" : "Excluir", - "You can upload into this folder" : "Você não pode enviar arquivos para esta pasta", + "You can upload into this folder" : "Você pode enviar arquivos para esta pasta", "No compatible server found at {remote}" : "Nenhum servidor compativel encontrado em {remote}", "Invalid server URL" : "URL do servidor inválida", "Failed to add the public link to your Nextcloud" : "Ocorreu uma falha ao adicionar o link público ao seu Nextcloud", @@ -106,7 +106,7 @@ OC.L10N.register( "Add to your Nextcloud" : "Adicionar ao seu Nextcloud", "Share API is disabled" : "O compartilhamento de API está desabilitado.", "File sharing" : "Compartilhamento de arquivos", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Este aplicativo permite que os usuários compartilhem arquivos no Nextcloud. Se ativado, o administrador pode escolher quais grupos podem compartilhar arquivos. Os usuários aplicáveis podem compartilhar arquivos e pastas com outros usuários e grupos no Nextcloud. Além disso, se o administrador ativar o recurso de link de compartilhamento, um link externo poderá ser usado para compartilhar arquivos com outros usuários fora do Nextcloud. Os administradores também podem colocar senhas, datas de vencimento e permitir o compartilhamento de servidor para servidor por meio de links de compartilhamento, bem como o compartilhamento de dispositivos móveis.\nDesativar o recurso remove arquivos e pastas compartilhados no servidor para todos os destinatários de compartilhamento e também nos clientes de sincronização e aplicativos móveis. Mais informações estão disponíveis na Documentação Nextcloud.", + "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Este aplicativo permite que os usuários compartilhem arquivos no Nextcloud. Se ativado, o administrador pode escolher quais grupos podem compartilhar arquivos. Os usuários aplicáveis podem compartilhar arquivos e pastas com outros usuários e grupos no Nextcloud. Além disso, se o administrador ativar o recurso de link de compartilhamento, um link externo poderá ser usado para compartilhar arquivos com outros usuários fora do Nextcloud. Os administradores também podem impor senhas, datas de vencimento e permitir o compartilhamento de servidor para servidor por meio de links de compartilhamento, bem como o compartilhamento de dispositivos móveis.\nDesativar este recurso remove arquivos e pastas compartilhados no servidor para todos os destinatários de compartilhamento e também nos clientes de sincronização e aplicativos móveis. Mais informações estão disponíveis na documentação do Nextcloud.", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", "Name" : "Nome", "Share time" : "Compartilhamento", diff --git a/apps/files_sharing/l10n/pt_BR.json b/apps/files_sharing/l10n/pt_BR.json index bc3437c0e2e..90c3c40d237 100644 --- a/apps/files_sharing/l10n/pt_BR.json +++ b/apps/files_sharing/l10n/pt_BR.json @@ -19,7 +19,7 @@ "Move or copy" : "Mover ou copiar", "Download" : "Baixar", "Delete" : "Excluir", - "You can upload into this folder" : "Você não pode enviar arquivos para esta pasta", + "You can upload into this folder" : "Você pode enviar arquivos para esta pasta", "No compatible server found at {remote}" : "Nenhum servidor compativel encontrado em {remote}", "Invalid server URL" : "URL do servidor inválida", "Failed to add the public link to your Nextcloud" : "Ocorreu uma falha ao adicionar o link público ao seu Nextcloud", @@ -104,7 +104,7 @@ "Add to your Nextcloud" : "Adicionar ao seu Nextcloud", "Share API is disabled" : "O compartilhamento de API está desabilitado.", "File sharing" : "Compartilhamento de arquivos", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Este aplicativo permite que os usuários compartilhem arquivos no Nextcloud. Se ativado, o administrador pode escolher quais grupos podem compartilhar arquivos. Os usuários aplicáveis podem compartilhar arquivos e pastas com outros usuários e grupos no Nextcloud. Além disso, se o administrador ativar o recurso de link de compartilhamento, um link externo poderá ser usado para compartilhar arquivos com outros usuários fora do Nextcloud. Os administradores também podem colocar senhas, datas de vencimento e permitir o compartilhamento de servidor para servidor por meio de links de compartilhamento, bem como o compartilhamento de dispositivos móveis.\nDesativar o recurso remove arquivos e pastas compartilhados no servidor para todos os destinatários de compartilhamento e também nos clientes de sincronização e aplicativos móveis. Mais informações estão disponíveis na Documentação Nextcloud.", + "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Este aplicativo permite que os usuários compartilhem arquivos no Nextcloud. Se ativado, o administrador pode escolher quais grupos podem compartilhar arquivos. Os usuários aplicáveis podem compartilhar arquivos e pastas com outros usuários e grupos no Nextcloud. Além disso, se o administrador ativar o recurso de link de compartilhamento, um link externo poderá ser usado para compartilhar arquivos com outros usuários fora do Nextcloud. Os administradores também podem impor senhas, datas de vencimento e permitir o compartilhamento de servidor para servidor por meio de links de compartilhamento, bem como o compartilhamento de dispositivos móveis.\nDesativar este recurso remove arquivos e pastas compartilhados no servidor para todos os destinatários de compartilhamento e também nos clientes de sincronização e aplicativos móveis. Mais informações estão disponíveis na documentação do Nextcloud.", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", "Name" : "Nome", "Share time" : "Compartilhamento", diff --git a/apps/files_sharing/l10n/pt_PT.js b/apps/files_sharing/l10n/pt_PT.js index a928eb5554a..257b01d8a16 100644 --- a/apps/files_sharing/l10n/pt_PT.js +++ b/apps/files_sharing/l10n/pt_PT.js @@ -21,9 +21,9 @@ OC.L10N.register( "Sharing" : "Partilha", "File shares" : "Partilhas de ficheiro", "Downloaded via public link" : "Transferido via hiperligação pública", - "Downloaded by {email}" : "Descarregado por {email}", - "{file} downloaded via public link" : "{file} descarregado através de uma hiperligação pública", - "{email} downloaded {file}" : "{email} descarregou {file}", + "Downloaded by {email}" : "Transferido por {email}", + "{file} downloaded via public link" : "{file} transferido via hiperligação pública", + "{email} downloaded {file}" : "{email} transferiu {file}", "Shared with group {group}" : "Partilhado com o grupo {group}", "Removed share for group {group}" : "Removeu a partilha para o grupo {group}", "{actor} shared with group {group}" : "{actor} partilhou com o grupo {group}", @@ -61,7 +61,7 @@ OC.L10N.register( "{actor} shared {file} with {user}" : "{actor} partilhou {file} com {user}", "{actor} removed {user} from {file}" : "{actor} removeu {user} de {file}", "{actor} shared {file} with you" : "{actor} partilhou {file} consigo", - "A file or folder shared by mail or by public link was <strong>downloaded</strong>" : "Um ficheiro ou pasta partilhado por email ou hiperligação publica foi <strong>descarregado</strong>", + "A file or folder shared by mail or by public link was <strong>downloaded</strong>" : "Um ficheiro ou pasta partilhado por e-mail ou hiperligação publica foi transferido</strong>", "A file or folder was shared from <strong>another server</strong>" : "Um ficheiro ou pasta foi partilhado a partir de <strong>outro servidor</strong>", "A file or folder has been <strong>shared</strong>" : "Foi <strong>partilhado</strong> um ficheiro ou uma pasta", "Wrong share ID, share doesn't exist" : "Id. de partilha errada, a partilha não existe", diff --git a/apps/files_sharing/l10n/pt_PT.json b/apps/files_sharing/l10n/pt_PT.json index 39fd45311af..8e19866f66b 100644 --- a/apps/files_sharing/l10n/pt_PT.json +++ b/apps/files_sharing/l10n/pt_PT.json @@ -19,9 +19,9 @@ "Sharing" : "Partilha", "File shares" : "Partilhas de ficheiro", "Downloaded via public link" : "Transferido via hiperligação pública", - "Downloaded by {email}" : "Descarregado por {email}", - "{file} downloaded via public link" : "{file} descarregado através de uma hiperligação pública", - "{email} downloaded {file}" : "{email} descarregou {file}", + "Downloaded by {email}" : "Transferido por {email}", + "{file} downloaded via public link" : "{file} transferido via hiperligação pública", + "{email} downloaded {file}" : "{email} transferiu {file}", "Shared with group {group}" : "Partilhado com o grupo {group}", "Removed share for group {group}" : "Removeu a partilha para o grupo {group}", "{actor} shared with group {group}" : "{actor} partilhou com o grupo {group}", @@ -59,7 +59,7 @@ "{actor} shared {file} with {user}" : "{actor} partilhou {file} com {user}", "{actor} removed {user} from {file}" : "{actor} removeu {user} de {file}", "{actor} shared {file} with you" : "{actor} partilhou {file} consigo", - "A file or folder shared by mail or by public link was <strong>downloaded</strong>" : "Um ficheiro ou pasta partilhado por email ou hiperligação publica foi <strong>descarregado</strong>", + "A file or folder shared by mail or by public link was <strong>downloaded</strong>" : "Um ficheiro ou pasta partilhado por e-mail ou hiperligação publica foi transferido</strong>", "A file or folder was shared from <strong>another server</strong>" : "Um ficheiro ou pasta foi partilhado a partir de <strong>outro servidor</strong>", "A file or folder has been <strong>shared</strong>" : "Foi <strong>partilhado</strong> um ficheiro ou uma pasta", "Wrong share ID, share doesn't exist" : "Id. de partilha errada, a partilha não existe", diff --git a/apps/files_sharing/l10n/ru.js b/apps/files_sharing/l10n/ru.js index 1ecf22c3508..c9bfe0e2f82 100644 --- a/apps/files_sharing/l10n/ru.js +++ b/apps/files_sharing/l10n/ru.js @@ -18,7 +18,9 @@ OC.L10N.register( "Shares will show up here" : "Здесь будут показаны общие ресурсы", "Restore share" : "Восстановить ресурсы общего доступа", "Something happened. Unable to restore the share." : "Не удалось восстановить общий ресурс.", + "Move or copy" : "Переместить или копировать", "Download" : "Скачать", + "Delete" : "Удалить", "You can upload into this folder" : "Вы можете загружать в этот каталог", "No compatible server found at {remote}" : "Не найден совместимый сервер на {remote}", "Invalid server URL" : "Неверный URL сервера", @@ -91,6 +93,7 @@ OC.L10N.register( "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Не удалось отправить пароль для доступа к «%s»: приложение Nextcloud Talk отключено.", "You cannot share to a Circle if the app is not enabled" : "Вы не можете поделиться с кругом, если приложение «Круг» не включено", "Please specify a valid circle" : "Укажите верный круг", + "Sharing %s failed because the back end does not support room shares" : "Не удалось предоставить общий доступ к «%s» поскольку механизм обмена не поддерживает общий доступ такого типа", "Unknown share type" : "Общий доступ неизвестного типа", "Not a directory" : "Это не каталог", "Could not lock path" : "Не удалось заблокировать путь", @@ -103,7 +106,6 @@ OC.L10N.register( "Add to your Nextcloud" : "Добавить в свой Nextcloud", "Share API is disabled" : "API общего доступа отключён", "File sharing" : "Обмен файлами", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Это приложение позволяет пользователям обмениваться файлами в Nextcloud. Если включено, администратор может выбрать, какие группы пользователей могут обмениваться файлами. После этого пользователи, которым такой обмен разрешен, могут обмениваться файлами и папками с другими пользователями и группами в Nextcloud. Кроме того, если администратор позволяет использовать функцию общего доступа, внешняя ссылка может использоваться для обмена файлами с другими пользователями, не являющимися пользователями Nextcloud. Админы могут также вводить в действие пароли, даты истечения срока действия и разрешать совместное использование файлов между серверами(server to server) с помощью общих ссылок, а также совместное использование с мобильных устройств. Отключение данной функции, отключает общие файлы и папки на сервере для всех получателей общего доступа, а также при синхронизации клиентов и мобильных приложений. Дополнительная информация доступна в документации Nextcloud.", "No entries found in this folder" : "В этой папке ничего нет", "Name" : "Имя", "Share time" : "Дата публикации", diff --git a/apps/files_sharing/l10n/ru.json b/apps/files_sharing/l10n/ru.json index 6ac4f4749c9..4950fbf5f97 100644 --- a/apps/files_sharing/l10n/ru.json +++ b/apps/files_sharing/l10n/ru.json @@ -16,7 +16,9 @@ "Shares will show up here" : "Здесь будут показаны общие ресурсы", "Restore share" : "Восстановить ресурсы общего доступа", "Something happened. Unable to restore the share." : "Не удалось восстановить общий ресурс.", + "Move or copy" : "Переместить или копировать", "Download" : "Скачать", + "Delete" : "Удалить", "You can upload into this folder" : "Вы можете загружать в этот каталог", "No compatible server found at {remote}" : "Не найден совместимый сервер на {remote}", "Invalid server URL" : "Неверный URL сервера", @@ -89,6 +91,7 @@ "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Не удалось отправить пароль для доступа к «%s»: приложение Nextcloud Talk отключено.", "You cannot share to a Circle if the app is not enabled" : "Вы не можете поделиться с кругом, если приложение «Круг» не включено", "Please specify a valid circle" : "Укажите верный круг", + "Sharing %s failed because the back end does not support room shares" : "Не удалось предоставить общий доступ к «%s» поскольку механизм обмена не поддерживает общий доступ такого типа", "Unknown share type" : "Общий доступ неизвестного типа", "Not a directory" : "Это не каталог", "Could not lock path" : "Не удалось заблокировать путь", @@ -101,7 +104,6 @@ "Add to your Nextcloud" : "Добавить в свой Nextcloud", "Share API is disabled" : "API общего доступа отключён", "File sharing" : "Обмен файлами", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Это приложение позволяет пользователям обмениваться файлами в Nextcloud. Если включено, администратор может выбрать, какие группы пользователей могут обмениваться файлами. После этого пользователи, которым такой обмен разрешен, могут обмениваться файлами и папками с другими пользователями и группами в Nextcloud. Кроме того, если администратор позволяет использовать функцию общего доступа, внешняя ссылка может использоваться для обмена файлами с другими пользователями, не являющимися пользователями Nextcloud. Админы могут также вводить в действие пароли, даты истечения срока действия и разрешать совместное использование файлов между серверами(server to server) с помощью общих ссылок, а также совместное использование с мобильных устройств. Отключение данной функции, отключает общие файлы и папки на сервере для всех получателей общего доступа, а также при синхронизации клиентов и мобильных приложений. Дополнительная информация доступна в документации Nextcloud.", "No entries found in this folder" : "В этой папке ничего нет", "Name" : "Имя", "Share time" : "Дата публикации", diff --git a/apps/files_sharing/l10n/sk.js b/apps/files_sharing/l10n/sk.js index 34accfc6253..30a235ed7c8 100644 --- a/apps/files_sharing/l10n/sk.js +++ b/apps/files_sharing/l10n/sk.js @@ -18,7 +18,9 @@ OC.L10N.register( "Shares will show up here" : "Tu sa zobrazia sprístupnené položky", "Restore share" : "Obnoviť sprístupnené položky", "Something happened. Unable to restore the share." : "Niečo sa udialo. Nedarí sa obnoviť sprístupnenú položku.", + "Move or copy" : "Presunúť alebo kopírovať", "Download" : "Sťahovanie", + "Delete" : "Zmazať", "You can upload into this folder" : "Môžete nahrávať do tohto priečinka", "No compatible server found at {remote}" : "Nebol nájdený kompatibilný server na adrese {remote}", "Invalid server URL" : "Neplatná URL servera", @@ -88,13 +90,16 @@ OC.L10N.register( "Public upload is only possible for publicly shared folders" : "Verejné nahrávanie je možné len do verejne sprístupnených priečinkov", "Invalid date, date format must be YYYY-MM-DD" : "Neplatný dátum, formát musí byť v tvare YYYY-MM-DD", "Sharing %s failed because the back end does not allow shares from type %s" : "Sprístupnenie %s zlyhalo, backend nepodporuje typ sprístupnenia %s", + "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Zdieľanie %s odoslaním hesla cez Nextcloud Talk zlyhalo, pretože Nextcloud Talk nie je zapnutý", "You cannot share to a Circle if the app is not enabled" : "Ak aplikácia nie je povolená, nemôžete ju zdieľať s Kruhom", "Please specify a valid circle" : "Zadajte platný kruh", + "Sharing %s failed because the back end does not support room shares" : "Zdieľanie %s sa nepodarilo, pretože backend nepodporuje zdieľanie miestností", "Unknown share type" : "Neplatný typ sprístupnenia", "Not a directory" : "Nie je priečinok", "Could not lock path" : "Nie je možné uzamknúť cestu", "Wrong or no update parameter given" : "Zlý alebo žiadny zadaný parameter aktualizácie", "Can't change permissions for public share links" : "Nemožno zmeniť oprávnenia pre verejné sprístupnené odkazy", + "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Zdieľanie odoslaním hesla cez Nextcloud Talk zlyhalo, pretože Nextcloud Talk nie je zapnutý", "Cannot increase permissions" : "Nie je možné navýšiť oprávnenia", "shared by %s" : "Sprístupnil %s", "Direct link" : "Priama linka", diff --git a/apps/files_sharing/l10n/sk.json b/apps/files_sharing/l10n/sk.json index 28536793d14..9b7929ebbef 100644 --- a/apps/files_sharing/l10n/sk.json +++ b/apps/files_sharing/l10n/sk.json @@ -16,7 +16,9 @@ "Shares will show up here" : "Tu sa zobrazia sprístupnené položky", "Restore share" : "Obnoviť sprístupnené položky", "Something happened. Unable to restore the share." : "Niečo sa udialo. Nedarí sa obnoviť sprístupnenú položku.", + "Move or copy" : "Presunúť alebo kopírovať", "Download" : "Sťahovanie", + "Delete" : "Zmazať", "You can upload into this folder" : "Môžete nahrávať do tohto priečinka", "No compatible server found at {remote}" : "Nebol nájdený kompatibilný server na adrese {remote}", "Invalid server URL" : "Neplatná URL servera", @@ -86,13 +88,16 @@ "Public upload is only possible for publicly shared folders" : "Verejné nahrávanie je možné len do verejne sprístupnených priečinkov", "Invalid date, date format must be YYYY-MM-DD" : "Neplatný dátum, formát musí byť v tvare YYYY-MM-DD", "Sharing %s failed because the back end does not allow shares from type %s" : "Sprístupnenie %s zlyhalo, backend nepodporuje typ sprístupnenia %s", + "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Zdieľanie %s odoslaním hesla cez Nextcloud Talk zlyhalo, pretože Nextcloud Talk nie je zapnutý", "You cannot share to a Circle if the app is not enabled" : "Ak aplikácia nie je povolená, nemôžete ju zdieľať s Kruhom", "Please specify a valid circle" : "Zadajte platný kruh", + "Sharing %s failed because the back end does not support room shares" : "Zdieľanie %s sa nepodarilo, pretože backend nepodporuje zdieľanie miestností", "Unknown share type" : "Neplatný typ sprístupnenia", "Not a directory" : "Nie je priečinok", "Could not lock path" : "Nie je možné uzamknúť cestu", "Wrong or no update parameter given" : "Zlý alebo žiadny zadaný parameter aktualizácie", "Can't change permissions for public share links" : "Nemožno zmeniť oprávnenia pre verejné sprístupnené odkazy", + "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Zdieľanie odoslaním hesla cez Nextcloud Talk zlyhalo, pretože Nextcloud Talk nie je zapnutý", "Cannot increase permissions" : "Nie je možné navýšiť oprávnenia", "shared by %s" : "Sprístupnil %s", "Direct link" : "Priama linka", diff --git a/apps/files_sharing/l10n/sr.js b/apps/files_sharing/l10n/sr.js index aca368d9c3d..69dfdadd6c0 100644 --- a/apps/files_sharing/l10n/sr.js +++ b/apps/files_sharing/l10n/sr.js @@ -18,7 +18,9 @@ OC.L10N.register( "Shares will show up here" : "Дељења ће се појавити овде", "Restore share" : "Поврати дељење", "Something happened. Unable to restore the share." : "Нешто чудно се десило. Дељење не може да се поврати.", + "Move or copy" : "Помери или копирај", "Download" : "Преузми", + "Delete" : "Избриши", "You can upload into this folder" : "Можете да отпремате у ову фасциклу", "No compatible server found at {remote}" : "Нема компатибилног сервера на {remote}", "Invalid server URL" : "Неисправна адреса сервера", @@ -91,6 +93,7 @@ OC.L10N.register( "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Дељење %s слањем лозинке преко Nextcloud Talk-а није успело пошто Nextcloud Talk није укључен", "You cannot share to a Circle if the app is not enabled" : "Не можете делити са Круговима ако та апликација није укључена", "Please specify a valid circle" : "Одаберите исправан круг", + "Sharing %s failed because the back end does not support room shares" : "Није успело дељење %s зато што позадински мотор дељења не подржава дељења у соби", "Unknown share type" : "Непознат тип дељења", "Not a directory" : "Није фасцикла", "Could not lock path" : "Не могу да закључам путању", @@ -103,7 +106,6 @@ OC.L10N.register( "Add to your Nextcloud" : "Додајте у свој облак", "Share API is disabled" : "API за дељене је искључен", "File sharing" : "Дељења фајлова", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Ова апликација омогућава корисницима да деле фајлове унутар Некстклауда. Када се укључи, администратор може да одабере које групе могу да деле фајлове. Такви корисници затим могу да деле фасцикле и фајлове са осталим корисницима и групама унутар Некстклауда. Додатно, ако администратор укључи и могућност за дељење везе, може се користити и спољна веза за дељење са корисницима ван Некстклауда. Администратори такође могу да захтевају лозинке, датум истека и да омогуће дељење између сервера преко веза дељења, као и дељење са мобилних уређаја.\nИскључивањем ове могућности искључује дељене фасцикле и фајлове на серверу за све дељенике, као и на синхронизованим клијентима и мобилним апликацијама. Више информација можете наћи у Некстклауд документацији.", "No entries found in this folder" : "Нема ничега у овој фасцикли", "Name" : "Назив", "Share time" : "Време дељења", diff --git a/apps/files_sharing/l10n/sr.json b/apps/files_sharing/l10n/sr.json index e2ec69eefaf..fe7308639de 100644 --- a/apps/files_sharing/l10n/sr.json +++ b/apps/files_sharing/l10n/sr.json @@ -16,7 +16,9 @@ "Shares will show up here" : "Дељења ће се појавити овде", "Restore share" : "Поврати дељење", "Something happened. Unable to restore the share." : "Нешто чудно се десило. Дељење не може да се поврати.", + "Move or copy" : "Помери или копирај", "Download" : "Преузми", + "Delete" : "Избриши", "You can upload into this folder" : "Можете да отпремате у ову фасциклу", "No compatible server found at {remote}" : "Нема компатибилног сервера на {remote}", "Invalid server URL" : "Неисправна адреса сервера", @@ -89,6 +91,7 @@ "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Дељење %s слањем лозинке преко Nextcloud Talk-а није успело пошто Nextcloud Talk није укључен", "You cannot share to a Circle if the app is not enabled" : "Не можете делити са Круговима ако та апликација није укључена", "Please specify a valid circle" : "Одаберите исправан круг", + "Sharing %s failed because the back end does not support room shares" : "Није успело дељење %s зато што позадински мотор дељења не подржава дељења у соби", "Unknown share type" : "Непознат тип дељења", "Not a directory" : "Није фасцикла", "Could not lock path" : "Не могу да закључам путању", @@ -101,7 +104,6 @@ "Add to your Nextcloud" : "Додајте у свој облак", "Share API is disabled" : "API за дељене је искључен", "File sharing" : "Дељења фајлова", - "This application enables users to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Ова апликација омогућава корисницима да деле фајлове унутар Некстклауда. Када се укључи, администратор може да одабере које групе могу да деле фајлове. Такви корисници затим могу да деле фасцикле и фајлове са осталим корисницима и групама унутар Некстклауда. Додатно, ако администратор укључи и могућност за дељење везе, може се користити и спољна веза за дељење са корисницима ван Некстклауда. Администратори такође могу да захтевају лозинке, датум истека и да омогуће дељење између сервера преко веза дељења, као и дељење са мобилних уређаја.\nИскључивањем ове могућности искључује дељене фасцикле и фајлове на серверу за све дељенике, као и на синхронизованим клијентима и мобилним апликацијама. Више информација можете наћи у Некстклауд документацији.", "No entries found in this folder" : "Нема ничега у овој фасцикли", "Name" : "Назив", "Share time" : "Време дељења", diff --git a/apps/files_trashbin/l10n/ca.js b/apps/files_trashbin/l10n/ca.js index 149611cd8d2..bdface9a698 100644 --- a/apps/files_trashbin/l10n/ca.js +++ b/apps/files_trashbin/l10n/ca.js @@ -16,6 +16,7 @@ OC.L10N.register( "No entries found in this folder" : "No hi ha entrades en aquesta carpeta", "Select all" : "Seleccionar tot", "Name" : "Nom", + "Actions" : "Accions", "Deleted" : "Eliminat" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_trashbin/l10n/ca.json b/apps/files_trashbin/l10n/ca.json index 2bd36c79241..953abc13364 100644 --- a/apps/files_trashbin/l10n/ca.json +++ b/apps/files_trashbin/l10n/ca.json @@ -14,6 +14,7 @@ "No entries found in this folder" : "No hi ha entrades en aquesta carpeta", "Select all" : "Seleccionar tot", "Name" : "Nom", + "Actions" : "Accions", "Deleted" : "Eliminat" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_trashbin/l10n/cs.js b/apps/files_trashbin/l10n/cs.js index d6b2d554137..73cf9dafaa9 100644 --- a/apps/files_trashbin/l10n/cs.js +++ b/apps/files_trashbin/l10n/cs.js @@ -11,7 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Tato operace je zakázána", "This directory is unavailable, please check the logs or contact the administrator" : "Tento adresář není dostupný, zkontrolujte prosím logy nebo kontaktujte svého správce systému", "restored" : "obnoveno", - "This application enables users to restore files that were deleted from the system." : "Tato aplikace umožňuje uživatelům obnovit soubory které byly ze systému smazány.", "No deleted files" : "Žádné smazané soubory", "You will be able to recover deleted files from here" : "Odtud budete moci obnovovat odstraněné soubory", "No entries found in this folder" : "V této složce nebylo nic nalezeno", diff --git a/apps/files_trashbin/l10n/cs.json b/apps/files_trashbin/l10n/cs.json index 1273fcf110d..83577170e78 100644 --- a/apps/files_trashbin/l10n/cs.json +++ b/apps/files_trashbin/l10n/cs.json @@ -9,7 +9,6 @@ "This operation is forbidden" : "Tato operace je zakázána", "This directory is unavailable, please check the logs or contact the administrator" : "Tento adresář není dostupný, zkontrolujte prosím logy nebo kontaktujte svého správce systému", "restored" : "obnoveno", - "This application enables users to restore files that were deleted from the system." : "Tato aplikace umožňuje uživatelům obnovit soubory které byly ze systému smazány.", "No deleted files" : "Žádné smazané soubory", "You will be able to recover deleted files from here" : "Odtud budete moci obnovovat odstraněné soubory", "No entries found in this folder" : "V této složce nebylo nic nalezeno", diff --git a/apps/files_trashbin/l10n/de.js b/apps/files_trashbin/l10n/de.js index 35d03dc4001..ea0ea258eef 100644 --- a/apps/files_trashbin/l10n/de.js +++ b/apps/files_trashbin/l10n/de.js @@ -11,7 +11,7 @@ OC.L10N.register( "This operation is forbidden" : "Diese Operation ist nicht erlaubt", "This directory is unavailable, please check the logs or contact the administrator" : "Dieses Verzeichnis ist nicht verfügbar, bitte überprüfe die Logdateien oder kontaktiere den Administrator", "restored" : "Wiederhergestellt", - "This application enables users to restore files that were deleted from the system." : "Diese App ermöglicht es Nutzern Dateien die vom System gelöscht wurden wiederherzustellen", + "This application enables users to restore files that were deleted from the system." : "Diese App ermöglicht es Benutzern Dateien die vom System gelöscht wurden wiederherzustellen.", "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Diese Anwendung ermöglicht es Benutzern, gelöschte Dateien wieder herzustellen. Im Webinterface wird eine Liste mit allen gelöschten Dateien angezeigt. Es besteht die Möglichkeit die Datein im Dateiverzeichnisse des Benutzers wieder herzustelle, oder diese endgültig zu löschen. Bei der Wiederherstellung einer Datei werden, sofern die Versions Anwendung aktiviert ist, die dazugehörigen Dateiversionen ebenfalls wieder hergestellt. Falls eine geteilte Datei gelöscht wurde, kann diese ebenfals wieder hergestellt werden, jedoch ist diese danach nicht mehr geteilt. Normalerweise verbleiben gelöschte Dateien für 30 Tage im Papierkorb .\nUm zu verhindern, dass einem Benutzer der Speicherplatz ausgeht, nutzt die Anwendung maximal 50% des verfügbaren freien Kontingents für gelöschte Dateien. Sofern die gelöschten Dateien dieses Limit überschreiten, werden zunächst die ältesten Dateien gelöscht, bis das Limit unterschritten wird. Mehr Informationen sind in der Dokumentation verfügbar.", "No deleted files" : "Keine gelöschten Dateien", "You will be able to recover deleted files from here" : "Hier können gelöschte Dateien wiederhergestellt werden", diff --git a/apps/files_trashbin/l10n/de.json b/apps/files_trashbin/l10n/de.json index 45c4aef139e..298306e9ff8 100644 --- a/apps/files_trashbin/l10n/de.json +++ b/apps/files_trashbin/l10n/de.json @@ -9,7 +9,7 @@ "This operation is forbidden" : "Diese Operation ist nicht erlaubt", "This directory is unavailable, please check the logs or contact the administrator" : "Dieses Verzeichnis ist nicht verfügbar, bitte überprüfe die Logdateien oder kontaktiere den Administrator", "restored" : "Wiederhergestellt", - "This application enables users to restore files that were deleted from the system." : "Diese App ermöglicht es Nutzern Dateien die vom System gelöscht wurden wiederherzustellen", + "This application enables users to restore files that were deleted from the system." : "Diese App ermöglicht es Benutzern Dateien die vom System gelöscht wurden wiederherzustellen.", "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Diese Anwendung ermöglicht es Benutzern, gelöschte Dateien wieder herzustellen. Im Webinterface wird eine Liste mit allen gelöschten Dateien angezeigt. Es besteht die Möglichkeit die Datein im Dateiverzeichnisse des Benutzers wieder herzustelle, oder diese endgültig zu löschen. Bei der Wiederherstellung einer Datei werden, sofern die Versions Anwendung aktiviert ist, die dazugehörigen Dateiversionen ebenfalls wieder hergestellt. Falls eine geteilte Datei gelöscht wurde, kann diese ebenfals wieder hergestellt werden, jedoch ist diese danach nicht mehr geteilt. Normalerweise verbleiben gelöschte Dateien für 30 Tage im Papierkorb .\nUm zu verhindern, dass einem Benutzer der Speicherplatz ausgeht, nutzt die Anwendung maximal 50% des verfügbaren freien Kontingents für gelöschte Dateien. Sofern die gelöschten Dateien dieses Limit überschreiten, werden zunächst die ältesten Dateien gelöscht, bis das Limit unterschritten wird. Mehr Informationen sind in der Dokumentation verfügbar.", "No deleted files" : "Keine gelöschten Dateien", "You will be able to recover deleted files from here" : "Hier können gelöschte Dateien wiederhergestellt werden", diff --git a/apps/files_trashbin/l10n/de_DE.js b/apps/files_trashbin/l10n/de_DE.js index d250943f662..30609871947 100644 --- a/apps/files_trashbin/l10n/de_DE.js +++ b/apps/files_trashbin/l10n/de_DE.js @@ -11,7 +11,7 @@ OC.L10N.register( "This operation is forbidden" : "Diese Operation ist nicht erlaubt", "This directory is unavailable, please check the logs or contact the administrator" : "Dieses Verzeichnis ist nicht verfügbar, bitte überprüfen Sie die Log-Dateien oder kontaktieren Sie den Administrator", "restored" : "Wiederhergestellt", - "This application enables users to restore files that were deleted from the system." : "Diese Anwendung ermöglicht es Benutzern, Dateien die vom System gelöscht wurden wieder herzustellen.", + "This application enables users to restore files that were deleted from the system." : "Diese App ermöglicht es Benutzern Dateien die vom System gelöscht wurden wiederherzustellen.", "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Diese Anwendung ermöglicht es Benutzern, gelöschte Dateien wieder herzustellen. Im Webinterface wird eine Liste mit allen gelöschten Dateien angezeigt. Es besteht die Möglichkeit die Datein im Dateiverzeichnisse des Benutzers wieder herzustelle, oder diese endgültig zu löschen. Bei der Wiederherstellung einer Datei werden, sofern die Versions Anwendung aktiviert ist, die dazugehörigen Dateiversionen ebenfalls wieder hergestellt. Falls eine geteilte Datei gelöscht wurde, kann diese ebenfals wieder hergestellt werden, jedoch ist diese danach nicht mehr geteilt. Normalerweise verbleiben gelöschte Dateien für 30 Tage im Papierkorb .\nUm zu verhindern, dass einem Benutzer der Speicherplatz ausgeht, nutzt die Anwendung maximal 50% des verfügbaren freien Kontingents für gelöschte Dateien. Sofern die gelöschten Dateien dieses Limit überschreiten, werden zunächst die ältesten Dateien gelöscht, bis das Limit unterschritten wird. Mehr Informationen sind in der Dokumentation verfügbar.", "No deleted files" : "Keine gelöschten Dateien", "You will be able to recover deleted files from here" : "Hier können gelöschte Dateien wiederhergestellt werden", diff --git a/apps/files_trashbin/l10n/de_DE.json b/apps/files_trashbin/l10n/de_DE.json index f8aecdb3559..48d4703ce78 100644 --- a/apps/files_trashbin/l10n/de_DE.json +++ b/apps/files_trashbin/l10n/de_DE.json @@ -9,7 +9,7 @@ "This operation is forbidden" : "Diese Operation ist nicht erlaubt", "This directory is unavailable, please check the logs or contact the administrator" : "Dieses Verzeichnis ist nicht verfügbar, bitte überprüfen Sie die Log-Dateien oder kontaktieren Sie den Administrator", "restored" : "Wiederhergestellt", - "This application enables users to restore files that were deleted from the system." : "Diese Anwendung ermöglicht es Benutzern, Dateien die vom System gelöscht wurden wieder herzustellen.", + "This application enables users to restore files that were deleted from the system." : "Diese App ermöglicht es Benutzern Dateien die vom System gelöscht wurden wiederherzustellen.", "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Diese Anwendung ermöglicht es Benutzern, gelöschte Dateien wieder herzustellen. Im Webinterface wird eine Liste mit allen gelöschten Dateien angezeigt. Es besteht die Möglichkeit die Datein im Dateiverzeichnisse des Benutzers wieder herzustelle, oder diese endgültig zu löschen. Bei der Wiederherstellung einer Datei werden, sofern die Versions Anwendung aktiviert ist, die dazugehörigen Dateiversionen ebenfalls wieder hergestellt. Falls eine geteilte Datei gelöscht wurde, kann diese ebenfals wieder hergestellt werden, jedoch ist diese danach nicht mehr geteilt. Normalerweise verbleiben gelöschte Dateien für 30 Tage im Papierkorb .\nUm zu verhindern, dass einem Benutzer der Speicherplatz ausgeht, nutzt die Anwendung maximal 50% des verfügbaren freien Kontingents für gelöschte Dateien. Sofern die gelöschten Dateien dieses Limit überschreiten, werden zunächst die ältesten Dateien gelöscht, bis das Limit unterschritten wird. Mehr Informationen sind in der Dokumentation verfügbar.", "No deleted files" : "Keine gelöschten Dateien", "You will be able to recover deleted files from here" : "Hier können gelöschte Dateien wiederhergestellt werden", diff --git a/apps/files_trashbin/l10n/en_GB.js b/apps/files_trashbin/l10n/en_GB.js index 0072e1d213d..8423124ee77 100644 --- a/apps/files_trashbin/l10n/en_GB.js +++ b/apps/files_trashbin/l10n/en_GB.js @@ -11,8 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "This operation is forbidden", "This directory is unavailable, please check the logs or contact the administrator" : "This directory is unavailable, please check the logs or contact the administrator", "restored" : "restored", - "This application enables users to restore files that were deleted from the system." : "This application enables users to restore files that were deleted from the system.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilise more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation.", "No deleted files" : "No deleted files", "You will be able to recover deleted files from here" : "You will be able to recover deleted files from here", "No entries found in this folder" : "No entries found in this folder", diff --git a/apps/files_trashbin/l10n/en_GB.json b/apps/files_trashbin/l10n/en_GB.json index ab9762b4752..4227f1225b5 100644 --- a/apps/files_trashbin/l10n/en_GB.json +++ b/apps/files_trashbin/l10n/en_GB.json @@ -9,8 +9,6 @@ "This operation is forbidden" : "This operation is forbidden", "This directory is unavailable, please check the logs or contact the administrator" : "This directory is unavailable, please check the logs or contact the administrator", "restored" : "restored", - "This application enables users to restore files that were deleted from the system." : "This application enables users to restore files that were deleted from the system.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilise more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation.", "No deleted files" : "No deleted files", "You will be able to recover deleted files from here" : "You will be able to recover deleted files from here", "No entries found in this folder" : "No entries found in this folder", diff --git a/apps/files_trashbin/l10n/es.js b/apps/files_trashbin/l10n/es.js index 78b592909ca..f51c390a1b6 100644 --- a/apps/files_trashbin/l10n/es.js +++ b/apps/files_trashbin/l10n/es.js @@ -9,13 +9,11 @@ OC.L10N.register( "Delete permanently" : "Eliminar permanentemente", "Error" : "Error", "This operation is forbidden" : "Esta operación está prohibida", - "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contáctese con el administrador", + "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contacte con el administrador", "restored" : "recuperado", - "This application enables users to restore files that were deleted from the system." : "Esta app permite a los usuarios recuperar archivos borrados del sistema.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Esta aplicación permite a los usuarios recuperar archivos borrados del sistema. Muestra una lista de los archivos borrados en la interfaz web y tiene opciones para restaurar esos archivos borrados a los directorios del usuario o eliminarlos permanentemente del sistema. Restaurar un archivo también restaura las versiones del archivo relacionadas. Cuando un archivo se borra de una compartición, no se puede restaurar de la misma forma, pues ya no será compartido. Por defecto, estos archivos permanecen en la papelera de reciclaje durante 30 días.\nPara evitar que un usuario se quede sin espacio de disco, la app no utilizará más del 50% del espacio disponible a cada momento. Si los archivos borrados exceden este límite, la app borra los archivos más antiguos hasta volver a estar por debajo del límite. Más información disponible en la documentación de Archivos eliminados.", - "No deleted files" : "No hay ningún archivo eliminado", + "No deleted files" : "No hay archivos eliminados", "You will be able to recover deleted files from here" : "Desde aquí se podrán recuperar archivos eliminados", - "No entries found in this folder" : "No hay entradas en esta carpeta", + "No entries found in this folder" : "No hay nada en esta carpeta", "Select all" : "Seleccionar todo", "Name" : "Nombre", "Actions" : "Acciones", diff --git a/apps/files_trashbin/l10n/es.json b/apps/files_trashbin/l10n/es.json index 8bd5def36dd..d4eb859ea99 100644 --- a/apps/files_trashbin/l10n/es.json +++ b/apps/files_trashbin/l10n/es.json @@ -7,13 +7,11 @@ "Delete permanently" : "Eliminar permanentemente", "Error" : "Error", "This operation is forbidden" : "Esta operación está prohibida", - "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contáctese con el administrador", + "This directory is unavailable, please check the logs or contact the administrator" : "Esta carpeta no está disponible, por favor verifique los registros o contacte con el administrador", "restored" : "recuperado", - "This application enables users to restore files that were deleted from the system." : "Esta app permite a los usuarios recuperar archivos borrados del sistema.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Esta aplicación permite a los usuarios recuperar archivos borrados del sistema. Muestra una lista de los archivos borrados en la interfaz web y tiene opciones para restaurar esos archivos borrados a los directorios del usuario o eliminarlos permanentemente del sistema. Restaurar un archivo también restaura las versiones del archivo relacionadas. Cuando un archivo se borra de una compartición, no se puede restaurar de la misma forma, pues ya no será compartido. Por defecto, estos archivos permanecen en la papelera de reciclaje durante 30 días.\nPara evitar que un usuario se quede sin espacio de disco, la app no utilizará más del 50% del espacio disponible a cada momento. Si los archivos borrados exceden este límite, la app borra los archivos más antiguos hasta volver a estar por debajo del límite. Más información disponible en la documentación de Archivos eliminados.", - "No deleted files" : "No hay ningún archivo eliminado", + "No deleted files" : "No hay archivos eliminados", "You will be able to recover deleted files from here" : "Desde aquí se podrán recuperar archivos eliminados", - "No entries found in this folder" : "No hay entradas en esta carpeta", + "No entries found in this folder" : "No hay nada en esta carpeta", "Select all" : "Seleccionar todo", "Name" : "Nombre", "Actions" : "Acciones", diff --git a/apps/files_trashbin/l10n/es_MX.js b/apps/files_trashbin/l10n/es_MX.js index 9c07e912f42..84ee97bfd54 100644 --- a/apps/files_trashbin/l10n/es_MX.js +++ b/apps/files_trashbin/l10n/es_MX.js @@ -11,8 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Esta opración está prohibida", "This directory is unavailable, please check the logs or contact the administrator" : "Este directorio no está disponible, por favor verifica las bitácoras o contacta al administrador", "restored" : "restaurado", - "This application enables users to restore files that were deleted from the system." : "Esta aplicación le permite a los usuarios restaurar archivos que fueron borrados del sistema.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Esta aplicación le permite a los usuarios restaurar archivos que fueron borrados del sistema. Despliega una lista de los archivos borrados en la interface web, y tiene la opción de restaurarlos a los directorios del usuario o removerlos permanentemente del sistema. Restaurar un archivo tambien restaura las versiones relacionadas, si es que la aplicación de versiones está habilitada. Cuando se borra un archivo de un elemento compartido, puede ser restaurado de la misma forma, aunque ya no estará siendo compartido. Por omisión, estos archivos permanecen en la papelera por 30 días.\n\nPara prevenir que un usuario se quede sin espacio, la aplicación de Archivos borrados, no usará más del 50% del espacio disponible en ese momento para los archivos borrados. Si los archivos borrados exceden este límite, la aplicación borra los archivos más antiguos hasta que queda dentro de este límite. Hay más información disponbible en la documentación de Archivos Borrados. ", "No deleted files" : "No hay archivos borrados", "You will be able to recover deleted files from here" : "Podrás recuperar archivos borrados desde aquí", "No entries found in this folder" : "No se encontraron elementos en esta carpeta", diff --git a/apps/files_trashbin/l10n/es_MX.json b/apps/files_trashbin/l10n/es_MX.json index 3fa4d98dba6..a1d1ada60ff 100644 --- a/apps/files_trashbin/l10n/es_MX.json +++ b/apps/files_trashbin/l10n/es_MX.json @@ -9,8 +9,6 @@ "This operation is forbidden" : "Esta opración está prohibida", "This directory is unavailable, please check the logs or contact the administrator" : "Este directorio no está disponible, por favor verifica las bitácoras o contacta al administrador", "restored" : "restaurado", - "This application enables users to restore files that were deleted from the system." : "Esta aplicación le permite a los usuarios restaurar archivos que fueron borrados del sistema.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Esta aplicación le permite a los usuarios restaurar archivos que fueron borrados del sistema. Despliega una lista de los archivos borrados en la interface web, y tiene la opción de restaurarlos a los directorios del usuario o removerlos permanentemente del sistema. Restaurar un archivo tambien restaura las versiones relacionadas, si es que la aplicación de versiones está habilitada. Cuando se borra un archivo de un elemento compartido, puede ser restaurado de la misma forma, aunque ya no estará siendo compartido. Por omisión, estos archivos permanecen en la papelera por 30 días.\n\nPara prevenir que un usuario se quede sin espacio, la aplicación de Archivos borrados, no usará más del 50% del espacio disponible en ese momento para los archivos borrados. Si los archivos borrados exceden este límite, la aplicación borra los archivos más antiguos hasta que queda dentro de este límite. Hay más información disponbible en la documentación de Archivos Borrados. ", "No deleted files" : "No hay archivos borrados", "You will be able to recover deleted files from here" : "Podrás recuperar archivos borrados desde aquí", "No entries found in this folder" : "No se encontraron elementos en esta carpeta", diff --git a/apps/files_trashbin/l10n/fi.js b/apps/files_trashbin/l10n/fi.js index 65109f0082b..cadb0f58213 100644 --- a/apps/files_trashbin/l10n/fi.js +++ b/apps/files_trashbin/l10n/fi.js @@ -11,7 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Tämä toiminto on kielletty", "This directory is unavailable, please check the logs or contact the administrator" : "Hakemisto ei ole käytettävissä. Tarkista lokit tai ole yhteydessä ylläpitoon.", "restored" : "palautettu", - "This application enables users to restore files that were deleted from the system." : "Tämä sovellus mahdollistaa käyttäjien palauttaa järjestelmästä poistettuja tiedostoja.", "No deleted files" : "Ei poistettuja tiedostoja", "You will be able to recover deleted files from here" : "Voit palauttaa poistettuja tiedostoja tätä kautta", "No entries found in this folder" : "Ei kohteita tässä kansiossa", diff --git a/apps/files_trashbin/l10n/fi.json b/apps/files_trashbin/l10n/fi.json index 91c40f64f77..470f28dfe85 100644 --- a/apps/files_trashbin/l10n/fi.json +++ b/apps/files_trashbin/l10n/fi.json @@ -9,7 +9,6 @@ "This operation is forbidden" : "Tämä toiminto on kielletty", "This directory is unavailable, please check the logs or contact the administrator" : "Hakemisto ei ole käytettävissä. Tarkista lokit tai ole yhteydessä ylläpitoon.", "restored" : "palautettu", - "This application enables users to restore files that were deleted from the system." : "Tämä sovellus mahdollistaa käyttäjien palauttaa järjestelmästä poistettuja tiedostoja.", "No deleted files" : "Ei poistettuja tiedostoja", "You will be able to recover deleted files from here" : "Voit palauttaa poistettuja tiedostoja tätä kautta", "No entries found in this folder" : "Ei kohteita tässä kansiossa", diff --git a/apps/files_trashbin/l10n/fr.js b/apps/files_trashbin/l10n/fr.js index 682a5385282..9c197dd1981 100644 --- a/apps/files_trashbin/l10n/fr.js +++ b/apps/files_trashbin/l10n/fr.js @@ -11,8 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Cette opération est interdite", "This directory is unavailable, please check the logs or contact the administrator" : "Ce répertoire n'est pas disponible. Consultez les logs ou contactez votre administrateur", "restored" : "restauré", - "This application enables users to restore files that were deleted from the system." : "Cette application permet aux utilisateurs de restaurer des fichiers qui ont été supprimés du système.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Cette application permet aux utilisateurs de restaurer les fichiers qui ont été supprimés du système. Il affiche une liste de fichiers supprimés dans l'interface Web et dispose d'options pour restaurer ces fichiers supprimés dans les répertoires de fichiers des utilisateurs ou les supprimer définitivement du système. La restauration d'un fichier restaure également les versions de fichiers associées, si l'application de versions est activée. Lorsqu'un fichier est supprimé d'un partage, il peut être restauré de la même manière, bien qu'il ne soit plus partagé. Par défaut, ces fichiers restent dans la corbeille pendant 30 jours.\n\nPour empêcher un utilisateur de manquer d'espace disque, l'application Fichiers supprimés n'utilisera pas plus de 50% du quota gratuit actuellement disponible pour les fichiers supprimés. Si les fichiers supprimés dépassent cette limite, l'application supprime les fichiers les plus anciens jusqu'à ce qu'elle soit inférieure à cette limite. Plus d'informations sont disponibles dans la documentation Fichiers supprimés.", "No deleted files" : "Aucun fichier supprimé", "You will be able to recover deleted files from here" : "Ici, vous verrez et pourrez restaurer vos fichiers supprimés", "No entries found in this folder" : "Aucune entrée trouvée dans ce dossier", diff --git a/apps/files_trashbin/l10n/fr.json b/apps/files_trashbin/l10n/fr.json index 295be467465..347702d6128 100644 --- a/apps/files_trashbin/l10n/fr.json +++ b/apps/files_trashbin/l10n/fr.json @@ -9,8 +9,6 @@ "This operation is forbidden" : "Cette opération est interdite", "This directory is unavailable, please check the logs or contact the administrator" : "Ce répertoire n'est pas disponible. Consultez les logs ou contactez votre administrateur", "restored" : "restauré", - "This application enables users to restore files that were deleted from the system." : "Cette application permet aux utilisateurs de restaurer des fichiers qui ont été supprimés du système.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Cette application permet aux utilisateurs de restaurer les fichiers qui ont été supprimés du système. Il affiche une liste de fichiers supprimés dans l'interface Web et dispose d'options pour restaurer ces fichiers supprimés dans les répertoires de fichiers des utilisateurs ou les supprimer définitivement du système. La restauration d'un fichier restaure également les versions de fichiers associées, si l'application de versions est activée. Lorsqu'un fichier est supprimé d'un partage, il peut être restauré de la même manière, bien qu'il ne soit plus partagé. Par défaut, ces fichiers restent dans la corbeille pendant 30 jours.\n\nPour empêcher un utilisateur de manquer d'espace disque, l'application Fichiers supprimés n'utilisera pas plus de 50% du quota gratuit actuellement disponible pour les fichiers supprimés. Si les fichiers supprimés dépassent cette limite, l'application supprime les fichiers les plus anciens jusqu'à ce qu'elle soit inférieure à cette limite. Plus d'informations sont disponibles dans la documentation Fichiers supprimés.", "No deleted files" : "Aucun fichier supprimé", "You will be able to recover deleted files from here" : "Ici, vous verrez et pourrez restaurer vos fichiers supprimés", "No entries found in this folder" : "Aucune entrée trouvée dans ce dossier", diff --git a/apps/files_trashbin/l10n/he.js b/apps/files_trashbin/l10n/he.js index 27b95c2a6a3..355b30f6eeb 100644 --- a/apps/files_trashbin/l10n/he.js +++ b/apps/files_trashbin/l10n/he.js @@ -11,7 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "פעולה זו אסורה", "This directory is unavailable, please check the logs or contact the administrator" : "תיקייה זו לא קיימת, יש לבדוק את הלוגים או ליצור קשר עם המנהל", "restored" : "שוחזר", - "This application enables users to restore files that were deleted from the system." : "יישומון זה מאפשר למשתמשים לשחזר קבצים שנמחקו מהמערכת.", "No deleted files" : "אין קבצים שנמחקו", "You will be able to recover deleted files from here" : "ניתן לבטל מחיקת קבצים מכאן", "No entries found in this folder" : "לא נמצאו כניסות לתיקייה זו", diff --git a/apps/files_trashbin/l10n/he.json b/apps/files_trashbin/l10n/he.json index 04dced8f9dc..3d70826cae8 100644 --- a/apps/files_trashbin/l10n/he.json +++ b/apps/files_trashbin/l10n/he.json @@ -9,7 +9,6 @@ "This operation is forbidden" : "פעולה זו אסורה", "This directory is unavailable, please check the logs or contact the administrator" : "תיקייה זו לא קיימת, יש לבדוק את הלוגים או ליצור קשר עם המנהל", "restored" : "שוחזר", - "This application enables users to restore files that were deleted from the system." : "יישומון זה מאפשר למשתמשים לשחזר קבצים שנמחקו מהמערכת.", "No deleted files" : "אין קבצים שנמחקו", "You will be able to recover deleted files from here" : "ניתן לבטל מחיקת קבצים מכאן", "No entries found in this folder" : "לא נמצאו כניסות לתיקייה זו", diff --git a/apps/files_trashbin/l10n/is.js b/apps/files_trashbin/l10n/is.js index b98d738845e..9c87618e6b8 100644 --- a/apps/files_trashbin/l10n/is.js +++ b/apps/files_trashbin/l10n/is.js @@ -11,7 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Þessi aðgerð er bönnuð", "This directory is unavailable, please check the logs or contact the administrator" : "Þessi mappa er ekki tiltæk, athugaðu atvikaskrár eða hafðu samband við kerfissjóra", "restored" : "endurheimt", - "This application enables users to restore files that were deleted from the system." : "Þetta forrit gerir notendum kleift að endurheimta skrár sem eytt hefur verið af kerfinu.", "No deleted files" : "Engar eyddar skrár", "You will be able to recover deleted files from here" : "Þú getur endurheimt eyddar skrár héðan", "No entries found in this folder" : "Engar skrár fundust í þessari möppu", diff --git a/apps/files_trashbin/l10n/is.json b/apps/files_trashbin/l10n/is.json index ac4fcdf2fd2..748a3bdbb99 100644 --- a/apps/files_trashbin/l10n/is.json +++ b/apps/files_trashbin/l10n/is.json @@ -9,7 +9,6 @@ "This operation is forbidden" : "Þessi aðgerð er bönnuð", "This directory is unavailable, please check the logs or contact the administrator" : "Þessi mappa er ekki tiltæk, athugaðu atvikaskrár eða hafðu samband við kerfissjóra", "restored" : "endurheimt", - "This application enables users to restore files that were deleted from the system." : "Þetta forrit gerir notendum kleift að endurheimta skrár sem eytt hefur verið af kerfinu.", "No deleted files" : "Engar eyddar skrár", "You will be able to recover deleted files from here" : "Þú getur endurheimt eyddar skrár héðan", "No entries found in this folder" : "Engar skrár fundust í þessari möppu", diff --git a/apps/files_trashbin/l10n/nl.js b/apps/files_trashbin/l10n/nl.js index 08a17d0fb33..e5d4c0d846e 100644 --- a/apps/files_trashbin/l10n/nl.js +++ b/apps/files_trashbin/l10n/nl.js @@ -11,7 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Deze taak is verboden", "This directory is unavailable, please check the logs or contact the administrator" : "Deze map is niet beschikbaar. Verifieer de logs of neem contact op met de beheerder", "restored" : "hersteld", - "This application enables users to restore files that were deleted from the system." : "Deze applicatie stelt gebruikers in staat om verwijderde bestanden te herstellen.", "No deleted files" : "Geen verwijderde bestanden", "You will be able to recover deleted files from here" : "Je kunt verwijderde bestanden hier vandaan weer terugzetten", "No entries found in this folder" : "Niets gevonden in deze map", diff --git a/apps/files_trashbin/l10n/nl.json b/apps/files_trashbin/l10n/nl.json index f28ba2aca17..eda32da6ee3 100644 --- a/apps/files_trashbin/l10n/nl.json +++ b/apps/files_trashbin/l10n/nl.json @@ -9,7 +9,6 @@ "This operation is forbidden" : "Deze taak is verboden", "This directory is unavailable, please check the logs or contact the administrator" : "Deze map is niet beschikbaar. Verifieer de logs of neem contact op met de beheerder", "restored" : "hersteld", - "This application enables users to restore files that were deleted from the system." : "Deze applicatie stelt gebruikers in staat om verwijderde bestanden te herstellen.", "No deleted files" : "Geen verwijderde bestanden", "You will be able to recover deleted files from here" : "Je kunt verwijderde bestanden hier vandaan weer terugzetten", "No entries found in this folder" : "Niets gevonden in deze map", diff --git a/apps/files_trashbin/l10n/pt_BR.js b/apps/files_trashbin/l10n/pt_BR.js index 73d4ab8ef63..f97eae91bbb 100644 --- a/apps/files_trashbin/l10n/pt_BR.js +++ b/apps/files_trashbin/l10n/pt_BR.js @@ -11,8 +11,8 @@ OC.L10N.register( "This operation is forbidden" : "Esta operação é proibida", "This directory is unavailable, please check the logs or contact the administrator" : "Este diretório não está disponível. Por favor verifique os logs ou contacte o administrador", "restored" : "restaurado", - "This application enables users to restore files that were deleted from the system." : "Este aplicativo permite que os usuários restaurem arquivos que foram excluídos do sistema.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Este aplicativo permite que os usuários restaurem arquivos que foram excluídos do sistema. Ele exibe uma lista de arquivos excluídos na interface da Web e há opções para restaurar esses arquivos excluídos para os diretórios de arquivos dos usuários ou removê-los permanentemente do sistema. A restauração de um arquivo também restaura as versões de arquivos relacionadas, se o aplicativo de versões estiver ativado. Quando um arquivo é excluído de um compartilhamento, ele pode ser restaurado da mesma maneira, embora não seja mais compartilhado. Por padrão, esses arquivos permanecem na lixeira por 30 dias.\nPara evitar que um usuário fique sem espaço em disco, o aplicativo Arquivos Excluídos não utilizará mais de 50% da cota atualmente disponível para arquivos excluídos. Se os arquivos excluídos excederem esse limite, o aplicativo excluirá os arquivos mais antigos até que fique abaixo desse limite. Mais informações estão disponíveis na documentação de Arquivos Excluídos.", + "This application enables users to restore files that were deleted from the system." : "Este aplicativo permite que se restaurem arquivos excluídos.", + "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Este aplicativo permite que os usuários restaurem arquivos que foram excluídos. Ele exibe uma lista destes arquivos na interface da Web e tem opções para restaurar esses arquivos para os diretórios de arquivos dos usuários ou removê-los permanentemente. A restauração de um arquivo também restaura as versões de arquivos relacionadas, se o aplicativo de versões estiver ativado. Quando um arquivo é excluído de um compartilhamento, ele pode ser restaurado da mesma maneira, embora não seja mais compartilhado. Por padrão, esses arquivos permanecem na lixeira por 30 dias.\nPara evitar que um usuário fique sem espaço em disco, o aplicativo Arquivos Excluídos não utilizará mais de 50% da cota atualmente disponível para arquivos excluídos. Se os arquivos excluídos excederem esse limite, o aplicativo excluirá os arquivos mais antigos até que fique abaixo desse limite. Mais informações estão disponíveis na documentação de Arquivos Excluídos.", "No deleted files" : "Nenhum arquivo excluído", "You will be able to recover deleted files from here" : "Você pode recuperar arquivos excluídos neste local", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", diff --git a/apps/files_trashbin/l10n/pt_BR.json b/apps/files_trashbin/l10n/pt_BR.json index 084a050f00f..cdd6e89c065 100644 --- a/apps/files_trashbin/l10n/pt_BR.json +++ b/apps/files_trashbin/l10n/pt_BR.json @@ -9,8 +9,8 @@ "This operation is forbidden" : "Esta operação é proibida", "This directory is unavailable, please check the logs or contact the administrator" : "Este diretório não está disponível. Por favor verifique os logs ou contacte o administrador", "restored" : "restaurado", - "This application enables users to restore files that were deleted from the system." : "Este aplicativo permite que os usuários restaurem arquivos que foram excluídos do sistema.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Este aplicativo permite que os usuários restaurem arquivos que foram excluídos do sistema. Ele exibe uma lista de arquivos excluídos na interface da Web e há opções para restaurar esses arquivos excluídos para os diretórios de arquivos dos usuários ou removê-los permanentemente do sistema. A restauração de um arquivo também restaura as versões de arquivos relacionadas, se o aplicativo de versões estiver ativado. Quando um arquivo é excluído de um compartilhamento, ele pode ser restaurado da mesma maneira, embora não seja mais compartilhado. Por padrão, esses arquivos permanecem na lixeira por 30 dias.\nPara evitar que um usuário fique sem espaço em disco, o aplicativo Arquivos Excluídos não utilizará mais de 50% da cota atualmente disponível para arquivos excluídos. Se os arquivos excluídos excederem esse limite, o aplicativo excluirá os arquivos mais antigos até que fique abaixo desse limite. Mais informações estão disponíveis na documentação de Arquivos Excluídos.", + "This application enables users to restore files that were deleted from the system." : "Este aplicativo permite que se restaurem arquivos excluídos.", + "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Este aplicativo permite que os usuários restaurem arquivos que foram excluídos. Ele exibe uma lista destes arquivos na interface da Web e tem opções para restaurar esses arquivos para os diretórios de arquivos dos usuários ou removê-los permanentemente. A restauração de um arquivo também restaura as versões de arquivos relacionadas, se o aplicativo de versões estiver ativado. Quando um arquivo é excluído de um compartilhamento, ele pode ser restaurado da mesma maneira, embora não seja mais compartilhado. Por padrão, esses arquivos permanecem na lixeira por 30 dias.\nPara evitar que um usuário fique sem espaço em disco, o aplicativo Arquivos Excluídos não utilizará mais de 50% da cota atualmente disponível para arquivos excluídos. Se os arquivos excluídos excederem esse limite, o aplicativo excluirá os arquivos mais antigos até que fique abaixo desse limite. Mais informações estão disponíveis na documentação de Arquivos Excluídos.", "No deleted files" : "Nenhum arquivo excluído", "You will be able to recover deleted files from here" : "Você pode recuperar arquivos excluídos neste local", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", diff --git a/apps/files_trashbin/l10n/ru.js b/apps/files_trashbin/l10n/ru.js index 1fe884f6130..f3488f73983 100644 --- a/apps/files_trashbin/l10n/ru.js +++ b/apps/files_trashbin/l10n/ru.js @@ -11,8 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Операция запрещена", "This directory is unavailable, please check the logs or contact the administrator" : "Этот каталог недоступен. Проверьте системные журналы или свяжитесь с администратором", "restored" : "восстановлен", - "This application enables users to restore files that were deleted from the system." : "Это приложение позволяет пользователям восстанавливать файлы, которые были удалены из системы.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Это приложение позволяет пользователям восстанавливать файлы, которые были удалены из системы. Он отображает список удаленных файлов в веб-интерфейсе и имеет опции для восстановления этих удаленных файлов обратно в каталоги пользователей или их окончательного удаления из системы. Восстановление файла также восстанавливает связанные версии файлов, если приложение версий включено. Когда файл удаляется из общего ресурса, его можно восстановить таким же образом, хотя он больше не используется. По умолчанию эти файлы остаются в Корзине в течение 30 дней.\n\nЧтобы у пользователя не было произошло переполнение доступного места на диске, приложение «Удаленные файлы» не будет использовать более 50% доступного в настоящее время дисковой квоты для удаленных файлов. Если удаленные файлы превышают этот предел, приложение удаляет самые старые файлы, пока свободное место не станет ниже этой отметки. Дополнительная информация доступна в документации Удаленные Файлы.", "No deleted files" : "Нет удалённых файлов", "You will be able to recover deleted files from here" : "Отсюда могут быть восстановлены удалённые файлы", "No entries found in this folder" : "В этой папке ничего нет", diff --git a/apps/files_trashbin/l10n/ru.json b/apps/files_trashbin/l10n/ru.json index 17d9ac3412b..0adbe9dca9d 100644 --- a/apps/files_trashbin/l10n/ru.json +++ b/apps/files_trashbin/l10n/ru.json @@ -9,8 +9,6 @@ "This operation is forbidden" : "Операция запрещена", "This directory is unavailable, please check the logs or contact the administrator" : "Этот каталог недоступен. Проверьте системные журналы или свяжитесь с администратором", "restored" : "восстановлен", - "This application enables users to restore files that were deleted from the system." : "Это приложение позволяет пользователям восстанавливать файлы, которые были удалены из системы.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Это приложение позволяет пользователям восстанавливать файлы, которые были удалены из системы. Он отображает список удаленных файлов в веб-интерфейсе и имеет опции для восстановления этих удаленных файлов обратно в каталоги пользователей или их окончательного удаления из системы. Восстановление файла также восстанавливает связанные версии файлов, если приложение версий включено. Когда файл удаляется из общего ресурса, его можно восстановить таким же образом, хотя он больше не используется. По умолчанию эти файлы остаются в Корзине в течение 30 дней.\n\nЧтобы у пользователя не было произошло переполнение доступного места на диске, приложение «Удаленные файлы» не будет использовать более 50% доступного в настоящее время дисковой квоты для удаленных файлов. Если удаленные файлы превышают этот предел, приложение удаляет самые старые файлы, пока свободное место не станет ниже этой отметки. Дополнительная информация доступна в документации Удаленные Файлы.", "No deleted files" : "Нет удалённых файлов", "You will be able to recover deleted files from here" : "Отсюда могут быть восстановлены удалённые файлы", "No entries found in this folder" : "В этой папке ничего нет", diff --git a/apps/files_trashbin/l10n/sr.js b/apps/files_trashbin/l10n/sr.js index 33c944613eb..2a2e6b3a5a9 100644 --- a/apps/files_trashbin/l10n/sr.js +++ b/apps/files_trashbin/l10n/sr.js @@ -11,8 +11,6 @@ OC.L10N.register( "This operation is forbidden" : "Ова радња је забрањена", "This directory is unavailable, please check the logs or contact the administrator" : "Овај директоријум није доступан. Проверите записнике или контактирајте администратора", "restored" : "враћено", - "This application enables users to restore files that were deleted from the system." : "Ова апликација омогућава корисницима да поврате избрисане фајлове.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Ова апликација омогућава корисницима да поврате избрисане фајлове. Из веб интерфејса приказује списак избрисаних фајлова и има опцију да поврати избрисане фајлове назад у корисничке директоријуме или да их непобратно обрише из система. Враћање такође враћа и везану верзију фајла, ако је апликација за верзионисање укључена. Када се фајл избрише из дељене фасцикле, може се повратити на исти начин, али више није дељен. Подразумевано је да фајлови остају у канти за ђубре 30 дана.\nДа би спречили да корисник остане без места на диску, апликација за Обрисане фајлове неће користити више од 50% тренутно доступне квоте за обрисане фајлове. Ако обрисани фајлови пређу ову границу, апликација брише редом фајлове почевши од најстаријих док величина заузетих фајлова не падне испод ове границе. Више информација је доступно у документацији за Обрисане фајлове.", "No deleted files" : "Нема обрисаних фајлова", "You will be able to recover deleted files from here" : "Одавде ћете моћи да повратите обрисане фајлове", "No entries found in this folder" : "Нема ничега у овој фасцикли", diff --git a/apps/files_trashbin/l10n/sr.json b/apps/files_trashbin/l10n/sr.json index 52822b45f2d..73d531bd165 100644 --- a/apps/files_trashbin/l10n/sr.json +++ b/apps/files_trashbin/l10n/sr.json @@ -9,8 +9,6 @@ "This operation is forbidden" : "Ова радња је забрањена", "This directory is unavailable, please check the logs or contact the administrator" : "Овај директоријум није доступан. Проверите записнике или контактирајте администратора", "restored" : "враћено", - "This application enables users to restore files that were deleted from the system." : "Ова апликација омогућава корисницима да поврате избрисане фајлове.", - "This application enables users to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the users file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.\nTo prevent a user from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation." : "Ова апликација омогућава корисницима да поврате избрисане фајлове. Из веб интерфејса приказује списак избрисаних фајлова и има опцију да поврати избрисане фајлове назад у корисничке директоријуме или да их непобратно обрише из система. Враћање такође враћа и везану верзију фајла, ако је апликација за верзионисање укључена. Када се фајл избрише из дељене фасцикле, може се повратити на исти начин, али више није дељен. Подразумевано је да фајлови остају у канти за ђубре 30 дана.\nДа би спречили да корисник остане без места на диску, апликација за Обрисане фајлове неће користити више од 50% тренутно доступне квоте за обрисане фајлове. Ако обрисани фајлови пређу ову границу, апликација брише редом фајлове почевши од најстаријих док величина заузетих фајлова не падне испод ове границе. Више информација је доступно у документацији за Обрисане фајлове.", "No deleted files" : "Нема обрисаних фајлова", "You will be able to recover deleted files from here" : "Одавде ћете моћи да повратите обрисане фајлове", "No entries found in this folder" : "Нема ничега у овој фасцикли", diff --git a/apps/files_versions/l10n/el.js b/apps/files_versions/l10n/el.js index d03f3994183..9742232bfee 100644 --- a/apps/files_versions/l10n/el.js +++ b/apps/files_versions/l10n/el.js @@ -7,7 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bytes","%n bytes"], "Restore" : "Επαναφορά", "No earlier versions available" : "Δεν είναι διαθέριμες νεότερες εκδόσεις", - "More versions …" : "Περισσότερες εκδόσεις ...", - "This application automatically maintains older versions of files that are changed." : "Η εφαρμογή διατηρεί αυτόματα παλαιότερες εκδόσεις των αρχείων που έχουν αλλάξει." + "More versions …" : "Περισσότερες εκδόσεις ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/el.json b/apps/files_versions/l10n/el.json index d454cd28e95..0932c5b6620 100644 --- a/apps/files_versions/l10n/el.json +++ b/apps/files_versions/l10n/el.json @@ -5,7 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bytes","%n bytes"], "Restore" : "Επαναφορά", "No earlier versions available" : "Δεν είναι διαθέριμες νεότερες εκδόσεις", - "More versions …" : "Περισσότερες εκδόσεις ...", - "This application automatically maintains older versions of files that are changed." : "Η εφαρμογή διατηρεί αυτόματα παλαιότερες εκδόσεις των αρχείων που έχουν αλλάξει." + "More versions …" : "Περισσότερες εκδόσεις ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/en_GB.js b/apps/files_versions/l10n/en_GB.js index ab29af2719a..586d1a95d40 100644 --- a/apps/files_versions/l10n/en_GB.js +++ b/apps/files_versions/l10n/en_GB.js @@ -7,9 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restore", "No earlier versions available" : "No earlier versions available", - "More versions …" : "More versions …", - "This application automatically maintains older versions of files that are changed." : "This application automatically maintains older versions of files that are changed.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." + "More versions …" : "More versions …" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/en_GB.json b/apps/files_versions/l10n/en_GB.json index 7ce0ad73904..290d972c1a1 100644 --- a/apps/files_versions/l10n/en_GB.json +++ b/apps/files_versions/l10n/en_GB.json @@ -5,9 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restore", "No earlier versions available" : "No earlier versions available", - "More versions …" : "More versions …", - "This application automatically maintains older versions of files that are changed." : "This application automatically maintains older versions of files that are changed.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." + "More versions …" : "More versions …" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/es.js b/apps/files_versions/l10n/es.js index 5025305535d..ccec8d3d4bc 100644 --- a/apps/files_versions/l10n/es.js +++ b/apps/files_versions/l10n/es.js @@ -1,15 +1,12 @@ OC.L10N.register( "files_versions", { - "Could not revert: %s" : "No se puede revertir: %s", - "Versions" : "Revisiones", - "Failed to revert {file} to revision {timestamp}." : "No se ha podido revertir {archivo} a revisión {timestamp}.", + "Could not revert: %s" : "No se puede restaurar: %s", + "Versions" : "Versiones", + "Failed to revert {file} to revision {timestamp}." : "No se ha podido restaurar {file} a versión {timestamp}.", "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Recuperar", "No earlier versions available" : "No hay versiones previas disponibles", - "More versions …" : "Más versiones ...", - "This application automatically maintains older versions of files that are changed." : "Esta aplicación mantiene automáticamente versiones antiguas de los archivos que cambian.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones antiguas de los archivos que cambian. Al activarse, se crea una carpeta oculta de versiones que se usa para almacenar versiones antiguas de archivos. Un usuario puede volver a una versión anterior a través de la interfaz web en cualquier momento, con el archivo reemplazado convirtiéndose en una versión. La app maneja automáticamente la carpeta de versiones para asegurarse de que el usuario no se queda sin espacio debido a las versiones.\n\nAdemás de la expiración de versiones, la app de versiones se asegura de no usar nunca más del 50% del espacio libre actualmente disponible para un usuario. Si las versiones almacenadas exceden este límite, la app borrará las versiones más antiguas hasta alcanzar este límite. Más información disponible en la documentación de Versiones.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones antiguas de los archivos que cambian. Al activarse, se crea una carpeta oculta de versiones que se usa para almacenar versiones antiguas de archivos. Un usuario puede volver a una versión anterior a través de la interfaz web en cualquier momento, con el archivo reemplazado convirtiéndose en una versión. La app maneja automáticamente la carpeta de versiones para asegurarse de que el usuario no se queda sin espacio debido a las versiones.Además de la expiración de versiones, la app de versiones se asegura de no usar nunca más del 50% del espacio libre actualmente disponible para un usuario. Si las versiones almacenadas exceden este límite, la app borrará las versiones más antiguas hasta alcanzar este límite. Más información disponible en la documentación de Versiones." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es.json b/apps/files_versions/l10n/es.json index 66fdd9bf321..8aa368b5422 100644 --- a/apps/files_versions/l10n/es.json +++ b/apps/files_versions/l10n/es.json @@ -1,13 +1,10 @@ { "translations": { - "Could not revert: %s" : "No se puede revertir: %s", - "Versions" : "Revisiones", - "Failed to revert {file} to revision {timestamp}." : "No se ha podido revertir {archivo} a revisión {timestamp}.", + "Could not revert: %s" : "No se puede restaurar: %s", + "Versions" : "Versiones", + "Failed to revert {file} to revision {timestamp}." : "No se ha podido restaurar {file} a versión {timestamp}.", "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Recuperar", "No earlier versions available" : "No hay versiones previas disponibles", - "More versions …" : "Más versiones ...", - "This application automatically maintains older versions of files that are changed." : "Esta aplicación mantiene automáticamente versiones antiguas de los archivos que cambian.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones antiguas de los archivos que cambian. Al activarse, se crea una carpeta oculta de versiones que se usa para almacenar versiones antiguas de archivos. Un usuario puede volver a una versión anterior a través de la interfaz web en cualquier momento, con el archivo reemplazado convirtiéndose en una versión. La app maneja automáticamente la carpeta de versiones para asegurarse de que el usuario no se queda sin espacio debido a las versiones.\n\nAdemás de la expiración de versiones, la app de versiones se asegura de no usar nunca más del 50% del espacio libre actualmente disponible para un usuario. Si las versiones almacenadas exceden este límite, la app borrará las versiones más antiguas hasta alcanzar este límite. Más información disponible en la documentación de Versiones.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones antiguas de los archivos que cambian. Al activarse, se crea una carpeta oculta de versiones que se usa para almacenar versiones antiguas de archivos. Un usuario puede volver a una versión anterior a través de la interfaz web en cualquier momento, con el archivo reemplazado convirtiéndose en una versión. La app maneja automáticamente la carpeta de versiones para asegurarse de que el usuario no se queda sin espacio debido a las versiones.Además de la expiración de versiones, la app de versiones se asegura de no usar nunca más del 50% del espacio libre actualmente disponible para un usuario. Si las versiones almacenadas exceden este límite, la app borrará las versiones más antiguas hasta alcanzar este límite. Más información disponible en la documentación de Versiones." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/es_MX.js b/apps/files_versions/l10n/es_MX.js index f074f1f43e7..e1269727f58 100644 --- a/apps/files_versions/l10n/es_MX.js +++ b/apps/files_versions/l10n/es_MX.js @@ -7,9 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "This application automatically maintains older versions of files that are changed." : "Esta aplicación mantiene automáticamente versiones anteriores de archivos que fueron cambiados. ", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones anteriores de los archivos que se cambian. Al habilitarse, una carpeta oculata de versiones de archivos se aprovisiona en cada directorio del usuario y se usa para almacenar las versiones anteriores de los archivos. Un usuario puede regresar a una versión anterior mediante al interfaz web en cualquier momento, el archivo reemplazado se convierte en una versión. La aplicación administra automáticamente la carpeta de versiones para asegurar que el usuario no agote su Cuota con estas versiones. \n\t\tAdicionalmente a la expiración de las versiones, la aplicación de versiones se asegura de nunca usar mas del 50% del espacio actualmente disponible del usuario. Si las versiones almacenadas exceden este límite, la aplicación borrará las versiones más antiguas hasta que se llegue dentro de este límite. Más información está disponible en la documentacion de Versiones. ", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones anteriores de los archivos que cambian. Al habilitarse, una carpeta oculata de versiones de archivos se aprovisiona en cada directorio del usuario y se usa para almacenar las versiones anteriores de los archivos. Un usuario puede regresar a una versión anterior mediante al interfaz web en cualquier momento, el archivo reemplazado se convierte en una versión. La aplicación administra automáticamente la carpeta de versiones para asegurar que el usuario no agote su Cuota con estas versiones. \nAdicionalmente a la expiración de las versiones, la aplicación de versiones se asegura de nunca usar mas del 50% del espacio actualmente disponible del usuario. Si las versiones almacenadas exceden este límite, la aplicación borrará las versiones más antiguas hasta que se llegue dentro de este límite. Más información está disponible en la documentacion de Versiones. " + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_MX.json b/apps/files_versions/l10n/es_MX.json index 238e504f231..6d1928e054d 100644 --- a/apps/files_versions/l10n/es_MX.json +++ b/apps/files_versions/l10n/es_MX.json @@ -5,9 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "This application automatically maintains older versions of files that are changed." : "Esta aplicación mantiene automáticamente versiones anteriores de archivos que fueron cambiados. ", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones anteriores de los archivos que se cambian. Al habilitarse, una carpeta oculata de versiones de archivos se aprovisiona en cada directorio del usuario y se usa para almacenar las versiones anteriores de los archivos. Un usuario puede regresar a una versión anterior mediante al interfaz web en cualquier momento, el archivo reemplazado se convierte en una versión. La aplicación administra automáticamente la carpeta de versiones para asegurar que el usuario no agote su Cuota con estas versiones. \n\t\tAdicionalmente a la expiración de las versiones, la aplicación de versiones se asegura de nunca usar mas del 50% del espacio actualmente disponible del usuario. Si las versiones almacenadas exceden este límite, la aplicación borrará las versiones más antiguas hasta que se llegue dentro de este límite. Más información está disponible en la documentacion de Versiones. ", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Esta aplicación mantiene automáticamente versiones anteriores de los archivos que cambian. Al habilitarse, una carpeta oculata de versiones de archivos se aprovisiona en cada directorio del usuario y se usa para almacenar las versiones anteriores de los archivos. Un usuario puede regresar a una versión anterior mediante al interfaz web en cualquier momento, el archivo reemplazado se convierte en una versión. La aplicación administra automáticamente la carpeta de versiones para asegurar que el usuario no agote su Cuota con estas versiones. \nAdicionalmente a la expiración de las versiones, la aplicación de versiones se asegura de nunca usar mas del 50% del espacio actualmente disponible del usuario. Si las versiones almacenadas exceden este límite, la aplicación borrará las versiones más antiguas hasta que se llegue dentro de este límite. Más información está disponible en la documentacion de Versiones. " + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/fr.js b/apps/files_versions/l10n/fr.js index c49a952e595..10855800b32 100644 --- a/apps/files_versions/l10n/fr.js +++ b/apps/files_versions/l10n/fr.js @@ -7,9 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n octet","%n octets"], "Restore" : "Restaurer", "No earlier versions available" : "Aucune version antérieure disponible", - "More versions …" : "Plus de versions ...", - "This application automatically maintains older versions of files that are changed." : "Cette application conserve automatiquement des anciennes versions de fichiers qui ont été modifiés.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Cette application maintient automatiquement les anciennes versions des fichiers qui sont modifiés. Lorsqu'elle est activée, un dossier de versions cachées est provisionné dans le répertoire de chaque utilisateur et est utilisé pour stocker les anciennes versions de fichiers. Un utilisateur peut à tout moment revenir à une ancienne version via l'interface Web, le fichier remplacé devenant une version. L'application gère automatiquement le dossier des versions pour s'assurer que l'utilisateur ne manque pas de place à cause des versions stockées.\nEn plus de l'expiration des versions, l'application veille à ne jamais utiliser plus de 50% de l'espace libre actuellement disponible pour l'utilisateur. Si les versions stockées dépassent cette limite, l'application supprime les versions les plus anciennes en premier jusqu'à ce qu'elle atteigne cette limite. Plus d'informations sont disponibles dans la documentation Versions.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Cette application maintient automatiquement les anciennes versions des fichiers qui sont modifiés. Lorsqu'il est activé, un dossier de versions cachées est provisionné dans le répertoire de chaque utilisateur et est utilisé pour stocker les anciennes versions de fichiers. Un utilisateur peut à tout moment revenir à une ancienne version via l'interface Web, le fichier remplacé devenant une version. L'application gère automatiquement le dossier des versions pour s'assurer que l'utilisateur ne dépasse pas son quota en raison des versions stockées.\nEn plus de l'expiration des versions, l'application des versions veille à ne jamais utiliser plus de 50% de l'espace libre actuellement disponible pour l'utilisateur. Si les versions stockées dépassent cette limite, l'application supprime les versions les plus anciennes en premier jusqu'à ce qu'elle atteigne cette limite. Plus d'informations sont disponibles dans la documentation Versions." + "More versions …" : "Plus de versions ..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_versions/l10n/fr.json b/apps/files_versions/l10n/fr.json index 67e99c3f310..5a7cfadc55b 100644 --- a/apps/files_versions/l10n/fr.json +++ b/apps/files_versions/l10n/fr.json @@ -5,9 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n octet","%n octets"], "Restore" : "Restaurer", "No earlier versions available" : "Aucune version antérieure disponible", - "More versions …" : "Plus de versions ...", - "This application automatically maintains older versions of files that are changed." : "Cette application conserve automatiquement des anciennes versions de fichiers qui ont été modifiés.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Cette application maintient automatiquement les anciennes versions des fichiers qui sont modifiés. Lorsqu'elle est activée, un dossier de versions cachées est provisionné dans le répertoire de chaque utilisateur et est utilisé pour stocker les anciennes versions de fichiers. Un utilisateur peut à tout moment revenir à une ancienne version via l'interface Web, le fichier remplacé devenant une version. L'application gère automatiquement le dossier des versions pour s'assurer que l'utilisateur ne manque pas de place à cause des versions stockées.\nEn plus de l'expiration des versions, l'application veille à ne jamais utiliser plus de 50% de l'espace libre actuellement disponible pour l'utilisateur. Si les versions stockées dépassent cette limite, l'application supprime les versions les plus anciennes en premier jusqu'à ce qu'elle atteigne cette limite. Plus d'informations sont disponibles dans la documentation Versions.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Cette application maintient automatiquement les anciennes versions des fichiers qui sont modifiés. Lorsqu'il est activé, un dossier de versions cachées est provisionné dans le répertoire de chaque utilisateur et est utilisé pour stocker les anciennes versions de fichiers. Un utilisateur peut à tout moment revenir à une ancienne version via l'interface Web, le fichier remplacé devenant une version. L'application gère automatiquement le dossier des versions pour s'assurer que l'utilisateur ne dépasse pas son quota en raison des versions stockées.\nEn plus de l'expiration des versions, l'application des versions veille à ne jamais utiliser plus de 50% de l'espace libre actuellement disponible pour l'utilisateur. Si les versions stockées dépassent cette limite, l'application supprime les versions les plus anciennes en premier jusqu'à ce qu'elle atteigne cette limite. Plus d'informations sont disponibles dans la documentation Versions." + "More versions …" : "Plus de versions ..." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/he.js b/apps/files_versions/l10n/he.js index c31d36cf089..e733b773329 100644 --- a/apps/files_versions/l10n/he.js +++ b/apps/files_versions/l10n/he.js @@ -7,7 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n בייט","%n בייטים","%n בייטים","%n בייטים"], "Restore" : "שחזור", "No earlier versions available" : "אין גרסאות קודמות זמינות", - "More versions …" : "גרסאות נוספות…", - "This application automatically maintains older versions of files that are changed." : "יישומון זה שומר אוטומטית על גרסאות קודמות של קבצים שהשתנו." + "More versions …" : "גרסאות נוספות…" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); diff --git a/apps/files_versions/l10n/he.json b/apps/files_versions/l10n/he.json index 552aecc9397..0d26f145c72 100644 --- a/apps/files_versions/l10n/he.json +++ b/apps/files_versions/l10n/he.json @@ -5,7 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n בייט","%n בייטים","%n בייטים","%n בייטים"], "Restore" : "שחזור", "No earlier versions available" : "אין גרסאות קודמות זמינות", - "More versions …" : "גרסאות נוספות…", - "This application automatically maintains older versions of files that are changed." : "יישומון זה שומר אוטומטית על גרסאות קודמות של קבצים שהשתנו." + "More versions …" : "גרסאות נוספות…" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/it.js b/apps/files_versions/l10n/it.js index 0f06bf653a8..6420b815c4b 100644 --- a/apps/files_versions/l10n/it.js +++ b/apps/files_versions/l10n/it.js @@ -8,8 +8,8 @@ OC.L10N.register( "Restore" : "Ripristina", "No earlier versions available" : "Nessuna versione precedente disponibile", "More versions …" : "Altre versioni...", - "This application automatically maintains older versions of files that are changed." : "Questa applicazione mantiene automaticamente le vecchie versioni dei file modificati.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente le versioni più vecchie dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le vecchie versioni dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\n\t\tIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente le versioni più vecchie dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le vecchie versioni dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\nIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni." + "This application automatically maintains older versions of files that are changed." : "Questa applicazione mantiene automaticamente versioni più datate dei file modificati.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente versioni più datate dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le versioni datate dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\n\t\tIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente le versioni più datate dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le versioni datate dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\nIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/it.json b/apps/files_versions/l10n/it.json index 2dc38d91e5f..d55640b282e 100644 --- a/apps/files_versions/l10n/it.json +++ b/apps/files_versions/l10n/it.json @@ -6,8 +6,8 @@ "Restore" : "Ripristina", "No earlier versions available" : "Nessuna versione precedente disponibile", "More versions …" : "Altre versioni...", - "This application automatically maintains older versions of files that are changed." : "Questa applicazione mantiene automaticamente le vecchie versioni dei file modificati.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente le versioni più vecchie dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le vecchie versioni dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\n\t\tIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente le versioni più vecchie dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le vecchie versioni dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\nIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni." + "This application automatically maintains older versions of files that are changed." : "Questa applicazione mantiene automaticamente versioni più datate dei file modificati.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente versioni più datate dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le versioni datate dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\n\t\tIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Questa applicazione conserva automaticamente le versioni più datate dei file che sono stati modificati. Se abilitata, una cartella nascosta delle versioni è generata in ogni cartella degli utenti ed è utilizzata per archiviare le versioni datate dei file. Un utente può tornare a una versione più datata tramite l'interfaccia web in qualsiasi momento, con il file sostituito che diventa una versione. L'applicazione gestisce automaticamente la cartella delle versioni per assicurare che l'utente non esaurisca mai la quota a causa delle versioni.\nIn aggiunta alla scadenza delle versioni, l'applicazione delle versioni si accerta che non sia utilizzato mai più del 50% dello spazio disponibile attualmente all'utente. Se le versioni archiviate eccedono questo limite, l'applicazione eliminerà prima le versioni più vecchie, fino a raggiungere questo limite. Altre informazioni sono disponibili nella documentazione di Versioni." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/lv.js b/apps/files_versions/l10n/lv.js index ea84b83841d..14ee8835176 100644 --- a/apps/files_versions/l10n/lv.js +++ b/apps/files_versions/l10n/lv.js @@ -5,6 +5,8 @@ OC.L10N.register( "Versions" : "Versijas", "Failed to revert {file} to revision {timestamp}." : "Neizdevās atjaunot {file} no rediģējuma {timestamp} ", "_%n byte_::_%n bytes_" : ["%n baiti","%n baiti","%n baiti"], - "Restore" : "Atjaunot" + "Restore" : "Atjaunot", + "No earlier versions available" : "Vecākas versijas nav pieejamas", + "More versions …" : "Vairāk versiju..." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/files_versions/l10n/lv.json b/apps/files_versions/l10n/lv.json index b4a203fbee9..0d85899acc7 100644 --- a/apps/files_versions/l10n/lv.json +++ b/apps/files_versions/l10n/lv.json @@ -3,6 +3,8 @@ "Versions" : "Versijas", "Failed to revert {file} to revision {timestamp}." : "Neizdevās atjaunot {file} no rediģējuma {timestamp} ", "_%n byte_::_%n bytes_" : ["%n baiti","%n baiti","%n baiti"], - "Restore" : "Atjaunot" + "Restore" : "Atjaunot", + "No earlier versions available" : "Vecākas versijas nav pieejamas", + "More versions …" : "Vairāk versiju..." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/nl.js b/apps/files_versions/l10n/nl.js index 53566679ab8..83f2de4b365 100644 --- a/apps/files_versions/l10n/nl.js +++ b/apps/files_versions/l10n/nl.js @@ -7,7 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Herstellen", "No earlier versions available" : "Geen oudere versies beschikbaar", - "More versions …" : "Meer versies...", - "This application automatically maintains older versions of files that are changed." : "Deze applicatie handhaaft automatisch oudere versies van gewijzigde bestanden." + "More versions …" : "Meer versies..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/nl.json b/apps/files_versions/l10n/nl.json index 1b93acc7b27..59554c81316 100644 --- a/apps/files_versions/l10n/nl.json +++ b/apps/files_versions/l10n/nl.json @@ -5,7 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Herstellen", "No earlier versions available" : "Geen oudere versies beschikbaar", - "More versions …" : "Meer versies...", - "This application automatically maintains older versions of files that are changed." : "Deze applicatie handhaaft automatisch oudere versies van gewijzigde bestanden." + "More versions …" : "Meer versies..." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/pt_BR.js b/apps/files_versions/l10n/pt_BR.js index 975e62905d5..b870ec40553 100644 --- a/apps/files_versions/l10n/pt_BR.js +++ b/apps/files_versions/l10n/pt_BR.js @@ -8,8 +8,8 @@ OC.L10N.register( "Restore" : "Restaurar", "No earlier versions available" : "Não há versões mais novas disponíveis", "More versions …" : "Mais versões...", - "This application automatically maintains older versions of files that are changed." : "Este aplicativo mantém automaticamente as versões mais antigas de arquivos alterados.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta de versões ocultas é providenciada no diretório de todos os usuários e é usada para armazenar versões de arquivos antigas. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota devido às versões.\n\t\tAlém do prazo de validade das versões, o aplicativo das versões garante nunca usar mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Maiores informações disponíveis na documentação do Versions.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta de versões ocultas é providenciada no diretório dos usuários e usada para armazenar versões antigas de arquivos. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota devido às versões.\nAlém do prazo de validade das versões, o aplicativo garante que nunca usará mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Mais informações estão disponíveis na documentação do Versions." + "This application automatically maintains older versions of files that are changed." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos que são alterados.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta oculta de versões é criada no diretório de todos os usuários e é usada para armazenar versões antigas de arquivos. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota por causa disso.\n\t\tAlém do prazo de validade das versões, o aplicativo garante que nunca use mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Mais informações estão disponíveis na documentação do Versions.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta oculta de versões é criada no diretório de todos os usuários e é usada para armazenar versões antigas de arquivos. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota por causa disso.\nAlém do prazo de validade das versões, o aplicativo garante que nunca use mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Mais informações estão disponíveis na documentação do Versions." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_versions/l10n/pt_BR.json b/apps/files_versions/l10n/pt_BR.json index d7d79cd327c..c06ff23d6f4 100644 --- a/apps/files_versions/l10n/pt_BR.json +++ b/apps/files_versions/l10n/pt_BR.json @@ -6,8 +6,8 @@ "Restore" : "Restaurar", "No earlier versions available" : "Não há versões mais novas disponíveis", "More versions …" : "Mais versões...", - "This application automatically maintains older versions of files that are changed." : "Este aplicativo mantém automaticamente as versões mais antigas de arquivos alterados.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta de versões ocultas é providenciada no diretório de todos os usuários e é usada para armazenar versões de arquivos antigas. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota devido às versões.\n\t\tAlém do prazo de validade das versões, o aplicativo das versões garante nunca usar mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Maiores informações disponíveis na documentação do Versions.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta de versões ocultas é providenciada no diretório dos usuários e usada para armazenar versões antigas de arquivos. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota devido às versões.\nAlém do prazo de validade das versões, o aplicativo garante que nunca usará mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Mais informações estão disponíveis na documentação do Versions." + "This application automatically maintains older versions of files that are changed." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos que são alterados.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta oculta de versões é criada no diretório de todos os usuários e é usada para armazenar versões antigas de arquivos. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota por causa disso.\n\t\tAlém do prazo de validade das versões, o aplicativo garante que nunca use mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Mais informações estão disponíveis na documentação do Versions.", + "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Este aplicativo mantém automaticamente versões mais antigas de arquivos alterados. Quando ativado, uma pasta oculta de versões é criada no diretório de todos os usuários e é usada para armazenar versões antigas de arquivos. Um usuário pode reverter para uma versão mais antiga através da interface da web a qualquer momento, com o arquivo substituído se tornando uma versão. O aplicativo gerencia automaticamente a pasta de versões para garantir que o usuário não fique sem cota por causa disso.\nAlém do prazo de validade das versões, o aplicativo garante que nunca use mais de 50% do espaço livre disponível no momento pelo usuário. Se as versões armazenadas excederem esse limite, o aplicativo excluirá as versões mais antigas primeiro até atingir esse limite. Mais informações estão disponíveis na documentação do Versions." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/ru.js b/apps/files_versions/l10n/ru.js index 0b76e3eb0ad..fbce7c94c98 100644 --- a/apps/files_versions/l10n/ru.js +++ b/apps/files_versions/l10n/ru.js @@ -7,9 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n байт","%n байта","%n байт","%n байт"], "Restore" : "Откатить", "No earlier versions available" : "Нет более ранних версий…", - "More versions …" : "Ещё версии…", - "This application automatically maintains older versions of files that are changed." : "Это приложение автоматически поддерживает старые версии файлов, которые были изменены.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Это приложение автоматически поддерживает старые версии файлов, которые были изменены. Когда приложение включено, папка скрытых версий будет в каталоге каждого пользователя и используется для хранения старых версий файлов. Пользователь может в любой момент вернуться к старой версии через веб-интерфейс, при этом файл с новой версией будет заменён файлом старой версии. Приложение автоматически управляет папкой версий, чтобы гарантировать, что у пользователя не закончится дисковая квота из-за обилия версий. В дополнение к истечению срока действия версии, данной приложение не позволяет использовать более 50% свободного места, в настоящее время доступного пользователю. Если сохраненные версии превышают этот предел, приложение сначала удалит самые старые версии, пока не достигнет этого предела. Дополнительная информация доступна в документации в разделе \"Версии\".", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Это приложение автоматически поддерживает старые версии файлов, которые были изменены. Когда приложение включено, папка скрытых версий будет в каталоге каждого пользователя и используется для хранения старых версий файлов. Пользователь может в любой момент вернуться к старой версии через веб-интерфейс, при этом файл с новой версией будет заменён файлом старой версии. Приложение автоматически управляет папкой версий, чтобы гарантировать, что у пользователя не закончится дисковая квота из-за обилия версий. В дополнение к истечению срока действия версии, данной приложение не позволяет использовать более 50% свободного места, в настоящее время доступного пользователю. Если сохраненные версии превышают этот предел, приложение сначала удалит самые старые версии, пока не достигнет этого предела. Дополнительная информация доступна в документации в разделе \"Версии\"." + "More versions …" : "Ещё версии…" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/files_versions/l10n/ru.json b/apps/files_versions/l10n/ru.json index 35c15c7e990..86dde804498 100644 --- a/apps/files_versions/l10n/ru.json +++ b/apps/files_versions/l10n/ru.json @@ -5,9 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n байт","%n байта","%n байт","%n байт"], "Restore" : "Откатить", "No earlier versions available" : "Нет более ранних версий…", - "More versions …" : "Ещё версии…", - "This application automatically maintains older versions of files that are changed." : "Это приложение автоматически поддерживает старые версии файлов, которые были изменены.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Это приложение автоматически поддерживает старые версии файлов, которые были изменены. Когда приложение включено, папка скрытых версий будет в каталоге каждого пользователя и используется для хранения старых версий файлов. Пользователь может в любой момент вернуться к старой версии через веб-интерфейс, при этом файл с новой версией будет заменён файлом старой версии. Приложение автоматически управляет папкой версий, чтобы гарантировать, что у пользователя не закончится дисковая квота из-за обилия версий. В дополнение к истечению срока действия версии, данной приложение не позволяет использовать более 50% свободного места, в настоящее время доступного пользователю. Если сохраненные версии превышают этот предел, приложение сначала удалит самые старые версии, пока не достигнет этого предела. Дополнительная информация доступна в документации в разделе \"Версии\".", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Это приложение автоматически поддерживает старые версии файлов, которые были изменены. Когда приложение включено, папка скрытых версий будет в каталоге каждого пользователя и используется для хранения старых версий файлов. Пользователь может в любой момент вернуться к старой версии через веб-интерфейс, при этом файл с новой версией будет заменён файлом старой версии. Приложение автоматически управляет папкой версий, чтобы гарантировать, что у пользователя не закончится дисковая квота из-за обилия версий. В дополнение к истечению срока действия версии, данной приложение не позволяет использовать более 50% свободного места, в настоящее время доступного пользователю. Если сохраненные версии превышают этот предел, приложение сначала удалит самые старые версии, пока не достигнет этого предела. Дополнительная информация доступна в документации в разделе \"Версии\"." + "More versions …" : "Ещё версии…" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" }
\ No newline at end of file diff --git a/apps/files_versions/l10n/sr.js b/apps/files_versions/l10n/sr.js index ad19725755c..5bde1f51cf3 100644 --- a/apps/files_versions/l10n/sr.js +++ b/apps/files_versions/l10n/sr.js @@ -7,9 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n бајт","%n бајта","%n бајтова"], "Restore" : "Врати", "No earlier versions available" : "Нема старијих верзија", - "More versions …" : "Још верзија …", - "This application automatically maintains older versions of files that are changed." : "Ова апликација аутоматски одржава старије верзије фајлова који су се изменили.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Ова апликација аутоматски чува старије верзије фајлова који су се изменили. Када се укључи, у свакој корисничкој фасцикли се додаје још једна скривена фасцикла у коју се смештају старије верзије фајлова. Корисник се у сваком тренутку може вратити на старију верзију фајлова кроз веб интерфејс, с тим да замењени фајл постаје исто једна верзија. Апликација аутоматски управља фасциклама са верзијама да би се осигурала да корисник не дође до квоте због чувања верзија.\n\t\tУз истицање верзија, апликација верзионисања се стара да се никад не користи више од 50% корисничког слободног простора. Уколико ускладиштена верзија прелази ову вредност, апликација ће кренути да брише верзије почевши од најстарије све док се не падне испод границе од 50%. Још информација је доступно у документацији апликације за Верзионисање.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Ова апликација аутоматски чува старије верзије фајлова који су се изменили. Када се укључи, у свакој корисничкој фасцикли се додаје још једна скривена фасцикла у коју се смештају старије верзије фајлова. Корисник се у сваком тренутку може вратити на старију верзију фајлова кроз веб интерфејс, с тим да замењени фајл постаје исто једна верзија. Апликација аутоматски управља фасциклама са верзијама да би се осигурала да корисник не дође до квоте због чувања верзија.\nУз истицање верзија, апликација верзионисања се стара да се никад не користи више од 50% корисничког слободног простора. Уколико ускладиштена верзија прелази ову вредност, апликација ће кренути да брише верзије почевши од најстарије све док се не падне испод границе од 50%. Још информација је доступно у документацији апликације за Верзионисање." + "More versions …" : "Још верзија …" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/files_versions/l10n/sr.json b/apps/files_versions/l10n/sr.json index a8181875213..0943ab436d3 100644 --- a/apps/files_versions/l10n/sr.json +++ b/apps/files_versions/l10n/sr.json @@ -5,9 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n бајт","%n бајта","%n бајтова"], "Restore" : "Врати", "No earlier versions available" : "Нема старијих верзија", - "More versions …" : "Још верзија …", - "This application automatically maintains older versions of files that are changed." : "Ова апликација аутоматски одржава старије верзије фајлова који су се изменили.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\n\t\tIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Ова апликација аутоматски чува старије верзије фајлова који су се изменили. Када се укључи, у свакој корисничкој фасцикли се додаје још једна скривена фасцикла у коју се смештају старије верзије фајлова. Корисник се у сваком тренутку може вратити на старију верзију фајлова кроз веб интерфејс, с тим да замењени фајл постаје исто једна верзија. Апликација аутоматски управља фасциклама са верзијама да би се осигурала да корисник не дође до квоте због чувања верзија.\n\t\tУз истицање верзија, апликација верзионисања се стара да се никад не користи више од 50% корисничког слободног простора. Уколико ускладиштена верзија прелази ову вредност, апликација ће кренути да брише верзије почевши од најстарије све док се не падне испод границе од 50%. Још информација је доступно у документацији апликације за Верзионисање.", - "This application automatically maintains older versions of files that are changed. When enabled, a hidden versions folder is provisioned in every user’s directory and is used to store old file versions. A user can revert to an older version through the web interface at any time, with the replaced file becoming a version. The app automatically manages the versions folder to ensure the user doesn’t run out of Quota because of versions.\nIn addition to the expiry of versions, the versions app makes certain never to use more than 50% of the user’s currently available free space. If stored versions exceed this limit, the app will delete the oldest versions first until it meets this limit. More information is available in the Versions documentation." : "Ова апликација аутоматски чува старије верзије фајлова који су се изменили. Када се укључи, у свакој корисничкој фасцикли се додаје још једна скривена фасцикла у коју се смештају старије верзије фајлова. Корисник се у сваком тренутку може вратити на старију верзију фајлова кроз веб интерфејс, с тим да замењени фајл постаје исто једна верзија. Апликација аутоматски управља фасциклама са верзијама да би се осигурала да корисник не дође до квоте због чувања верзија.\nУз истицање верзија, апликација верзионисања се стара да се никад не користи више од 50% корисничког слободног простора. Уколико ускладиштена верзија прелази ову вредност, апликација ће кренути да брише верзије почевши од најстарије све док се не падне испод границе од 50%. Још информација је доступно у документацији апликације за Верзионисање." + "More versions …" : "Још верзија …" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/cs.js b/apps/oauth2/l10n/cs.js index cdd1c076f02..e260be6a877 100644 --- a/apps/oauth2/l10n/cs.js +++ b/apps/oauth2/l10n/cs.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URL pro přesměrování musí být uvedeno celé, např. https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Umožňuje OAuth2 autentikaci jiným webovým aplikacím.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikace OAuth2 umožňuje administrátorům nastavit zabudované autentizační workflow tak, aby OAuth2 kompatibilní webové aplikace mohy autentizovat.", "OAuth 2.0 clients" : "OAuth 2.0 klienti", "Name" : "Název", "Client Identifier" : "Identifikátor klienta", diff --git a/apps/oauth2/l10n/cs.json b/apps/oauth2/l10n/cs.json index f8affff5c3f..e2e4fe21f70 100644 --- a/apps/oauth2/l10n/cs.json +++ b/apps/oauth2/l10n/cs.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "URL pro přesměrování musí být uvedeno celé, např. https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Umožňuje OAuth2 autentikaci jiným webovým aplikacím.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikace OAuth2 umožňuje administrátorům nastavit zabudované autentizační workflow tak, aby OAuth2 kompatibilní webové aplikace mohy autentizovat.", "OAuth 2.0 clients" : "OAuth 2.0 klienti", "Name" : "Název", "Client Identifier" : "Identifikátor klienta", diff --git a/apps/oauth2/l10n/de.js b/apps/oauth2/l10n/de.js index ec099ed1bb1..c6732e0b235 100644 --- a/apps/oauth2/l10n/de.js +++ b/apps/oauth2/l10n/de.js @@ -3,8 +3,8 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://deinedomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Erlaubt OAuth2 komplatible authentifizierung durch andere WEb-Anwendungen.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist.", + "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", "Client Identifier" : "Client-Identifikationsmerkmal", diff --git a/apps/oauth2/l10n/de.json b/apps/oauth2/l10n/de.json index 4e23f8efdd5..d36e53d9857 100644 --- a/apps/oauth2/l10n/de.json +++ b/apps/oauth2/l10n/de.json @@ -1,8 +1,8 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://deinedomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Erlaubt OAuth2 komplatible authentifizierung durch andere WEb-Anwendungen.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist.", + "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", "Client Identifier" : "Client-Identifikationsmerkmal", diff --git a/apps/oauth2/l10n/de_DE.js b/apps/oauth2/l10n/de_DE.js index 5e3e05286be..c6732e0b235 100644 --- a/apps/oauth2/l10n/de_DE.js +++ b/apps/oauth2/l10n/de_DE.js @@ -3,8 +3,8 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://deinedomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Erlaubt OAuth2 komplatible Authentifizierung durch andere WEb-Anwendungen.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist.", + "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", "Client Identifier" : "Client-Identifikationsmerkmal", diff --git a/apps/oauth2/l10n/de_DE.json b/apps/oauth2/l10n/de_DE.json index 34b1d192715..d36e53d9857 100644 --- a/apps/oauth2/l10n/de_DE.json +++ b/apps/oauth2/l10n/de_DE.json @@ -1,8 +1,8 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Die Weiterleitungs-URL muss eine vollständige URL sein. Beispiel: https://deinedomain.com/pfad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Erlaubt OAuth2 komplatible Authentifizierung durch andere WEb-Anwendungen.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist.", + "Allows OAuth2 compatible authentication from other web applications." : "Ermöglicht OAuth2 komplatible Authentifizierung durch andere Web-Anwendungen.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", "Client Identifier" : "Client-Identifikationsmerkmal", diff --git a/apps/oauth2/l10n/en_GB.js b/apps/oauth2/l10n/en_GB.js index c47a59f99ab..854306247d4 100644 --- a/apps/oauth2/l10n/en_GB.js +++ b/apps/oauth2/l10n/en_GB.js @@ -2,8 +2,6 @@ OC.L10N.register( "oauth2", { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Allows OAuth2 compatible authentication from other web applications.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.", "OAuth 2.0 clients" : "OAuth 2.0 clients", "Name" : "Name", "Client Identifier" : "Client Identifier", diff --git a/apps/oauth2/l10n/en_GB.json b/apps/oauth2/l10n/en_GB.json index a473ba791ef..06965424236 100644 --- a/apps/oauth2/l10n/en_GB.json +++ b/apps/oauth2/l10n/en_GB.json @@ -1,7 +1,5 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Allows OAuth2 compatible authentication from other web applications.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.", "OAuth 2.0 clients" : "OAuth 2.0 clients", "Name" : "Name", "Client Identifier" : "Client Identifier", diff --git a/apps/oauth2/l10n/es.js b/apps/oauth2/l10n/es.js index 7844062a667..959d6a2a348 100644 --- a/apps/oauth2/l10n/es.js +++ b/apps/oauth2/l10n/es.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tu URL de redirección debe ser una URL completa, por ejemplo: https://tudominio.com/ruta", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticación compatible con OAuth2 desde otras aplicaciones web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La app OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", "Client Identifier" : "Identificador de cliente", diff --git a/apps/oauth2/l10n/es.json b/apps/oauth2/l10n/es.json index ec4807f2a6c..4e99f148302 100644 --- a/apps/oauth2/l10n/es.json +++ b/apps/oauth2/l10n/es.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tu URL de redirección debe ser una URL completa, por ejemplo: https://tudominio.com/ruta", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticación compatible con OAuth2 desde otras aplicaciones web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La app OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", "Client Identifier" : "Identificador de cliente", diff --git a/apps/oauth2/l10n/es_MX.js b/apps/oauth2/l10n/es_MX.js index 89d8e61a07c..3dafdada22e 100644 --- a/apps/oauth2/l10n/es_MX.js +++ b/apps/oauth2/l10n/es_MX.js @@ -2,8 +2,6 @@ OC.L10N.register( "oauth2", { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticación compatible con OAuth2 desde otras aplicaciones web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 le permite a los administradores configurar el flujo de autenticación integrado para también permitir la autenticación OAuth2 de otras aplicaciones web compatibles. ", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", "Client Identifier" : "Identificador del cliente", diff --git a/apps/oauth2/l10n/es_MX.json b/apps/oauth2/l10n/es_MX.json index 781bbdc471f..aa7746a9121 100644 --- a/apps/oauth2/l10n/es_MX.json +++ b/apps/oauth2/l10n/es_MX.json @@ -1,7 +1,5 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticación compatible con OAuth2 desde otras aplicaciones web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La aplicación OAuth2 le permite a los administradores configurar el flujo de autenticación integrado para también permitir la autenticación OAuth2 de otras aplicaciones web compatibles. ", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", "Client Identifier" : "Identificador del cliente", diff --git a/apps/oauth2/l10n/fi.js b/apps/oauth2/l10n/fi.js index 2e70299fc9c..e0c2769c2d7 100644 --- a/apps/oauth2/l10n/fi.js +++ b/apps/oauth2/l10n/fi.js @@ -2,7 +2,6 @@ OC.L10N.register( "oauth2", { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Sallii OAuth2-yhteensopivan tunnistautumisen muista verkkosovelluksista.", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", "Name" : "Nimi", "Client Identifier" : "Asiakkaan tunniste", diff --git a/apps/oauth2/l10n/fi.json b/apps/oauth2/l10n/fi.json index 01ad2307448..2936860941d 100644 --- a/apps/oauth2/l10n/fi.json +++ b/apps/oauth2/l10n/fi.json @@ -1,6 +1,5 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Sallii OAuth2-yhteensopivan tunnistautumisen muista verkkosovelluksista.", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", "Name" : "Nimi", "Client Identifier" : "Asiakkaan tunniste", diff --git a/apps/oauth2/l10n/fr.js b/apps/oauth2/l10n/fr.js index 49447311b49..6abd9410438 100644 --- a/apps/oauth2/l10n/fr.js +++ b/apps/oauth2/l10n/fr.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Votre adresse de redirection doit être une URL complète, par exemple: https://example.com/chemin", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer l'authentification intégrée afin d'autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "Name" : "Nom", "Client Identifier" : "Identifiant du client", diff --git a/apps/oauth2/l10n/fr.json b/apps/oauth2/l10n/fr.json index 92610a63409..e59a3eef9e9 100644 --- a/apps/oauth2/l10n/fr.json +++ b/apps/oauth2/l10n/fr.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Votre adresse de redirection doit être une URL complète, par exemple: https://example.com/chemin", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer l'authentification intégrée afin d'autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "Name" : "Nom", "Client Identifier" : "Identifiant du client", diff --git a/apps/oauth2/l10n/he.js b/apps/oauth2/l10n/he.js index a28c3cf0de9..c0e750bbef1 100644 --- a/apps/oauth2/l10n/he.js +++ b/apps/oauth2/l10n/he.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "כתובת ההפניה שלך חייבת להיות כתובת מלאה, למשל: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "מאפשר אימות תואם OAuth2 מיישומי אינטרנט אחרים.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "יישומון OAuth2 מאפשר למנהלים להגדיר את הסדר האימות המובנה כדי לאפשר אימות תואם OAuth2 מיישומים אחרים.", "OAuth 2.0 clients" : "לקוחות OAuth 2.0", "Name" : "שם", "Client Identifier" : "זיהוי לקו", diff --git a/apps/oauth2/l10n/he.json b/apps/oauth2/l10n/he.json index 6ea7de5b589..bb922efb114 100644 --- a/apps/oauth2/l10n/he.json +++ b/apps/oauth2/l10n/he.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "כתובת ההפניה שלך חייבת להיות כתובת מלאה, למשל: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "מאפשר אימות תואם OAuth2 מיישומי אינטרנט אחרים.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "יישומון OAuth2 מאפשר למנהלים להגדיר את הסדר האימות המובנה כדי לאפשר אימות תואם OAuth2 מיישומים אחרים.", "OAuth 2.0 clients" : "לקוחות OAuth 2.0", "Name" : "שם", "Client Identifier" : "זיהוי לקו", diff --git a/apps/oauth2/l10n/it.js b/apps/oauth2/l10n/it.js index 1c1b04bba9a..66eee6fcc7a 100644 --- a/apps/oauth2/l10n/it.js +++ b/apps/oauth2/l10n/it.js @@ -4,7 +4,7 @@ OC.L10N.register( "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Il tuo URL di redirezione deve essere un URL completo, ad esempio: https://tuodominio.com/percorso", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Consente l'autenticazione compatibile con OAuth2 da altre applicazioni web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione integrata per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", "OAuth 2.0 clients" : "Client OAuth 2.0", "Name" : "Nome", "Client Identifier" : "Identificatore client", diff --git a/apps/oauth2/l10n/it.json b/apps/oauth2/l10n/it.json index 641e830b81d..229694f3f11 100644 --- a/apps/oauth2/l10n/it.json +++ b/apps/oauth2/l10n/it.json @@ -2,7 +2,7 @@ "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Il tuo URL di redirezione deve essere un URL completo, ad esempio: https://tuodominio.com/percorso", "OAuth 2.0" : "OAuth 2.0", "Allows OAuth2 compatible authentication from other web applications." : "Consente l'autenticazione compatibile con OAuth2 da altre applicazioni web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione integrata per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", "OAuth 2.0 clients" : "Client OAuth 2.0", "Name" : "Nome", "Client Identifier" : "Identificatore client", diff --git a/apps/oauth2/l10n/ja.js b/apps/oauth2/l10n/ja.js index 1256c40bcef..c6f78433bec 100644 --- a/apps/oauth2/l10n/ja.js +++ b/apps/oauth2/l10n/ja.js @@ -2,7 +2,6 @@ OC.L10N.register( "oauth2", { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "他のWebアプリケーションからのOAuth2互換の認証を許可します。", "OAuth 2.0 clients" : "OAuth 2.0クライアント", "Name" : "名前", "Client Identifier" : "クライアントID", diff --git a/apps/oauth2/l10n/ja.json b/apps/oauth2/l10n/ja.json index 039c1c33f7c..81961596903 100644 --- a/apps/oauth2/l10n/ja.json +++ b/apps/oauth2/l10n/ja.json @@ -1,6 +1,5 @@ { "translations": { "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "他のWebアプリケーションからのOAuth2互換の認証を許可します。", "OAuth 2.0 clients" : "OAuth 2.0クライアント", "Name" : "名前", "Client Identifier" : "クライアントID", diff --git a/apps/oauth2/l10n/lv.js b/apps/oauth2/l10n/lv.js index 79e5e1c9831..7d37535a417 100644 --- a/apps/oauth2/l10n/lv.js +++ b/apps/oauth2/l10n/lv.js @@ -1,11 +1,13 @@ OC.L10N.register( "oauth2", { + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tavam pārvirzīšanas URL ir jābūt pilnam URL, piemēram https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klients", "Name" : "Nosaukums", "Client Identifier" : "Klienta identifikators", "Add client" : "Pievienot klientu", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 atļauj ārējiem servisiem pieprasīt piekļuvi %s.", "Redirection URI" : "Pārvirzāmais URI", "Secret" : "Noslēpums", "Add" : "Pievienot" diff --git a/apps/oauth2/l10n/lv.json b/apps/oauth2/l10n/lv.json index 74b4f72b434..7d043e65266 100644 --- a/apps/oauth2/l10n/lv.json +++ b/apps/oauth2/l10n/lv.json @@ -1,9 +1,11 @@ { "translations": { + "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Tavam pārvirzīšanas URL ir jābūt pilnam URL, piemēram https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klients", "Name" : "Nosaukums", "Client Identifier" : "Klienta identifikators", "Add client" : "Pievienot klientu", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 atļauj ārējiem servisiem pieprasīt piekļuvi %s.", "Redirection URI" : "Pārvirzāmais URI", "Secret" : "Noslēpums", "Add" : "Pievienot" diff --git a/apps/oauth2/l10n/nl.js b/apps/oauth2/l10n/nl.js index ed9c5a41930..930dfe7841b 100644 --- a/apps/oauth2/l10n/nl.js +++ b/apps/oauth2/l10n/nl.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Je doorverwijzings-URL moet een volledige URL zijn, bijvoorbeeld: https://jouwdomein.com/pad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Staat OAuth2 compatible authenticatie vanaf andere web applicaties toe.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "De OAuth2 app laat beheerders de ingebouwde inlog-workflow configureren om ook OAuth2 compatible authenticatie vanaf andere web applicaties mogelijk te maken.", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "Name" : "Naam", "Client Identifier" : "Client identificatie", diff --git a/apps/oauth2/l10n/nl.json b/apps/oauth2/l10n/nl.json index 64d44b4f134..9c84e8b3f24 100644 --- a/apps/oauth2/l10n/nl.json +++ b/apps/oauth2/l10n/nl.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Je doorverwijzings-URL moet een volledige URL zijn, bijvoorbeeld: https://jouwdomein.com/pad", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Staat OAuth2 compatible authenticatie vanaf andere web applicaties toe.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "De OAuth2 app laat beheerders de ingebouwde inlog-workflow configureren om ook OAuth2 compatible authenticatie vanaf andere web applicaties mogelijk te maken.", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "Name" : "Naam", "Client Identifier" : "Client identificatie", diff --git a/apps/oauth2/l10n/pt_BR.js b/apps/oauth2/l10n/pt_BR.js index 374a5c04ac4..85c73e5b0d5 100644 --- a/apps/oauth2/l10n/pt_BR.js +++ b/apps/oauth2/l10n/pt_BR.js @@ -3,8 +3,8 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "A URL de redirecionamento precisa ser completa, por exemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticação compatível com OAuth2 de outras aplicações web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem a autenticação integrada para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", + "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticação compatível com OAuth2 de outros aplicativos da web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem o fluxo de trabalho de autenticação integrado para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nome", "Client Identifier" : "Identificador do Cliente", diff --git a/apps/oauth2/l10n/pt_BR.json b/apps/oauth2/l10n/pt_BR.json index 675ef750526..ef1e71493ac 100644 --- a/apps/oauth2/l10n/pt_BR.json +++ b/apps/oauth2/l10n/pt_BR.json @@ -1,8 +1,8 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "A URL de redirecionamento precisa ser completa, por exemplo: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Permite autenticação compatível com OAuth2 de outras aplicações web.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem a autenticação integrada para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", + "Allows OAuth2 compatible authentication from other web applications." : "Permite a autenticação compatível com OAuth2 de outros aplicativos da web.", + "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem o fluxo de trabalho de autenticação integrado para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nome", "Client Identifier" : "Identificador do Cliente", diff --git a/apps/oauth2/l10n/ru.js b/apps/oauth2/l10n/ru.js index 36d55044603..242bf09a593 100644 --- a/apps/oauth2/l10n/ru.js +++ b/apps/oauth2/l10n/ru.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ваш перенаправляющий URL должен быть полным, например: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Разрешает аутентификацию, совместимую с OAuth2, из других веб-приложений.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложение OAuth2 позволяет администраторам настраивать встроенный процесс проверки подлинности, чтобы также обеспечить совместимость OAuth2 с другими веб-приложениями.", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "Name" : "Имя", "Client Identifier" : "Идентификатор клиента", diff --git a/apps/oauth2/l10n/ru.json b/apps/oauth2/l10n/ru.json index e7b39c356ab..8a8bf24c2db 100644 --- a/apps/oauth2/l10n/ru.json +++ b/apps/oauth2/l10n/ru.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Ваш перенаправляющий URL должен быть полным, например: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Разрешает аутентификацию, совместимую с OAuth2, из других веб-приложений.", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложение OAuth2 позволяет администраторам настраивать встроенный процесс проверки подлинности, чтобы также обеспечить совместимость OAuth2 с другими веб-приложениями.", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "Name" : "Имя", "Client Identifier" : "Идентификатор клиента", diff --git a/apps/oauth2/l10n/sr.js b/apps/oauth2/l10n/sr.js index 16479cb11f9..f3fecfcd52d 100644 --- a/apps/oauth2/l10n/sr.js +++ b/apps/oauth2/l10n/sr.js @@ -3,8 +3,6 @@ OC.L10N.register( { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Адреса за преусмеравање мора бити пуна адреса, нпр: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Дозвољава OAuth2 компатибилну идентификацију са других веб апликација,", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликација дозвољава администраторима да подесе уграђени след индетификације тако да дозвољава и OAuth2 компатибилну идентификацију са других веб апликација.", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "Name" : "Име", "Client Identifier" : "Идентификација клијента", diff --git a/apps/oauth2/l10n/sr.json b/apps/oauth2/l10n/sr.json index 9e6ebf00dbd..ac6c99e4976 100644 --- a/apps/oauth2/l10n/sr.json +++ b/apps/oauth2/l10n/sr.json @@ -1,8 +1,6 @@ { "translations": { "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "Адреса за преусмеравање мора бити пуна адреса, нпр: https://yourdomain.com/path", "OAuth 2.0" : "OAuth 2.0", - "Allows OAuth2 compatible authentication from other web applications." : "Дозвољава OAuth2 компатибилну идентификацију са других веб апликација,", - "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликација дозвољава администраторима да подесе уграђени след индетификације тако да дозвољава и OAuth2 компатибилну идентификацију са других веб апликација.", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "Name" : "Име", "Client Identifier" : "Идентификација клијента", diff --git a/apps/sharebymail/l10n/cs.js b/apps/sharebymail/l10n/cs.js index e28b7846c4f..ed6132ab50e 100644 --- a/apps/sharebymail/l10n/cs.js +++ b/apps/sharebymail/l10n/cs.js @@ -29,6 +29,7 @@ OC.L10N.register( "Password to access »%s« shared to you by %s" : "Heslo pro přístup k »%s« (vám nasdílel(a) %s)", "Password to access »%s«" : "Heslo pro přístup k »%s«", "It is protected with the following password: %s" : "Je chráněn následujícím heslem: %s", + "%1$s via %2$s" : "%1$s prostřednictvím %2$s", "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Právě jste s »%s» nasdílel(a) %s. Sdílení bylo již příjemci zasláno. Kvůli bezpečnostní politice nastavené administrátorem %s musí být každé sdílení chráněno heslem a toto heslo nemůže být příjemci zasláno přímo. Kvůli tomu ho budete muset manuálně přeposlat.", "Password to access »%s« shared with %s" : "Heslo pro přístup k »%s« sdíleno s %s", "This is the password: %s" : "Toto je heslo: %s", diff --git a/apps/sharebymail/l10n/cs.json b/apps/sharebymail/l10n/cs.json index a886442727b..ea586e9b67b 100644 --- a/apps/sharebymail/l10n/cs.json +++ b/apps/sharebymail/l10n/cs.json @@ -27,6 +27,7 @@ "Password to access »%s« shared to you by %s" : "Heslo pro přístup k »%s« (vám nasdílel(a) %s)", "Password to access »%s«" : "Heslo pro přístup k »%s«", "It is protected with the following password: %s" : "Je chráněn následujícím heslem: %s", + "%1$s via %2$s" : "%1$s prostřednictvím %2$s", "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Právě jste s »%s» nasdílel(a) %s. Sdílení bylo již příjemci zasláno. Kvůli bezpečnostní politice nastavené administrátorem %s musí být každé sdílení chráněno heslem a toto heslo nemůže být příjemci zasláno přímo. Kvůli tomu ho budete muset manuálně přeposlat.", "Password to access »%s« shared with %s" : "Heslo pro přístup k »%s« sdíleno s %s", "This is the password: %s" : "Toto je heslo: %s", diff --git a/apps/sharebymail/l10n/de.js b/apps/sharebymail/l10n/de.js index 12d9a3ac920..9a821f0cb2a 100644 --- a/apps/sharebymail/l10n/de.js +++ b/apps/sharebymail/l10n/de.js @@ -39,7 +39,7 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Im Teilen-Dialog kannst Du jederzeit ein anderes Passwort wählen.", "Could not find share" : "Freigabe konnte nicht gefunden werden", "Share by mail" : "Geteilt über eine E-Mail", - "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Erlaubt es Ihnen Dateien via E-Mail zu teilen", + "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Ermöglicht das Teilen von Dateien per E-Mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", diff --git a/apps/sharebymail/l10n/de.json b/apps/sharebymail/l10n/de.json index 4c9093fc76f..1ae2d2932c6 100644 --- a/apps/sharebymail/l10n/de.json +++ b/apps/sharebymail/l10n/de.json @@ -37,7 +37,7 @@ "You can choose a different password at any time in the share dialog." : "Im Teilen-Dialog kannst Du jederzeit ein anderes Passwort wählen.", "Could not find share" : "Freigabe konnte nicht gefunden werden", "Share by mail" : "Geteilt über eine E-Mail", - "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Erlaubt es Ihnen Dateien via E-Mail zu teilen", + "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Ermöglicht das Teilen von Dateien per E-Mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", diff --git a/apps/sharebymail/l10n/de_DE.js b/apps/sharebymail/l10n/de_DE.js index d97b29bcb32..700faf2fc74 100644 --- a/apps/sharebymail/l10n/de_DE.js +++ b/apps/sharebymail/l10n/de_DE.js @@ -39,7 +39,7 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Im Teilen-Dialog können Sie jederzeit ein anderes Passwort wählen.", "Could not find share" : "Freigabe konnte nicht gefunden werden", "Share by mail" : "Geteilt über eine E-Mail", - "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Erlaubt es Ihnen Dateien via E-Mail zu teilen", + "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Ermöglicht das Teilen von Dateien per E-Mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", diff --git a/apps/sharebymail/l10n/de_DE.json b/apps/sharebymail/l10n/de_DE.json index c7f99854c6a..fbec58b26d8 100644 --- a/apps/sharebymail/l10n/de_DE.json +++ b/apps/sharebymail/l10n/de_DE.json @@ -37,7 +37,7 @@ "You can choose a different password at any time in the share dialog." : "Im Teilen-Dialog können Sie jederzeit ein anderes Passwort wählen.", "Could not find share" : "Freigabe konnte nicht gefunden werden", "Share by mail" : "Geteilt über eine E-Mail", - "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Erlaubt es Ihnen Dateien via E-Mail zu teilen", + "Share provider which allows you to share files by mail" : "Anbieter zum Teilen. Ermöglicht das Teilen von Dateien per E-Mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", diff --git a/apps/sharebymail/l10n/en_GB.js b/apps/sharebymail/l10n/en_GB.js index 876672fbf72..a0d66483d63 100644 --- a/apps/sharebymail/l10n/en_GB.js +++ b/apps/sharebymail/l10n/en_GB.js @@ -35,7 +35,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "You can choose a different password at any time in the share dialog.", "Could not find share" : "Could not find share", "Share by mail" : "Share by mail", - "Share provider which allows you to share files by mail" : "Share provider which allows you to share files by mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Allows users to share a personalised link to a file or folder by putting in an email address.", "Send password by mail" : "Send password by mail", "Enforce password protection" : "Enforce password protection", diff --git a/apps/sharebymail/l10n/en_GB.json b/apps/sharebymail/l10n/en_GB.json index 53898fb065f..93babcfee85 100644 --- a/apps/sharebymail/l10n/en_GB.json +++ b/apps/sharebymail/l10n/en_GB.json @@ -33,7 +33,6 @@ "You can choose a different password at any time in the share dialog." : "You can choose a different password at any time in the share dialog.", "Could not find share" : "Could not find share", "Share by mail" : "Share by mail", - "Share provider which allows you to share files by mail" : "Share provider which allows you to share files by mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Allows users to share a personalised link to a file or folder by putting in an email address.", "Send password by mail" : "Send password by mail", "Enforce password protection" : "Enforce password protection", diff --git a/apps/sharebymail/l10n/es.js b/apps/sharebymail/l10n/es.js index 6422a65763e..1fc5167f2e2 100644 --- a/apps/sharebymail/l10n/es.js +++ b/apps/sharebymail/l10n/es.js @@ -39,7 +39,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Puedes elegir una contraseña diferente en cualquier momento en el diálogo de compartir.", "Could not find share" : "No se pudo encontrar el recurso compartido", "Share by mail" : "Enviado por correo electrónico", - "Share provider which allows you to share files by mail" : "Proveedor que permite compartir archivos por correo", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a los usuarios compartir un enlace personalizado a un archivo o carpeta enviándolo a una dirección de correo electrónico", "Send password by mail" : "Enviar contraseñas por email", "Enforce password protection" : "Imponer la protección de contraseña", diff --git a/apps/sharebymail/l10n/es.json b/apps/sharebymail/l10n/es.json index 30287bd126e..506cc5f922a 100644 --- a/apps/sharebymail/l10n/es.json +++ b/apps/sharebymail/l10n/es.json @@ -37,7 +37,6 @@ "You can choose a different password at any time in the share dialog." : "Puedes elegir una contraseña diferente en cualquier momento en el diálogo de compartir.", "Could not find share" : "No se pudo encontrar el recurso compartido", "Share by mail" : "Enviado por correo electrónico", - "Share provider which allows you to share files by mail" : "Proveedor que permite compartir archivos por correo", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a los usuarios compartir un enlace personalizado a un archivo o carpeta enviándolo a una dirección de correo electrónico", "Send password by mail" : "Enviar contraseñas por email", "Enforce password protection" : "Imponer la protección de contraseña", diff --git a/apps/sharebymail/l10n/es_MX.js b/apps/sharebymail/l10n/es_MX.js index 6fbc23d2cac..910e3f0138c 100644 --- a/apps/sharebymail/l10n/es_MX.js +++ b/apps/sharebymail/l10n/es_MX.js @@ -35,7 +35,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Puedes elegir una contraseña diferente en cualquier momento en la ventana de diálogo de compartir. ", "Could not find share" : "No fue posible encontrar el elemento compartido", "Share by mail" : "Compartir por correo", - "Share provider which allows you to share files by mail" : "Proveedor para compartir que te permite compartir archivos por correo", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", diff --git a/apps/sharebymail/l10n/es_MX.json b/apps/sharebymail/l10n/es_MX.json index 3f88c77f664..0ce9ccb255e 100644 --- a/apps/sharebymail/l10n/es_MX.json +++ b/apps/sharebymail/l10n/es_MX.json @@ -33,7 +33,6 @@ "You can choose a different password at any time in the share dialog." : "Puedes elegir una contraseña diferente en cualquier momento en la ventana de diálogo de compartir. ", "Could not find share" : "No fue posible encontrar el elemento compartido", "Share by mail" : "Compartir por correo", - "Share provider which allows you to share files by mail" : "Proveedor para compartir que te permite compartir archivos por correo", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", diff --git a/apps/sharebymail/l10n/fr.js b/apps/sharebymail/l10n/fr.js index 1a811a30c16..0af58aea7c0 100644 --- a/apps/sharebymail/l10n/fr.js +++ b/apps/sharebymail/l10n/fr.js @@ -39,7 +39,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Vous pouvez choisir un mot de passe différent à n'importe quel moment dans la boîte de dialogue de partage.", "Could not find share" : "Impossible de trouver le partage", "Share by mail" : "Partage par e-mail", - "Share provider which allows you to share files by mail" : "Vous permet de partager des fichiers par courriel", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Autoriser les utilisateurs de partager un lien personnalisé vers un fichier ou un dossier en renseignant une adresse e-mail.", "Send password by mail" : "Envoyer le mot de passe par e-mail", "Enforce password protection" : "Imposer la protection par mot de passe", diff --git a/apps/sharebymail/l10n/fr.json b/apps/sharebymail/l10n/fr.json index 300f3c5c1dd..06610e6982d 100644 --- a/apps/sharebymail/l10n/fr.json +++ b/apps/sharebymail/l10n/fr.json @@ -37,7 +37,6 @@ "You can choose a different password at any time in the share dialog." : "Vous pouvez choisir un mot de passe différent à n'importe quel moment dans la boîte de dialogue de partage.", "Could not find share" : "Impossible de trouver le partage", "Share by mail" : "Partage par e-mail", - "Share provider which allows you to share files by mail" : "Vous permet de partager des fichiers par courriel", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Autoriser les utilisateurs de partager un lien personnalisé vers un fichier ou un dossier en renseignant une adresse e-mail.", "Send password by mail" : "Envoyer le mot de passe par e-mail", "Enforce password protection" : "Imposer la protection par mot de passe", diff --git a/apps/sharebymail/l10n/he.js b/apps/sharebymail/l10n/he.js index 107a3e7adf2..d14a19175ea 100644 --- a/apps/sharebymail/l10n/he.js +++ b/apps/sharebymail/l10n/he.js @@ -30,7 +30,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "ניתן לבחור בססמה אחרת בכל עת בתיבת דו־שיח השיתוף.", "Could not find share" : "לא ניתן למצוא את השיתוף", "Share by mail" : "שיתוף בדוא״ל", - "Share provider which allows you to share files by mail" : "ספק השיתוף שמאפשר לך לשתף קבצים בדוא״ל", "Allows users to share a personalized link to a file or folder by putting in an email address." : "מאפשר למשתמשים לשתף קישורים מותאמים אישית לקובץ או לתיקייה על ידי הקלדת כתובת דוא״ל.", "Send password by mail" : "שליחת ססמה בדוא״ל", "Enforce password protection" : "אילוץ הגנה בססמה", diff --git a/apps/sharebymail/l10n/he.json b/apps/sharebymail/l10n/he.json index c7d7bee461c..f136fd34aef 100644 --- a/apps/sharebymail/l10n/he.json +++ b/apps/sharebymail/l10n/he.json @@ -28,7 +28,6 @@ "You can choose a different password at any time in the share dialog." : "ניתן לבחור בססמה אחרת בכל עת בתיבת דו־שיח השיתוף.", "Could not find share" : "לא ניתן למצוא את השיתוף", "Share by mail" : "שיתוף בדוא״ל", - "Share provider which allows you to share files by mail" : "ספק השיתוף שמאפשר לך לשתף קבצים בדוא״ל", "Allows users to share a personalized link to a file or folder by putting in an email address." : "מאפשר למשתמשים לשתף קישורים מותאמים אישית לקובץ או לתיקייה על ידי הקלדת כתובת דוא״ל.", "Send password by mail" : "שליחת ססמה בדוא״ל", "Enforce password protection" : "אילוץ הגנה בססמה", diff --git a/apps/sharebymail/l10n/is.js b/apps/sharebymail/l10n/is.js index 10ad778f443..07c0e4f0d48 100644 --- a/apps/sharebymail/l10n/is.js +++ b/apps/sharebymail/l10n/is.js @@ -39,7 +39,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Þú getur hvenær sem er valið annað lykilorð með því að fara í deilingargluggann.", "Could not find share" : "Gat ekki fundið sameign", "Share by mail" : "Deila með tölvupósti", - "Share provider which allows you to share files by mail" : "Deilingarþjónusta sem gerir þér kleift að deila skrám með tölvupósti", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Gerir notendum kleift að deila sérsniðnum tengli á skrá eða möppu með því að setja inn tölvupóstfang.", "Send password by mail" : "Senda lykilorð með pósti", "Enforce password protection" : "Krefjast verndunar með aðgangsorði", diff --git a/apps/sharebymail/l10n/is.json b/apps/sharebymail/l10n/is.json index ee3701d9802..f30a54e8787 100644 --- a/apps/sharebymail/l10n/is.json +++ b/apps/sharebymail/l10n/is.json @@ -37,7 +37,6 @@ "You can choose a different password at any time in the share dialog." : "Þú getur hvenær sem er valið annað lykilorð með því að fara í deilingargluggann.", "Could not find share" : "Gat ekki fundið sameign", "Share by mail" : "Deila með tölvupósti", - "Share provider which allows you to share files by mail" : "Deilingarþjónusta sem gerir þér kleift að deila skrám með tölvupósti", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Gerir notendum kleift að deila sérsniðnum tengli á skrá eða möppu með því að setja inn tölvupóstfang.", "Send password by mail" : "Senda lykilorð með pósti", "Enforce password protection" : "Krefjast verndunar með aðgangsorði", diff --git a/apps/sharebymail/l10n/pl.js b/apps/sharebymail/l10n/pl.js index a1ca6f939f9..0692ed37d26 100644 --- a/apps/sharebymail/l10n/pl.js +++ b/apps/sharebymail/l10n/pl.js @@ -35,7 +35,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Możesz zmienić hasło w okienku współdzielenia w dowolnym momencie.", "Could not find share" : "Nie można odnaleźć współdzielonego obiektu", "Share by mail" : "Współdzielone e-mailem", - "Share provider which allows you to share files by mail" : "Udostępnij dostawcę, który umożliwia udostępnianie plików pocztą", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Umożliwia współdzielenie spersonalizowanego linku do pliku lub folderu, umieszczając go w wiadomości e-mail.", "Send password by mail" : "Wyślij hasło e-mailem", "Enforce password protection" : "Wymuś zabezpieczenie hasłem", diff --git a/apps/sharebymail/l10n/pl.json b/apps/sharebymail/l10n/pl.json index 431f155b52c..d7aacbc8e54 100644 --- a/apps/sharebymail/l10n/pl.json +++ b/apps/sharebymail/l10n/pl.json @@ -33,7 +33,6 @@ "You can choose a different password at any time in the share dialog." : "Możesz zmienić hasło w okienku współdzielenia w dowolnym momencie.", "Could not find share" : "Nie można odnaleźć współdzielonego obiektu", "Share by mail" : "Współdzielone e-mailem", - "Share provider which allows you to share files by mail" : "Udostępnij dostawcę, który umożliwia udostępnianie plików pocztą", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Umożliwia współdzielenie spersonalizowanego linku do pliku lub folderu, umieszczając go w wiadomości e-mail.", "Send password by mail" : "Wyślij hasło e-mailem", "Enforce password protection" : "Wymuś zabezpieczenie hasłem", diff --git a/apps/sharebymail/l10n/ru.js b/apps/sharebymail/l10n/ru.js index 7868b7f033f..8d64c66a910 100644 --- a/apps/sharebymail/l10n/ru.js +++ b/apps/sharebymail/l10n/ru.js @@ -39,7 +39,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "В любой момент можно выбрать другой пароль в диалоге «Общий доступ».", "Could not find share" : "Не удалось найти общий ресурс", "Share by mail" : "Поделиться по почте", - "Share provider which allows you to share files by mail" : "Провайдер услуг, который позволяет вам обмениваться файлами по почте", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Позволяет пользователям делиться персонализированной ссылкой на файл или каталог, указав адрес электронной почты.", "Send password by mail" : "Отправлять пароль по электронной почте", "Enforce password protection" : "Требовать защиту паролем", diff --git a/apps/sharebymail/l10n/ru.json b/apps/sharebymail/l10n/ru.json index 4e11c190692..2a74004bc5d 100644 --- a/apps/sharebymail/l10n/ru.json +++ b/apps/sharebymail/l10n/ru.json @@ -37,7 +37,6 @@ "You can choose a different password at any time in the share dialog." : "В любой момент можно выбрать другой пароль в диалоге «Общий доступ».", "Could not find share" : "Не удалось найти общий ресурс", "Share by mail" : "Поделиться по почте", - "Share provider which allows you to share files by mail" : "Провайдер услуг, который позволяет вам обмениваться файлами по почте", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Позволяет пользователям делиться персонализированной ссылкой на файл или каталог, указав адрес электронной почты.", "Send password by mail" : "Отправлять пароль по электронной почте", "Enforce password protection" : "Требовать защиту паролем", diff --git a/apps/sharebymail/l10n/sr.js b/apps/sharebymail/l10n/sr.js index 658fdd3f969..407ec641d46 100644 --- a/apps/sharebymail/l10n/sr.js +++ b/apps/sharebymail/l10n/sr.js @@ -39,7 +39,6 @@ OC.L10N.register( "You can choose a different password at any time in the share dialog." : "Можете да одаберете другу лозинку кад год желите у дијалогу за дељење.", "Could not find share" : "Не могу да пронађем дељење", "Share by mail" : "Подели е-поштом", - "Share provider which allows you to share files by mail" : "Добављач дељења који Вам дозвољава дељење е-поштом", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Дозвољава корисницима да поделе персонализовану везу до фајла или фасцикле преко е-поште.", "Send password by mail" : "Пошаљи лозинку е-поштом", "Enforce password protection" : "Захтевај заштиту лозинком", diff --git a/apps/sharebymail/l10n/sr.json b/apps/sharebymail/l10n/sr.json index 4070218c5a2..372fcdfa794 100644 --- a/apps/sharebymail/l10n/sr.json +++ b/apps/sharebymail/l10n/sr.json @@ -37,7 +37,6 @@ "You can choose a different password at any time in the share dialog." : "Можете да одаберете другу лозинку кад год желите у дијалогу за дељење.", "Could not find share" : "Не могу да пронађем дељење", "Share by mail" : "Подели е-поштом", - "Share provider which allows you to share files by mail" : "Добављач дељења који Вам дозвољава дељење е-поштом", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Дозвољава корисницима да поделе персонализовану везу до фајла или фасцикле преко е-поште.", "Send password by mail" : "Пошаљи лозинку е-поштом", "Enforce password protection" : "Захтевај заштиту лозинком", diff --git a/apps/systemtags/l10n/de.js b/apps/systemtags/l10n/de.js index 07e9529e84e..1cd97414f9e 100644 --- a/apps/systemtags/l10n/de.js +++ b/apps/systemtags/l10n/de.js @@ -42,9 +42,9 @@ OC.L10N.register( "%s (invisible)" : "%s (unsichtbar)", "<strong>System tags</strong> for a file have been modified" : "<strong>System-Tags</strong> für eine Datei wurden geändert", "Collaborative tags" : "Kollaborative Tags", - "Collaborative tagging functionality which shares tags among users." : "Kollaborative Tags-Funktionalität, welche Tags unter den Benutzern teilt.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Kollaborative Tags-Funktionalität, welche Schlagworte unter den Benutzern teilt. Sehr gut für Gruppen.\n(Wenn Du ein Anbieter mit einer Mehrkundeninstallation sind, so ist angeraten diese App zu deaktiveren, da die Schlagwörter mit allen Kunden geteilt werden.)", - "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Gemeinschaftliche Schlagworte sind für alle Benutzer verfügbar. Eingeschränkte Schlagworte sind für alle Benutzer sichtbar, können jedoch nicht zugewiesen werden. Nichtsichtbare Schlagworte sind für interne Verwendung und können vom Benutzer nicht eingesehen und nicht zugewiesen werden.", + "Collaborative tagging functionality which shares tags among users." : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt.", + "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt. Sehr gut für Gruppen.\n(Wenn Du ein Anbieter mit einer Mehrkundeninstallation bist, so ist angeraten diese App zu deaktiveren, da die Schlagworte mit allen Kunden geteilt werden.)", + "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Öffentliche Schlagworte sind für alle Benutzer verfügbar. Eingeschränkte Schlagworte sind für alle Benutzer sichtbar, können jedoch nicht zugewiesen werden. Nichtsichtbare Schlagworte sind für interne Verwendung und können vom Benutzer nicht eingesehen und nicht zugewiesen werden.", "Select tag …" : "Tag wählen…", "Create a new tag" : "Neues Schlagwort erstellen", "Name" : "Name", diff --git a/apps/systemtags/l10n/de.json b/apps/systemtags/l10n/de.json index 10b3131b047..4ecf5ef2246 100644 --- a/apps/systemtags/l10n/de.json +++ b/apps/systemtags/l10n/de.json @@ -40,9 +40,9 @@ "%s (invisible)" : "%s (unsichtbar)", "<strong>System tags</strong> for a file have been modified" : "<strong>System-Tags</strong> für eine Datei wurden geändert", "Collaborative tags" : "Kollaborative Tags", - "Collaborative tagging functionality which shares tags among users." : "Kollaborative Tags-Funktionalität, welche Tags unter den Benutzern teilt.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Kollaborative Tags-Funktionalität, welche Schlagworte unter den Benutzern teilt. Sehr gut für Gruppen.\n(Wenn Du ein Anbieter mit einer Mehrkundeninstallation sind, so ist angeraten diese App zu deaktiveren, da die Schlagwörter mit allen Kunden geteilt werden.)", - "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Gemeinschaftliche Schlagworte sind für alle Benutzer verfügbar. Eingeschränkte Schlagworte sind für alle Benutzer sichtbar, können jedoch nicht zugewiesen werden. Nichtsichtbare Schlagworte sind für interne Verwendung und können vom Benutzer nicht eingesehen und nicht zugewiesen werden.", + "Collaborative tagging functionality which shares tags among users." : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt.", + "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt. Sehr gut für Gruppen.\n(Wenn Du ein Anbieter mit einer Mehrkundeninstallation bist, so ist angeraten diese App zu deaktiveren, da die Schlagworte mit allen Kunden geteilt werden.)", + "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Öffentliche Schlagworte sind für alle Benutzer verfügbar. Eingeschränkte Schlagworte sind für alle Benutzer sichtbar, können jedoch nicht zugewiesen werden. Nichtsichtbare Schlagworte sind für interne Verwendung und können vom Benutzer nicht eingesehen und nicht zugewiesen werden.", "Select tag …" : "Tag wählen…", "Create a new tag" : "Neues Schlagwort erstellen", "Name" : "Name", diff --git a/apps/systemtags/l10n/de_DE.js b/apps/systemtags/l10n/de_DE.js index c95de5c7a9f..4d8ff8c7d67 100644 --- a/apps/systemtags/l10n/de_DE.js +++ b/apps/systemtags/l10n/de_DE.js @@ -42,8 +42,8 @@ OC.L10N.register( "%s (invisible)" : "%s (unsichtbar)", "<strong>System tags</strong> for a file have been modified" : "<strong>System-Tag</strong> für eine Datei wurden geändert", "Collaborative tags" : "Kollaborative Tags", - "Collaborative tagging functionality which shares tags among users." : "Kollaborative Tags-Funktionalität, welche Tags unter den Benutzern teilt.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Kollaborative Tags-Funktionalität, welche Tags unter den Benutzern teilt. Sehr gut für Gruppen.\n\t(Wenn Sie ein Anbieter mit einer Mehrkundeninstallation sind, so ist angeraten diese App zu deaktiveren, da die Tags mit allen Kunden geteilt werden.)", + "Collaborative tagging functionality which shares tags among users." : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt.", + "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt. Sehr gut für Gruppen.\n\t(Wenn Sie ein Anbieter mit einer Mehrkundeninstallation sind, so ist angeraten diese App zu deaktiveren, da die Schlagworte mit allen Kunden geteilt werden.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Gemeinschaftliche Schlagworte sind für alle Benutzer verfügbar. Eingeschränkte Schlagworte sind für alle Benutzer sichtbar, können jedoch nicht zugewiesen werden. Nichtsichtbare Schlagworte sind für interne Verwendung und können vom Benutzer nicht eingesehen und nicht zugewiesen werden.", "Select tag …" : "Tag wählen …", "Create a new tag" : "Neues Schlagwort erstellen", diff --git a/apps/systemtags/l10n/de_DE.json b/apps/systemtags/l10n/de_DE.json index cc4ed446b51..d7b2b4765e4 100644 --- a/apps/systemtags/l10n/de_DE.json +++ b/apps/systemtags/l10n/de_DE.json @@ -40,8 +40,8 @@ "%s (invisible)" : "%s (unsichtbar)", "<strong>System tags</strong> for a file have been modified" : "<strong>System-Tag</strong> für eine Datei wurden geändert", "Collaborative tags" : "Kollaborative Tags", - "Collaborative tagging functionality which shares tags among users." : "Kollaborative Tags-Funktionalität, welche Tags unter den Benutzern teilt.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Kollaborative Tags-Funktionalität, welche Tags unter den Benutzern teilt. Sehr gut für Gruppen.\n\t(Wenn Sie ein Anbieter mit einer Mehrkundeninstallation sind, so ist angeraten diese App zu deaktiveren, da die Tags mit allen Kunden geteilt werden.)", + "Collaborative tagging functionality which shares tags among users." : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt.", + "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Gemeinschaftliche Schlagwort-Funktionalität, welche Schlagworte unter den Benutzern teilt. Sehr gut für Gruppen.\n\t(Wenn Sie ein Anbieter mit einer Mehrkundeninstallation sind, so ist angeraten diese App zu deaktiveren, da die Schlagworte mit allen Kunden geteilt werden.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Gemeinschaftliche Schlagworte sind für alle Benutzer verfügbar. Eingeschränkte Schlagworte sind für alle Benutzer sichtbar, können jedoch nicht zugewiesen werden. Nichtsichtbare Schlagworte sind für interne Verwendung und können vom Benutzer nicht eingesehen und nicht zugewiesen werden.", "Select tag …" : "Tag wählen …", "Create a new tag" : "Neues Schlagwort erstellen", diff --git a/apps/systemtags/l10n/en_GB.js b/apps/systemtags/l10n/en_GB.js index c822d0f64ea..65ba4837c89 100644 --- a/apps/systemtags/l10n/en_GB.js +++ b/apps/systemtags/l10n/en_GB.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (invisible)", "<strong>System tags</strong> for a file have been modified" : "<strong>System tags</strong> for a file have been modified", "Collaborative tags" : "Collaborative tags", - "Collaborative tagging functionality which shares tags among users." : "Collaborative tagging functionality which shares tags among users.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)", "Select tag …" : "Select tag …", "Name" : "Name", "Public" : "Public", diff --git a/apps/systemtags/l10n/en_GB.json b/apps/systemtags/l10n/en_GB.json index 4dedc38bf02..5572e7ef786 100644 --- a/apps/systemtags/l10n/en_GB.json +++ b/apps/systemtags/l10n/en_GB.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (invisible)", "<strong>System tags</strong> for a file have been modified" : "<strong>System tags</strong> for a file have been modified", "Collaborative tags" : "Collaborative tags", - "Collaborative tagging functionality which shares tags among users." : "Collaborative tagging functionality which shares tags among users.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)", "Select tag …" : "Select tag …", "Name" : "Name", "Public" : "Public", diff --git a/apps/systemtags/l10n/es.js b/apps/systemtags/l10n/es.js index 70e322ab4c7..b5f0a80ebcb 100644 --- a/apps/systemtags/l10n/es.js +++ b/apps/systemtags/l10n/es.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (invisible)", "<strong>System tags</strong> for a file have been modified" : "Se han modificado las <strong>etiquetas de sistema</strong> de un archivo", "Collaborative tags" : "Etiquetas colaborativas", - "Collaborative tagging functionality which shares tags among users." : "Funcionalidad de etiquetado colaborativo que comparte las etiquetas entre usuarios.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidad de etiquetado colaborativo que comparte las etiquetas entre usuarios. Adecuado para equipos.\n\n(Si eres un proveedor con una instalación en multitenencia), se aconseja desactivar esta app pues las etiquetas se comparten).", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Las etiquetas colaborativas están disponibles para todos los usuarios. Las etiquetas restringidas son visibles para los usuarios, pero no pueden ser asignadas por ellos. Las etiquetas invisibles son para uso interno, pues los usuarios no pueden verlas ni asignarlas.", "Select tag …" : "Selecciona etiqueta...", "Create a new tag" : "Crear una etiqueta nueva", diff --git a/apps/systemtags/l10n/es.json b/apps/systemtags/l10n/es.json index 9add5fa015c..17ce08c9738 100644 --- a/apps/systemtags/l10n/es.json +++ b/apps/systemtags/l10n/es.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (invisible)", "<strong>System tags</strong> for a file have been modified" : "Se han modificado las <strong>etiquetas de sistema</strong> de un archivo", "Collaborative tags" : "Etiquetas colaborativas", - "Collaborative tagging functionality which shares tags among users." : "Funcionalidad de etiquetado colaborativo que comparte las etiquetas entre usuarios.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidad de etiquetado colaborativo que comparte las etiquetas entre usuarios. Adecuado para equipos.\n\n(Si eres un proveedor con una instalación en multitenencia), se aconseja desactivar esta app pues las etiquetas se comparten).", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Las etiquetas colaborativas están disponibles para todos los usuarios. Las etiquetas restringidas son visibles para los usuarios, pero no pueden ser asignadas por ellos. Las etiquetas invisibles son para uso interno, pues los usuarios no pueden verlas ni asignarlas.", "Select tag …" : "Selecciona etiqueta...", "Create a new tag" : "Crear una etiqueta nueva", diff --git a/apps/systemtags/l10n/es_MX.js b/apps/systemtags/l10n/es_MX.js index 0d948cfd043..331a8fcdac0 100644 --- a/apps/systemtags/l10n/es_MX.js +++ b/apps/systemtags/l10n/es_MX.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (invisible) ", "<strong>System tags</strong> for a file have been modified" : "Las <strong>etiquetas del sistema</strong> para un archivo han sido modificadas", "Collaborative tags" : "Etiquetas colaborativas", - "Collaborative tagging functionality which shares tags among users." : "Funcionalidad de etiquetas colaborativas que comparte las etiquetas entre usuarios.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidad de etiquetear collaborativamente que comparte las etiquetas entre usuarios. Grandioso para equipos.\n\t(Si eres un proveedor con una instalación multi subarrendada, se recomienda desactivar esta aplicación ya que las etiquetas son compartidas.)", "Select tag …" : "Seleccionar etiqueta ...", "Name" : "Nombre", "Public" : "Público", diff --git a/apps/systemtags/l10n/es_MX.json b/apps/systemtags/l10n/es_MX.json index 65ed18f215c..3b1ea41bf04 100644 --- a/apps/systemtags/l10n/es_MX.json +++ b/apps/systemtags/l10n/es_MX.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (invisible) ", "<strong>System tags</strong> for a file have been modified" : "Las <strong>etiquetas del sistema</strong> para un archivo han sido modificadas", "Collaborative tags" : "Etiquetas colaborativas", - "Collaborative tagging functionality which shares tags among users." : "Funcionalidad de etiquetas colaborativas que comparte las etiquetas entre usuarios.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidad de etiquetear collaborativamente que comparte las etiquetas entre usuarios. Grandioso para equipos.\n\t(Si eres un proveedor con una instalación multi subarrendada, se recomienda desactivar esta aplicación ya que las etiquetas son compartidas.)", "Select tag …" : "Seleccionar etiqueta ...", "Name" : "Nombre", "Public" : "Público", diff --git a/apps/systemtags/l10n/fr.js b/apps/systemtags/l10n/fr.js index eb195807fe9..44224b56a2c 100644 --- a/apps/systemtags/l10n/fr.js +++ b/apps/systemtags/l10n/fr.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (invisible)", "<strong>System tags</strong> for a file have been modified" : "<strong>Les étiquettes collaboratives</strong> pour un fichier ont été modifiées", "Collaborative tags" : "Étiquettes collaboratives ", - "Collaborative tagging functionality which shares tags among users." : "Fonctionnalité de marquage collaboratif qui partage des tags entre utilisateurs.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Fonctionnalité de marquage collaboratif qui partage des tags entre utilisateurs. Idéal pour les équipes.\n(Si vous êtes un fournisseur avec une installation à locations multiples , il est conseillé de désactiver cette application car les tags sont partagés.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Les tags collaboratifs sont disponibles pour tous les utilisateurs. Les tags restreints sont visibles par les utilisateurs mais ne peuvent pas être attribués par eux. Les balises invisibles sont à usage interne, car les utilisateurs ne peuvent pas les voir ou les assigner.", "Select tag …" : "Sélectionner une étiquette…", "Create a new tag" : "Créer une nouvelle étiquette", diff --git a/apps/systemtags/l10n/fr.json b/apps/systemtags/l10n/fr.json index caf04d1f222..20b2161986e 100644 --- a/apps/systemtags/l10n/fr.json +++ b/apps/systemtags/l10n/fr.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (invisible)", "<strong>System tags</strong> for a file have been modified" : "<strong>Les étiquettes collaboratives</strong> pour un fichier ont été modifiées", "Collaborative tags" : "Étiquettes collaboratives ", - "Collaborative tagging functionality which shares tags among users." : "Fonctionnalité de marquage collaboratif qui partage des tags entre utilisateurs.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Fonctionnalité de marquage collaboratif qui partage des tags entre utilisateurs. Idéal pour les équipes.\n(Si vous êtes un fournisseur avec une installation à locations multiples , il est conseillé de désactiver cette application car les tags sont partagés.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Les tags collaboratifs sont disponibles pour tous les utilisateurs. Les tags restreints sont visibles par les utilisateurs mais ne peuvent pas être attribués par eux. Les balises invisibles sont à usage interne, car les utilisateurs ne peuvent pas les voir ou les assigner.", "Select tag …" : "Sélectionner une étiquette…", "Create a new tag" : "Créer une nouvelle étiquette", diff --git a/apps/systemtags/l10n/he.js b/apps/systemtags/l10n/he.js index 6c60ddfef09..99f203f6d7c 100644 --- a/apps/systemtags/l10n/he.js +++ b/apps/systemtags/l10n/he.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (נסתר)", "<strong>System tags</strong> for a file have been modified" : "<strong>תגיות מערכת</strong> שהשתנו עבור קובץ", "Collaborative tags" : "תגיות שיתופיות", - "Collaborative tagging functionality which shares tags among users." : "תכונת התיוג השיתופי שמשתפת תגיות בין משתמשים.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "תכונת התיוג השיתופי שמשתפת תגיות בין משתמשים. מעולה לעבודת צוות.\n\t(אם בבעלותך התקנה עם מגוון מערכות נפרדות, מוטב להשבית את היישומון הזה כיוון שהתגיות משותפות.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "תגיות שיתופיות זמינות לכל המשתמשים. תגיות מוגבלות חשופות למשתמשים אך אין להם אפשרות להקצות אותן. תגיות בלתי נראות הן לשימוש פנימי כיוון שמשתמשים לא יכולים לראות אות להקצות אותן.", "Select tag …" : "מחיקת תגית…", "Create a new tag" : "יצירת תגית חדשה", diff --git a/apps/systemtags/l10n/he.json b/apps/systemtags/l10n/he.json index b6c5cfcff80..6e83da5b26f 100644 --- a/apps/systemtags/l10n/he.json +++ b/apps/systemtags/l10n/he.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (נסתר)", "<strong>System tags</strong> for a file have been modified" : "<strong>תגיות מערכת</strong> שהשתנו עבור קובץ", "Collaborative tags" : "תגיות שיתופיות", - "Collaborative tagging functionality which shares tags among users." : "תכונת התיוג השיתופי שמשתפת תגיות בין משתמשים.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "תכונת התיוג השיתופי שמשתפת תגיות בין משתמשים. מעולה לעבודת צוות.\n\t(אם בבעלותך התקנה עם מגוון מערכות נפרדות, מוטב להשבית את היישומון הזה כיוון שהתגיות משותפות.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "תגיות שיתופיות זמינות לכל המשתמשים. תגיות מוגבלות חשופות למשתמשים אך אין להם אפשרות להקצות אותן. תגיות בלתי נראות הן לשימוש פנימי כיוון שמשתמשים לא יכולים לראות אות להקצות אותן.", "Select tag …" : "מחיקת תגית…", "Create a new tag" : "יצירת תגית חדשה", diff --git a/apps/systemtags/l10n/ja.js b/apps/systemtags/l10n/ja.js index 95881b768fa..018e47f9c92 100644 --- a/apps/systemtags/l10n/ja.js +++ b/apps/systemtags/l10n/ja.js @@ -42,7 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (不可視)", "<strong>System tags</strong> for a file have been modified" : "ファイルの<strong>タグ</strong>が変更されたとき", "Collaborative tags" : "コラボタグ", - "Collaborative tagging functionality which shares tags among users." : "ユーザー間でタグを共有するコラボタグ機能", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "コラボタグはすべてのユーザーで利用できます。制限付きタグは、ユーザーから見えますが、ユーザーが割り当てることはできません。不可視タグは、ユーザーが見ることも割り当てることもできず、内部利用のためのものです。", "Select tag …" : "タグを選択...", "Name" : "名前", diff --git a/apps/systemtags/l10n/ja.json b/apps/systemtags/l10n/ja.json index 9d343a8beb4..4ff7b5baeaa 100644 --- a/apps/systemtags/l10n/ja.json +++ b/apps/systemtags/l10n/ja.json @@ -40,7 +40,6 @@ "%s (invisible)" : "%s (不可視)", "<strong>System tags</strong> for a file have been modified" : "ファイルの<strong>タグ</strong>が変更されたとき", "Collaborative tags" : "コラボタグ", - "Collaborative tagging functionality which shares tags among users." : "ユーザー間でタグを共有するコラボタグ機能", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "コラボタグはすべてのユーザーで利用できます。制限付きタグは、ユーザーから見えますが、ユーザーが割り当てることはできません。不可視タグは、ユーザーが見ることも割り当てることもできず、内部利用のためのものです。", "Select tag …" : "タグを選択...", "Name" : "名前", diff --git a/apps/systemtags/l10n/nl.js b/apps/systemtags/l10n/nl.js index 57bbf88f862..bd481cdc8dc 100644 --- a/apps/systemtags/l10n/nl.js +++ b/apps/systemtags/l10n/nl.js @@ -43,6 +43,7 @@ OC.L10N.register( "<strong>System tags</strong> for a file have been modified" : "<strong>Systeemmarkeringen</strong> voor een bestand zijn gewijzigd", "Collaborative tags" : "Systeemtags", "Select tag …" : "Selecteer tag …", + "Create a new tag" : "Creëren nieuw tag", "Name" : "Tag", "Public" : "Standaard", "Restricted" : "Beschermd", diff --git a/apps/systemtags/l10n/nl.json b/apps/systemtags/l10n/nl.json index d1a6e9210c0..151e3783cb5 100644 --- a/apps/systemtags/l10n/nl.json +++ b/apps/systemtags/l10n/nl.json @@ -41,6 +41,7 @@ "<strong>System tags</strong> for a file have been modified" : "<strong>Systeemmarkeringen</strong> voor een bestand zijn gewijzigd", "Collaborative tags" : "Systeemtags", "Select tag …" : "Selecteer tag …", + "Create a new tag" : "Creëren nieuw tag", "Name" : "Tag", "Public" : "Standaard", "Restricted" : "Beschermd", diff --git a/apps/systemtags/l10n/pt_BR.js b/apps/systemtags/l10n/pt_BR.js index e9d76062a04..fac5faac431 100644 --- a/apps/systemtags/l10n/pt_BR.js +++ b/apps/systemtags/l10n/pt_BR.js @@ -42,8 +42,8 @@ OC.L10N.register( "%s (invisible)" : "%s (invisível)", "<strong>System tags</strong> for a file have been modified" : "<strong>As etiquetas de sistema</strong> para um arquivo foram modificadas", "Collaborative tags" : "Etiquetas colaborativas", - "Collaborative tagging functionality which shares tags among users." : "Funcionalidade de etiquetamento colaborativo que compartilha etiquetas entre usuários.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidade de etiquetamento colaborativo que compartilha etiquetas entre usuários. Muito bom para equipes.\n\t(Se você for um provedor com uma instalação de multilocação, é aconselhável desativar este aplicativo, pois as etiquetas são compartilhadas.)", + "Collaborative tagging functionality which shares tags among users." : "Funcionalidade de marcação colaborativa que compartilha rótulos entre usuários.", + "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidade de marcação colaborativa que compartilha rótulos entre usuários. Ótimo para equipes.\n\t(Se você for um provedor de uma instalação de multilocação, é aconselhável desativar isso, pois os rótulos são compartilhados.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Etiquetas colaborativas estão disponíveis para todos os usuários. As etiquetas restritas são visíveis para os usuários, mas não podem ser atribuídas por eles. Etiquetas invisíveis são para uso interno, já que os usuários não podem vê-las ou atribuí-las.", "Select tag …" : "Selecionar etiqueta...", "Create a new tag" : "Criar uma nova etiqueta", diff --git a/apps/systemtags/l10n/pt_BR.json b/apps/systemtags/l10n/pt_BR.json index 144a32a804d..5cf6a239d02 100644 --- a/apps/systemtags/l10n/pt_BR.json +++ b/apps/systemtags/l10n/pt_BR.json @@ -40,8 +40,8 @@ "%s (invisible)" : "%s (invisível)", "<strong>System tags</strong> for a file have been modified" : "<strong>As etiquetas de sistema</strong> para um arquivo foram modificadas", "Collaborative tags" : "Etiquetas colaborativas", - "Collaborative tagging functionality which shares tags among users." : "Funcionalidade de etiquetamento colaborativo que compartilha etiquetas entre usuários.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidade de etiquetamento colaborativo que compartilha etiquetas entre usuários. Muito bom para equipes.\n\t(Se você for um provedor com uma instalação de multilocação, é aconselhável desativar este aplicativo, pois as etiquetas são compartilhadas.)", + "Collaborative tagging functionality which shares tags among users." : "Funcionalidade de marcação colaborativa que compartilha rótulos entre usuários.", + "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Funcionalidade de marcação colaborativa que compartilha rótulos entre usuários. Ótimo para equipes.\n\t(Se você for um provedor de uma instalação de multilocação, é aconselhável desativar isso, pois os rótulos são compartilhados.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Etiquetas colaborativas estão disponíveis para todos os usuários. As etiquetas restritas são visíveis para os usuários, mas não podem ser atribuídas por eles. Etiquetas invisíveis são para uso interno, já que os usuários não podem vê-las ou atribuí-las.", "Select tag …" : "Selecionar etiqueta...", "Create a new tag" : "Criar uma nova etiqueta", diff --git a/apps/systemtags/l10n/ru.js b/apps/systemtags/l10n/ru.js index 92e7d86a9ce..4f69c8c39ad 100644 --- a/apps/systemtags/l10n/ru.js +++ b/apps/systemtags/l10n/ru.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (невидимая)", "<strong>System tags</strong> for a file have been modified" : "<strong>Системные метки</strong> файла были изменены", "Collaborative tags" : "Метки совместной работы", - "Collaborative tagging functionality which shares tags among users." : "Совместная функция тегов, которая разделяет теги среди пользователей.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Совместная функция тегов, которая разделяет теги среди пользователей. Отлично подходит для команд.\n(Если вы являетесь поставщиком с многоуровневой установкой, рекомендуется отключить это приложение по мере совместного использования тегов).", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Совместные теги доступны для всех пользователей. Ограниченные теги видны пользователям, но не могут быть назначены ими. Невидимые теги предназначены для внутреннего использования, поскольку пользователи не могут их видеть или назначать.", "Select tag …" : "Выберите метку…", "Create a new tag" : "Создать новый тег", diff --git a/apps/systemtags/l10n/ru.json b/apps/systemtags/l10n/ru.json index c1337eaa598..2b98f68294b 100644 --- a/apps/systemtags/l10n/ru.json +++ b/apps/systemtags/l10n/ru.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (невидимая)", "<strong>System tags</strong> for a file have been modified" : "<strong>Системные метки</strong> файла были изменены", "Collaborative tags" : "Метки совместной работы", - "Collaborative tagging functionality which shares tags among users." : "Совместная функция тегов, которая разделяет теги среди пользователей.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Совместная функция тегов, которая разделяет теги среди пользователей. Отлично подходит для команд.\n(Если вы являетесь поставщиком с многоуровневой установкой, рекомендуется отключить это приложение по мере совместного использования тегов).", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Совместные теги доступны для всех пользователей. Ограниченные теги видны пользователям, но не могут быть назначены ими. Невидимые теги предназначены для внутреннего использования, поскольку пользователи не могут их видеть или назначать.", "Select tag …" : "Выберите метку…", "Create a new tag" : "Создать новый тег", diff --git a/apps/systemtags/l10n/sr.js b/apps/systemtags/l10n/sr.js index 1d7b3f48b35..cc105b20793 100644 --- a/apps/systemtags/l10n/sr.js +++ b/apps/systemtags/l10n/sr.js @@ -42,8 +42,6 @@ OC.L10N.register( "%s (invisible)" : "%s (невидљива)", "<strong>System tags</strong> for a file have been modified" : "<strong>Системске ознаке</strong> за фајл су измењене", "Collaborative tags" : "Тимске ознаке", - "Collaborative tagging functionality which shares tags among users." : "Могућност заједничког означавања којим се деле ознаке међу корисницима.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Могућност заједничког означавања којим се деле ознаке међу корисницима. Сјајно за тимове.\n\t(ако сте провајдер инсталације за одвојене кориснике/предузећа, саветује се да иксључите ову апликацију пошто су ознаке дељене.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Заједниче ознаке су доступне свим корисницима. Заштићене ознаке су доступне свим корисницима, али их они не могу додељивати. Невидљиве ознаке су за интерну употребу, пошто их корисници не могу ни видети ни додељивати.", "Select tag …" : "Одаберите ознаку …", "Create a new tag" : "Направи нову ознаку", diff --git a/apps/systemtags/l10n/sr.json b/apps/systemtags/l10n/sr.json index 6f3ac4c80f0..1878d4f750d 100644 --- a/apps/systemtags/l10n/sr.json +++ b/apps/systemtags/l10n/sr.json @@ -40,8 +40,6 @@ "%s (invisible)" : "%s (невидљива)", "<strong>System tags</strong> for a file have been modified" : "<strong>Системске ознаке</strong> за фајл су измењене", "Collaborative tags" : "Тимске ознаке", - "Collaborative tagging functionality which shares tags among users." : "Могућност заједничког означавања којим се деле ознаке међу корисницима.", - "Collaborative tagging functionality which shares tags among users. Great for teams.\n\t(If you are a provider with a multi-tenancy installation, it is advised to deactivate this app as tags are shared.)" : "Могућност заједничког означавања којим се деле ознаке међу корисницима. Сјајно за тимове.\n\t(ако сте провајдер инсталације за одвојене кориснике/предузећа, саветује се да иксључите ову апликацију пошто су ознаке дељене.)", "Collaborative tags are available for all users. Restricted tags are visible to users but cannot be assigned by them. Invisible tags are for internal use, since users cannot see or assign them." : "Заједниче ознаке су доступне свим корисницима. Заштићене ознаке су доступне свим корисницима, али их они не могу додељивати. Невидљиве ознаке су за интерну употребу, пошто их корисници не могу ни видети ни додељивати.", "Select tag …" : "Одаберите ознаку …", "Create a new tag" : "Направи нову ознаку", diff --git a/apps/theming/css/settings-admin.scss b/apps/theming/css/settings-admin.scss index c67d48d46fe..1915a953f4a 100644 --- a/apps/theming/css/settings-admin.scss +++ b/apps/theming/css/settings-admin.scss @@ -26,6 +26,8 @@ vertical-align: top; display: inline-block; visibility: hidden; + height: 32px; + width: 32px; } form.uploadButton { width: 411px; diff --git a/apps/theming/l10n/cs.js b/apps/theming/l10n/cs.js index 2498765a4c3..3f68cc4af8e 100644 --- a/apps/theming/l10n/cs.js +++ b/apps/theming/l10n/cs.js @@ -36,6 +36,7 @@ OC.L10N.register( "Upload new login background" : "Nahrát nové přihlašovací pozadí", "Remove background image" : "Odebrat obrázek pozadí", "Advanced options" : "Pokročilé předvolby", + "Privacy policy link" : "Odkaz na zásady ochrany osobních údajů", "Header logo" : "Logo v záhlaví", "Upload new header logo" : "Nahrát nové logo do hlavičky", "Favicon" : "Favicon", diff --git a/apps/theming/l10n/cs.json b/apps/theming/l10n/cs.json index e88ddc592f3..48cbb31fe21 100644 --- a/apps/theming/l10n/cs.json +++ b/apps/theming/l10n/cs.json @@ -34,6 +34,7 @@ "Upload new login background" : "Nahrát nové přihlašovací pozadí", "Remove background image" : "Odebrat obrázek pozadí", "Advanced options" : "Pokročilé předvolby", + "Privacy policy link" : "Odkaz na zásady ochrany osobních údajů", "Header logo" : "Logo v záhlaví", "Upload new header logo" : "Nahrát nové logo do hlavičky", "Favicon" : "Favicon", diff --git a/apps/theming/l10n/nl.js b/apps/theming/l10n/nl.js index 6c5dc2d2f2c..eaf268cf401 100644 --- a/apps/theming/l10n/nl.js +++ b/apps/theming/l10n/nl.js @@ -40,6 +40,7 @@ OC.L10N.register( "Upload new login background" : "Uploaden nieuwe inlog achtergrond", "Remove background image" : "Achtergrond beeld verwijderen", "Advanced options" : "Geavanceerde opties", + "Legal notice link" : "Link naar juridische bepalingen", "Privacy policy link" : "Privacybeleid link", "Header logo" : "Top logo", "Upload new header logo" : "Upload een nieuwe top afbeelding", diff --git a/apps/theming/l10n/nl.json b/apps/theming/l10n/nl.json index 649a5143356..4e8306a8b1d 100644 --- a/apps/theming/l10n/nl.json +++ b/apps/theming/l10n/nl.json @@ -38,6 +38,7 @@ "Upload new login background" : "Uploaden nieuwe inlog achtergrond", "Remove background image" : "Achtergrond beeld verwijderen", "Advanced options" : "Geavanceerde opties", + "Legal notice link" : "Link naar juridische bepalingen", "Privacy policy link" : "Privacybeleid link", "Header logo" : "Top logo", "Upload new header logo" : "Upload een nieuwe top afbeelding", diff --git a/apps/theming/l10n/pt_PT.js b/apps/theming/l10n/pt_PT.js index 7fb026981ea..0f318721f87 100644 --- a/apps/theming/l10n/pt_PT.js +++ b/apps/theming/l10n/pt_PT.js @@ -19,6 +19,7 @@ OC.L10N.register( "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "A tematização possibilita a fácil personalização da aparência da sua instância e clientes suportados. Isto será visível para todos os utilizadores", "Name" : "Nome", "Reset to default" : "Repor original", + "Web link" : "Hiperligação da Web", "Slogan" : "Slogan", "Color" : "Cor", "Logo" : "Logótipo", diff --git a/apps/theming/l10n/pt_PT.json b/apps/theming/l10n/pt_PT.json index d9936d74b46..014b2f02ed7 100644 --- a/apps/theming/l10n/pt_PT.json +++ b/apps/theming/l10n/pt_PT.json @@ -17,6 +17,7 @@ "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "A tematização possibilita a fácil personalização da aparência da sua instância e clientes suportados. Isto será visível para todos os utilizadores", "Name" : "Nome", "Reset to default" : "Repor original", + "Web link" : "Hiperligação da Web", "Slogan" : "Slogan", "Color" : "Cor", "Logo" : "Logótipo", diff --git a/apps/twofactor_backupcodes/appinfo/info.xml b/apps/twofactor_backupcodes/appinfo/info.xml index 9fe0071a442..192e86a6584 100644 --- a/apps/twofactor_backupcodes/appinfo/info.xml +++ b/apps/twofactor_backupcodes/appinfo/info.xml @@ -5,7 +5,7 @@ <name>Two factor backup codes</name> <summary>A two-factor auth backup codes provider</summary> <description>A two-factor auth backup codes provider</description> - <version>1.3.0</version> + <version>1.3.1</version> <licence>agpl</licence> <author>Christoph Wurst</author> <namespace>TwoFactorBackupCodes</namespace> diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php b/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php index c216b6e4e83..d21fc1ab775 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php @@ -19,6 +19,7 @@ return array( 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170607113030' => $baseDir . '/../lib/Migration/Version1002Date20170607113030.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170919123342' => $baseDir . '/../lib/Migration/Version1002Date20170919123342.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170926101419' => $baseDir . '/../lib/Migration/Version1002Date20170926101419.php', + 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20180821043638' => $baseDir . '/../lib/Migration/Version1002Date20180821043638.php', 'OCA\\TwoFactorBackupCodes\\Provider\\BackupCodesProvider' => $baseDir . '/../lib/Provider/BackupCodesProvider.php', 'OCA\\TwoFactorBackupCodes\\Service\\BackupCodeStorage' => $baseDir . '/../lib/Service/BackupCodeStorage.php', 'OCA\\TwoFactorBackupCodes\\Settings\\Personal' => $baseDir . '/../lib/Settings/Personal.php', diff --git a/apps/twofactor_backupcodes/composer/composer/autoload_static.php b/apps/twofactor_backupcodes/composer/composer/autoload_static.php index de528b08b92..e1b9fb90077 100644 --- a/apps/twofactor_backupcodes/composer/composer/autoload_static.php +++ b/apps/twofactor_backupcodes/composer/composer/autoload_static.php @@ -34,6 +34,7 @@ class ComposerStaticInitTwoFactorBackupCodes 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170607113030' => __DIR__ . '/..' . '/../lib/Migration/Version1002Date20170607113030.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170919123342' => __DIR__ . '/..' . '/../lib/Migration/Version1002Date20170919123342.php', 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20170926101419' => __DIR__ . '/..' . '/../lib/Migration/Version1002Date20170926101419.php', + 'OCA\\TwoFactorBackupCodes\\Migration\\Version1002Date20180821043638' => __DIR__ . '/..' . '/../lib/Migration/Version1002Date20180821043638.php', 'OCA\\TwoFactorBackupCodes\\Provider\\BackupCodesProvider' => __DIR__ . '/..' . '/../lib/Provider/BackupCodesProvider.php', 'OCA\\TwoFactorBackupCodes\\Service\\BackupCodeStorage' => __DIR__ . '/..' . '/../lib/Service/BackupCodeStorage.php', 'OCA\\TwoFactorBackupCodes\\Settings\\Personal' => __DIR__ . '/..' . '/../lib/Settings/Personal.php', diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php new file mode 100644 index 00000000000..15c0242ee6a --- /dev/null +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20180821043638.php @@ -0,0 +1,51 @@ +<?php + +declare(strict_types=1); + +/** + * @author Christoph Wurst <christoph@winzerhof-wurst.at> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\TwoFactorBackupCodes\Migration; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\Migration\SimpleMigrationStep; +use OCP\Migration\IOutput; + +class Version1002Date20180821043638 extends SimpleMigrationStep { + + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + * + * @return ISchemaWrapper + */ + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + $table = $schema->getTable('twofactor_backupcodes'); + + $table->getColumn('code')->setLength(128); + + return $schema; + } + +} diff --git a/apps/twofactor_backupcodes/tests/Integration/Db/BackupCodeMapperTest.php b/apps/twofactor_backupcodes/tests/Db/BackupCodeMapperTest.php index c788262231a..76cdac3c21a 100644 --- a/apps/twofactor_backupcodes/tests/Integration/Db/BackupCodeMapperTest.php +++ b/apps/twofactor_backupcodes/tests/Db/BackupCodeMapperTest.php @@ -20,7 +20,7 @@ * */ -namespace OCA\TwoFactorBackupCodes\Tests\Integration\Db; +namespace OCA\TwoFactorBackupCodes\Tests\Db; use OCA\TwoFactorBackupCodes\Db\BackupCode; use OCA\TwoFactorBackupCodes\Db\BackupCodeMapper; @@ -109,4 +109,13 @@ class BackupCodeMapperTest extends TestCase { $this->assertCount(0, $this->mapper->getBackupCodes($user)); } + public function testInsertArgonEncryptedCodes() { + $code = new BackupCode(); + $code->setUserId($this->testUID); + $code->setCode('2|$argon2i$v=19$m=1024,t=2,p=2$MjJWUjRFWndtMm5BWGxOag$BusVxLeFyiLLWtaVvX/JRFBiPdZcjRrzpQ/rAhn6vqY'); + $code->setUsed(1); + + $this->mapper->insert($code); + } + } diff --git a/apps/twofactor_backupcodes/tests/Integration/Service/BackupCodeStorageTest.php b/apps/twofactor_backupcodes/tests/Service/BackupCodeStorageTest.php index 6d28b4fa758..7d47b4ea721 100644 --- a/apps/twofactor_backupcodes/tests/Integration/Service/BackupCodeStorageTest.php +++ b/apps/twofactor_backupcodes/tests/Service/BackupCodeStorageTest.php @@ -20,7 +20,7 @@ * */ -namespace OCA\TwoFactorBackupCodes\Tests\Integration\Service; +namespace OCA\TwoFactorBackupCodes\Tests\Service; use OCA\TwoFactorBackupCodes\Service\BackupCodeStorage; use Test\TestCase; diff --git a/apps/updatenotification/l10n/en_GB.js b/apps/updatenotification/l10n/en_GB.js index 3ad90398aa0..7e3828f5e3b 100644 --- a/apps/updatenotification/l10n/en_GB.js +++ b/apps/updatenotification/l10n/en_GB.js @@ -13,6 +13,7 @@ OC.L10N.register( "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Displays update notifications for Nextcloud and provides the SSO for the updater.", "Apps with available updates" : "Apps with available updates", "Open updater" : "Open updater", + "What's new?" : "What's new?", "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page.", "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", "Update channel:" : "Update channel:", @@ -29,7 +30,9 @@ OC.L10N.register( "<strong>All</strong> apps have an update for this version available" : "<strong>All</strong> apps have an update for this version available", "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).", + "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.", + "View changelog" : "View changelog", "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", "A new version is available: %s" : "A new version is available: %s", "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.", diff --git a/apps/updatenotification/l10n/en_GB.json b/apps/updatenotification/l10n/en_GB.json index 7c7da884b2d..ce10d518625 100644 --- a/apps/updatenotification/l10n/en_GB.json +++ b/apps/updatenotification/l10n/en_GB.json @@ -11,6 +11,7 @@ "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Displays update notifications for Nextcloud and provides the SSO for the updater.", "Apps with available updates" : "Apps with available updates", "Open updater" : "Open updater", + "What's new?" : "What's new?", "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page.", "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", "Update channel:" : "Update channel:", @@ -27,7 +28,9 @@ "<strong>All</strong> apps have an update for this version available" : "<strong>All</strong> apps have an update for this version available", "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).", + "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.", + "View changelog" : "View changelog", "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", "A new version is available: %s" : "A new version is available: %s", "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.", diff --git a/apps/updatenotification/lib/Settings/Admin.php b/apps/updatenotification/lib/Settings/Admin.php index cae62ee0a9f..54adf558224 100644 --- a/apps/updatenotification/lib/Settings/Admin.php +++ b/apps/updatenotification/lib/Settings/Admin.php @@ -114,7 +114,7 @@ class Admin implements ISettings { return new TemplateResponse('updatenotification', 'admin', $params, ''); } - protected function filterChanges(array $changes) { + protected function filterChanges(array $changes): array { $filtered = []; if(isset($changes['changelogURL'])) { $filtered['changelogURL'] = $changes['changelogURL']; @@ -127,7 +127,8 @@ class Admin implements ISettings { do { $lang = $iterator->current(); if(isset($changes['whatsNew'][$lang])) { - return $filtered['whatsNew'][$lang]; + $filtered['whatsNew'] = $changes['whatsNew'][$lang]; + return $filtered; } $iterator->next(); } while($lang !== 'en' && $iterator->valid()); diff --git a/apps/updatenotification/tests/Settings/AdminTest.php b/apps/updatenotification/tests/Settings/AdminTest.php index d0d53226490..d1f44367a1c 100644 --- a/apps/updatenotification/tests/Settings/AdminTest.php +++ b/apps/updatenotification/tests/Settings/AdminTest.php @@ -34,6 +34,7 @@ use OCP\IGroup; use OCP\IGroupManager; use OCP\IUserSession; use OCP\L10N\IFactory; +use OCP\L10N\ILanguageIterator; use OCP\Util; use Test\TestCase; @@ -153,4 +154,78 @@ class AdminTest extends TestCase { public function testGetPriority() { $this->assertSame(11, $this->admin->getPriority()); } + + public function changesProvider() { + return [ + [ #0, all info, en + [ + 'changelogURL' => 'https://go.to.changelog', + 'whatsNew' => [ + 'en' => [ + 'regular' => ['content'], + ], + 'de' => [ + 'regular' => ['inhalt'], + ] + ], + ], + 'en', + [ + 'changelogURL' => 'https://go.to.changelog', + 'whatsNew' => [ + 'regular' => ['content'], + ], + ] + ], + [ #1, all info, de + [ + 'changelogURL' => 'https://go.to.changelog', + 'whatsNew' => [ + 'en' => [ + 'regular' => ['content'], + ], + 'de' => [ + 'regular' => ['inhalt'], + ] + ], + ], + 'de', + [ + 'changelogURL' => 'https://go.to.changelog', + 'whatsNew' => [ + 'regular' => ['inhalt'], + ] + ], + ], + [ #2, just changelog + [ 'changelogURL' => 'https://go.to.changelog' ], + 'en', + [ 'changelogURL' => 'https://go.to.changelog' ], + ], + [ #3 nothing + [], + 'ru', + [] + ] + ]; + } + + /** + * @dataProvider changesProvider + */ + public function testFilterChanges($changes, $userLang, $expectation) { + $iterator = $this->createMock(ILanguageIterator::class); + $iterator->expects($this->any()) + ->method('current') + ->willReturnOnConsecutiveCalls('es', $userLang, 'it', 'en'); + $iterator->expects($this->any()) + ->method('valid') + ->willReturn(true); + + $this->l10nFactory->expects($this->atMost(1)) + ->method('getLanguageIterator') + ->willReturn($iterator); + $result = $this->invokePrivate($this->admin, 'filterChanges', [$changes]); + $this->assertSame($expectation, $result); + } } diff --git a/apps/user_ldap/l10n/cs.js b/apps/user_ldap/l10n/cs.js index 0437438d5aa..5152d66ab7b 100644 --- a/apps/user_ldap/l10n/cs.js +++ b/apps/user_ldap/l10n/cs.js @@ -131,7 +131,7 @@ OC.L10N.register( "Configuration Active" : "Nastavení aktivní", "When unchecked, this configuration will be skipped." : "Pokud není zaškrtnuto, bude toto nastavení přeskočeno.", "Backup (Replica) Host" : "Záložní (kopie) hostitel", - "Give an optional backup host. It must be a replica of the main LDAP/AD server." : "Zadejte volitelného záložního hostitele. Musí to být kopie hlavního serveru LDAP/AD.", + "Give an optional backup host. It must be a replica of the main LDAP/AD server." : "Zadejte volitelného záložního hostitele. Je třeba, aby byla kopie hlavního LDAP/AD serveru.", "Backup (Replica) Port" : "Záložní (kopie) port", "Disable Main Server" : "Zakázat hlavní server", "Only connect to the replica server." : "Připojit jen k záložnímu serveru.", diff --git a/apps/user_ldap/l10n/cs.json b/apps/user_ldap/l10n/cs.json index a397b548cbb..e4550ce8907 100644 --- a/apps/user_ldap/l10n/cs.json +++ b/apps/user_ldap/l10n/cs.json @@ -129,7 +129,7 @@ "Configuration Active" : "Nastavení aktivní", "When unchecked, this configuration will be skipped." : "Pokud není zaškrtnuto, bude toto nastavení přeskočeno.", "Backup (Replica) Host" : "Záložní (kopie) hostitel", - "Give an optional backup host. It must be a replica of the main LDAP/AD server." : "Zadejte volitelného záložního hostitele. Musí to být kopie hlavního serveru LDAP/AD.", + "Give an optional backup host. It must be a replica of the main LDAP/AD server." : "Zadejte volitelného záložního hostitele. Je třeba, aby byla kopie hlavního LDAP/AD serveru.", "Backup (Replica) Port" : "Záložní (kopie) port", "Disable Main Server" : "Zakázat hlavní server", "Only connect to the replica server." : "Připojit jen k záložnímu serveru.", diff --git a/apps/user_ldap/l10n/en_GB.js b/apps/user_ldap/l10n/en_GB.js index a72046cfa11..0b75790da2a 100644 --- a/apps/user_ldap/l10n/en_GB.js +++ b/apps/user_ldap/l10n/en_GB.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings.", "Could not find the desired feature" : "Could not find the desired feature", "Invalid Host" : "Invalid Host", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "This application enables administrators to connect Nextcloud to an LDAP-based user directory.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation.", "Test Configuration" : "Test Configuration", "Help" : "Help", "Groups meeting these criteria are available in %s:" : "Groups meeting these criteria are available in %s:", diff --git a/apps/user_ldap/l10n/en_GB.json b/apps/user_ldap/l10n/en_GB.json index 00b1a120454..35ca2857a50 100644 --- a/apps/user_ldap/l10n/en_GB.json +++ b/apps/user_ldap/l10n/en_GB.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings.", "Could not find the desired feature" : "Could not find the desired feature", "Invalid Host" : "Invalid Host", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "This application enables administrators to connect Nextcloud to an LDAP-based user directory.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation.", "Test Configuration" : "Test Configuration", "Help" : "Help", "Groups meeting these criteria are available in %s:" : "Groups meeting these criteria are available in %s:", diff --git a/apps/user_ldap/l10n/es.js b/apps/user_ldap/l10n/es.js index 1cd08347c1c..4e6825c7206 100644 --- a/apps/user_ldap/l10n/es.js +++ b/apps/user_ldap/l10n/es.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "No se ha podido detectar el atributo del nombre ", "Could not find the desired feature" : "No se puede encontrar la función deseada.", "Invalid Host" : "Host inválido", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Esta aplicación permite a los administradores conectar Nextcloud a un directorio de usuarios basado en LDAP", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esta aplicación permite a los administradores conectar Nextcloud con una directorio de usuarios basado en LDAP para autenticación y aprovisionamiento de usuarios, grupos y atributos de usuario. Los administradores pueden configurar esta aplicación para conectarse a uno o más directorios LDAP o Active Directory vía una interfaz LDAP. Los atributos como cuota de usuario, correo, imágenes de avatar, pertenencia a grupos y más pueden incorporarse a Nextcloud desde un directorio con las peticiones y filtros apropiados.\n\nUn usuario se registra en Nextcloud con sus credenciales LDAP o AD y se le concede acceso basándose en una petición de autenticación manejada por el servidor LDAP o AD.Nexttcloud no almacen las contraseñas LDAP o AD, sino que estas credenciales se usan para utenticar un usuario y después Nextcloud usa una sesión para la id de usuario. Más información disponible en la documentación del motor de usuarios y grupos LDAP", "Test Configuration" : "Configuración de prueba", "Help" : "Ayuda", "Groups meeting these criteria are available in %s:" : "Los grupos que cumplen estos criterios están disponibles en %s:", diff --git a/apps/user_ldap/l10n/es.json b/apps/user_ldap/l10n/es.json index e6d8dce0165..8b807abb5d5 100644 --- a/apps/user_ldap/l10n/es.json +++ b/apps/user_ldap/l10n/es.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "No se ha podido detectar el atributo del nombre ", "Could not find the desired feature" : "No se puede encontrar la función deseada.", "Invalid Host" : "Host inválido", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Esta aplicación permite a los administradores conectar Nextcloud a un directorio de usuarios basado en LDAP", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esta aplicación permite a los administradores conectar Nextcloud con una directorio de usuarios basado en LDAP para autenticación y aprovisionamiento de usuarios, grupos y atributos de usuario. Los administradores pueden configurar esta aplicación para conectarse a uno o más directorios LDAP o Active Directory vía una interfaz LDAP. Los atributos como cuota de usuario, correo, imágenes de avatar, pertenencia a grupos y más pueden incorporarse a Nextcloud desde un directorio con las peticiones y filtros apropiados.\n\nUn usuario se registra en Nextcloud con sus credenciales LDAP o AD y se le concede acceso basándose en una petición de autenticación manejada por el servidor LDAP o AD.Nexttcloud no almacen las contraseñas LDAP o AD, sino que estas credenciales se usan para utenticar un usuario y después Nextcloud usa una sesión para la id de usuario. Más información disponible en la documentación del motor de usuarios y grupos LDAP", "Test Configuration" : "Configuración de prueba", "Help" : "Ayuda", "Groups meeting these criteria are available in %s:" : "Los grupos que cumplen estos criterios están disponibles en %s:", diff --git a/apps/user_ldap/l10n/es_MX.js b/apps/user_ldap/l10n/es_MX.js index 078e525de5b..43b8b6f03aa 100644 --- a/apps/user_ldap/l10n/es_MX.js +++ b/apps/user_ldap/l10n/es_MX.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "No fue posible detectar el atributo del nombre a desplegar del usuario. Por favor especifícalo tú mismo en las configuraciones avanzadas de LDAP. ", "Could not find the desired feature" : "No fue posible encontrar la función deseada.", "Invalid Host" : "Servidor inválido", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Esta aplicación le permite a los adminsitradores conectar a Nextcloud con un directorio de usuarios basado en LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esta aplicación le permite a los administradores conectar a Nextcloud con un directorio de usarios basado en LDAP para autenticación y aprovisionamiento de usuarios, grupos y atributos de usuario. Los administradores pueden configurar esta aplicación para contectar uno o más directorios LDAP o Directorios activos mediante la interfaz LDAP. Atributos tales como cuota de usuario, correo electrónico, imágnes de avatares, membrecia a grupos y más pueden ser llevadas a Nextcloud desde un directorio con las consultas y filtros adecuados. \n\nUn usuario entra a Nextcloud connsus credenciales LDAP o AD, y se le da acceso con base en una solicitud de autenticación administrada por el servidor LDAP o AD. Nexcloud no almacena contraseñas LDAP o AD, más bien, estas credenciales se usan para autenticar un usuario y después Nextcloud usa una sesión para el ID del usuario. Hay más información disponible en la documentación de Backend de Usuarios y Grupos LDAP. ", "Test Configuration" : "Probar configuración", "Help" : "Ayuda", "Groups meeting these criteria are available in %s:" : "Los grupos que cumplen con los siguientes criterios están disponibles en %s:", diff --git a/apps/user_ldap/l10n/es_MX.json b/apps/user_ldap/l10n/es_MX.json index b1494e1c4f6..33185152d2c 100644 --- a/apps/user_ldap/l10n/es_MX.json +++ b/apps/user_ldap/l10n/es_MX.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "No fue posible detectar el atributo del nombre a desplegar del usuario. Por favor especifícalo tú mismo en las configuraciones avanzadas de LDAP. ", "Could not find the desired feature" : "No fue posible encontrar la función deseada.", "Invalid Host" : "Servidor inválido", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Esta aplicación le permite a los adminsitradores conectar a Nextcloud con un directorio de usuarios basado en LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esta aplicación le permite a los administradores conectar a Nextcloud con un directorio de usarios basado en LDAP para autenticación y aprovisionamiento de usuarios, grupos y atributos de usuario. Los administradores pueden configurar esta aplicación para contectar uno o más directorios LDAP o Directorios activos mediante la interfaz LDAP. Atributos tales como cuota de usuario, correo electrónico, imágnes de avatares, membrecia a grupos y más pueden ser llevadas a Nextcloud desde un directorio con las consultas y filtros adecuados. \n\nUn usuario entra a Nextcloud connsus credenciales LDAP o AD, y se le da acceso con base en una solicitud de autenticación administrada por el servidor LDAP o AD. Nexcloud no almacena contraseñas LDAP o AD, más bien, estas credenciales se usan para autenticar un usuario y después Nextcloud usa una sesión para el ID del usuario. Hay más información disponible en la documentación de Backend de Usuarios y Grupos LDAP. ", "Test Configuration" : "Probar configuración", "Help" : "Ayuda", "Groups meeting these criteria are available in %s:" : "Los grupos que cumplen con los siguientes criterios están disponibles en %s:", diff --git a/apps/user_ldap/l10n/fr.js b/apps/user_ldap/l10n/fr.js index 34a1827fde1..75fa02d49eb 100644 --- a/apps/user_ldap/l10n/fr.js +++ b/apps/user_ldap/l10n/fr.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Impossible de détecter l'attribut contenant le nom d'affichage des utilisateurs. Veuillez l'indiquer vous-même dans les paramètres LDAP avancés.", "Could not find the desired feature" : "Impossible de trouver la fonction souhaitée", "Invalid Host" : "Hôte non valide", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Cette application permet aux administrateurs de connecter Nextcloud à un répertoire utilisateur basé sur LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Cette application permet aux administrateurs de connecter Nextcloud à un annuaire d'utilisateurs LDAP pour l'authentification et la configuration des utilisateurs, des groupes et des attributs utilisateur. Les administrateurs peuvent configurer cette application pour se connecter à un ou plusieurs annuaires LDAP ou à des répertoires actifs via une interface LDAP. Les attributs tels que le quota utilisateur, les e-mails, les images d'avatar, les appartenances aux groupes et bien d'autres peuvent être extraits dans Nextcloud à partir d'un répertoire contenant les requêtes et filtres appropriés\n\nUn utilisateur se connecte à Nextcloud avec ses informations d'identification LDAP ou AD et dispose d'un accès basé sur une demande d'authentification gérée par le serveur LDAP ou AD. Nextcloud ne stocke pas les mots de passe LDAP ou AD, mais ces informations d'identification sont utilisées pour authentifier un utilisateur, puis Nextcloud utilise une session pour l'ID utilisateur. Plus d'informations sont disponibles dans la documentation LDAP User and Group Backend.", "Test Configuration" : "Tester la configuration", "Help" : "Aide", "Groups meeting these criteria are available in %s:" : "Les groupes respectant ces critères sont disponibles dans %s :", diff --git a/apps/user_ldap/l10n/fr.json b/apps/user_ldap/l10n/fr.json index dabc5c16873..43e6ca91ecb 100644 --- a/apps/user_ldap/l10n/fr.json +++ b/apps/user_ldap/l10n/fr.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Impossible de détecter l'attribut contenant le nom d'affichage des utilisateurs. Veuillez l'indiquer vous-même dans les paramètres LDAP avancés.", "Could not find the desired feature" : "Impossible de trouver la fonction souhaitée", "Invalid Host" : "Hôte non valide", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Cette application permet aux administrateurs de connecter Nextcloud à un répertoire utilisateur basé sur LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Cette application permet aux administrateurs de connecter Nextcloud à un annuaire d'utilisateurs LDAP pour l'authentification et la configuration des utilisateurs, des groupes et des attributs utilisateur. Les administrateurs peuvent configurer cette application pour se connecter à un ou plusieurs annuaires LDAP ou à des répertoires actifs via une interface LDAP. Les attributs tels que le quota utilisateur, les e-mails, les images d'avatar, les appartenances aux groupes et bien d'autres peuvent être extraits dans Nextcloud à partir d'un répertoire contenant les requêtes et filtres appropriés\n\nUn utilisateur se connecte à Nextcloud avec ses informations d'identification LDAP ou AD et dispose d'un accès basé sur une demande d'authentification gérée par le serveur LDAP ou AD. Nextcloud ne stocke pas les mots de passe LDAP ou AD, mais ces informations d'identification sont utilisées pour authentifier un utilisateur, puis Nextcloud utilise une session pour l'ID utilisateur. Plus d'informations sont disponibles dans la documentation LDAP User and Group Backend.", "Test Configuration" : "Tester la configuration", "Help" : "Aide", "Groups meeting these criteria are available in %s:" : "Les groupes respectant ces critères sont disponibles dans %s :", diff --git a/apps/user_ldap/l10n/he.js b/apps/user_ldap/l10n/he.js index 8cae171d675..c870803b0d5 100644 --- a/apps/user_ldap/l10n/he.js +++ b/apps/user_ldap/l10n/he.js @@ -45,6 +45,8 @@ OC.L10N.register( "Mode switch" : "שינוי מצב", "Select attributes" : "בחירת מאפיינים", "User found and settings verified." : "משתמש אותר והגדרות אומתו.", + "Consider narrowing your search, as it encompassed many users, only the first one of whom will be able to log in." : "מוטב לשקול לצמצם את החיפוש שלך, כיוון שהוא מאגד בתוכו משתמשים רבים, רק הראשון מביניהם יוכל להיכנס.", + "An unspecified error occurred. Please check log and settings." : "אירעה שגיאה בלתי מוגדרת. נא לבדוק את יומן הרישום וההגדרות.", "The search filter is invalid, probably due to syntax issues like uneven number of opened and closed brackets. Please revise." : "סינון החיפוש אינו חוקי. ככל הנראה בשל שיאה תחבירית כגון מספר לא שווה של פתח-סוגריים וסגור-סוגריים. יש לתקן.", "A connection error to LDAP / AD occurred, please check host, port and credentials." : "אירעה שגיאת חיבור ל- LDAP / AD, יש לבדוק את השרת, שער החיבור - פורט ופרטי הכניסה. ", "Please provide a login name to test against" : "יש לספק שם משתמש לבדיקה מולו", @@ -57,6 +59,7 @@ OC.L10N.register( "LDAP / AD integration" : "שילוב של LDAP / AD", "_%s group found_::_%s groups found_" : ["אותרה %s קבוצה","אותרו %s קבוצות","אותרו %s קבוצות","אותרו %s קבוצות"], "_%s user found_::_%s users found_" : ["אותר %s משתמש","אותרו %s משתמשים","אותרו %s משתמשים","אותרו %s משתמשים"], + "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "לא ניתן לאתר את מאפיין שם תצוגת המשתמש. נא לציין אותו בעצמך בהגדרות ה־LDAP המתקדמות.", "Could not find the desired feature" : "לא אותרה התכונה הרצויה", "Invalid Host" : "מארח לא חוקי", "Test Configuration" : "בדיקת הגדרות", @@ -146,6 +149,7 @@ OC.L10N.register( "Nested Groups" : "קבוצות משנה", "Paging chunksize" : "Paging chunksize", "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" : "Chunksize משמש לחיפושי paged LDAP שעלולים להחזיר תוצאות גסות כמו ספירת משתמש או קבוצה. (הגדרה כ- 0 מנטרל חיפושי paged LDAP במצבים אלה.)", + "Enable LDAP password changes per user" : "הפעלת החלפות ססמה ב־LDAP לפי משתמש", "(New password is sent as plain text to LDAP)" : "(הססמה החדשה נשלחת כטקסט בלתי מוצפן ל־LDAP)", "Special Attributes" : "מאפיינים מיוחדים", "Quota Field" : "שדה מכסה", diff --git a/apps/user_ldap/l10n/he.json b/apps/user_ldap/l10n/he.json index 96c5164528d..d2357ab25b4 100644 --- a/apps/user_ldap/l10n/he.json +++ b/apps/user_ldap/l10n/he.json @@ -43,6 +43,8 @@ "Mode switch" : "שינוי מצב", "Select attributes" : "בחירת מאפיינים", "User found and settings verified." : "משתמש אותר והגדרות אומתו.", + "Consider narrowing your search, as it encompassed many users, only the first one of whom will be able to log in." : "מוטב לשקול לצמצם את החיפוש שלך, כיוון שהוא מאגד בתוכו משתמשים רבים, רק הראשון מביניהם יוכל להיכנס.", + "An unspecified error occurred. Please check log and settings." : "אירעה שגיאה בלתי מוגדרת. נא לבדוק את יומן הרישום וההגדרות.", "The search filter is invalid, probably due to syntax issues like uneven number of opened and closed brackets. Please revise." : "סינון החיפוש אינו חוקי. ככל הנראה בשל שיאה תחבירית כגון מספר לא שווה של פתח-סוגריים וסגור-סוגריים. יש לתקן.", "A connection error to LDAP / AD occurred, please check host, port and credentials." : "אירעה שגיאת חיבור ל- LDAP / AD, יש לבדוק את השרת, שער החיבור - פורט ופרטי הכניסה. ", "Please provide a login name to test against" : "יש לספק שם משתמש לבדיקה מולו", @@ -55,6 +57,7 @@ "LDAP / AD integration" : "שילוב של LDAP / AD", "_%s group found_::_%s groups found_" : ["אותרה %s קבוצה","אותרו %s קבוצות","אותרו %s קבוצות","אותרו %s קבוצות"], "_%s user found_::_%s users found_" : ["אותר %s משתמש","אותרו %s משתמשים","אותרו %s משתמשים","אותרו %s משתמשים"], + "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "לא ניתן לאתר את מאפיין שם תצוגת המשתמש. נא לציין אותו בעצמך בהגדרות ה־LDAP המתקדמות.", "Could not find the desired feature" : "לא אותרה התכונה הרצויה", "Invalid Host" : "מארח לא חוקי", "Test Configuration" : "בדיקת הגדרות", @@ -144,6 +147,7 @@ "Nested Groups" : "קבוצות משנה", "Paging chunksize" : "Paging chunksize", "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" : "Chunksize משמש לחיפושי paged LDAP שעלולים להחזיר תוצאות גסות כמו ספירת משתמש או קבוצה. (הגדרה כ- 0 מנטרל חיפושי paged LDAP במצבים אלה.)", + "Enable LDAP password changes per user" : "הפעלת החלפות ססמה ב־LDAP לפי משתמש", "(New password is sent as plain text to LDAP)" : "(הססמה החדשה נשלחת כטקסט בלתי מוצפן ל־LDAP)", "Special Attributes" : "מאפיינים מיוחדים", "Quota Field" : "שדה מכסה", diff --git a/apps/user_ldap/l10n/pt_BR.js b/apps/user_ldap/l10n/pt_BR.js index d947d1c84a4..af4f828994a 100644 --- a/apps/user_ldap/l10n/pt_BR.js +++ b/apps/user_ldap/l10n/pt_BR.js @@ -66,7 +66,7 @@ OC.L10N.register( "Could not find the desired feature" : "Não foi possível encontrar o recurso desejado", "Invalid Host" : "Host inválido", "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Este aplicativo permite que os administradores conectem o Nextcloud a um diretório de usuários baseado em LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esse aplicativo permite que os administradores conectem o Nextcloud a um diretório de usuários baseado em LDAP para autenticação, provisionamento de usuários, grupos e atributos do usuário. Os administradores podem configurar este aplicativo para se conectar a um ou mais diretórios LDAP ou Diretórios Ativos por meio de uma interface LDAP. Atributos como cota de usuários, e-mail, imagens de avatar, associações a grupos e muito mais podem ser acessados no Nextcloud a partir de um diretório com as consultas e filtros apropriados.\n\nUm usuário efetua login no Nextcloud com suas credenciais LDAP ou AD e recebe acesso com base em uma solicitação de autenticação manipulada pelo servidor LDAP ou AD. O Nextcloud não armazena senhas LDAP ou AD, mas essas credenciais são usadas para autenticar um usuário e, em seguida, o Nextcloud usa uma sessão para o ID do usuário. Mais informações estão disponíveis na documentação do Sistema de Usuários e Grupos LDAP.", + "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esse aplicativo permite que os administradores conectem o Nextcloud a um diretório de usuários baseado em LDAP para autenticação, provisionamento de usuários, grupos e atributos do usuário. Os administradores podem configurar este aplicativo para se conectar a um ou mais diretórios LDAP ou Active Directories por meio de uma interface LDAP. Atributos como cota de usuário, e-mail, imagens de avatar, associações a grupos e muito mais podem ser acessados no Nextcloud a partir de um diretório com as consultas e filtros apropriados.\n\nUm usuário efetua login no Nextcloud com suas credenciais LDAP ou AD e recebe acesso com base em uma solicitação de autenticação manipulada pelo servidor LDAP ou AD. O Nextcloud não armazena senhas LDAP ou AD, mas essas credenciais são usadas para autenticar o usuário e em seguida, o Nextcloud usa uma sessão para o ID do usuário. Mais informações estão disponíveis na documentação da estrutura LDAP de Usuário e Grupo.", "Test Configuration" : "Teste de Configuração", "Help" : "Ajuda", "Groups meeting these criteria are available in %s:" : "Grupos que satisfazem estes critérios estão disponíveis em %s:", diff --git a/apps/user_ldap/l10n/pt_BR.json b/apps/user_ldap/l10n/pt_BR.json index 1ec62665e25..b28e30e3b03 100644 --- a/apps/user_ldap/l10n/pt_BR.json +++ b/apps/user_ldap/l10n/pt_BR.json @@ -64,7 +64,7 @@ "Could not find the desired feature" : "Não foi possível encontrar o recurso desejado", "Invalid Host" : "Host inválido", "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Este aplicativo permite que os administradores conectem o Nextcloud a um diretório de usuários baseado em LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esse aplicativo permite que os administradores conectem o Nextcloud a um diretório de usuários baseado em LDAP para autenticação, provisionamento de usuários, grupos e atributos do usuário. Os administradores podem configurar este aplicativo para se conectar a um ou mais diretórios LDAP ou Diretórios Ativos por meio de uma interface LDAP. Atributos como cota de usuários, e-mail, imagens de avatar, associações a grupos e muito mais podem ser acessados no Nextcloud a partir de um diretório com as consultas e filtros apropriados.\n\nUm usuário efetua login no Nextcloud com suas credenciais LDAP ou AD e recebe acesso com base em uma solicitação de autenticação manipulada pelo servidor LDAP ou AD. O Nextcloud não armazena senhas LDAP ou AD, mas essas credenciais são usadas para autenticar um usuário e, em seguida, o Nextcloud usa uma sessão para o ID do usuário. Mais informações estão disponíveis na documentação do Sistema de Usuários e Grupos LDAP.", + "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Esse aplicativo permite que os administradores conectem o Nextcloud a um diretório de usuários baseado em LDAP para autenticação, provisionamento de usuários, grupos e atributos do usuário. Os administradores podem configurar este aplicativo para se conectar a um ou mais diretórios LDAP ou Active Directories por meio de uma interface LDAP. Atributos como cota de usuário, e-mail, imagens de avatar, associações a grupos e muito mais podem ser acessados no Nextcloud a partir de um diretório com as consultas e filtros apropriados.\n\nUm usuário efetua login no Nextcloud com suas credenciais LDAP ou AD e recebe acesso com base em uma solicitação de autenticação manipulada pelo servidor LDAP ou AD. O Nextcloud não armazena senhas LDAP ou AD, mas essas credenciais são usadas para autenticar o usuário e em seguida, o Nextcloud usa uma sessão para o ID do usuário. Mais informações estão disponíveis na documentação da estrutura LDAP de Usuário e Grupo.", "Test Configuration" : "Teste de Configuração", "Help" : "Ajuda", "Groups meeting these criteria are available in %s:" : "Grupos que satisfazem estes critérios estão disponíveis em %s:", diff --git a/apps/user_ldap/l10n/ru.js b/apps/user_ldap/l10n/ru.js index a704f10fc08..f1d07ba0e63 100644 --- a/apps/user_ldap/l10n/ru.js +++ b/apps/user_ldap/l10n/ru.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Не удалось автоматически определить атрибут, содержащий отображаемое имя пользователя. Зайдите в расширенные настройки LDAP и укажите его вручную.", "Could not find the desired feature" : "Не удается найти требуемую функциональность", "Invalid Host" : "Некорректный адрес сервера", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Это приложение позволяет администраторам подключать Nextcloud к каталогу пользователей на основе LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Это приложение позволяет администраторам подключать Nextcloud к каталогу пользователей на основе LDAP для аутентификации и подготовки пользователей, групп и пользовательских атрибутов. Администраторы могут настроить это приложение для подключения к одному или нескольким каталогам LDAP или Active Directory через интерфейс LDAP. Атрибуты, такие как пользовательская квота, электронная почта, изображения аватаров, членство в группах и многое другое, могут быть перенесены в Nextcloud из каталога с соответствующими запросами и фильтрами.\n\nПользователь регистрируется в Nextcloud со своими учетными данными LDAP или AD и получает доступ на основе запроса аутентификации, обрабатываемого сервером LDAP или AD. Nextcloud не хранит пароли LDAP или AD, а эти учетные данные используются для аутентификации пользователя, а затем Nextcloud использует сеанс для идентификатора пользователя. Дополнительная информация доступна в документации LDAP Пользователи и Группы.", "Test Configuration" : "Проверить конфигурацию", "Help" : "Помощь", "Groups meeting these criteria are available in %s:" : "Группы, отвечающие этим критериям доступны в %s:", diff --git a/apps/user_ldap/l10n/ru.json b/apps/user_ldap/l10n/ru.json index 7728cd19868..546e3022cff 100644 --- a/apps/user_ldap/l10n/ru.json +++ b/apps/user_ldap/l10n/ru.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Не удалось автоматически определить атрибут, содержащий отображаемое имя пользователя. Зайдите в расширенные настройки LDAP и укажите его вручную.", "Could not find the desired feature" : "Не удается найти требуемую функциональность", "Invalid Host" : "Некорректный адрес сервера", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Это приложение позволяет администраторам подключать Nextcloud к каталогу пользователей на основе LDAP.", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Это приложение позволяет администраторам подключать Nextcloud к каталогу пользователей на основе LDAP для аутентификации и подготовки пользователей, групп и пользовательских атрибутов. Администраторы могут настроить это приложение для подключения к одному или нескольким каталогам LDAP или Active Directory через интерфейс LDAP. Атрибуты, такие как пользовательская квота, электронная почта, изображения аватаров, членство в группах и многое другое, могут быть перенесены в Nextcloud из каталога с соответствующими запросами и фильтрами.\n\nПользователь регистрируется в Nextcloud со своими учетными данными LDAP или AD и получает доступ на основе запроса аутентификации, обрабатываемого сервером LDAP или AD. Nextcloud не хранит пароли LDAP или AD, а эти учетные данные используются для аутентификации пользователя, а затем Nextcloud использует сеанс для идентификатора пользователя. Дополнительная информация доступна в документации LDAP Пользователи и Группы.", "Test Configuration" : "Проверить конфигурацию", "Help" : "Помощь", "Groups meeting these criteria are available in %s:" : "Группы, отвечающие этим критериям доступны в %s:", diff --git a/apps/user_ldap/l10n/sr.js b/apps/user_ldap/l10n/sr.js index 15b0d19fabb..390f07a9346 100644 --- a/apps/user_ldap/l10n/sr.js +++ b/apps/user_ldap/l10n/sr.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Не могу да пронађем атрибут имена за приказ корисника. Молимо сами га наведите у LDAP напредним подешавањима.", "Could not find the desired feature" : "Не могу да пронађем жељену особину", "Invalid Host" : "Неисправан домаћин", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Ова апликација омогућава администраторима да повежу Некстклауд на LDAP-базирани кориснички директоријум", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Ова апликација омогућава администраторима да повежу Некстклауд на LDAP-базирани кориснички директоријум за проверу идентитета и прављење корисника, група и корисничких атрибута. Администратори могу да подесе повезивање ове апликације са једним или више LDAP директоријума или Active Directories преко LDAP интерфејса. Атрибути, као што су корисничка квота, адреса е-поште, аватар слика, припадност групама и остало се могу повући у Некстклауд из директоријума преко одговарајућих упита и филтера.\n\nКорисник се пријављује у Некстклауд преко својих LDAP или AD акредитива и одобрава му се приступ према захтеву за проверу идентитета којима управљају LDAP или AD сервери. Некстклауд не складишти LDAP и AD лозинке, него се само ови акредитиви користе за проверу идентитета корисника и на даље Некстклауд користи сесију као ID корисника. Више информација је доступно у документацији LDAP кориснички и групни позадински мотор.", "Test Configuration" : "Испробај поставку", "Help" : "Помоћ", "Groups meeting these criteria are available in %s:" : "Групе које испуњавају ове критеријуме су доступне у %s:", diff --git a/apps/user_ldap/l10n/sr.json b/apps/user_ldap/l10n/sr.json index dd6600a95ef..9423ba4424a 100644 --- a/apps/user_ldap/l10n/sr.json +++ b/apps/user_ldap/l10n/sr.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "Не могу да пронађем атрибут имена за приказ корисника. Молимо сами га наведите у LDAP напредним подешавањима.", "Could not find the desired feature" : "Не могу да пронађем жељену особину", "Invalid Host" : "Неисправан домаћин", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "Ова апликација омогућава администраторима да повежу Некстклауд на LDAP-базирани кориснички директоријум", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "Ова апликација омогућава администраторима да повежу Некстклауд на LDAP-базирани кориснички директоријум за проверу идентитета и прављење корисника, група и корисничких атрибута. Администратори могу да подесе повезивање ове апликације са једним или више LDAP директоријума или Active Directories преко LDAP интерфејса. Атрибути, као што су корисничка квота, адреса е-поште, аватар слика, припадност групама и остало се могу повући у Некстклауд из директоријума преко одговарајућих упита и филтера.\n\nКорисник се пријављује у Некстклауд преко својих LDAP или AD акредитива и одобрава му се приступ према захтеву за проверу идентитета којима управљају LDAP или AD сервери. Некстклауд не складишти LDAP и AD лозинке, него се само ови акредитиви користе за проверу идентитета корисника и на даље Некстклауд користи сесију као ID корисника. Више информација је доступно у документацији LDAP кориснички и групни позадински мотор.", "Test Configuration" : "Испробај поставку", "Help" : "Помоћ", "Groups meeting these criteria are available in %s:" : "Групе које испуњавају ове критеријуме су доступне у %s:", diff --git a/apps/user_ldap/l10n/zh_CN.js b/apps/user_ldap/l10n/zh_CN.js index 94526be0a2d..ab2824647aa 100644 --- a/apps/user_ldap/l10n/zh_CN.js +++ b/apps/user_ldap/l10n/zh_CN.js @@ -65,8 +65,6 @@ OC.L10N.register( "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "无法检测到用户的显示名称属性。请在高级LDAP设置中指定。", "Could not find the desired feature" : "无法找到所需的功能", "Invalid Host" : "无效的主机", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "本应用使 Nextcloud 能够连接使用 LDAP 协议的用户库", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "本应用能让管理员启用 LDAP 用户库,完成验证并提取用户、群组和用户信息。管理员能够配置本应用通过 LDAP 接口连接到一个或多个 LDAP目录或者活动目录(AD)。一些目录中的属性,比如用户配额, Email, 用户头像,群组成员以及更多信息,都可以通过设置适当的查询条件,被提取到 Nextcloud 中。\n\n通过LDAP或者AD验证的Nextcloud 用户,基信息验证通过 LDAP或AD 服务器完成。Nextcloud 不会保存用户的密码,这些信息只是LDAP或AD服务器用来验证用户,然后Nextcloud 使用该用户的会话信息。更多信息可以在查阅 用户和群组 LDAP 后端 文档。", "Test Configuration" : "测试配置", "Help" : "帮助", "Groups meeting these criteria are available in %s:" : "满足这些条件组在%s可供选择:", diff --git a/apps/user_ldap/l10n/zh_CN.json b/apps/user_ldap/l10n/zh_CN.json index 82f901044d9..1d85c88eed4 100644 --- a/apps/user_ldap/l10n/zh_CN.json +++ b/apps/user_ldap/l10n/zh_CN.json @@ -63,8 +63,6 @@ "Could not detect user display name attribute. Please specify it yourself in advanced LDAP settings." : "无法检测到用户的显示名称属性。请在高级LDAP设置中指定。", "Could not find the desired feature" : "无法找到所需的功能", "Invalid Host" : "无效的主机", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory." : "本应用使 Nextcloud 能够连接使用 LDAP 协议的用户库", - "This application enables administrators to connect Nextcloud to an LDAP-based user directory for authentication and provisioning users, groups and user attributes. Admins can configure this application to connect to one or more LDAP directories or Active Directories via an LDAP interface. Attributes such as user quota, email, avatar pictures, group memberships and more can be pulled into Nextcloud from a directory with the appropriate queries and filters.\n\nA user logs into Nextcloud with their LDAP or AD credentials, and is granted access based on an authentication request handled by the LDAP or AD server. Nextcloud does not store LDAP or AD passwords, rather these credentials are used to authenticate a user and then Nextcloud uses a session for the user ID. More information is available in the LDAP User and Group Backend documentation." : "本应用能让管理员启用 LDAP 用户库,完成验证并提取用户、群组和用户信息。管理员能够配置本应用通过 LDAP 接口连接到一个或多个 LDAP目录或者活动目录(AD)。一些目录中的属性,比如用户配额, Email, 用户头像,群组成员以及更多信息,都可以通过设置适当的查询条件,被提取到 Nextcloud 中。\n\n通过LDAP或者AD验证的Nextcloud 用户,基信息验证通过 LDAP或AD 服务器完成。Nextcloud 不会保存用户的密码,这些信息只是LDAP或AD服务器用来验证用户,然后Nextcloud 使用该用户的会话信息。更多信息可以在查阅 用户和群组 LDAP 后端 文档。", "Test Configuration" : "测试配置", "Help" : "帮助", "Groups meeting these criteria are available in %s:" : "满足这些条件组在%s可供选择:", diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index 91089e779a0..a03b4a4cb9c 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -609,23 +609,23 @@ class Access extends LDAPUtility implements IUserTools { //NOTE: mind, disabling cache affects only this instance! Using it // outside of core user management will still cache the user as non-existing. $originalTTL = $this->connection->ldapCacheTTL; - $this->connection->setConfiguration(array('ldapCacheTTL' => 0)); + $this->connection->setConfiguration(['ldapCacheTTL' => 0]); if(($isUser && $intName !== '' && !$this->ncUserManager->userExists($intName)) || (!$isUser && !\OC::$server->getGroupManager()->groupExists($intName))) { if($mapper->map($fdn, $intName, $uuid)) { - $this->connection->setConfiguration(array('ldapCacheTTL' => $originalTTL)); - if($this->ncUserManager instanceof PublicEmitter) { + $this->connection->setConfiguration(['ldapCacheTTL' => $originalTTL]); + if($this->ncUserManager instanceof PublicEmitter && $isUser) { $this->ncUserManager->emit('\OC\User', 'assignedUserId', [$intName]); } $newlyMapped = true; return $intName; } } - $this->connection->setConfiguration(array('ldapCacheTTL' => $originalTTL)); + $this->connection->setConfiguration(['ldapCacheTTL' => $originalTTL]); $altName = $this->createAltInternalOwnCloudName($intName, $isUser); if(is_string($altName) && $mapper->map($fdn, $altName, $uuid)) { - if($this->ncUserManager instanceof PublicEmitter) { + if($this->ncUserManager instanceof PublicEmitter && $isUser) { $this->ncUserManager->emit('\OC\User', 'assignedUserId', [$intName]); } $newlyMapped = true; diff --git a/apps/user_ldap/lib/Group_LDAP.php b/apps/user_ldap/lib/Group_LDAP.php index d9e2c7e2e3e..57f5faebd2c 100644 --- a/apps/user_ldap/lib/Group_LDAP.php +++ b/apps/user_ldap/lib/Group_LDAP.php @@ -825,7 +825,7 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD if($isMemberUid) { //we got uids, need to get their DNs to 'translate' them to user names $filter = $this->access->combineFilterWithAnd(array( - str_replace('%uid', $member, $this->access->connection->ldapLoginFilter), + str_replace('%uid', trim($member), $this->access->connection->ldapLoginFilter), $this->access->getFilterPartForUserSearch($search) )); $ldap_users = $this->access->fetchListOfUsers($filter, $attrs, 1); diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index ca7e0b304ea..11ed02f47ab 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -318,11 +318,6 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn $dn = $user->getDN(); //check if user really still exists by reading its entry if(!is_array($this->access->readAttribute($dn, '', $this->access->connection->ldapUserFilter))) { - $lcr = $this->access->connection->getConnectionResource(); - if(is_null($lcr)) { - throw new \Exception('No LDAP Connection to server ' . $this->access->connection->ldapHost); - } - try { $uuid = $this->access->getUserMapper()->getUUIDByDN($dn); if (!$uuid) { @@ -330,7 +325,7 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn } $newDn = $this->access->getUserDnByUuid($uuid); //check if renamed user is still valid by reapplying the ldap filter - if (!is_array($this->access->readAttribute($newDn, '', $this->access->connection->ldapUserFilter))) { + if ($newDn === $dn || !is_array($this->access->readAttribute($newDn, '', $this->access->connection->ldapUserFilter))) { return false; } $this->access->getUserMapper()->setDNbyUUID($newDn, $uuid); @@ -376,9 +371,6 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn $result = $this->userExistsOnLDAP($user); $this->access->connection->writeToCache('userExists'.$uid, $result); - if($result === true) { - $user->update(); - } return $result; } diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestAccessGroupsMatchFilter.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestAccessGroupsMatchFilter.php deleted file mode 100644 index 87c2e408424..00000000000 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestAccessGroupsMatchFilter.php +++ /dev/null @@ -1,127 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Joas Schilling <coding@schilljs.com> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCA\User_LDAP\Tests\Integration\Lib; - -use OCA\User_LDAP\Tests\Integration\AbstractIntegrationTest; - -require_once __DIR__ . '/../Bootstrap.php'; - -class IntegrationTestAccessGroupsMatchFilter extends AbstractIntegrationTest { - - /** - * prepares the LDAP environment and sets up a test configuration for - * the LDAP backend. - */ - public function init() { - require(__DIR__ . '/../setup-scripts/createExplicitUsers.php'); - require(__DIR__ . '/../setup-scripts/createExplicitGroups.php'); - require(__DIR__ . '/../setup-scripts/createExplicitGroupsDifferentOU.php'); - parent::init(); - } - - /** - * tests whether the group filter works with one specific group, while the - * input is the same. - * - * @return bool - */ - protected function case1() { - $this->connection->setConfiguration(['ldapGroupFilter' => 'cn=RedGroup']); - - $dns = ['cn=RedGroup,ou=Groups,' . $this->base]; - $result = $this->access->groupsMatchFilter($dns); - return ($dns === $result); - } - - /** - * Tests whether a filter for limited groups is effective when more existing - * groups were passed for validation. - * - * @return bool - */ - protected function case2() { - $this->connection->setConfiguration(['ldapGroupFilter' => '(|(cn=RedGroup)(cn=PurpleGroup))']); - - $dns = [ - 'cn=RedGroup,ou=Groups,' . $this->base, - 'cn=BlueGroup,ou=Groups,' . $this->base, - 'cn=PurpleGroup,ou=Groups,' . $this->base - ]; - $result = $this->access->groupsMatchFilter($dns); - - $status = - count($result) === 2 - && in_array('cn=RedGroup,ou=Groups,' . $this->base, $result) - && in_array('cn=PurpleGroup,ou=Groups,' . $this->base, $result); - - return $status; - } - - /** - * Tests whether a filter for limited groups is effective when more existing - * groups were passed for validation. - * - * @return bool - */ - protected function case3() { - $this->connection->setConfiguration(['ldapGroupFilter' => '(objectclass=groupOfNames)']); - - $dns = [ - 'cn=RedGroup,ou=Groups,' . $this->base, - 'cn=PurpleGroup,ou=Groups,' . $this->base, - 'cn=SquaredCircleGroup,ou=SpecialGroups,' . $this->base - ]; - $result = $this->access->groupsMatchFilter($dns); - - $status = - count($result) === 2 - && in_array('cn=RedGroup,ou=Groups,' . $this->base, $result) - && in_array('cn=PurpleGroup,ou=Groups,' . $this->base, $result); - - return $status; - } - - /** - * sets up the LDAP configuration to be used for the test - */ - protected function initConnection() { - parent::initConnection(); - $this->connection->setConfiguration([ - 'ldapBaseGroups' => 'ou=Groups,' . $this->base, - 'ldapUserFilter' => 'objectclass=inetOrgPerson', - 'ldapUserDisplayName' => 'displayName', - 'ldapGroupDisplayName' => 'cn', - 'ldapLoginFilter' => 'uid=%uid', - ]); - } -} - -/** @var string $host */ -/** @var int $port */ -/** @var string $adn */ -/** @var string $apwd */ -/** @var string $bdn */ -$test = new IntegrationTestAccessGroupsMatchFilter($host, $port, $adn, $apwd, $bdn); -$test->init(); -$test->run(); diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestBackupServer.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestBackupServer.php deleted file mode 100644 index 0eef5507538..00000000000 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestBackupServer.php +++ /dev/null @@ -1,124 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Joas Schilling <coding@schilljs.com> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCA\User_LDAP\Tests\Integration\Lib; - -use OC\ServerNotAvailableException; -use OCA\User_LDAP\Tests\Integration\AbstractIntegrationTest; -use OCA\User_LDAP\Mapping\UserMapping; -use OCA\User_LDAP\User_LDAP; - -require_once __DIR__ . '/../Bootstrap.php'; - -class IntegrationTestBackupServer extends AbstractIntegrationTest { - /** @var UserMapping */ - protected $mapping; - - /** @var User_LDAP */ - protected $backend; - - /** - * sets up the LDAP configuration to be used for the test - */ - protected function initConnection() { - parent::initConnection(); - $originalHost = $this->connection->ldapHost; - $originalPort = $this->connection->ldapPort; - $this->connection->setConfiguration([ - 'ldapHost' => 'qwertz.uiop', - 'ldapPort' => '32123', - 'ldap_backup_host' => $originalHost, - 'ldap_backup_port' => $originalPort, - ]); - } - - /** - * tests that a backup connection is being used when the main LDAP server - * is offline - * - * Beware: after starting docker, the LDAP host might not be ready yet, thus - * causing a false positive. Retry in that case… or increase the sleep time - * in run-test.sh - * - * @return bool - */ - protected function case1() { - try { - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return false; - } - return true; - } - - /** - * ensures that an exception is thrown if LDAP main server and LDAP backup - * server are not available - * - * @return bool - */ - protected function case2() { - // reset possible LDAP connection - $this->initConnection(); - try { - $this->connection->setConfiguration([ - 'ldap_backup_host' => 'qwertz.uiop', - 'ldap_backup_port' => '32123', - ]); - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return true; - } - return false; - } - - /** - * ensures that an exception is thrown if main LDAP server is down and a - * backup server is not given - * - * @return bool - */ - protected function case3() { - // reset possible LDAP connection - $this->initConnection(); - try { - $this->connection->setConfiguration([ - 'ldap_backup_host' => '', - 'ldap_backup_port' => '', - ]); - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return true; - } - return false; - } -} - -/** @var string $host */ -/** @var int $port */ -/** @var string $adn */ -/** @var string $apwd */ -/** @var string $bdn */ -$test = new IntegrationTestBackupServer($host, $port, $adn, $apwd, $bdn); -$test->init(); -$test->run(); diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestBatchApplyUserAttributes.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestBatchApplyUserAttributes.php deleted file mode 100644 index 24476c9a868..00000000000 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestBatchApplyUserAttributes.php +++ /dev/null @@ -1,81 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Joas Schilling <coding@schilljs.com> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCA\User_LDAP\Tests\Integration\Lib; - -use OCA\User_LDAP\Mapping\UserMapping; -use OCA\User_LDAP\Tests\Integration\AbstractIntegrationTest; - -require_once __DIR__ . '/../Bootstrap.php'; - -class IntegrationTestBatchApplyUserAttributes extends AbstractIntegrationTest { - /** @var UserMapping */ - protected $mapping; - - /** - * prepares the LDAP environment and sets up a test configuration for - * the LDAP backend. - */ - public function init() { - require(__DIR__ . '/../setup-scripts/createExplicitUsers.php'); - require(__DIR__ . '/../setup-scripts/createUsersWithoutDisplayName.php'); - parent::init(); - - $this->mapping = new UserMapping(\OC::$server->getDatabaseConnection()); - $this->mapping->clear(); - $this->access->setUserMapper($this->mapping); - } - - /** - * sets up the LDAP configuration to be used for the test - */ - protected function initConnection() { - parent::initConnection(); - $this->connection->setConfiguration([ - 'ldapUserDisplayName' => 'displayname', - ]); - } - - /** - * indirectly tests whether batchApplyUserAttributes does it job properly, - * when a user without display name is included in the result set from LDAP. - * - * @return bool - */ - protected function case1() { - $result = $this->access->fetchListOfUsers('objectclass=person', 'dn'); - // on the original issue, PHP would emit a fatal error - // – cannot catch it here, but will render the test as unsuccessful - return is_array($result) && !empty($result); - } - -} - -/** @var string $host */ -/** @var int $port */ -/** @var string $adn */ -/** @var string $apwd */ -/** @var string $bdn */ -$test = new IntegrationTestBatchApplyUserAttributes($host, $port, $adn, $apwd, $bdn); -$test->init(); -$test->run(); diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestConnect.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestConnect.php deleted file mode 100644 index f4fc0f189b4..00000000000 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestConnect.php +++ /dev/null @@ -1,172 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Joas Schilling <coding@schilljs.com> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCA\User_LDAP\Tests\Integration\Lib; - -use OC\ServerNotAvailableException; -use OCA\User_LDAP\Tests\Integration\AbstractIntegrationTest; -use OCA\User_LDAP\Mapping\UserMapping; -use OCA\User_LDAP\User_LDAP; - -require_once __DIR__ . '/../Bootstrap.php'; - -class IntegrationTestConnect extends AbstractIntegrationTest { - /** @var UserMapping */ - protected $mapping; - - /** @var User_LDAP */ - protected $backend; - - /** @var string */ - protected $host; - - /** @var int */ - protected $port; - - public function __construct($host, $port, $bind, $pwd, $base) { - // make sure host is a simple host name - if(strpos($host, '://') !== false) { - $host = substr_replace($host, '', 0, strpos($host, '://') + 3); - } - if(strpos($host, ':') !== false) { - $host = substr_replace($host, '', strpos($host, ':')); - } - $this->host = $host; - $this->port = $port; - parent::__construct($host, $port, $bind, $pwd, $base); - } - - /** - * test that a faulty host will does not connect successfully - * - * @return bool - */ - protected function case1() { - // reset possible LDAP connection - $this->initConnection(); - $this->connection->setConfiguration([ - 'ldapHost' => 'qwertz.uiop', - ]); - try { - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return true; - } - return false; - } - - /** - * tests that a connect succeeds when only a hostname is provided - * - * @return bool - */ - protected function case2() { - // reset possible LDAP connection - $this->initConnection(); - $this->connection->setConfiguration([ - 'ldapHost' => $this->host, - ]); - try { - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return false; - } - return true; - } - - /** - * tests that a connect succeeds when an LDAP URL is provided - * - * @return bool - */ - protected function case3() { - // reset possible LDAP connection - $this->initConnection(); - $this->connection->setConfiguration([ - 'ldapHost' => 'ldap://' . $this->host, - ]); - try { - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return false; - } - return true; - } - - /** - * tests that a connect succeeds when an LDAP URL with port is provided - * - * @return bool - */ - protected function case4() { - // reset possible LDAP connection - $this->initConnection(); - $this->connection->setConfiguration([ - 'ldapHost' => 'ldap://' . $this->host . ':' . $this->port, - ]); - try { - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return false; - } - return true; - } - - /** - * tests that a connect succeeds when a hostname with port is provided - * - * @return bool - */ - protected function case5() { - // reset possible LDAP connection - $this->initConnection(); - $this->connection->setConfiguration([ - 'ldapHost' => $this->host . ':' . $this->port, - ]); - try { - $this->connection->getConnectionResource(); - } catch (ServerNotAvailableException $e) { - return false; - } - return true; - } - - /** - * repeat case1, only to make sure that not a connection was reused by - * accident. - * - * @return bool - */ - protected function case6() { - return $this->case1(); - } -} - -/** @var string $host */ -/** @var int $port */ -/** @var string $adn */ -/** @var string $apwd */ -/** @var string $bdn */ -$test = new IntegrationTestConnect($host, $port, $adn, $apwd, $bdn); -$test->init(); -$test->run(); diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php index d54d001c4ad..fcb2e59b4a9 100644 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php +++ b/apps/user_ldap/tests/Integration/Lib/IntegrationTestPaging.php @@ -59,29 +59,11 @@ class IntegrationTestPaging extends AbstractIntegrationTest { } /** - * tests that paging works properly against a simple example (reading all - * of few users in small steps) - * - * @return bool - */ - protected function case1() { - $filter = 'objectclass=inetorgperson'; - $attributes = ['cn', 'dn']; - - $result = $this->access->searchUsers($filter, $attributes); - if(count($result) === 7) { - return true; - } - - return false; - } - - /** * fetch first three, afterwards all users * * @return bool */ - protected function case2() { + protected function case1() { $filter = 'objectclass=inetorgperson'; $attributes = ['cn', 'dn']; @@ -102,23 +84,6 @@ class IntegrationTestPaging extends AbstractIntegrationTest { return true; } - - /** - * reads all remaining users starting first page - * - * @return bool - */ - protected function case3() { - $filter = 'objectclass=inetorgperson'; - $attributes = ['cn', 'dn']; - - $result = $this->access->searchUsers($filter, $attributes, null, $this->pagingSize); - if(count($result) === (7 - $this->pagingSize)) { - return true; - } - - return false; - } } /** @var string $host */ diff --git a/apps/user_ldap/tests/Integration/Lib/IntegrationTestUserHome.php b/apps/user_ldap/tests/Integration/Lib/IntegrationTestUserHome.php deleted file mode 100644 index 9ee5a7efac2..00000000000 --- a/apps/user_ldap/tests/Integration/Lib/IntegrationTestUserHome.php +++ /dev/null @@ -1,186 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Joas Schilling <coding@schilljs.com> - * @author Jörn Friedrich Dreyer <jfd@butonic.de> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Vinicius Cubas Brand <vinicius@eita.org.br> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -namespace OCA\User_LDAP\Tests\Integration\Lib; - -use OCA\User_LDAP\FilesystemHelper; -use OCA\User_LDAP\LogWrapper; -use OCA\User_LDAP\User\Manager as LDAPUserManager; -use OCA\User_LDAP\Tests\Integration\AbstractIntegrationTest; -use OCA\User_LDAP\Mapping\UserMapping; -use OCA\User_LDAP\User_LDAP; -use OCP\Image; - -require_once __DIR__ . '/../Bootstrap.php'; - -class IntegrationTestUserHome extends AbstractIntegrationTest { - /** @var UserMapping */ - protected $mapping; - - /** @var User_LDAP */ - protected $backend; - - /** - * prepares the LDAP environment and sets up a test configuration for - * the LDAP backend. - */ - public function init() { - require(__DIR__ . '/../setup-scripts/createExplicitUsers.php'); - parent::init(); - - $this->mapping = new UserMapping(\OC::$server->getDatabaseConnection()); - $this->mapping->clear(); - $this->access->setUserMapper($this->mapping); - $this->backend = new User_LDAP($this->access, \OC::$server->getConfig(), \OC::$server->getNotificationManager(), \OC::$server->getUserSession(), \OC::$server->query('LDAPUserPluginManager')); - } - - /** - * sets up the LDAP configuration to be used for the test - */ - protected function initConnection() { - parent::initConnection(); - $this->connection->setConfiguration([ - 'homeFolderNamingRule' => 'homeDirectory', - ]); - } - - /** - * initializes an LDAP user manager instance - * @return LDAPUserManager - */ - protected function initUserManager() { - $this->userManager = new LDAPUserManager( - \OC::$server->getConfig(), - new FilesystemHelper(), - new LogWrapper(), - \OC::$server->getAvatarManager(), - new Image(), - \OC::$server->getDatabaseConnection(), - \OC::$server->getUserManager(), - \OC::$server->getNotificationManager() - ); - } - - /** - * homeDirectory on LDAP is empty. Return values of getHome should be - * identical to user name, following Nextcloud default. - * - * @return bool - */ - protected function case1() { - \OC::$server->getConfig()->setAppValue('user_ldap', 'enforce_home_folder_naming_rule', false); - $userManager = \OC::$server->getUserManager(); - $userManager->clearBackends(); - $userManager->registerBackend($this->backend); - $users = $userManager->search('', 5, 0); - - foreach($users as $user) { - $home = $user->getHome(); - $uid = $user->getUID(); - $posFound = strpos($home, '/' . $uid); - $posExpected = strlen($home) - (strlen($uid) + 1); - if($posFound === false || $posFound !== $posExpected) { - print('"' . $user->getUID() . '" was not found in "' . $home . '" or does not end with it.' . PHP_EOL); - return false; - } - } - - return true; - } - - /** - * homeDirectory on LDAP is empty. Having the attributes set is enforced. - * - * @return bool - */ - protected function case2() { - \OC::$server->getConfig()->setAppValue('user_ldap', 'enforce_home_folder_naming_rule', true); - $userManager = \OC::$server->getUserManager(); - // clearing backends is critical, otherwise the userManager will have - // the user objects cached and the value from case1 returned - $userManager->clearBackends(); - $userManager->registerBackend($this->backend); - $users = $userManager->search('', 5, 0); - - try { - foreach ($users as $user) { - $user->getHome(); - print('User home was retrieved without throwing an Exception!' . PHP_EOL); - return false; - } - } catch (\Exception $e) { - if(strpos($e->getMessage(), 'Home dir attribute') === 0) { - return true; - } - } - - return false; - } - - /** - * homeDirectory on LDAP is set to "attr:" which is effectively empty. - * Return values of getHome should be Nextcloud default. - * - * @return bool - */ - protected function case3() { - \OC::$server->getConfig()->setAppValue('user_ldap', 'enforce_home_folder_naming_rule', true); - $this->connection->setConfiguration([ - 'homeFolderNamingRule' => 'attr:', - ]); - $userManager = \OC::$server->getUserManager(); - $userManager->clearBackends(); - $userManager->registerBackend($this->backend); - $users = $userManager->search('', 5, 0); - - try { - foreach ($users as $user) { - $home = $user->getHome(); - $uid = $user->getUID(); - $posFound = strpos($home, '/' . $uid); - $posExpected = strlen($home) - (strlen($uid) + 1); - if ($posFound === false || $posFound !== $posExpected) { - print('"' . $user->getUID() . '" was not found in "' . $home . '" or does not end with it.' . PHP_EOL); - return false; - } - } - } catch (\Exception $e) { - print("Unexpected Exception: " . $e->getMessage() . PHP_EOL); - return false; - } - - return true; - } -} - -/** @var string $host */ -/** @var int $port */ -/** @var string $adn */ -/** @var string $apwd */ -/** @var string $bdn */ -$test = new IntegrationTestUserHome($host, $port, $adn, $apwd, $bdn); -$test->init(); -$test->run(); diff --git a/apps/user_ldap/tests/User_LDAPTest.php b/apps/user_ldap/tests/User_LDAPTest.php index 447b91decff..693159dc72b 100644 --- a/apps/user_ldap/tests/User_LDAPTest.php +++ b/apps/user_ldap/tests/User_LDAPTest.php @@ -515,13 +515,16 @@ class User_LDAPTest extends TestCase { $this->assertTrue($result); } - /** - * @expectedException \Exception - */ public function testUserExistsForDeleted() { $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager); $this->prepareMockForUserExists(); + $mapper = $this->createMock(UserMapping::class); + $mapper->expects($this->any()) + ->method('getUUIDByDN') + ->with('dnOfFormerUser,dc=test') + ->willReturn('45673458748'); + $this->access->expects($this->any()) ->method('readAttribute') ->will($this->returnCallback(function($dn) { @@ -530,13 +533,24 @@ class User_LDAPTest extends TestCase { } return false; })); + $this->access->expects($this->any()) + ->method('getUserMapper') + ->willReturn($mapper); + $this->access->expects($this->once()) + ->method('getUserDnByUuid') + ->willThrowException(new \Exception()); + + $user = $this->createMock(User::class); + $user->expects($this->any()) + ->method('getDN') + ->willReturn('dnOfFormerUser,dc=test'); $this->userManager->expects($this->atLeastOnce()) ->method('get') - ->willReturn($this->createMock(User::class)); + ->willReturn($user); //test for deleted user - $backend->userExists('formerUser'); + $this->assertFalse($backend->userExists('formerUser')); } public function testUserExistsForNeverExisting() { @@ -588,14 +602,17 @@ class User_LDAPTest extends TestCase { $this->assertTrue($result); } - /** - * @expectedException \Exception - */ public function testUserExistsPublicAPIForDeleted() { $backend = new UserLDAP($this->access, $this->config, $this->notificationManager, $this->session, $this->pluginManager); $this->prepareMockForUserExists(); \OC_User::useBackend($backend); + $mapper = $this->createMock(UserMapping::class); + $mapper->expects($this->any()) + ->method('getUUIDByDN') + ->with('dnOfFormerUser,dc=test') + ->willReturn('45673458748'); + $this->access->expects($this->any()) ->method('readAttribute') ->will($this->returnCallback(function($dn) { @@ -604,12 +621,24 @@ class User_LDAPTest extends TestCase { } return false; })); + $this->access->expects($this->any()) + ->method('getUserMapper') + ->willReturn($mapper); + $this->access->expects($this->once()) + ->method('getUserDnByUuid') + ->willThrowException(new \Exception()); + + $user = $this->createMock(User::class); + $user->expects($this->any()) + ->method('getDN') + ->willReturn('dnOfFormerUser,dc=test'); + $this->userManager->expects($this->atLeastOnce()) ->method('get') - ->willReturn($this->createMock(User::class)); + ->willReturn($user); //test for deleted user - \OC::$server->getUserManager()->userExists('formerUser'); + $this->assertFalse(\OC::$server->getUserManager()->userExists('formerUser')); } public function testUserExistsPublicAPIForNeverExisting() { @@ -762,6 +791,14 @@ class User_LDAPTest extends TestCase { return false; } })); + $this->access->connection->expects($this->any()) + ->method('getFromCache') + ->willReturnCallback(function($key) { + if($key === 'userExistsnewyorker') { + return true; + } + return null; + }); $user = $this->createMock(User::class); $user->expects($this->any()) diff --git a/apps/workflowengine/l10n/es.js b/apps/workflowengine/l10n/es.js index 3ea757d7313..4f8b7980e6d 100644 --- a/apps/workflowengine/l10n/es.js +++ b/apps/workflowengine/l10n/es.js @@ -39,6 +39,7 @@ OC.L10N.register( "Android client" : "Cliente Android", "iOS client" : "Cliente iOS", "Desktop client" : "Cliente de escritorio", + "Thunderbird & Outlook addons" : "Complementos de Thunderbird y Outlook", "User group membership" : "Pertenencia a un grupo de usuarios", "is member of" : "es miembro de", "is not member of" : "no es miembro de", diff --git a/apps/workflowengine/l10n/es.json b/apps/workflowengine/l10n/es.json index 11e14dc1371..67458458326 100644 --- a/apps/workflowengine/l10n/es.json +++ b/apps/workflowengine/l10n/es.json @@ -37,6 +37,7 @@ "Android client" : "Cliente Android", "iOS client" : "Cliente iOS", "Desktop client" : "Cliente de escritorio", + "Thunderbird & Outlook addons" : "Complementos de Thunderbird y Outlook", "User group membership" : "Pertenencia a un grupo de usuarios", "is member of" : "es miembro de", "is not member of" : "no es miembro de", diff --git a/apps/workflowengine/l10n/fr.js b/apps/workflowengine/l10n/fr.js index 2e3af87bb7e..4130141d756 100644 --- a/apps/workflowengine/l10n/fr.js +++ b/apps/workflowengine/l10n/fr.js @@ -39,6 +39,7 @@ OC.L10N.register( "Android client" : "Client Android", "iOS client" : "Client iOS", "Desktop client" : "Client de bureau", + "Thunderbird & Outlook addons" : "Modules complémentaires Thunderbird & Outlook", "User group membership" : "Membre du groupe d'utilisateur", "is member of" : "est membre de", "is not member of" : "n'est pas membre de", diff --git a/apps/workflowengine/l10n/fr.json b/apps/workflowengine/l10n/fr.json index bc8cad7661f..55a659259f3 100644 --- a/apps/workflowengine/l10n/fr.json +++ b/apps/workflowengine/l10n/fr.json @@ -37,6 +37,7 @@ "Android client" : "Client Android", "iOS client" : "Client iOS", "Desktop client" : "Client de bureau", + "Thunderbird & Outlook addons" : "Modules complémentaires Thunderbird & Outlook", "User group membership" : "Membre du groupe d'utilisateur", "is member of" : "est membre de", "is not member of" : "n'est pas membre de", diff --git a/apps/workflowengine/l10n/is.js b/apps/workflowengine/l10n/is.js index 6061f2e4f70..dae012b1ea7 100644 --- a/apps/workflowengine/l10n/is.js +++ b/apps/workflowengine/l10n/is.js @@ -39,6 +39,7 @@ OC.L10N.register( "Android client" : "Android-biðlari", "iOS client" : "iOS-biðlari", "Desktop client" : "Skjáborðsforrit", + "Thunderbird & Outlook addons" : "Thunderbird & Outlook viðbætur", "User group membership" : "Notandi er meðlimur í hópum", "is member of" : "er meðlimur í ", "is not member of" : "er ekki meðlimur í", diff --git a/apps/workflowengine/l10n/is.json b/apps/workflowengine/l10n/is.json index 3c5dbe453d8..b583570ed60 100644 --- a/apps/workflowengine/l10n/is.json +++ b/apps/workflowengine/l10n/is.json @@ -37,6 +37,7 @@ "Android client" : "Android-biðlari", "iOS client" : "iOS-biðlari", "Desktop client" : "Skjáborðsforrit", + "Thunderbird & Outlook addons" : "Thunderbird & Outlook viðbætur", "User group membership" : "Notandi er meðlimur í hópum", "is member of" : "er meðlimur í ", "is not member of" : "er ekki meðlimur í", diff --git a/apps/workflowengine/l10n/pl.js b/apps/workflowengine/l10n/pl.js index 375f6a88268..22b1693a177 100644 --- a/apps/workflowengine/l10n/pl.js +++ b/apps/workflowengine/l10n/pl.js @@ -39,6 +39,7 @@ OC.L10N.register( "Android client" : "Klient Android", "iOS client" : "Klient iOS", "Desktop client" : "Klient na komputer", + "Thunderbird & Outlook addons" : "Dodatki Thunderbird i Outlook", "User group membership" : "Członkostwo grupy użytkownika", "is member of" : "jest członkiem w", "is not member of" : "nie jest członkiem w", diff --git a/apps/workflowengine/l10n/pl.json b/apps/workflowengine/l10n/pl.json index 735d712da4a..d80b7ee3d87 100644 --- a/apps/workflowengine/l10n/pl.json +++ b/apps/workflowengine/l10n/pl.json @@ -37,6 +37,7 @@ "Android client" : "Klient Android", "iOS client" : "Klient iOS", "Desktop client" : "Klient na komputer", + "Thunderbird & Outlook addons" : "Dodatki Thunderbird i Outlook", "User group membership" : "Członkostwo grupy użytkownika", "is member of" : "jest członkiem w", "is not member of" : "nie jest członkiem w", diff --git a/apps/workflowengine/l10n/ru.js b/apps/workflowengine/l10n/ru.js index e7b035b7402..47ecbaba9e4 100644 --- a/apps/workflowengine/l10n/ru.js +++ b/apps/workflowengine/l10n/ru.js @@ -39,6 +39,7 @@ OC.L10N.register( "Android client" : "клиент для Android", "iOS client" : "клиент для iOS", "Desktop client" : "клиент для ПК", + "Thunderbird & Outlook addons" : "Дополнения для Thunderbird и Outlook", "User group membership" : "Участие в группе пользователей", "is member of" : "является участником", "is not member of" : "не является участником", diff --git a/apps/workflowengine/l10n/ru.json b/apps/workflowengine/l10n/ru.json index d3c5dff332e..2c548ebdb8d 100644 --- a/apps/workflowengine/l10n/ru.json +++ b/apps/workflowengine/l10n/ru.json @@ -37,6 +37,7 @@ "Android client" : "клиент для Android", "iOS client" : "клиент для iOS", "Desktop client" : "клиент для ПК", + "Thunderbird & Outlook addons" : "Дополнения для Thunderbird и Outlook", "User group membership" : "Участие в группе пользователей", "is member of" : "является участником", "is not member of" : "не является участником", diff --git a/apps/workflowengine/l10n/sr.js b/apps/workflowengine/l10n/sr.js index 9e89a23d3b6..f9832e936c5 100644 --- a/apps/workflowengine/l10n/sr.js +++ b/apps/workflowengine/l10n/sr.js @@ -39,6 +39,7 @@ OC.L10N.register( "Android client" : "Андроид клијент", "iOS client" : "iOS клијент", "Desktop client" : "Десктоп клијент", + "Thunderbird & Outlook addons" : "Додаци за Thunderbird & Outlook", "User group membership" : "Припадност групи", "is member of" : "је члан групе", "is not member of" : "није члан групе", diff --git a/apps/workflowengine/l10n/sr.json b/apps/workflowengine/l10n/sr.json index 9fdd4bd2cf0..ae93b8f64e7 100644 --- a/apps/workflowengine/l10n/sr.json +++ b/apps/workflowengine/l10n/sr.json @@ -37,6 +37,7 @@ "Android client" : "Андроид клијент", "iOS client" : "iOS клијент", "Desktop client" : "Десктоп клијент", + "Thunderbird & Outlook addons" : "Додаци за Thunderbird & Outlook", "User group membership" : "Припадност групи", "is member of" : "је члан групе", "is not member of" : "није члан групе", diff --git a/build/integration/composer.json b/build/integration/composer.json index 61075d3a828..7061d8dbde9 100644 --- a/build/integration/composer.json +++ b/build/integration/composer.json @@ -1,7 +1,7 @@ { "require-dev": { "phpunit/phpunit": "~6.5", - "behat/behat": "~3.3.0", + "behat/behat": "~3.5.0", "guzzlehttp/guzzle": "6.3.3", "jarnaiz/behat-junit-formatter": "^1.3", "sabre/dav": "3.2.2" diff --git a/build/integration/features/bootstrap/BasicStructure.php b/build/integration/features/bootstrap/BasicStructure.php index 32e02bad2a3..f6c93aa5174 100644 --- a/build/integration/features/bootstrap/BasicStructure.php +++ b/build/integration/features/bootstrap/BasicStructure.php @@ -497,4 +497,11 @@ trait BasicStructure { $file->isDir() ? rmdir($file) : unlink($file); } } + + /** + * @Given /^cookies are reset$/ + */ + public function cookiesAreReset() { + $this->cookieJar = new CookieJar(); + } } diff --git a/build/integration/features/bootstrap/LDAPContext.php b/build/integration/features/bootstrap/LDAPContext.php index e2b30011515..ee7acab6f5f 100644 --- a/build/integration/features/bootstrap/LDAPContext.php +++ b/build/integration/features/bootstrap/LDAPContext.php @@ -32,6 +32,14 @@ class LDAPContext implements Context { protected $apiUrl; + /** @AfterScenario */ + public function teardown() { + if($this->configID === null) { + return; + } + $this->sendingTo('DELETE', $this->apiUrl . '/' . $this->configID); + } + /** * @Given /^the response should contain a tag "([^"]*)"$/ */ @@ -82,4 +90,110 @@ class LDAPContext implements Context { public function settingTheLDAPConfigurationTo(TableNode $configData) { $this->sendingToWith('PUT', $this->apiUrl . '/' . $this->configID, $configData); } + + /** + * @Given /^having a valid LDAP configuration$/ + */ + public function havingAValidLDAPConfiguration() { + $this->asAn('admin'); + $this->creatingAnLDAPConfigurationAt('/apps/user_ldap/api/v1/config'); + $data = new TableNode([ + ['configData[ldapHost]', 'openldap'], + ['configData[ldapPort]', '389'], + ['configData[ldapBase]', 'dc=nextcloud,dc=ci'], + ['configData[ldapAgentName]', 'cn=admin,dc=nextcloud,dc=ci'], + ['configData[ldapAgentPassword]', 'admin'], + ['configData[ldapUserFilter]', '(&(objectclass=inetorgperson))'], + ['configData[ldapLoginFilter]', '(&(objectclass=inetorgperson)(uid=%uid))'], + ['configData[ldapUserDisplayName]', 'displayname'], + ['configData[ldapGroupDisplayName]', 'cn'], + ['configData[ldapEmailAttribute]', 'mail'], + ['configData[ldapConfigurationActive]', '1'], + ]); + $this->settingTheLDAPConfigurationTo($data); + $this->asAn(''); + } + + /** + * @Given /^looking up details for the first result matches expectations$/ + * @param TableNode $expectations + */ + public function lookingUpDetailsForTheFirstResult(TableNode $expectations) { + $userResultElements = simplexml_load_string($this->response->getBody())->data[0]->users[0]->element; + $userResults = json_decode(json_encode($userResultElements), 1); + $userId = array_shift($userResults); + + $this->sendingTo('GET', '/cloud/users/' . $userId); + $this->theRecordFieldsShouldMatch($expectations); + } + + /** + * @Given /^modify LDAP configuration$/ + */ + public function modifyLDAPConfiguration(TableNode $table) { + $originalAsAn = $this->currentUser; + $this->asAn('admin'); + $configData = $table->getRows(); + foreach($configData as &$row) { + $row[0] = 'configData[' . $row[0] . ']'; + } + $this->settingTheLDAPConfigurationTo(new TableNode($configData)); + $this->asAn($originalAsAn); + } + + /** + * @Given /^the "([^"]*)" result should match$/ + */ + public function theGroupResultShouldMatch(string $type, TableNode $expectations) { + $listReturnedElements = simplexml_load_string($this->response->getBody())->data[0]->$type[0]->element; + $extractedIDsArray = json_decode(json_encode($listReturnedElements), 1); + foreach($expectations->getRows() as $expectation) { + if((int)$expectation[1] === 1) { + Assert::assertContains($expectation[0], $extractedIDsArray); + } else { + Assert::assertNotContains($expectation[0], $extractedIDsArray); + } + } + } + + /** + * @Given /^Expect ServerException on failed web login as "([^"]*)"$/ + */ + public function expectServerExceptionOnFailedWebLoginAs($login) { + try { + $this->loggingInUsingWebAs($login); + } catch (\GuzzleHttp\Exception\ServerException $e) { + Assert::assertEquals(500, $e->getResponse()->getStatusCode()); + return; + } + Assert::assertTrue(false, 'expected Exception not received'); + } + + /** + * @Given /^the "([^"]*)" result should contain "([^"]*)" of$/ + */ + public function theResultShouldContainOf($type, $expectedCount, TableNode $expectations) { + $listReturnedElements = simplexml_load_string($this->response->getBody())->data[0]->$type[0]->element; + $extractedIDsArray = json_decode(json_encode($listReturnedElements), 1); + $uidsFound = 0; + foreach($expectations->getRows() as $expectation) { + if(in_array($expectation[0], $extractedIDsArray)) { + $uidsFound++; + } + } + Assert::assertSame((int)$expectedCount, $uidsFound); + } + + /** + * @Given /^the record's fields should match$/ + */ + public function theRecordFieldsShouldMatch(TableNode $expectations) { + foreach($expectations->getRowsHash() as $k => $v) { + $value = (string)simplexml_load_string($this->response->getBody())->data[0]->$k; + Assert::assertEquals($v, $value, "got $value"); + } + + $backend = (string)simplexml_load_string($this->response->getBody())->data[0]->backend; + Assert::assertEquals('LDAP', $backend); + } } diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index 8e65f4c1a0e..10b4c1bc005 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -342,6 +342,7 @@ Feature: provisioning | theming | | twofactor_backupcodes | | updatenotification | + | user_ldap | | workflowengine | | files_external | | oauth2 | diff --git a/build/integration/ldap_features/ldap-openldap.feature b/build/integration/ldap_features/ldap-openldap.feature new file mode 100644 index 00000000000..4c507e74595 --- /dev/null +++ b/build/integration/ldap_features/ldap-openldap.feature @@ -0,0 +1,104 @@ +Feature: LDAP + Background: + Given using api version "2" + And having a valid LDAP configuration + + Scenario: Test valid configuration by logging in + Given Logging in using web as "alice" + And Sending a "GET" to "/remote.php/webdav/welcome.txt" with requesttoken + Then the HTTP status code should be "200" + + Scenario: Test valid configuration with port in the hostname by logging in + Given modify LDAP configuration + | ldapHost | openldap:389 | + And cookies are reset + And Logging in using web as "alice" + And Sending a "GET" to "/remote.php/webdav/welcome.txt" with requesttoken + Then the HTTP status code should be "200" + + Scenario: Test valid configuration with LDAP protocol by logging in + Given modify LDAP configuration + | ldapHost | ldap://openldap | + And cookies are reset + And Logging in using web as "alice" + And Sending a "GET" to "/remote.php/webdav/welcome.txt" with requesttoken + Then the HTTP status code should be "200" + + Scenario: Test valid configuration with LDAP protoccol and port by logging in + Given modify LDAP configuration + | ldapHost | ldap://openldap:389 | + And cookies are reset + And Logging in using web as "alice" + And Sending a "GET" to "/remote.php/webdav/welcome.txt" with requesttoken + Then the HTTP status code should be "200" + + Scenario: Look for a known LDAP user + Given As an "admin" + And sending "GET" to "/cloud/users?search=alice" + Then the OCS status code should be "200" + And looking up details for the first result matches expectations + | email | alice@nextcloud.ci | + | displayname | Alice | + + Scenario: Test group filter with one specific group + Given modify LDAP configuration + | ldapGroupFilter | cn=RedGroup | + | ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci | + And As an "admin" + And sending "GET" to "/cloud/groups" + Then the OCS status code should be "200" + And the "groups" result should match + | RedGroup | 1 | + | GreenGroup | 0 | + | BlueGroup | 0 | + | PurpleGroup | 0 | + + Scenario: Test group filter with two specific groups + Given modify LDAP configuration + | ldapGroupFilter | (\|(cn=RedGroup)(cn=GreenGroup)) | + | ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci | + And As an "admin" + And sending "GET" to "/cloud/groups" + Then the OCS status code should be "200" + And the "groups" result should match + | RedGroup | 1 | + | GreenGroup | 1 | + | BlueGroup | 0 | + | PurpleGroup | 0 | + + Scenario: Test group filter ruling out a group from a different base + Given modify LDAP configuration + | ldapGroupFilter | (objectClass=groupOfNames) | + | ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci | + And As an "admin" + And sending "GET" to "/cloud/groups" + Then the OCS status code should be "200" + And the "groups" result should match + | RedGroup | 1 | + | GreenGroup | 1 | + | BlueGroup | 1 | + | PurpleGroup | 1 | + | SquareGroup | 0 | + + Scenario: Test backup server + Given modify LDAP configuration + | ldapBackupHost | openldap | + | ldapBackupPort | 389 | + | ldapHost | foo.bar | + | ldapPort | 2456 | + And Logging in using web as "alice" + Then the HTTP status code should be "200" + + Scenario: Test backup server offline + Given modify LDAP configuration + | ldapBackupHost | off.line | + | ldapBackupPort | 3892 | + | ldapHost | foo.bar | + | ldapPort | 2456 | + Then Expect ServerException on failed web login as "alice" + + Scenario: Test LDAP server offline, no backup server + Given modify LDAP configuration + | ldapHost | foo.bar | + | ldapPort | 2456 | + Then Expect ServerException on failed web login as "alice" diff --git a/build/integration/ldap_features/openldap-uid-username.feature b/build/integration/ldap_features/openldap-uid-username.feature new file mode 100644 index 00000000000..d267870ca26 --- /dev/null +++ b/build/integration/ldap_features/openldap-uid-username.feature @@ -0,0 +1,88 @@ +Feature: LDAP + Background: + Given using api version "2" + And having a valid LDAP configuration + And modify LDAP configuration + | ldapExpertUsernameAttr | uid | + + Scenario: Look for a expected LDAP users + Given As an "admin" + And sending "GET" to "/cloud/users" + Then the OCS status code should be "200" + And the "users" result should match + | alice | 1 | + | elisa | 1 | + | ghost | 0 | + + Scenario: check default home of an LDAP user + Given As an "admin" + And sending "GET" to "/cloud/users/alice" + Then the OCS status code should be "200" + And the record's fields should match + | storageLocation | /dev/shm/nc_int/alice | + + Scenario: check custom relative home of an LDAP user + Given modify LDAP configuration + | homeFolderNamingRule | sn | + And As an "admin" + And sending "GET" to "/cloud/users/alice" + Then the OCS status code should be "200" + And the record's fields should match + | storageLocation | /dev/shm/nc_int/Alfgeirdottir | + + Scenario: check custom absolute home of an LDAP user + Given modify LDAP configuration + | homeFolderNamingRule | roomNumber | + And As an "admin" + And sending "GET" to "/cloud/users/elisa" + Then the OCS status code should be "200" + And the record's fields should match + | storageLocation | /dev/shm/elisa-data | + + Scenario: Fetch all users, invoking pagination + Given modify LDAP configuration + | ldapBaseUsers | ou=PagingTest,dc=nextcloud,dc=ci | + | ldapPagingSize | 2 | + And As an "admin" + And sending "GET" to "/cloud/users" + Then the OCS status code should be "200" + And the "users" result should match + | ebba | 1 | + | eindis | 1 | + | fjolnir | 1 | + | gunna | 1 | + | juliana | 1 | + | leo | 1 | + | stigur | 1 | + + Scenario: Fetch all users, invoking pagination + Given modify LDAP configuration + | ldapBaseUsers | ou=PagingTest,dc=nextcloud,dc=ci | + | ldapPagingSize | 2 | + And As an "admin" + And sending "GET" to "/cloud/users?limit=10" + Then the OCS status code should be "200" + And the "users" result should match + | ebba | 1 | + | eindis | 1 | + | fjolnir | 1 | + | gunna | 1 | + | juliana | 1 | + | leo | 1 | + | stigur | 1 | + + Scenario: Fetch from second batch of all users, invoking pagination + Given modify LDAP configuration + | ldapBaseUsers | ou=PagingTest,dc=nextcloud,dc=ci | + | ldapPagingSize | 2 | + And As an "admin" + And sending "GET" to "/cloud/users?limit=10&offset=2" + Then the OCS status code should be "200" + And the "users" result should contain "5" of + | ebba | + | eindis | + | fjolnir | + | gunna | + | juliana | + | leo | + | stigur | diff --git a/build/integration/run.sh b/build/integration/run.sh index b747bb52c6b..56f4ee7b07d 100755 --- a/build/integration/run.sh +++ b/build/integration/run.sh @@ -22,6 +22,7 @@ else exit 1 fi fi +NC_DATADIR=$($OCC config:system:get datadirectory) composer install @@ -48,6 +49,7 @@ if [ "$INSTALLED" == "true" ]; then #Enable external storage app $OCC app:enable files_external + $OCC app:enable user_ldap mkdir -p work/local_storage OUTPUT_CREATE_STORAGE=`$OCC files_external:create local_storage local null::null -c datadir=$PWD/work/local_storage` @@ -70,10 +72,11 @@ if [ "$INSTALLED" == "true" ]; then #Disable external storage app $OCC app:disable files_external + $OCC app:disable user_ldap fi if [ -z $HIDE_OC_LOGS ]; then - tail "${OC_PATH}/data/nextcloud.log" + tail "${NC_DATADIR}/nextcloud.log" fi echo "runsh: Exit code: $RESULT" diff --git a/build/signed-off-checker.php b/build/signed-off-checker.php index f21854a83d1..32deceb47b7 100644 --- a/build/signed-off-checker.php +++ b/build/signed-off-checker.php @@ -60,9 +60,9 @@ if(!is_string($githubToken) || $githubToken === '') { $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); -curl_setopt($ch, CURLOPT_URL, 'https://api.github.com/repos/'.$repoOwner.'/'.$repoName.'/pulls/'.$pullRequestNumber.'/commits'); +curl_setopt($ch, CURLOPT_URL, 'https://api.github.com/repos/' . $repoOwner . '/' . $repoName . '/pulls/' . $pullRequestNumber . '/commits'); curl_setopt($ch, CURLOPT_USERAGENT, 'CI for Nextcloud (https://github.com/nextcloud/server)'); -curl_setopt($ch, CURLOPT_HTTPHEADER, 'Authorization: token ' . $githubToken); +curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: token ' . $githubToken]); $response = curl_exec($ch); curl_close($ch); diff --git a/config/config.sample.php b/config/config.sample.php index 4f97034970d..8677ef1bcf3 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -811,11 +811,11 @@ $CONFIG = array( * This section is for configuring the download links for Nextcloud clients, as * seen in the first-run wizard and on Personal pages. * - * Defaults to - * * Desktop client: ``https://nextcloud.com/install/#install-clients`` - * * Android client: ``https://play.google.com/store/apps/details?id=com.nextcloud.client`` - * * iOS client: ``https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8`` - * *iOS client app id: ``1125420102`` + * Defaults to: + * - Desktop client: ``https://nextcloud.com/install/#install-clients`` + * - Android client: ``https://play.google.com/store/apps/details?id=com.nextcloud.client`` + * - iOS client: ``https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8`` + * - iOS client app id: ``1125420102`` */ 'customclient_desktop' => 'https://nextcloud.com/install/#install-clients', @@ -952,6 +952,7 @@ $CONFIG = array( * * - OC\Preview\BMP * - OC\Preview\GIF + * - OC\Preview\HEIC * - OC\Preview\JPEG * - OC\Preview\MarkDown * - OC\Preview\MP3 @@ -963,6 +964,7 @@ $CONFIG = array( 'OC\Preview\PNG', 'OC\Preview\JPEG', 'OC\Preview\GIF', + 'OC\Preview\HEIC', 'OC\Preview\BMP', 'OC\Preview\XBitmap', 'OC\Preview\MP3', @@ -1632,4 +1634,11 @@ $CONFIG = array( '/^Microsoft-WebDAV-MiniRedir/', // Windows webdav drive ), +/** + * By default there is on public pages a link shown that allows users to + * learn about the "simple sign up" - see https://nextcloud.com/signup/ + * + * If this is set to "false" it will not show the link. + */ +'simpleSignUpLink.shown' => true, ); diff --git a/console.php b/console.php index 67856a17b3b..1d5021edef0 100644 --- a/console.php +++ b/console.php @@ -85,7 +85,13 @@ try { echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL; } - $application = new Application(\OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest(), \OC::$server->getLogger()); + $application = new Application( + \OC::$server->getConfig(), + \OC::$server->getEventDispatcher(), + \OC::$server->getRequest(), + \OC::$server->getLogger(), + \OC::$server->query(\OC\MemoryInfo::class) + ); $application->loadCommands(new ArgvInput(), new ConsoleOutput()); $application->run(); } catch (Exception $ex) { diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 50d58a9ea16..f3af3e0e6d2 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -55,7 +55,6 @@ class {{classname}} extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @since 13.0.0 */ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { } @@ -65,7 +64,6 @@ class {{classname}} extends SimpleMigrationStep { * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper - * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { {{schemabody}} @@ -75,7 +73,6 @@ class {{classname}} extends SimpleMigrationStep { * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @since 13.0.0 */ public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { } diff --git a/core/Command/Group/Add.php b/core/Command/Group/Add.php new file mode 100644 index 00000000000..61253cf163d --- /dev/null +++ b/core/Command/Group/Add.php @@ -0,0 +1,67 @@ +<?php +declare(strict_types=1); +/** + * @copyright Copyright (c) 2018 Denis Mosolov <denismosolov@gmail.com> + * + * @author Denis Mosolov <denismosolov@gmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OC\Core\Command\Group; + +use OC\Core\Command\Base; +use OCP\IGroupManager; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Add extends Base { + /** @var IGroupManager */ + protected $groupManager; + + /** + * @param IGroupManager $groupManager + */ + public function __construct(IGroupManager $groupManager) { + $this->groupManager = $groupManager; + parent::__construct(); + } + + protected function configure() { + $this + ->setName('group:add') + ->setDescription('Add a group') + ->addArgument( + 'groupid', + InputArgument::REQUIRED, + 'Group name' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $gid = $input->getArgument('groupid'); + $group = $this->groupManager->get($gid); + if ($group) { + $output->writeln('<error>Group "' . $gid . '" already exists.</error>'); + return 1; + } else { + $group = $this->groupManager->createGroup($gid); + $output->writeln('Created group "' . $group->getGID() . '"'); + } + } +} diff --git a/core/Command/Group/Delete.php b/core/Command/Group/Delete.php new file mode 100644 index 00000000000..a4b630a6387 --- /dev/null +++ b/core/Command/Group/Delete.php @@ -0,0 +1,74 @@ +<?php +declare(strict_types=1); +/** + * @copyright Copyright (c) 2018 Denis Mosolov <denismosolov@gmail.com> + * + * @author Denis Mosolov <denismosolov@gmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OC\Core\Command\Group; + +use OC\Core\Command\Base; +use OCP\IGroupManager; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Delete extends Base { + /** @var IGroupManager */ + protected $groupManager; + + /** + * @param IGroupManager $groupManager + */ + public function __construct(IGroupManager $groupManager) { + $this->groupManager = $groupManager; + parent::__construct(); + } + + protected function configure() { + $this + ->setName('group:delete') + ->setDescription('Remove a group') + ->addArgument( + 'groupid', + InputArgument::REQUIRED, + 'Group name' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $gid = $input->getArgument('groupid'); + if ($gid === 'admin') { + $output->writeln('<error>Group "' . $gid . '" could not be deleted.</error>'); + return 1; + } + if (! $this->groupManager->groupExists($gid)) { + $output->writeln('<error>Group "' . $gid . '" does not exist.</error>'); + return 1; + } + $group = $this->groupManager->get($gid); + if ($group->delete()) { + $output->writeln('Group "' . $gid . '" was removed'); + } else { + $output->writeln('<error>Group "' . $gid . '" could not be deleted. Please check the logs.</error>'); + return 1; + } + } +} diff --git a/core/Controller/LostController.php b/core/Controller/LostController.php index d0ed432f03f..eacd5847c6c 100644 --- a/core/Controller/LostController.php +++ b/core/Controller/LostController.php @@ -37,6 +37,7 @@ use OCP\AppFramework\Http\JSONResponse; use \OCP\AppFramework\Http\TemplateResponse; use OCP\AppFramework\Utility\ITimeFactory; use OCP\Defaults; +use OCP\Encryption\IEncryptionModule; use OCP\Encryption\IManager; use \OCP\IURLGenerator; use \OCP\IRequest; @@ -260,7 +261,15 @@ class LostController extends Controller { } if ($this->encryptionManager->isEnabled() && !$proceed) { - return $this->error('', array('encryption' => true)); + $encryptionModules = $this->encryptionManager->getEncryptionModules(); + foreach ($encryptionModules as $module) { + /** @var IEncryptionModule $instance */ + $instance = call_user_func($module['callback']); + // this way we can find out whether per-user keys are used or a system wide encryption key + if ($instance->needDetailedAccessList()) { + return $this->error('', array('encryption' => true)); + } + } } try { diff --git a/core/css/apps.scss b/core/css/apps.scss index d17cf9140c8..1120459230a 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -639,7 +639,7 @@ kbd { min-width: $sidebar-min-width; max-width: $sidebar-max-width; display: block; - position: sticky; + @include position('sticky'); top: $header-height; right:0; overflow-y: auto; @@ -879,6 +879,10 @@ $popovericon-size: 16px; display: block; } + &.contactsmenu-popover { + margin: 0; + } + ul { /* Overwrite #app-navigation > ul ul */ display: flex !important; @@ -1042,7 +1046,7 @@ $popovericon-size: 16px; /* CONTENT LIST ------------------------------------------------------------ */ .app-content-list { width: 300px; - position: sticky; + @include position('sticky'); top: $header-height; border-right: 1px solid var(--color-border); display: flex; diff --git a/core/css/functions.scss b/core/css/functions.scss index 30075df7f58..0815ba29ab6 100644 --- a/core/css/functions.scss +++ b/core/css/functions.scss @@ -59,4 +59,13 @@ .icon-#{$icon}.icon-white { @include icon-color($icon, $dir, $color-white, $version, $core); } -}
\ No newline at end of file +} + +@mixin position($value) { + @if $value == 'sticky' { + position: -webkit-sticky; // Safari support + position: sticky; + } @else { + position: $value; + } +} diff --git a/core/css/header.scss b/core/css/header.scss index b66c740c8fe..52a179cc5cb 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -70,7 +70,8 @@ #header { /* Header menu */ - .menu { + .header-left > nav > .menu, + .header-right > div > .menu { background-color: var(--color-main-background); filter: drop-shadow(0 1px 5px var(--color-box-shadow)); border-radius: 0 0 3px 3px; @@ -228,6 +229,7 @@ nav[role='navigation'] { width: $header-height; height: $header-height; margin-left: -$header-height; + position: relative; } .header-left #navigation { @@ -398,13 +400,14 @@ nav[role='navigation'] { display: block; } } + + #expanddiv:after { + right: 22px; + } } /* Settings menu */ #expanddiv { - &.menu { - right: 17px; - } a { display: inline-flex; align-items: center; @@ -438,6 +441,7 @@ nav[role='navigation'] { #appmenu { display: inline-flex; min-width: $header-height; + z-index: 2; li { position: relative; @@ -454,6 +458,7 @@ nav[role='navigation'] { opacity: .6; } } + .app-loading { > svg { display: none; @@ -554,6 +559,10 @@ nav[role='navigation'] { li.hidden { display: none; } + + #more-apps { + z-index: 3; + } } /* Skip navigation links – show only on keyboard focus */ diff --git a/core/css/jquery-ui-fixes.scss b/core/css/jquery-ui-fixes.scss index 8ee7412af3c..e30beee44e5 100644 --- a/core/css/jquery-ui-fixes.scss +++ b/core/css/jquery-ui-fixes.scss @@ -173,6 +173,7 @@ .ui-menu-item a { &.ui-state-focus, &.ui-state-active { font-weight: inherit; + box-shadow: inset 4px 0 var(--color-primary); } } } @@ -184,15 +185,25 @@ &.ui-corner-all { border-radius: 0; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; + border-bottom-left-radius: var(--border-radius); + border-bottom-right-radius: var(--border-radius); } - .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { + .ui-state-hover, .ui-widget-content .ui-state-hover, + .ui-widget-header .ui-state-hover, + .ui-state-focus, + .ui-widget-content .ui-state-focus, + .ui-widget-header .ui-state-focus { border: 1px solid transparent; background: inherit; color: var(--color-primary-element); } + + .ui-menu-item { + a { + border-radius: 0 !important; + } + } } .ui-button.primary { diff --git a/core/css/jquery.ocdialog.scss b/core/css/jquery.ocdialog.scss index 0a6e99ddb4f..0a0222497bc 100644 --- a/core/css/jquery.ocdialog.scss +++ b/core/css/jquery.ocdialog.scss @@ -21,7 +21,7 @@ } .oc-dialog-buttonrow { position: relative; - display: block; + display: flex; background: transparent; right: 0; bottom: 0; @@ -32,24 +32,15 @@ background-image: linear-gradient(rgba(255, 255, 255, 0.0), var(--color-main-background)); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; - clear: both; - button { - display: inline-block; + + &.twobuttons { + justify-content: space-between; } -} -/* align primary button to right, other buttons to left */ -.oc-dialog-buttonrow.twobuttons button:nth-child(1) { - float: left; -} -.oc-dialog-buttonrow.twobuttons.aside button:nth-child(1) { - float: none; -} -.oc-dialog-buttonrow.twobuttons button:nth-child(2) { - float: right; -} -.oc-dialog-buttonrow.onebutton button { - float: right; + &.onebutton, + &.twobuttons.aside { + justify-content: flex-end; + } } .oc-dialog-close { diff --git a/core/css/public.scss b/core/css/public.scss index 0c04b07ab09..cac98f23f92 100644 --- a/core/css/public.scss +++ b/core/css/public.scss @@ -1,3 +1,5 @@ +$footer-height: 65px; + #body-public { .header-right { @@ -36,8 +38,9 @@ } #content { - height: initial; - min-height: calc(100vh - 160px); + // 100% - footer + min-height: calc(100% - #{$footer-height}); + } /** don't apply content header padding on the base layout */ @@ -64,4 +67,24 @@ form input[type='checkbox']+label { text-align: center; } + + /* public footer */ + footer { + position: relative; + display: flex; + align-items: center; + justify-content: center; + height: $footer-height; + flex-direction: column; + p { + text-align: center; + color: var(--color-text-lighter); + a { + color: var(--color-text-lighter); + font-weight: 600; + padding: 13px; + margin: -13px; + } + } + } } diff --git a/core/css/styles.scss b/core/css/styles.scss index ad82a7acbf7..6a72df0e177 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -163,8 +163,7 @@ body { #controls { box-sizing: border-box; - position: -webkit-sticky; - position: sticky; + @include position('sticky'); height: 44px; padding: 0; margin: 0; @@ -601,6 +600,7 @@ code { margin-top: 10px !important; width: auto !important; border-radius: var(--border-radius); + z-index: 1600 !important; .ui-widget-content { border: none !important; @@ -1049,25 +1049,6 @@ div.crumb { } } -/* public footer */ - -#body-public footer { - position: relative; - text-align: center; - .info { - color: var(--color-text-lighter); - text-align: center; - margin: 0 auto; - padding: 20px 0; - a { - color: var(--color-text-lighter); - font-weight: 600; - padding: 13px; - margin: -13px; - } - } -} - /* LEGACY FIX only - do not use fieldsets for settings */ fieldset { diff --git a/core/css/whatsnew.scss b/core/css/whatsnew.scss index e13cdf86256..99d99ded691 100644 --- a/core/css/whatsnew.scss +++ b/core/css/whatsnew.scss @@ -9,6 +9,7 @@ bottom: 35px !important; left: 15px !important; width: 270px; + z-index: 700; } .whatsNewPopover p { diff --git a/core/js/jquery.contactsmenu.js b/core/js/jquery.contactsmenu.js index 1ea9f732f79..e3f24dfff52 100644 --- a/core/js/jquery.contactsmenu.js +++ b/core/js/jquery.contactsmenu.js @@ -15,7 +15,7 @@ + '</li>'; var LIST = '' - + '<div class="menu popovermenu bubble hidden contactsmenu-popover">' + + '<div class="menu popovermenu menu-left hidden contactsmenu-popover">' + ' <ul>' + ' <li>' + ' <a>' diff --git a/core/js/js.js b/core/js/js.js index 2812cba988c..a4de1c3dbf6 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -684,7 +684,12 @@ var OCP = {}, registerMenu: function($toggle, $menuEl, toggle, headerMenu) { var self = this; $menuEl.addClass('menu'); - $toggle.on('click.menu keyup.menu', function(event) { + + // On link, the enter key trigger a click event + // Only use the click to avoid two fired events + $toggle.on($toggle.prop('tagName') === 'A' + ? 'click.menu' + : 'click.menu keyup.menu', function(event) { // prevent the link event (append anchor to URL) event.preventDefault(); @@ -1452,7 +1457,7 @@ function initCore() { function setupMainMenu() { // init the more-apps menu - OC.registerMenu($('#more-apps'), $('#navigation')); + OC.registerMenu($('#more-apps > a'), $('#navigation')); // toggle the navigation var $toggle = $('#header .header-appname-container'); diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 93072981e99..628606a9e5b 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -316,6 +316,32 @@ type: OC.SetupChecks.MESSAGE_TYPE_WARNING }); } + if (!data.isMemoryLimitSufficient) { + messages.push({ + msg: t( + 'core', + 'The PHP memory limit is below the recommended value of 512MB.' + ), + type: OC.SetupChecks.MESSAGE_TYPE_WARNING + }) + } + + if(data.appDirsWithDifferentOwner && data.appDirsWithDifferentOwner.length > 0) { + var appDirsWithDifferentOwner = data.appDirsWithDifferentOwner.reduce( + function(appDirsWithDifferentOwner, directory) { + return appDirsWithDifferentOwner + '<li>' + directory + '</li>'; + }, + '' + ); + messages.push({ + msg: t('core', 'Some app directories are owned by a different user than the web server one. ' + + 'This may be the case if apps have been installed manually. ' + + 'Check the permissions of the following app directories:') + + '<ul>' + appDirsWithDifferentOwner + '</ul>', + type: OC.SetupChecks.MESSAGE_TYPE_WARNING + }); + } + } else { messages.push({ msg: t('core', 'Error occurred while checking server setup'), diff --git a/core/js/sharedialoglinkshareview.js b/core/js/sharedialoglinkshareview.js index 0b2fec5588e..736404e2681 100644 --- a/core/js/sharedialoglinkshareview.js +++ b/core/js/sharedialoglinkshareview.js @@ -30,9 +30,13 @@ ' <input id="linkCheckbox-{{cid}}" {{#if isLinkShare}}checked="checked"{{/if}} type="checkbox" name="linkCheckbox" class="linkCheckbox permissions checkbox">' + ' <label for="linkCheckbox-{{cid}}">{{linkShareEnableLabel}}</label>' + ' </span>' + - ' {{#if isLinkShare}}' + + ' {{#if showMenu}}' + ' <div class="share-menu" tabindex="0"><span class="icon icon-more"></span>' + - ' {{{popoverMenu}}}' + + ' {{#if showPending}}' + + ' {{{pendingPopoverMenu}}}' + + ' {{else}}' + + ' {{{popoverMenu}}}' + + ' {{/if}}' + ' </div>' + ' {{/if}}' + ' </span>' + @@ -83,7 +87,8 @@ '{{/if}}' + '{{#if showPasswordCheckBox}}' + ' <li><span class="shareOption menuitem">' + - ' <input type="checkbox" name="showPassword" id="showPassword-{{cid}}" class="checkbox showPasswordCheckbox" {{#if isPasswordSet}}checked="checked"{{/if}} value="1" />' + + ' <input type="checkbox" name="showPassword" id="showPassword-{{cid}}" class="checkbox showPasswordCheckbox"' + + ' {{#if isPasswordSet}}checked="checked"{{/if}} {{#if isPasswordEnforced}}disabled="disabled"{{/if}} value="1" />' + ' <label for="showPassword-{{cid}}">{{enablePasswordLabel}}</label>' + ' </span></li>' + ' <li class="{{#unless isPasswordSet}}hidden{{/unless}} linkPassMenu"><span class="shareOption menuitem icon-share-pass">' + @@ -92,16 +97,17 @@ ' </span></li>' + '{{/if}}' + '<li>' + - '<span class="shareOption menuitem">' + - '<input id="expireDate-{{cid}}" type="checkbox" name="expirationDate" class="expireDate checkbox" {{#if hasExpireDate}}checked="checked"{{/if}}" />' + - '<label for="expireDate-{{cid}}">{{expireDateLabel}}</label>' + + ' <span class="shareOption menuitem">' + + ' <input id="expireDate-{{cid}}" type="checkbox" name="expirationDate" class="expireDate checkbox"' + + ' {{#if hasExpireDate}}checked="checked"{{/if}} {{#if isExpirationEnforced}}disabled="disabled"{{/if}}" />' + + ' <label for="expireDate-{{cid}}">{{expireDateLabel}}</label>' + + ' </span>' + '</li>' + '<li class="{{#unless hasExpireDate}}hidden{{/unless}}">' + - '<span class="menuitem icon-expiredate expirationDateContainer-{{cid}}">' + - ' <label for="expirationDatePicker-{{cid}}" class="hidden-visually" value="{{expirationDate}}">{{expirationLabel}}</label>' + - ' <input id="expirationDatePicker-{{cid}}" class="datepicker" type="text" placeholder="{{expirationDatePlaceholder}}" value="{{#if hasExpireDate}}{{expireDate}}{{else}}{{defaultExpireDate}}{{/if}}" />' + - '</span>' + - '</span>' + + ' <span class="menuitem icon-expiredate expirationDateContainer-{{cid}}">' + + ' <label for="expirationDatePicker-{{cid}}" class="hidden-visually" value="{{expirationDate}}">{{expirationLabel}}</label>' + + ' <input id="expirationDatePicker-{{cid}}" class="datepicker" type="text" placeholder="{{expirationDatePlaceholder}}" value="{{#if hasExpireDate}}{{expireDate}}{{else}}{{defaultExpireDate}}{{/if}}" />' + + ' </span>' + '</li>' + '<li>' + '<a href="#" class="share-add"><span class="icon-loading-small hidden"></span>' + @@ -128,6 +134,23 @@ '</ul>' + '</div>'; + // popovermenu waiting for password or expiration date before saving the share + var TEMPLATE_POPOVER_MENU_PENDING = + '<div class="popovermenu pendingpopover menu">' + + '<ul>' + + '{{#if isPasswordEnforced}}' + + ' <li><span class="shareOption menuitem">' + + ' <input type="checkbox" name="showPassword" id="showPassword-{{cid}}" checked="checked" disabled class="checkbox showPasswordCheckbox" value="1" />' + + ' <label for="showPassword-{{cid}}">{{enablePasswordLabel}}</label>' + + ' </span></li>' + + ' <li class="linkPassMenu"><span class="shareOption menuitem icon-share-pass">' + + ' <input id="linkPassText-{{cid}}" class="linkPassText" type="password" placeholder="{{passwordPlaceholder}}" autocomplete="new-password" />' + + ' <span class="icon icon-loading-small hidden"></span>' + + ' </span></li>' + + '{{/if}}' + + '</ul>' + + '</div>'; + /** * @class OCA.Share.ShareDialogLinkShareView * @member {OC.Share.ShareItemModel} model @@ -151,22 +174,36 @@ /** @type {Function} **/ _popoverMenuTemplate: undefined, + /** @type {Function} **/ + _pendingPopoverMenuTemplate: undefined, + /** @type {boolean} **/ showLink: true, + /** @type {boolean} **/ + showPending: false, + events: { + // enable/disable + 'change .linkCheckbox': 'onLinkCheckBoxChange', + // open menu + 'click .share-menu .icon-more': 'onToggleMenu', + // password 'focusout input.linkPassText': 'onPasswordEntered', 'keyup input.linkPassText': 'onPasswordKeyUp', - 'click .linkCheckbox': 'onLinkCheckBoxChange', - 'click .linkText': 'onLinkTextClick', + 'change .showPasswordCheckbox': 'onShowPasswordClick', 'change .publicEditingCheckbox': 'onAllowPublicEditingChange', - 'click .showPasswordCheckbox': 'onShowPasswordClick', - 'click .share-menu .icon-more': 'onToggleMenu', + // copy link url + 'click .linkText': 'onLinkTextClick', + // social 'click .pop-up': 'onPopUpClick', + // permission change 'change .publicUploadRadio': 'onPublicUploadChange', + // expire date 'click .expireDate' : 'onExpireDateChange', 'change .datepicker': 'onChangeExpirationDate', 'click .datepicker' : 'showDatePicker', + // note 'click .share-add': 'showNoteForm', 'click .share-note-delete': 'deleteNote', 'click .share-note-submit': 'updateNote' @@ -253,20 +290,26 @@ } if($checkBox.is(':checked')) { - if(this.configModel.get('enforcePasswordForPublicLink') === false && this.configModel.get('enableLinkPasswordByDefault') === false) { + if(this.configModel.get('enforcePasswordForPublicLink') === false) { $loading.removeClass('hidden'); // this will create it this.model.saveLinkShare(); + $('.share-menu .icon-more').click(); + $('.share-menu .icon-more + .popovermenu .clipboardButton').click(); } else { - this.$el.find('.linkPass').slideToggle(OC.menuSpeed); - this.$el.find('.linkPassText').focus(); + // force the rendering of the menu + this.showPending = true; + this.render() + $('.share-menu .icon-more').click(); + $('.share-menu .icon-more + .popovermenu input:eq(1)').focus() } } else { if (this.model.get('linkShare').isLinkShare) { $loading.removeClass('hidden'); this.model.removeLinkShare(); } else { - this.$el.find('.linkPass').slideToggle(OC.menuSpeed); + this.showPending = false; + this.render() } } }, @@ -388,8 +431,7 @@ var shareId = $li.data('share-id'); var $menu = $element.closest('li'); var $form = $menu.next('li.share-note-form'); - - console.log($form.find('.share-note')); + $form.find('.share-note').val(''); $form.addClass('hidden'); @@ -492,6 +534,8 @@ var isLinkShare = this.model.get('linkShare').isLinkShare; var isPasswordSet = !!this.model.get('linkShare').password; + var isPasswordEnforced = this.configModel.get('enforcePasswordForPublicLink') + var isPasswordEnabledByDefault = this.configModel.get('enableLinkPasswordByDefault') === true var showPasswordCheckBox = isLinkShare && ( !this.configModel.get('enforcePasswordForPublicLink') || !this.model.get('linkShare').password); @@ -565,7 +609,7 @@ passwordLabel: t('core', 'Password'), passwordPlaceholder: isPasswordSet ? PASSWORD_PLACEHOLDER : PASSWORD_PLACEHOLDER_MESSAGE, passwordPlaceholderInitial: passwordPlaceholderInitial, - isPasswordSet: isPasswordSet, + isPasswordSet: isPasswordSet || isPasswordEnabledByDefault || isPasswordEnforced, showPasswordCheckBox: showPasswordCheckBox, publicUpload: publicUpload && isLinkShare, publicEditing: publicEditable, @@ -587,12 +631,23 @@ expirationDatePlaceholder: t('core', 'Expiration date'), hasExpireDate: hasExpireDate, isExpirationEnforced: isExpirationEnforced, + isPasswordEnforced: isPasswordEnforced, expireDate: expireDate, defaultExpireDate: moment().add(1, 'day').format('DD-MM-YYYY'), // Can't expire today shareNote: this.model.get('linkShare').note, addNoteLabel: t('core', 'Note to recipient'), }); + var pendingPopover = this.pendingPopoverMenuTemplate({ + cid: this.model.get('linkShare').id, + enablePasswordLabel: t('core', 'Password protect'), + passwordLabel: t('core', 'Password'), + passwordPlaceholder: isPasswordSet ? PASSWORD_PLACEHOLDER : PASSWORD_PLACEHOLDER_MESSAGE, + passwordPlaceholderInitial: passwordPlaceholderInitial, + showPasswordCheckBox: showPasswordCheckBox, + isPasswordEnforced: isPasswordEnforced, + }); + this.$el.html(linkShareTemplate({ cid: this.model.get('linkShare').id, shareAllowed: true, @@ -600,6 +655,9 @@ linkShareLabel: t('core', 'Share link'), linkShareEnableLabel: t('core', 'Enable'), popoverMenu: popover, + pendingPopoverMenu: pendingPopover, + showMenu: isLinkShare || this.showPending, + showPending: this.showPending && !isLinkShare })); this.delegateEvents(); @@ -645,6 +703,19 @@ return this._popoverMenuTemplate(data); }, + /** + * renders the pending popover template and returns the resulting HTML + * + * @param {Object} data + * @returns {string} + */ + pendingPopoverMenuTemplate: function(data) { + if(!this._pendingPopoverMenuTemplate) { + this._pendingPopoverMenuTemplate = Handlebars.compile(TEMPLATE_POPOVER_MENU_PENDING); + } + return this._pendingPopoverMenuTemplate(data); + }, + onPopUpClick: function(event) { event.preventDefault(); event.stopPropagation(); @@ -701,7 +772,6 @@ self.setExpirationDate(expireDate); } }); - console.log(event, $(expirationDatePicker)); $(expirationDatePicker).datepicker('show'); $(expirationDatePicker).focus(); diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js index 241b9c19c0d..c28d85efbf0 100644 --- a/core/js/shareitemmodel.js +++ b/core/js/shareitemmodel.js @@ -777,7 +777,7 @@ return {}; } - var permissions = this.get('possiblePermissions'); + var permissions = this.fileInfoModel.get('permissions'); if(!_.isUndefined(data.reshare) && !_.isUndefined(data.reshare.permissions) && data.reshare.uid_owner !== OC.currentUser) { permissions = permissions & data.reshare.permissions; } diff --git a/core/js/tests/specs/jquery.contactsmenuSpec.js b/core/js/tests/specs/jquery.contactsmenuSpec.js index 7287648f5a2..80d08150c3f 100644 --- a/core/js/tests/specs/jquery.contactsmenuSpec.js +++ b/core/js/tests/specs/jquery.contactsmenuSpec.js @@ -45,7 +45,7 @@ describe('jquery.contactsMenu tests', function() { it('append list if shareType supported', function() { $selector1.contactsMenu('user', 0, $appendTo); expect($appendTo.children().length).toEqual(1); - expect($appendTo.html()).toEqual('<div class="menu popovermenu bubble hidden contactsmenu-popover"> <ul> <li> <a> <span class="icon-loading-small"></span> </a> </li> </ul></div>'); + expect($appendTo.html()).toEqual('<div class="menu popovermenu menu-left hidden contactsmenu-popover"> <ul> <li> <a> <span class="icon-loading-small"></span> </a> </li> </ul></div>'); }); }); @@ -120,7 +120,7 @@ describe('jquery.contactsMenu tests', function() { expect(fakeServer.requests[0].method).toEqual('POST'); expect(fakeServer.requests[0].url).toEqual('http://localhost/index.php/contactsmenu/findOne'); - expect($appendTo.html()).toEqual('<div class="menu popovermenu bubble contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="mailto:bar%40baz.wtf"> <img src="foo.svg"> <span>bar@baz.wtf</span> </a></li></ul></div>'); + expect($appendTo.html()).toEqual('<div class="menu popovermenu menu-left contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="mailto:bar%40baz.wtf"> <img src="foo.svg"> <span>bar@baz.wtf</span> </a></li></ul></div>'); }); it('load topaction and more actions', function() { @@ -147,7 +147,7 @@ describe('jquery.contactsMenu tests', function() { expect(fakeServer.requests[0].method).toEqual('POST'); expect(fakeServer.requests[0].url).toEqual('http://localhost/index.php/contactsmenu/findOne'); - expect($appendTo.html()).toEqual('<div class="menu popovermenu bubble contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="mailto:bar%40baz.wtf"> <img src="foo.svg"> <span>bar@baz.wtf</span> </a></li><li> <a href="http://localhost/index.php/apps/contacts"> <img src="details.svg"> <span>Details</span> </a></li></ul></div>'); + expect($appendTo.html()).toEqual('<div class="menu popovermenu menu-left contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="mailto:bar%40baz.wtf"> <img src="foo.svg"> <span>bar@baz.wtf</span> </a></li><li> <a href="http://localhost/index.php/apps/contacts"> <img src="details.svg"> <span>Details</span> </a></li></ul></div>'); }); it('load no actions', function() { @@ -167,7 +167,7 @@ describe('jquery.contactsMenu tests', function() { expect(fakeServer.requests[0].method).toEqual('POST'); expect(fakeServer.requests[0].url).toEqual('http://localhost/index.php/contactsmenu/findOne'); - expect($appendTo.html()).toEqual('<div class="menu popovermenu bubble contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="#"> <span>No action available</span> </a></li></ul></div>'); + expect($appendTo.html()).toEqual('<div class="menu popovermenu menu-left contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="#"> <span>No action available</span> </a></li></ul></div>'); }); it('should throw an error', function() { @@ -182,7 +182,7 @@ describe('jquery.contactsMenu tests', function() { expect(fakeServer.requests[0].method).toEqual('POST'); expect(fakeServer.requests[0].url).toEqual('http://localhost/index.php/contactsmenu/findOne'); - expect($appendTo.html()).toEqual('<div class="menu popovermenu bubble contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="#"> <span>Error fetching contact actions</span> </a></li></ul></div>'); + expect($appendTo.html()).toEqual('<div class="menu popovermenu menu-left contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="#"> <span>Error fetching contact actions</span> </a></li></ul></div>'); }); it('should handle 404', function() { @@ -197,7 +197,7 @@ describe('jquery.contactsMenu tests', function() { expect(fakeServer.requests[0].method).toEqual('POST'); expect(fakeServer.requests[0].url).toEqual('http://localhost/index.php/contactsmenu/findOne'); - expect($appendTo.html()).toEqual('<div class="menu popovermenu bubble contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="#"> <span>No action available</span> </a></li></ul></div>'); + expect($appendTo.html()).toEqual('<div class="menu popovermenu menu-left contactsmenu-popover loaded" style="display: block;"> <ul> <li class="hidden"> <a> <span class="icon-loading-small"></span> </a> </li> <li> <a href="#"> <span>No action available</span> </a></li></ul></div>'); }); }); diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index e22fb35102e..4c0545b7b4f 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -170,7 +170,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -217,7 +219,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -265,7 +269,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -311,7 +317,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -355,7 +363,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -368,6 +378,54 @@ describe('OC.SetupChecks tests', function() { }); }); + it('should return a warning if there are app directories with wrong permissions', function(done) { + var async = OC.SetupChecks.checkSetup(); + + suite.server.requests[0].respond( + 200, + { + 'Content-Type': 'application/json', + }, + JSON.stringify({ + hasFileinfoInstalled: true, + isGetenvServerWorking: true, + isReadOnlyConfig: false, + hasWorkingFileLocking: true, + hasValidTransactionIsolationLevel: true, + suggestedOverwriteCliURL: '', + isUrandomAvailable: true, + securityDocs: 'https://docs.owncloud.org/myDocs.html', + serverHasInternetConnection: true, + isMemcacheConfigured: true, + forwardedForHeadersWorking: true, + isCorrectMemcachedPHPModuleInstalled: true, + hasPassedCodeIntegrityCheck: true, + isOpcacheProperlySetup: true, + hasOpcacheLoaded: true, + isSettimelimitAvailable: true, + hasFreeTypeSupport: true, + missingIndexes: [], + outdatedCaches: [], + cronErrors: [], + cronInfo: { + diffInSeconds: 0 + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [ + '/some/path' + ] + }) + ); + + async.done(function( data, s, x ){ + expect(data).toEqual([{ + msg: 'Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:<ul><li>/some/path</li></ul>', + type: OC.SetupChecks.MESSAGE_TYPE_WARNING + }]); + done(); + }); + }); + it('should return an error if the forwarded for headers are not working', function(done) { var async = OC.SetupChecks.checkSetup(); @@ -399,7 +457,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -443,7 +503,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -456,6 +518,52 @@ describe('OC.SetupChecks tests', function() { }); }); + it('should return a warning if the memory limit is below the recommended value', function(done) { + var async = OC.SetupChecks.checkSetup(); + + suite.server.requests[0].respond( + 200, + { + 'Content-Type': 'application/json', + }, + JSON.stringify({ + hasFileinfoInstalled: true, + isGetenvServerWorking: true, + isReadOnlyConfig: false, + hasWorkingFileLocking: true, + hasValidTransactionIsolationLevel: true, + suggestedOverwriteCliURL: '', + isUrandomAvailable: true, + serverHasInternetConnection: true, + isMemcacheConfigured: true, + forwardedForHeadersWorking: true, + reverseProxyDocs: 'https://docs.owncloud.org/foo/bar.html', + isCorrectMemcachedPHPModuleInstalled: true, + hasPassedCodeIntegrityCheck: true, + isOpcacheProperlySetup: true, + hasOpcacheLoaded: true, + isSettimelimitAvailable: true, + hasFreeTypeSupport: true, + missingIndexes: [], + outdatedCaches: [], + cronErrors: [], + cronInfo: { + diffInSeconds: 0 + }, + appDirsWithDifferentOwner: [], + isMemoryLimitSufficient: false + }) + ); + + async.done(function( data, s, x ){ + expect(data).toEqual([{ + msg: 'The PHP memory limit is below the recommended value of 512MB.', + type: OC.SetupChecks.MESSAGE_TYPE_WARNING + }]); + done(); + }); + }); + it('should return an error if the response has no statuscode 200', function(done) { var async = OC.SetupChecks.checkSetup(); @@ -508,7 +616,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -553,7 +663,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -598,7 +710,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); @@ -643,7 +757,9 @@ describe('OC.SetupChecks tests', function() { cronErrors: [], cronInfo: { diffInSeconds: 0 - } + }, + isMemoryLimitSufficient: true, + appDirsWithDifferentOwner: [] }) ); diff --git a/core/js/tests/specs/shareitemmodelSpec.js b/core/js/tests/specs/shareitemmodelSpec.js index 0a345786b73..2e89b2e3cda 100644 --- a/core/js/tests/specs/shareitemmodelSpec.js +++ b/core/js/tests/specs/shareitemmodelSpec.js @@ -345,7 +345,7 @@ describe('OC.Share.ShareItemModel', function() { }])); fetchSharesDeferred.resolve(makeOcsResponse([])); - model.set('possiblePermissions', OC.PERMISSION_READ); + model.fileInfoModel.set('permissions', OC.PERMISSION_READ); model.fetch(); // no resharing allowed diff --git a/core/l10n/ca.js b/core/l10n/ca.js index 2ff1e4c221d..88fc41892e4 100644 --- a/core/l10n/ca.js +++ b/core/l10n/ca.js @@ -35,6 +35,7 @@ OC.L10N.register( "Turned on maintenance mode" : "Activat el mode de manteniment", "Turned off maintenance mode" : "Desactivat el mode de manteniment", "Maintenance mode is kept active" : "El mode de manteniment es manté activat", + "Waiting for cron to finish (checks again in 5 seconds) …" : "Esperant cron per acabar (torna a comprovar en 5 segons)...", "Updating database schema" : "Actualitzant l'esquema de la base de dades", "Updated database" : "Actualitzada la base de dades", "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Comprovar si l'esquema de base de dades es pot actualitzar (això pot trigar temps segons la mida de la base de dades)", @@ -83,6 +84,7 @@ OC.L10N.register( "No" : "No", "Yes" : "Sí", "No files in here" : "No hi ha arxius aquí", + "No more subfolders in here" : "No hi ha més subcarpetes aquí", "Choose" : "Escull", "Copy" : "Copia", "Move" : "Moure", @@ -104,12 +106,48 @@ OC.L10N.register( "Pending" : "Pendent", "Copy to {folder}" : "Copia a la carpeta", "Move to {folder}" : "Mou a la carpeta", + "New in" : "Nou a", + "View changelog" : "Mostra el registre de canvis", "Very weak password" : "Contrasenya massa feble", "Weak password" : "Contrasenya feble", "So-so password" : "Contrasenya passable", "Good password" : "Contrasenya bona", "Strong password" : "Contrasenya forta", + "Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken." : "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", + "Your web server is not properly set up to resolve \"{url}\". Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "El teu servidor web no està configurat correctament per resoldre \"{url}\". Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "PHP does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP no sembla estar configurat correctament per determinar variables d'ambient del sistema. La prova amb getenv(\"PATH\") només torna una resposta buida.", + "Please check the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">installation documentation ↗</a> for PHP configuration notes and the PHP configuration of your server, especially when using php-fpm." : "Comproveu la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\"> documentació d’instal·lació ↗</a> per a notes de configuració de PHP i la configuració de PHP del teu servidor, especialment fent servir php-fpm.", + "The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "S'ha habilitat la configuració només de lectura. Això evita establir algunes configuracions mitjançant la interfície web. A més, al fitxer s’ha de permetre la escriptura manualment a cada actualització.", + "Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "La base de dades no funciona amb el nivell “READ COMMITTED” d'aïllament de transaccion. Això pot provocar problemes quan s'executen múltiples accions en paral·lel.", + "The PHP module \"fileinfo\" is missing. It is strongly recommended to enable this module to get the best results with MIME type detection." : "El mòdul de PHP \"fileinfo\" no es troba. És molt recomanable permetre aquest mòdul per aconseguir els millors resultats amb detecció de tipus MIME.", + "{name} below version {version} is installed, for stability and performance reasons it is recommended to update to a newer {name} version." : "{nom} per sota de la versió {versió} està instal·lat, per raons d'estabilitat i rendiment es recomana actualitzar a una versió més nova de {nom}.", + "Transactional file locking is disabled, this might lead to issues with race conditions. Enable \"filelocking.enabled\" in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a> for more information." : "Bloqueig d'arxiu transaccional està inhabilitada, això podria conduir a problemes amb situacions de competició. Permetre “filelocking.enabled” a config. php per evitar aquests problemes. Veure la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació ↗</a> per més informació.", + "If your installation is not installed at the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (suggestion: \"{suggestedOverwriteCliURL}\")" : "Si la instal·lació no està instal·lat a l'arrel del domini i fa servir el cron del sistema, hi pot haver problemes amb la generació d'URL. Per evitar aquests problemes, si us plau definiu l'opció \"overwrite.cli.url\" al fitxer config.php amb el camí webroot de la seva instal·lació (suggeriment: \"{suggestedOverwriteCliURL}\")", + "It was not possible to execute the cron job via CLI. The following technical errors have appeared:" : "No va ser possible executar la tasca de cron per línia de comandes. Han aparegut els errors tècnics següents:", + "Last background job execution ran {relativeTime}. Something seems wrong." : "Última execució de feina de fons va córrer {relativeTime}. Alguna cosa sembla malament.", + "Check the background job settings" : "Comproveu la configuració de feina de fons", + "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the Internet to enjoy all features." : "Aquest servidor no té una connexió a Internet operativa: múltiples punts finals no es poden accedir. Això significa que algunes de les funcions com a muntar emmagatzematge extern, notificacions sobre les actualitzacions o instal·lació d'apps de tercers no funcionarà. L’accés a arxius remots i l’enviament d'e-mail de notificació podrien no funcionar, tampoc. Establir una connexió d'aquest servidor a Internet per a gaudir de totes les funcionalitats.", + "No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "No s’ha configurat cap memòria cau. Per millorar el seu rendiment configureu un memcache si està disponible. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "/dev/urandom no és llegible per PHP que no és gens recomanable per motius de seguretat. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Actualment esteu executant PHP {version}. Us animem a actualitzar la versió de PHP que feu servir per tenir avantatge d’<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">actualitzacions de rendiment i seguretat proporcionats pel PHP Group</a> tan aviat com ho suporti la vostra distribució.", + "You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14." : "Actualment esteu executant PHP 5.6. La versió actual principal de Nextcloud és l'última que funciona a PHP 5.6. Es recomana actualitzar la versió PHP a 7.0+ per que es pugui actualitzar a Nextcloud 14.", + "The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "La configuració de capçaleres per intermediari web invers és incorrecta o estàs accedint a Nextcloud des d'un intermediari de confiança. Si no, aquest és un problema de seguretat i pot permetre a un atacant falsejar la seva adreça d'IP visible al Nextcloud. Trobareu més informació a la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached està configurat com a memòria cau distribuïda, però s'instal·la el mòdul erroni de PHP \"memcache\". \\OC\\Memcache\\Memcached només dóna suport \"memcached\" i no \"memcache\". Mireu la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\"> wiki de memcached sobre ambdós mòduls</a>.", + "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns fitxers no han passat la comprovació d'integritat. Trobareu més informació sobre com resoldre aquest assumpte a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Llista de fitxers no vàlids...</a> / <a href=\"{rescanEndpoint}\">Tornar a buscar…</a>)", + "The PHP OPcache module is not loaded. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to load it into your PHP installation." : "El mòdul de PHP OPcache no està carregat. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\"> Per millor rendiment es recomana</a> carregar-lo a la vostra instal·lació de PHP.", + "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to use the following settings in the <code>php.ini</code>:" : "La OPcache de PHP no està configurada correctament. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Per millor rendiment es recomana</a> utilitzar-la la següent configuració en el <code>php.ini</code>:", + "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended." : "La funció PHP \"set_time_limit\" no està disponible. Això podria resultar en scripts que s’aturin a mig execució, trencant la instal·lació. Us recomanem activar aquesta funció.", + "Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface." : "El seu PHP no té suport FreeType, el que resulta en un trencament de les fotos de perfil i la interfície de configuració.", + "Missing index \"{indexName}\" in table \"{tableName}\"." : "Índex \"{indexName}\" desaparegut a la taula \"{tableName}\".", + "The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running \"occ db:add-missing-indices\" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster." : "A la base de dades li falten alguns índexs. Degut al fet que afegir índexs en grans taules podria prendre algun temps aquests no s'afegit automàticament. Executant “occ db:add-missing-indices” els índexes que falten es podríen afegir manualment mentre la instància continua funcionant. Una vegada que s'afegeixen els índexes les consultes a les taules són en general molt més ràpides.", + "SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend." : "SQLite s’està fent servir actualment com a servei de base de dades. Per a instal·lacions més grans recomanem canvia a un altre servidor de base de dades.", + "This is particularly recommended when using the desktop client for file synchronisation." : "Això està especialment recomanat quan es faci servir el client d’escriptori per a la sincronització d'arxius.", + "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Per migrar a un altre base de dades l'eina de línia de comandes: 'occ db:convert-type', o mirar la <a target=\"_blank\"rel=\"noreferrer noopener\"href=\"{docLink}\">documentació ↗</a>.", + "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "L’ús del propi php mailer ja no és compatible. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Si us plau actualitzi la configuració del seu servidor de correu electrònic ↗<a/>.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Alguns directoris d'app són propietat d'un altre usuari diferent del servidor web. Això pot ser el cas si algunes apps s'han instal·lat manualment. Comprovar els permisos dels directoris d’app següents:", "Error occurred while checking server setup" : "Hi ha hagut un error en comprovar la configuració del servidor", + "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "El teu directori de dades i fitxers són probablement accessibles des d'Internet. L'arxiu .htaccess no està funcionant. És molt recomanable que configureu el servidor web de manera que el directori de dades no estigui accessible, o moure el directori de dades fora de l'arrel de documents del servidor web.", + "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "La capçalera HTTP \"{header}\" no s’ha definit com a \"{expected}\". Això és un risc potencial de seguretat o privacitat, ja que es recomana ajustar aquesta configuració en conseqüència.", "Shared" : "Compartit", "Shared with" : "Compartit amb", "Shared by" : "Compartit per", @@ -121,6 +159,7 @@ OC.L10N.register( "Press Ctrl-C to copy." : "Prem Ctrl-C per copiar.", "Resharing is not allowed" : "No es permet compartir de nou", "Share to {name}" : "Comparteix amb {name}", + "Copy URL" : "Copiar URL", "Link" : "Enllaç", "Password protect" : "Protegir amb contrasenya", "Allow editing" : "Permetre edició", @@ -132,14 +171,20 @@ OC.L10N.register( "Set expiration date" : "Estableix la data de venciment", "Expiration" : "Expiració", "Expiration date" : "Data de venciment", + "Note to recipient" : "Nota a destinatari", "Share link" : "Enllaç de compartició", + "Enable" : "Habilitar", "Shared with you and the group {group} by {owner}" : "Compartit amb vos i amb el grup {group} per {owner}", + "Shared with you and {circle} by {owner}" : "Compartit amb tu i {circle} per {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Compartit amb tu i amb la conversa {conversation} per {owner}", "Shared with you by {owner}" : "Compartit amb vos per {owner}", "Choose a password for the mail share" : "Escolliu una contrasenya pel mail de compartició", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha compartit per enllaç", "group" : "grup", "remote" : "remot", + "remote group" : "grup remot", "email" : "email", + "conversation" : "conversa", "shared by {sharer}" : "compartit per {sharer}", "Unshare" : "Deixa de compartir", "Can reshare" : "Pot recompartir", @@ -147,6 +192,7 @@ OC.L10N.register( "Can create" : "Pot crear", "Can change" : "Pot modificar", "Can delete" : "Pot esborrar", + "Password protect by Talk" : "Contrasenya protegida per Talk", "Access control" : "Control d'accés", "Could not unshare" : "No pot descompartir", "Error while sharing" : "Error en compartir", @@ -155,9 +201,11 @@ OC.L10N.register( "This list is maybe truncated - please refine your search term to see more results." : "Aquesta llista potser està truncada - refineu el vostre terme de cerca per veure més resultats.", "No users or groups found for {search}" : "No s'han trobat usuaris ni grups per {search}", "No users found for {search}" : "No s'han trobat usuaris per {search}", + "An error occurred (\"{message}\"). Please try again" : "S'ha produït un error (\"{message}\"). Si us plau, torni a intentar-ho", "An error occurred. Please try again" : "S'ha produït un error. Si us plau, torni a intentar-ho", "{sharee} (group)" : "{sharee} (grup)", "{sharee} (remote)" : "{sharee} (remot)", + "{sharee} (remote group)" : "{sharee} (grup remot)", "{sharee} (email)" : "{sharee} (email)", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Comparteix", @@ -218,6 +266,7 @@ OC.L10N.register( "Trace" : "Traça", "Security warning" : "Advertiment de seguretat", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona.", + "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentation</a>." : "Per a informació sobre com configurar correctament el servidor, podeu consultar la <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentació</a>.", "Create an <strong>admin account</strong>" : "Crea un <strong>compte d'administrador</strong>", "Username" : "Nom d'usuari", "Storage & database" : "Emmagatzematge i base de dades", @@ -241,9 +290,15 @@ OC.L10N.register( "Need help?" : "Necessites ajuda?", "See the documentation" : "Consulti la documentació", "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Aquesta aplicació requereix Javascript per al seu correcte funcionament . Per favor, {linkstart}habiliti Javascript{linkend} i torni a carregar la pàgina.", + "Skip to main content" : "Saltar al contingut principal", + "Skip to navigation of app" : "Salteu a la navegació d'app", "More apps" : "Més aplicacions", + "More apps menu" : "Menú de més apps", "Search" : "Cerca", "Reset search" : "Reinicialitza la cerca", + "Contacts" : "Contactes", + "Contacts menu" : "Menú de contactes", + "Settings menu" : "Menú de configuració", "Confirm your password" : "Confirma la teva contrasenya", "Server side authentication failed!" : "L'autenticació del servidor ha fallat!", "Please contact your administrator." : "Contacteu amb l'administrador.", @@ -252,22 +307,31 @@ OC.L10N.register( "Username or email" : "Nom d'usuari o correu electrònic", "Log in" : "Inici de sessió", "Wrong password." : "Contrasenya incorrecta.", + "User disabled" : "Usuari inhabilitat", + "We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds." : "Hem detectat múltiples intents de connexió no vàlids des de la teva IP. Per tant la pròxima connexió queda demorada fins a 30 segons.", "Forgot password?" : "Has oblidat la contrasenya?", "Back to login" : "Torna a accedir", + "Connect to your account" : "Connectar al teu compte", + "Please log in before granting %s access to your %s account." : "Si us plau entrar abans de donar %s accés al teu compte %s.", "App token" : "Testimoni d'aplicació", "Grant access" : "Concedeix accés", + "Alternative log in using app token" : "Entrada alternativa fent servir testimoni d’app", "Account access" : "Compte d'accés", "You are about to grant %s access to your %s account." : "Estàs a punt d'autoritzar a %s a accedir al teu compte %s.", "Redirecting …" : "Redirigint …", "New password" : "Contrasenya nova", "New Password" : "Contrasenya nova", + "This share is password-protected" : "Aquesta porció està protegida amb contrasenya", + "The password is wrong. Try again." : "Contrasenya incorrecta. Torni a intentar-ho.", "Two-factor authentication" : "Segon factor d'autenticació", "Enhanced security is enabled for your account. Please authenticate using a second factor." : "La seguretat millorada està habilitada per al vostre compte. Si us plau autentica’t amb un segon factor.", + "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "No es pot carregar al menys un dels seus mètodes d'autenticació de dos factors permessos. Contacti amb el seu administrador.", "Cancel log in" : "Cancel·la l'accés a", "Use backup code" : "Utilitza un codi de copia de seguretat", "Error while validating your second factor" : "Error al validar el segon factor d'autenticació", "Access through untrusted domain" : "Accedeix a través d'un domini que no és de confiança", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Si us plau, contacta amb el teu administrador. Si tu ets l'administrador, edita la configuració de \"trusted_domains\" a config/config.php tal com mostra l'exemple de config.samble.php.", + "Further information how to configure this can be found in the %sdocumentation%s." : "Més informació de com configurar això es pot trobar a la %sdocumentation%s.", "App update required" : "Cal que actualitzeu la aplicació", "%s will be updated to version %s" : "%s s'actualitzarà a la versió %s", "These apps will be updated:" : "Aquestes aplicacions s'actualitzaran:", @@ -285,16 +349,25 @@ OC.L10N.register( "This page will refresh itself when the %s instance is available again." : "Aquesta pàgina s'actualitzarà automàticament quan la instància %s estigui disponible de nou.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament.", "Thank you for your patience." : "Gràcies per la paciència.", + "There was an error loading your contacts" : "Hi ha hagut un error al carregar els teus contactes", "Shared with {recipients}" : "Compartit amb {recipients}", "Error setting expiration date" : "Error en establir la data de venciment", "The public link will expire no later than {days} days after it is created" : "L'enllaç públic tindrà venciment abans de {days} dies després de crear-lo", "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartir amb altres persones introduint un usuari o grup, un ID de núvol federat o una adreça d’email.", "Share with other people by entering a user or group or a federated cloud ID." : "Compartir amb altres persones introduint un usuari o grup o ID de núvol federat.", "Share with other people by entering a user or group or an email address." : "Compartir amb altres persones introduint un usuari o grup o una adreça d’email.", + "This action requires you to confirm your password:" : "Aquesta acció necessita que confirmis la teva contrasenya:", + "Wrong password. Reset it?" : "Contrasenya incorrecta. Voleu restablir-la?", "Stay logged in" : "Mantén la sessió connectada", "Alternative Logins" : "Acreditacions alternatives", + "You are about to grant \"%s\" access to your %s account." : "Estàs a punt de concedir a “%s” accés al teu compte %s.", "Alternative login using app token" : "Acreditació alternativa utilitzat testimoni d'aplicació", + "You are accessing the server from an untrusted domain." : "Esteu accedint al servidor des d'un domini no fiable.", + "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Contacteu amb l'administrador. Si ets un administrador d'aquesta instància, configurar la opció \"trusted_domains\" en config/config.php. config/config.sample.php ofereix una configuració d'exemple.", + "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Segons la configuració, com a administrador potser també es pot utilitzar el botó de sota per confiar en aquest domini.", "Add \"%s\" as trusted domain" : "Afegeix \"%s\" com a domini de confiança", + "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Per obtenir ajuda, vegeu la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> documentació</a>.", + "Your PHP does not have freetype support. This will result in broken profile pictures and settings interface." : "El seu PHP no té suport per FreeType, el que resulta en un trencament de les fotos de perfil i la interfície de configuració.", "Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "S'està accedint de manera no segura mitjançant HTTP. Es recomana utilitzar HTTPS, tal i com detallen els <a href=\"{docUrl}\">consells de seguretat</a>.", "Back to log in" : "Torna a l'accés", "Depending on your configuration, this button could also work to trust the domain:" : "Depenent de la teva configuració, aquest botó també podria funcionar per confiar en el domini:" diff --git a/core/l10n/ca.json b/core/l10n/ca.json index a3caa246a55..392ae77322b 100644 --- a/core/l10n/ca.json +++ b/core/l10n/ca.json @@ -33,6 +33,7 @@ "Turned on maintenance mode" : "Activat el mode de manteniment", "Turned off maintenance mode" : "Desactivat el mode de manteniment", "Maintenance mode is kept active" : "El mode de manteniment es manté activat", + "Waiting for cron to finish (checks again in 5 seconds) …" : "Esperant cron per acabar (torna a comprovar en 5 segons)...", "Updating database schema" : "Actualitzant l'esquema de la base de dades", "Updated database" : "Actualitzada la base de dades", "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Comprovar si l'esquema de base de dades es pot actualitzar (això pot trigar temps segons la mida de la base de dades)", @@ -81,6 +82,7 @@ "No" : "No", "Yes" : "Sí", "No files in here" : "No hi ha arxius aquí", + "No more subfolders in here" : "No hi ha més subcarpetes aquí", "Choose" : "Escull", "Copy" : "Copia", "Move" : "Moure", @@ -102,12 +104,48 @@ "Pending" : "Pendent", "Copy to {folder}" : "Copia a la carpeta", "Move to {folder}" : "Mou a la carpeta", + "New in" : "Nou a", + "View changelog" : "Mostra el registre de canvis", "Very weak password" : "Contrasenya massa feble", "Weak password" : "Contrasenya feble", "So-so password" : "Contrasenya passable", "Good password" : "Contrasenya bona", "Strong password" : "Contrasenya forta", + "Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken." : "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", + "Your web server is not properly set up to resolve \"{url}\". Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "El teu servidor web no està configurat correctament per resoldre \"{url}\". Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "PHP does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP no sembla estar configurat correctament per determinar variables d'ambient del sistema. La prova amb getenv(\"PATH\") només torna una resposta buida.", + "Please check the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">installation documentation ↗</a> for PHP configuration notes and the PHP configuration of your server, especially when using php-fpm." : "Comproveu la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\"> documentació d’instal·lació ↗</a> per a notes de configuració de PHP i la configuració de PHP del teu servidor, especialment fent servir php-fpm.", + "The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "S'ha habilitat la configuració només de lectura. Això evita establir algunes configuracions mitjançant la interfície web. A més, al fitxer s’ha de permetre la escriptura manualment a cada actualització.", + "Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "La base de dades no funciona amb el nivell “READ COMMITTED” d'aïllament de transaccion. Això pot provocar problemes quan s'executen múltiples accions en paral·lel.", + "The PHP module \"fileinfo\" is missing. It is strongly recommended to enable this module to get the best results with MIME type detection." : "El mòdul de PHP \"fileinfo\" no es troba. És molt recomanable permetre aquest mòdul per aconseguir els millors resultats amb detecció de tipus MIME.", + "{name} below version {version} is installed, for stability and performance reasons it is recommended to update to a newer {name} version." : "{nom} per sota de la versió {versió} està instal·lat, per raons d'estabilitat i rendiment es recomana actualitzar a una versió més nova de {nom}.", + "Transactional file locking is disabled, this might lead to issues with race conditions. Enable \"filelocking.enabled\" in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a> for more information." : "Bloqueig d'arxiu transaccional està inhabilitada, això podria conduir a problemes amb situacions de competició. Permetre “filelocking.enabled” a config. php per evitar aquests problemes. Veure la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació ↗</a> per més informació.", + "If your installation is not installed at the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (suggestion: \"{suggestedOverwriteCliURL}\")" : "Si la instal·lació no està instal·lat a l'arrel del domini i fa servir el cron del sistema, hi pot haver problemes amb la generació d'URL. Per evitar aquests problemes, si us plau definiu l'opció \"overwrite.cli.url\" al fitxer config.php amb el camí webroot de la seva instal·lació (suggeriment: \"{suggestedOverwriteCliURL}\")", + "It was not possible to execute the cron job via CLI. The following technical errors have appeared:" : "No va ser possible executar la tasca de cron per línia de comandes. Han aparegut els errors tècnics següents:", + "Last background job execution ran {relativeTime}. Something seems wrong." : "Última execució de feina de fons va córrer {relativeTime}. Alguna cosa sembla malament.", + "Check the background job settings" : "Comproveu la configuració de feina de fons", + "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the Internet to enjoy all features." : "Aquest servidor no té una connexió a Internet operativa: múltiples punts finals no es poden accedir. Això significa que algunes de les funcions com a muntar emmagatzematge extern, notificacions sobre les actualitzacions o instal·lació d'apps de tercers no funcionarà. L’accés a arxius remots i l’enviament d'e-mail de notificació podrien no funcionar, tampoc. Establir una connexió d'aquest servidor a Internet per a gaudir de totes les funcionalitats.", + "No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "No s’ha configurat cap memòria cau. Per millorar el seu rendiment configureu un memcache si està disponible. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "/dev/urandom no és llegible per PHP que no és gens recomanable per motius de seguretat. Trobareu més informació a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Actualment esteu executant PHP {version}. Us animem a actualitzar la versió de PHP que feu servir per tenir avantatge d’<a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">actualitzacions de rendiment i seguretat proporcionats pel PHP Group</a> tan aviat com ho suporti la vostra distribució.", + "You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14." : "Actualment esteu executant PHP 5.6. La versió actual principal de Nextcloud és l'última que funciona a PHP 5.6. Es recomana actualitzar la versió PHP a 7.0+ per que es pugui actualitzar a Nextcloud 14.", + "The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "La configuració de capçaleres per intermediari web invers és incorrecta o estàs accedint a Nextcloud des d'un intermediari de confiança. Si no, aquest és un problema de seguretat i pot permetre a un atacant falsejar la seva adreça d'IP visible al Nextcloud. Trobareu més informació a la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>.", + "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached està configurat com a memòria cau distribuïda, però s'instal·la el mòdul erroni de PHP \"memcache\". \\OC\\Memcache\\Memcached només dóna suport \"memcached\" i no \"memcache\". Mireu la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{wikiLink}\"> wiki de memcached sobre ambdós mòduls</a>.", + "Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">List of invalid files…</a> / <a href=\"{rescanEndpoint}\">Rescan…</a>)" : "Alguns fitxers no han passat la comprovació d'integritat. Trobareu més informació sobre com resoldre aquest assumpte a la nostra <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentació</a>. (<a href=\"{codeIntegrityDownloadEndpoint}\">Llista de fitxers no vàlids...</a> / <a href=\"{rescanEndpoint}\">Tornar a buscar…</a>)", + "The PHP OPcache module is not loaded. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to load it into your PHP installation." : "El mòdul de PHP OPcache no està carregat. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\"> Per millor rendiment es recomana</a> carregar-lo a la vostra instal·lació de PHP.", + "The PHP OPcache is not properly configured. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">For better performance it is recommended</a> to use the following settings in the <code>php.ini</code>:" : "La OPcache de PHP no està configurada correctament. <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">Per millor rendiment es recomana</a> utilitzar-la la següent configuració en el <code>php.ini</code>:", + "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended." : "La funció PHP \"set_time_limit\" no està disponible. Això podria resultar en scripts que s’aturin a mig execució, trencant la instal·lació. Us recomanem activar aquesta funció.", + "Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface." : "El seu PHP no té suport FreeType, el que resulta en un trencament de les fotos de perfil i la interfície de configuració.", + "Missing index \"{indexName}\" in table \"{tableName}\"." : "Índex \"{indexName}\" desaparegut a la taula \"{tableName}\".", + "The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running \"occ db:add-missing-indices\" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster." : "A la base de dades li falten alguns índexs. Degut al fet que afegir índexs en grans taules podria prendre algun temps aquests no s'afegit automàticament. Executant “occ db:add-missing-indices” els índexes que falten es podríen afegir manualment mentre la instància continua funcionant. Una vegada que s'afegeixen els índexes les consultes a les taules són en general molt més ràpides.", + "SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend." : "SQLite s’està fent servir actualment com a servei de base de dades. Per a instal·lacions més grans recomanem canvia a un altre servidor de base de dades.", + "This is particularly recommended when using the desktop client for file synchronisation." : "Això està especialment recomanat quan es faci servir el client d’escriptori per a la sincronització d'arxius.", + "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Per migrar a un altre base de dades l'eina de línia de comandes: 'occ db:convert-type', o mirar la <a target=\"_blank\"rel=\"noreferrer noopener\"href=\"{docLink}\">documentació ↗</a>.", + "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "L’ús del propi php mailer ja no és compatible. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Si us plau actualitzi la configuració del seu servidor de correu electrònic ↗<a/>.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Alguns directoris d'app són propietat d'un altre usuari diferent del servidor web. Això pot ser el cas si algunes apps s'han instal·lat manualment. Comprovar els permisos dels directoris d’app següents:", "Error occurred while checking server setup" : "Hi ha hagut un error en comprovar la configuració del servidor", + "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "El teu directori de dades i fitxers són probablement accessibles des d'Internet. L'arxiu .htaccess no està funcionant. És molt recomanable que configureu el servidor web de manera que el directori de dades no estigui accessible, o moure el directori de dades fora de l'arrel de documents del servidor web.", + "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "La capçalera HTTP \"{header}\" no s’ha definit com a \"{expected}\". Això és un risc potencial de seguretat o privacitat, ja que es recomana ajustar aquesta configuració en conseqüència.", "Shared" : "Compartit", "Shared with" : "Compartit amb", "Shared by" : "Compartit per", @@ -119,6 +157,7 @@ "Press Ctrl-C to copy." : "Prem Ctrl-C per copiar.", "Resharing is not allowed" : "No es permet compartir de nou", "Share to {name}" : "Comparteix amb {name}", + "Copy URL" : "Copiar URL", "Link" : "Enllaç", "Password protect" : "Protegir amb contrasenya", "Allow editing" : "Permetre edició", @@ -130,14 +169,20 @@ "Set expiration date" : "Estableix la data de venciment", "Expiration" : "Expiració", "Expiration date" : "Data de venciment", + "Note to recipient" : "Nota a destinatari", "Share link" : "Enllaç de compartició", + "Enable" : "Habilitar", "Shared with you and the group {group} by {owner}" : "Compartit amb vos i amb el grup {group} per {owner}", + "Shared with you and {circle} by {owner}" : "Compartit amb tu i {circle} per {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Compartit amb tu i amb la conversa {conversation} per {owner}", "Shared with you by {owner}" : "Compartit amb vos per {owner}", "Choose a password for the mail share" : "Escolliu una contrasenya pel mail de compartició", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} ha compartit per enllaç", "group" : "grup", "remote" : "remot", + "remote group" : "grup remot", "email" : "email", + "conversation" : "conversa", "shared by {sharer}" : "compartit per {sharer}", "Unshare" : "Deixa de compartir", "Can reshare" : "Pot recompartir", @@ -145,6 +190,7 @@ "Can create" : "Pot crear", "Can change" : "Pot modificar", "Can delete" : "Pot esborrar", + "Password protect by Talk" : "Contrasenya protegida per Talk", "Access control" : "Control d'accés", "Could not unshare" : "No pot descompartir", "Error while sharing" : "Error en compartir", @@ -153,9 +199,11 @@ "This list is maybe truncated - please refine your search term to see more results." : "Aquesta llista potser està truncada - refineu el vostre terme de cerca per veure més resultats.", "No users or groups found for {search}" : "No s'han trobat usuaris ni grups per {search}", "No users found for {search}" : "No s'han trobat usuaris per {search}", + "An error occurred (\"{message}\"). Please try again" : "S'ha produït un error (\"{message}\"). Si us plau, torni a intentar-ho", "An error occurred. Please try again" : "S'ha produït un error. Si us plau, torni a intentar-ho", "{sharee} (group)" : "{sharee} (grup)", "{sharee} (remote)" : "{sharee} (remot)", + "{sharee} (remote group)" : "{sharee} (grup remot)", "{sharee} (email)" : "{sharee} (email)", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Comparteix", @@ -216,6 +264,7 @@ "Trace" : "Traça", "Security warning" : "Advertiment de seguretat", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona.", + "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentation</a>." : "Per a informació sobre com configurar correctament el servidor, podeu consultar la <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentació</a>.", "Create an <strong>admin account</strong>" : "Crea un <strong>compte d'administrador</strong>", "Username" : "Nom d'usuari", "Storage & database" : "Emmagatzematge i base de dades", @@ -239,9 +288,15 @@ "Need help?" : "Necessites ajuda?", "See the documentation" : "Consulti la documentació", "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Aquesta aplicació requereix Javascript per al seu correcte funcionament . Per favor, {linkstart}habiliti Javascript{linkend} i torni a carregar la pàgina.", + "Skip to main content" : "Saltar al contingut principal", + "Skip to navigation of app" : "Salteu a la navegació d'app", "More apps" : "Més aplicacions", + "More apps menu" : "Menú de més apps", "Search" : "Cerca", "Reset search" : "Reinicialitza la cerca", + "Contacts" : "Contactes", + "Contacts menu" : "Menú de contactes", + "Settings menu" : "Menú de configuració", "Confirm your password" : "Confirma la teva contrasenya", "Server side authentication failed!" : "L'autenticació del servidor ha fallat!", "Please contact your administrator." : "Contacteu amb l'administrador.", @@ -250,22 +305,31 @@ "Username or email" : "Nom d'usuari o correu electrònic", "Log in" : "Inici de sessió", "Wrong password." : "Contrasenya incorrecta.", + "User disabled" : "Usuari inhabilitat", + "We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds." : "Hem detectat múltiples intents de connexió no vàlids des de la teva IP. Per tant la pròxima connexió queda demorada fins a 30 segons.", "Forgot password?" : "Has oblidat la contrasenya?", "Back to login" : "Torna a accedir", + "Connect to your account" : "Connectar al teu compte", + "Please log in before granting %s access to your %s account." : "Si us plau entrar abans de donar %s accés al teu compte %s.", "App token" : "Testimoni d'aplicació", "Grant access" : "Concedeix accés", + "Alternative log in using app token" : "Entrada alternativa fent servir testimoni d’app", "Account access" : "Compte d'accés", "You are about to grant %s access to your %s account." : "Estàs a punt d'autoritzar a %s a accedir al teu compte %s.", "Redirecting …" : "Redirigint …", "New password" : "Contrasenya nova", "New Password" : "Contrasenya nova", + "This share is password-protected" : "Aquesta porció està protegida amb contrasenya", + "The password is wrong. Try again." : "Contrasenya incorrecta. Torni a intentar-ho.", "Two-factor authentication" : "Segon factor d'autenticació", "Enhanced security is enabled for your account. Please authenticate using a second factor." : "La seguretat millorada està habilitada per al vostre compte. Si us plau autentica’t amb un segon factor.", + "Could not load at least one of your enabled two-factor auth methods. Please contact your admin." : "No es pot carregar al menys un dels seus mètodes d'autenticació de dos factors permessos. Contacti amb el seu administrador.", "Cancel log in" : "Cancel·la l'accés a", "Use backup code" : "Utilitza un codi de copia de seguretat", "Error while validating your second factor" : "Error al validar el segon factor d'autenticació", "Access through untrusted domain" : "Accedeix a través d'un domini que no és de confiança", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Si us plau, contacta amb el teu administrador. Si tu ets l'administrador, edita la configuració de \"trusted_domains\" a config/config.php tal com mostra l'exemple de config.samble.php.", + "Further information how to configure this can be found in the %sdocumentation%s." : "Més informació de com configurar això es pot trobar a la %sdocumentation%s.", "App update required" : "Cal que actualitzeu la aplicació", "%s will be updated to version %s" : "%s s'actualitzarà a la versió %s", "These apps will be updated:" : "Aquestes aplicacions s'actualitzaran:", @@ -283,16 +347,25 @@ "This page will refresh itself when the %s instance is available again." : "Aquesta pàgina s'actualitzarà automàticament quan la instància %s estigui disponible de nou.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament.", "Thank you for your patience." : "Gràcies per la paciència.", + "There was an error loading your contacts" : "Hi ha hagut un error al carregar els teus contactes", "Shared with {recipients}" : "Compartit amb {recipients}", "Error setting expiration date" : "Error en establir la data de venciment", "The public link will expire no later than {days} days after it is created" : "L'enllaç públic tindrà venciment abans de {days} dies després de crear-lo", "Share with other people by entering a user or group, a federated cloud ID or an email address." : "Compartir amb altres persones introduint un usuari o grup, un ID de núvol federat o una adreça d’email.", "Share with other people by entering a user or group or a federated cloud ID." : "Compartir amb altres persones introduint un usuari o grup o ID de núvol federat.", "Share with other people by entering a user or group or an email address." : "Compartir amb altres persones introduint un usuari o grup o una adreça d’email.", + "This action requires you to confirm your password:" : "Aquesta acció necessita que confirmis la teva contrasenya:", + "Wrong password. Reset it?" : "Contrasenya incorrecta. Voleu restablir-la?", "Stay logged in" : "Mantén la sessió connectada", "Alternative Logins" : "Acreditacions alternatives", + "You are about to grant \"%s\" access to your %s account." : "Estàs a punt de concedir a “%s” accés al teu compte %s.", "Alternative login using app token" : "Acreditació alternativa utilitzat testimoni d'aplicació", + "You are accessing the server from an untrusted domain." : "Esteu accedint al servidor des d'un domini no fiable.", + "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Contacteu amb l'administrador. Si ets un administrador d'aquesta instància, configurar la opció \"trusted_domains\" en config/config.php. config/config.sample.php ofereix una configuració d'exemple.", + "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Segons la configuració, com a administrador potser també es pot utilitzar el botó de sota per confiar en aquest domini.", "Add \"%s\" as trusted domain" : "Afegeix \"%s\" com a domini de confiança", + "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "Per obtenir ajuda, vegeu la <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> documentació</a>.", + "Your PHP does not have freetype support. This will result in broken profile pictures and settings interface." : "El seu PHP no té suport per FreeType, el que resulta en un trencament de les fotos de perfil i la interfície de configuració.", "Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "S'està accedint de manera no segura mitjançant HTTP. Es recomana utilitzar HTTPS, tal i com detallen els <a href=\"{docUrl}\">consells de seguretat</a>.", "Back to log in" : "Torna a l'accés", "Depending on your configuration, this button could also work to trust the domain:" : "Depenent de la teva configuració, aquest botó també podria funcionar per confiar en el domini:" diff --git a/core/l10n/cs.js b/core/l10n/cs.js index d8808e0ac19..dee23a6a6d9 100644 --- a/core/l10n/cs.js +++ b/core/l10n/cs.js @@ -156,6 +156,7 @@ OC.L10N.register( "Set expiration date" : "Nastavit datum vypršení platnosti", "Expiration" : "Konec platnosti", "Expiration date" : "Datum vypršení platnosti", + "Note to recipient" : "Poznámka pro příjemce", "Share link" : "Sdílet odkaz", "Enable" : "Povolit", "Shared with you and the group {group} by {owner}" : "S Vámi a skupinou {group} sdílí {owner}", @@ -167,6 +168,7 @@ OC.L10N.register( "remote" : "vzdálený", "remote group" : "vzdálená skupina", "email" : "e-mail", + "conversation" : "konverzace", "shared by {sharer}" : "Sdílel {sharer}", "Unshare" : "Zrušit sdílení", "Can reshare" : "Může znovu sdílet", @@ -182,16 +184,17 @@ OC.L10N.register( "This list is maybe truncated - please refine your search term to see more results." : "Tento seznam je možná zkrácený - prosím upřesněte vyhledávací výraz pro více výsledků.", "No users or groups found for {search}" : "Nebyli nalezeni žádní členové ani skupiny pro {search}", "No users found for {search}" : "Nebyli nalezeni žádní uživatelé pro {search}", - "An error occurred. Please try again" : "Došlo k chybě. Zkuste to prosím znovu", + "An error occurred (\"{message}\"). Please try again" : "Došlo k chybě („{message}“). Zkuste to znovu", + "An error occurred. Please try again" : "Došlo k chybě. Zkuste to znovu", "{sharee} (group)" : "{sharee} (skupina)", "{sharee} (remote)" : "{sharee} (vzdálený)", "{sharee} (email)" : "{sharee} (email)", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Sdílet", - "Name or email address..." : "Jméno nebo e-mailová adresa...", + "Name or email address..." : "Jméno nebo e-mailová adresa…", "Name or federated cloud ID..." : "Jméno nebo sdružené cloud ID...", "Name, federated cloud ID or email address..." : "Jméno, sdružené cloud ID, nebo e-mailová adresa...", - "Name..." : "Jméno...", + "Name..." : "Jméno…", "Error" : "Chyba", "Error removing share" : "Chyba při odstraňování sdílení", "Non-existing tag #{tag}" : "Neexistující tag #{tag}", @@ -200,8 +203,8 @@ OC.L10N.register( "({scope})" : "({scope})", "Delete" : "Smazat", "Rename" : "Přejmenovat", - "Collaborative tags" : "Tagy spolupráce", - "No tags found" : "Nebyly nalezeny žádné tagy", + "Collaborative tags" : "Štítky spolupráce", + "No tags found" : "Nenalezeny žádné štítky", "unknown text" : "neznámý text", "Hello world!" : "Zdravím, světe!", "sunny" : "slunečno", @@ -234,9 +237,9 @@ OC.L10N.register( "The server was unable to complete your request." : "Server nemohl dokončit váš požadavek.", "If this happens again, please send the technical details below to the server administrator." : "Pokud se to stane znovu, pošlete níže uvedené technické detaily administrátorovi serveru.", "More details can be found in the server log." : "Více podrobností k nalezení v serverovém logu.", - "Technical details" : "Technické detaily", + "Technical details" : "Technické podrobnosti", "Remote Address: %s" : "Vzdálená adresa: %s", - "Request ID: %s" : "ID požadavku: %s", + "Request ID: %s" : "Identifikátor požadavku: %s", "Type: %s" : "Typ: %s", "Code: %s" : "Kód: %s", "Message: %s" : "Zpráva: %s", @@ -248,7 +251,7 @@ OC.L10N.register( "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentation</a>." : "Pro informace, jak správně nastavit váš server, se podívejte do <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">dokumentace.", "Create an <strong>admin account</strong>" : "Vytvořit <strong>účet správce</strong>", "Username" : "Uživatelské jméno", - "Storage & database" : "Úložiště & databáze", + "Storage & database" : "Úložiště a databáze", "Data folder" : "Adresář s daty", "Configure the database" : "Nastavit databázi", "Only %s is available." : "Pouze %s je dostupný.", @@ -265,7 +268,7 @@ OC.L10N.register( "For larger installations we recommend to choose a different database backend." : "Pro větší instalace doporučujeme vybrat jiné databázové řešení.", "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Obzvláště při používání klientské aplikace pro synchronizaci s desktopem není SQLite doporučeno.", "Finish setup" : "Dokončit nastavení", - "Finishing …" : "Dokončuji...", + "Finishing …" : "Dokončování…", "Need help?" : "Potřebujete pomoc?", "See the documentation" : "Shlédnout dokumentaci", "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Tato aplikace potřebuje pro správnou funkčnost JavaScript. Prosím {linkstart}povolte JavaScript{linkend} a znovu načtěte stránku.", @@ -307,6 +310,7 @@ OC.L10N.register( "Error while validating your second factor" : "Chyba při ověřování druhého faktoru", "Access through untrusted domain" : "Přístup skrz nedůvěryhodnou doménu", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Prosím kontaktujte vašeho administrátora. Pokud jste administrátor, upravte konfigurační hodnotu \"trusted_domains\" v config/config.php podle příkladu v config.sample.php.", + "Further information how to configure this can be found in the %sdocumentation%s." : "Více informací o tom, jak toto nastavit, jsou k dispozici v%sdokumentaci%s.", "App update required" : "Vyžadována aktualizace aplikace", "%s will be updated to version %s" : "%s bude aktualizován na verzi %s", "These apps will be updated:" : "Následující aplikace budou aktualizovány:", diff --git a/core/l10n/cs.json b/core/l10n/cs.json index ddb4c8afb77..2ef5ff7175c 100644 --- a/core/l10n/cs.json +++ b/core/l10n/cs.json @@ -154,6 +154,7 @@ "Set expiration date" : "Nastavit datum vypršení platnosti", "Expiration" : "Konec platnosti", "Expiration date" : "Datum vypršení platnosti", + "Note to recipient" : "Poznámka pro příjemce", "Share link" : "Sdílet odkaz", "Enable" : "Povolit", "Shared with you and the group {group} by {owner}" : "S Vámi a skupinou {group} sdílí {owner}", @@ -165,6 +166,7 @@ "remote" : "vzdálený", "remote group" : "vzdálená skupina", "email" : "e-mail", + "conversation" : "konverzace", "shared by {sharer}" : "Sdílel {sharer}", "Unshare" : "Zrušit sdílení", "Can reshare" : "Může znovu sdílet", @@ -180,16 +182,17 @@ "This list is maybe truncated - please refine your search term to see more results." : "Tento seznam je možná zkrácený - prosím upřesněte vyhledávací výraz pro více výsledků.", "No users or groups found for {search}" : "Nebyli nalezeni žádní členové ani skupiny pro {search}", "No users found for {search}" : "Nebyli nalezeni žádní uživatelé pro {search}", - "An error occurred. Please try again" : "Došlo k chybě. Zkuste to prosím znovu", + "An error occurred (\"{message}\"). Please try again" : "Došlo k chybě („{message}“). Zkuste to znovu", + "An error occurred. Please try again" : "Došlo k chybě. Zkuste to znovu", "{sharee} (group)" : "{sharee} (skupina)", "{sharee} (remote)" : "{sharee} (vzdálený)", "{sharee} (email)" : "{sharee} (email)", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Sdílet", - "Name or email address..." : "Jméno nebo e-mailová adresa...", + "Name or email address..." : "Jméno nebo e-mailová adresa…", "Name or federated cloud ID..." : "Jméno nebo sdružené cloud ID...", "Name, federated cloud ID or email address..." : "Jméno, sdružené cloud ID, nebo e-mailová adresa...", - "Name..." : "Jméno...", + "Name..." : "Jméno…", "Error" : "Chyba", "Error removing share" : "Chyba při odstraňování sdílení", "Non-existing tag #{tag}" : "Neexistující tag #{tag}", @@ -198,8 +201,8 @@ "({scope})" : "({scope})", "Delete" : "Smazat", "Rename" : "Přejmenovat", - "Collaborative tags" : "Tagy spolupráce", - "No tags found" : "Nebyly nalezeny žádné tagy", + "Collaborative tags" : "Štítky spolupráce", + "No tags found" : "Nenalezeny žádné štítky", "unknown text" : "neznámý text", "Hello world!" : "Zdravím, světe!", "sunny" : "slunečno", @@ -232,9 +235,9 @@ "The server was unable to complete your request." : "Server nemohl dokončit váš požadavek.", "If this happens again, please send the technical details below to the server administrator." : "Pokud se to stane znovu, pošlete níže uvedené technické detaily administrátorovi serveru.", "More details can be found in the server log." : "Více podrobností k nalezení v serverovém logu.", - "Technical details" : "Technické detaily", + "Technical details" : "Technické podrobnosti", "Remote Address: %s" : "Vzdálená adresa: %s", - "Request ID: %s" : "ID požadavku: %s", + "Request ID: %s" : "Identifikátor požadavku: %s", "Type: %s" : "Typ: %s", "Code: %s" : "Kód: %s", "Message: %s" : "Zpráva: %s", @@ -246,7 +249,7 @@ "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">documentation</a>." : "Pro informace, jak správně nastavit váš server, se podívejte do <a href=\"%s\" target=\"_blank\" rel=\"noreferrer noopener\">dokumentace.", "Create an <strong>admin account</strong>" : "Vytvořit <strong>účet správce</strong>", "Username" : "Uživatelské jméno", - "Storage & database" : "Úložiště & databáze", + "Storage & database" : "Úložiště a databáze", "Data folder" : "Adresář s daty", "Configure the database" : "Nastavit databázi", "Only %s is available." : "Pouze %s je dostupný.", @@ -263,7 +266,7 @@ "For larger installations we recommend to choose a different database backend." : "Pro větší instalace doporučujeme vybrat jiné databázové řešení.", "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "Obzvláště při používání klientské aplikace pro synchronizaci s desktopem není SQLite doporučeno.", "Finish setup" : "Dokončit nastavení", - "Finishing …" : "Dokončuji...", + "Finishing …" : "Dokončování…", "Need help?" : "Potřebujete pomoc?", "See the documentation" : "Shlédnout dokumentaci", "This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Tato aplikace potřebuje pro správnou funkčnost JavaScript. Prosím {linkstart}povolte JavaScript{linkend} a znovu načtěte stránku.", @@ -305,6 +308,7 @@ "Error while validating your second factor" : "Chyba při ověřování druhého faktoru", "Access through untrusted domain" : "Přístup skrz nedůvěryhodnou doménu", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Prosím kontaktujte vašeho administrátora. Pokud jste administrátor, upravte konfigurační hodnotu \"trusted_domains\" v config/config.php podle příkladu v config.sample.php.", + "Further information how to configure this can be found in the %sdocumentation%s." : "Více informací o tom, jak toto nastavit, jsou k dispozici v%sdokumentaci%s.", "App update required" : "Vyžadována aktualizace aplikace", "%s will be updated to version %s" : "%s bude aktualizován na verzi %s", "These apps will be updated:" : "Následující aplikace budou aktualizovány:", diff --git a/core/l10n/de.js b/core/l10n/de.js index ac2758a783b..f3ec71a402c 100644 --- a/core/l10n/de.js +++ b/core/l10n/de.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Dies wird insbesondere bei der Benutzung des Desktop-Clients zur Synchronisierung empfohlen.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutze bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Dokumentation ↗</a> schauen.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "Die Verwendung des eingebauten PHP-Mailers wird nicht länger unterstützt. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Bitte aktualisiere die E-Mail-Server-Einstellungen ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "Die PHP-Speichergrenze liegt unterhalb des empfohlenen Wertes von 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Einige App-Ordner haben einen anderen Besitzer als der Benutzer des Webservers. Dies kann der Fall sein, wenn Apps manuell installiert wurden. Prüfe die Berechtigungen der folgenden App-Ordner:", "Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, deinen Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass du es aus dem Dokument-Root-Verzeichnis des Webservers bewegst.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.", diff --git a/core/l10n/de.json b/core/l10n/de.json index 5b396716880..a9b3158a3eb 100644 --- a/core/l10n/de.json +++ b/core/l10n/de.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Dies wird insbesondere bei der Benutzung des Desktop-Clients zur Synchronisierung empfohlen.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutze bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Dokumentation ↗</a> schauen.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "Die Verwendung des eingebauten PHP-Mailers wird nicht länger unterstützt. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Bitte aktualisiere die E-Mail-Server-Einstellungen ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "Die PHP-Speichergrenze liegt unterhalb des empfohlenen Wertes von 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Einige App-Ordner haben einen anderen Besitzer als der Benutzer des Webservers. Dies kann der Fall sein, wenn Apps manuell installiert wurden. Prüfe die Berechtigungen der folgenden App-Ordner:", "Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, deinen Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass du es aus dem Dokument-Root-Verzeichnis des Webservers bewegst.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.", diff --git a/core/l10n/de_DE.js b/core/l10n/de_DE.js index 6ee937b8028..91418688c15 100644 --- a/core/l10n/de_DE.js +++ b/core/l10n/de_DE.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Dies wird insbesondere bei der Benutzung des Desktop-Clients zur Synchronisierung empfohlen.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Dokumentation ↗</a> schauen.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "Die Verwendung des eingebauten PHP-Mailers wird nicht länger unterstützt. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Bitte aktualisieren Sie die E-Mail-Server-Einstellungen ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "Die PHP-Speichergrenze liegt unterhalb des empfohlenen Wertes von 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Einige App-Ordner haben einen anderen Besitzer als der Benutzer des Webservers. Dies kann der Fall sein, wenn Apps manuell installiert wurden. Prüfen Sie die Berechtigungen der folgenden App-Ordner:", "Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, Ihren Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass Sie es aus dem Document-Root-Verzeichnis des Webservers herausverschieben.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.", diff --git a/core/l10n/de_DE.json b/core/l10n/de_DE.json index c9f5de9f2ac..7aa8d70286f 100644 --- a/core/l10n/de_DE.json +++ b/core/l10n/de_DE.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Dies wird insbesondere bei der Benutzung des Desktop-Clients zur Synchronisierung empfohlen.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Um zu einer anderen Datenbank zu migrieren, benutzen Sie bitte die Kommandozeile: 'occ db:convert-type', oder in die <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Dokumentation ↗</a> schauen.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "Die Verwendung des eingebauten PHP-Mailers wird nicht länger unterstützt. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Bitte aktualisieren Sie die E-Mail-Server-Einstellungen ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "Die PHP-Speichergrenze liegt unterhalb des empfohlenen Wertes von 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Einige App-Ordner haben einen anderen Besitzer als der Benutzer des Webservers. Dies kann der Fall sein, wenn Apps manuell installiert wurden. Prüfen Sie die Berechtigungen der folgenden App-Ordner:", "Error occurred while checking server setup" : "Fehler beim Überprüfen der Servereinrichtung", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. Es wird dringend empfohlen, Ihren Webserver dahingehend zu konfigurieren, dass das Datenverzeichnis nicht mehr vom Internet aus erreichbar ist oder dass Sie es aus dem Document-Root-Verzeichnis des Webservers herausverschieben.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "Der „{header}“-HTTP-Header ist nicht so konfiguriert, dass er „{expected}“ entspricht. Dies ist ein potentielles Sicherheitsrisiko und es wird empfohlen, diese Einstellung zu ändern.", diff --git a/core/l10n/es.js b/core/l10n/es.js index 65436ded677..226554a3baa 100644 --- a/core/l10n/es.js +++ b/core/l10n/es.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Esto está particularmente indicado si se usa el cliente de escritorio para la sincronización.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Para migrara a otra base d edatos, usa la herramienta de línea de comandos 'occ db:convert-type' o comprueba la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentación ↗</a>.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "El uso del correo incorporado de php ya no está soportado. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Por favor, actualiza tu configuración de servidor de correo ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "El límite de memoria de PHP está por debajo del valor recomendado de 512 MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Algunos directorios de apps son propiedad de un usuario diferente del usuario del servidor web. Este puede ser el caso si se han instalado apps manualmente. Comprueba los permisos de los siguientes directorios de apps:", "Error occurred while checking server setup" : "Ha ocurrido un error al revisar la configuración del servidor", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess no funciona. Se recomienda encarecidamente que configures tu servidor web de tal manera que el directorio de datos no sea accesible, o que lo muevas fuera de la raíz de documentos del servidor web.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "La cabecera HTTP \"{header}\" no está configurada como \"{expected}\". Esto es un riesgo potencial de seguridad o privacidad, y se recomienda ajustar esta configuración de forma adecuada.", @@ -179,6 +181,7 @@ OC.L10N.register( "Enable" : "Habilitar", "Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}", "Shared with you and {circle} by {owner}" : "Compartido contigo y {circle} por {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Compartido contigo y con la conversación {conversation} por {owner}", "Shared with you by {owner}" : "Compartido contigo por {owner}", "Choose a password for the mail share" : "Elija una contraseña para compartir por correo electrónico", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} compartido por medio de un link", @@ -186,6 +189,7 @@ OC.L10N.register( "remote" : "remoto", "remote group" : "grupo remoto", "email" : "email", + "conversation" : "conversación", "shared by {sharer}" : "compartido por {sharer}", "Unshare" : "Dejar de compartir", "Can reshare" : "Puede compartir", diff --git a/core/l10n/es.json b/core/l10n/es.json index 30ba2decda4..38ade672a13 100644 --- a/core/l10n/es.json +++ b/core/l10n/es.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Esto está particularmente indicado si se usa el cliente de escritorio para la sincronización.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Para migrara a otra base d edatos, usa la herramienta de línea de comandos 'occ db:convert-type' o comprueba la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentación ↗</a>.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "El uso del correo incorporado de php ya no está soportado. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Por favor, actualiza tu configuración de servidor de correo ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "El límite de memoria de PHP está por debajo del valor recomendado de 512 MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Algunos directorios de apps son propiedad de un usuario diferente del usuario del servidor web. Este puede ser el caso si se han instalado apps manualmente. Comprueba los permisos de los siguientes directorios de apps:", "Error occurred while checking server setup" : "Ha ocurrido un error al revisar la configuración del servidor", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess no funciona. Se recomienda encarecidamente que configures tu servidor web de tal manera que el directorio de datos no sea accesible, o que lo muevas fuera de la raíz de documentos del servidor web.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "La cabecera HTTP \"{header}\" no está configurada como \"{expected}\". Esto es un riesgo potencial de seguridad o privacidad, y se recomienda ajustar esta configuración de forma adecuada.", @@ -177,6 +179,7 @@ "Enable" : "Habilitar", "Shared with you and the group {group} by {owner}" : "Compartido contigo y el grupo {group} por {owner}", "Shared with you and {circle} by {owner}" : "Compartido contigo y {circle} por {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Compartido contigo y con la conversación {conversation} por {owner}", "Shared with you by {owner}" : "Compartido contigo por {owner}", "Choose a password for the mail share" : "Elija una contraseña para compartir por correo electrónico", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} compartido por medio de un link", @@ -184,6 +187,7 @@ "remote" : "remoto", "remote group" : "grupo remoto", "email" : "email", + "conversation" : "conversación", "shared by {sharer}" : "compartido por {sharer}", "Unshare" : "Dejar de compartir", "Can reshare" : "Puede compartir", diff --git a/core/l10n/fr.js b/core/l10n/fr.js index 15dc0502dc3..7fefd3c0f87 100644 --- a/core/l10n/fr.js +++ b/core/l10n/fr.js @@ -179,6 +179,7 @@ OC.L10N.register( "Enable" : "Activer", "Shared with you and the group {group} by {owner}" : "Partagé avec vous et le groupe {group} par {owner}", "Shared with you and {circle} by {owner}" : "Partagé avec vous et {circle} par {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Partagé avec vous et la conversation {conversation} par {owner}", "Shared with you by {owner}" : "Partagé avec vous par {owner}", "Choose a password for the mail share" : "Choisissez un mot de passe pour le partage par email", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} a partagé via un lien", @@ -186,6 +187,7 @@ OC.L10N.register( "remote" : "distant", "remote group" : "groupe distant", "email" : "Adresse de courriel", + "conversation" : "conversation", "shared by {sharer}" : "partagé par {sharer}", "Unshare" : "Ne plus partager", "Can reshare" : "Peut repartager", diff --git a/core/l10n/fr.json b/core/l10n/fr.json index 891e3e813b7..45cffe3d557 100644 --- a/core/l10n/fr.json +++ b/core/l10n/fr.json @@ -177,6 +177,7 @@ "Enable" : "Activer", "Shared with you and the group {group} by {owner}" : "Partagé avec vous et le groupe {group} par {owner}", "Shared with you and {circle} by {owner}" : "Partagé avec vous et {circle} par {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Partagé avec vous et la conversation {conversation} par {owner}", "Shared with you by {owner}" : "Partagé avec vous par {owner}", "Choose a password for the mail share" : "Choisissez un mot de passe pour le partage par email", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} a partagé via un lien", @@ -184,6 +185,7 @@ "remote" : "distant", "remote group" : "groupe distant", "email" : "Adresse de courriel", + "conversation" : "conversation", "shared by {sharer}" : "partagé par {sharer}", "Unshare" : "Ne plus partager", "Can reshare" : "Peut repartager", diff --git a/core/l10n/he.js b/core/l10n/he.js index 9ba59625725..3ef4002f424 100644 --- a/core/l10n/he.js +++ b/core/l10n/he.js @@ -84,6 +84,7 @@ OC.L10N.register( "No" : "לא", "Yes" : "כן", "No files in here" : "אין כאן קבצים", + "No more subfolders in here" : "אין כאן עוד תת־תיקיות", "Choose" : "בחירה", "Copy" : "העתקה", "Move" : "העברה", @@ -105,6 +106,8 @@ OC.L10N.register( "Pending" : "בהמתנה", "Copy to {folder}" : "העתקה אל {folder}", "Move to {folder}" : "העברה אל {folder}", + "New in" : "חדש ב־", + "View changelog" : "הצגת יומן שינויים", "Very weak password" : "ססמה מאוד חלשה", "Weak password" : "ססמה חלשה", "So-so password" : "ססמה בינונית", @@ -158,6 +161,7 @@ OC.L10N.register( "Press Ctrl-C to copy." : "יש להקיש Ctrl-C כדי להעתיק.", "Resharing is not allowed" : "אסור לעשות שיתוף מחדש", "Share to {name}" : "שיתוף עם {name}", + "Copy URL" : "העתקת כתובת", "Link" : "קישור", "Password protect" : "הגנה בססמה", "Allow editing" : "אישור עריכה", @@ -297,6 +301,7 @@ OC.L10N.register( "Username or email" : "שם משתמש או דואר אלקטרוני", "Log in" : "כניסה", "Wrong password." : "ססמה שגויה.", + "User disabled" : "משתמש מושבת", "We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds." : "זיהינו מספר ניסיונות כניסה שגויים מכתובת ה־IP שלך. לכן, ניסיון הכניסה הבא יתאפשר עבורך רק בעוד 30 שניות.", "Forgot password?" : "שכחת ססמה?", "Back to login" : "חזרה לכניסה", diff --git a/core/l10n/he.json b/core/l10n/he.json index 9f5b50ad789..ca851aaa2a2 100644 --- a/core/l10n/he.json +++ b/core/l10n/he.json @@ -82,6 +82,7 @@ "No" : "לא", "Yes" : "כן", "No files in here" : "אין כאן קבצים", + "No more subfolders in here" : "אין כאן עוד תת־תיקיות", "Choose" : "בחירה", "Copy" : "העתקה", "Move" : "העברה", @@ -103,6 +104,8 @@ "Pending" : "בהמתנה", "Copy to {folder}" : "העתקה אל {folder}", "Move to {folder}" : "העברה אל {folder}", + "New in" : "חדש ב־", + "View changelog" : "הצגת יומן שינויים", "Very weak password" : "ססמה מאוד חלשה", "Weak password" : "ססמה חלשה", "So-so password" : "ססמה בינונית", @@ -156,6 +159,7 @@ "Press Ctrl-C to copy." : "יש להקיש Ctrl-C כדי להעתיק.", "Resharing is not allowed" : "אסור לעשות שיתוף מחדש", "Share to {name}" : "שיתוף עם {name}", + "Copy URL" : "העתקת כתובת", "Link" : "קישור", "Password protect" : "הגנה בססמה", "Allow editing" : "אישור עריכה", @@ -295,6 +299,7 @@ "Username or email" : "שם משתמש או דואר אלקטרוני", "Log in" : "כניסה", "Wrong password." : "ססמה שגויה.", + "User disabled" : "משתמש מושבת", "We have detected multiple invalid login attempts from your IP. Therefore your next login is throttled up to 30 seconds." : "זיהינו מספר ניסיונות כניסה שגויים מכתובת ה־IP שלך. לכן, ניסיון הכניסה הבא יתאפשר עבורך רק בעוד 30 שניות.", "Forgot password?" : "שכחת ססמה?", "Back to login" : "חזרה לכניסה", diff --git a/core/l10n/hr.js b/core/l10n/hr.js index bc044914602..15016d33683 100644 --- a/core/l10n/hr.js +++ b/core/l10n/hr.js @@ -25,10 +25,13 @@ OC.L10N.register( "Couldn't send reset email. Please contact your administrator." : "Nije moguće poslati poruku za resetiranje lozinke. Molimo kontaktirajte svog administratora.", "Couldn't send reset email. Please make sure your username is correct." : "Poruku za resetiranje lozinke nije moguće poslati. Molimo provjerite ispravnost svoga korisničkog imena.", "Preparing update" : "Priprema ažuriranja", + "Repair warning: " : "Upozorenje pri popravku:", + "Repair error: " : "Greška pri popravku:", "Please use the command line updater because automatic updating is disabled in the config.php." : "Molimo da ažurirate putem komandne linije jer je automatsko ažuriranje onemogućeno u config.php.", "[%d / %d]: Checking table %s" : "[%d / %d]: Provjeravanje tablice %s", "Turned on maintenance mode" : "Način rada za održavanje uključen", "Turned off maintenance mode" : "Način rada za održavanje isključen", + "Waiting for cron to finish (checks again in 5 seconds) …" : "Čekanje cron funkcije da završi (ponovna provjera za 5 sekundi) ...", "Updating database schema" : "Ažuriranje sheme baze podataka", "Updated database" : " Baza podataka ažurirana", "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "U tijeku je provjeranje može li shema baza podataka biti ažurirana (ovo može potrajati ovisno o veličini baze podataka)", @@ -57,6 +60,7 @@ OC.L10N.register( "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Greška pri učitavanju stranice, ponovno učitavanje za %n sekundu","Greška pri učitavanju stranice, ponovno učitavanje za %n sekunde","Greška pri učitavanju stranice, ponovno učitavanje za %n sekundi"], "Saving..." : "Spremanje...", "Dismiss" : "Odpusti", + "Authentication required" : "Potrebna autentikacija", "This action requires you to confirm your password" : "Za izvršavanje ove radnje potvrdite vašu lozinku", "Confirm" : "Potvrdi", "Password" : "Lozinka", @@ -72,6 +76,7 @@ OC.L10N.register( "No" : "Ne", "Yes" : "Da", "No files in here" : "Nema datoteka", + "No more subfolders in here" : "Ovdje više nema podmapa", "Choose" : "Odaberite", "Copy" : "Kopiraj", "Move" : "Premjesti", @@ -90,6 +95,7 @@ OC.L10N.register( "(all selected)" : "(sve odabrano)", "({count} selected)" : "({count} odabran)", "Error loading file exists template" : "Pogrešno učitavanje predloška DATOTEKA POSTOJI", + "Pending" : "Čekam", "Copy to {folder}" : "Kopiraj u {folder}", "Move to {folder}" : "Premjesti u {folder}", "View changelog" : "Pregled zapisnika promjena", diff --git a/core/l10n/hr.json b/core/l10n/hr.json index 18f852831f3..667c18dc588 100644 --- a/core/l10n/hr.json +++ b/core/l10n/hr.json @@ -23,10 +23,13 @@ "Couldn't send reset email. Please contact your administrator." : "Nije moguće poslati poruku za resetiranje lozinke. Molimo kontaktirajte svog administratora.", "Couldn't send reset email. Please make sure your username is correct." : "Poruku za resetiranje lozinke nije moguće poslati. Molimo provjerite ispravnost svoga korisničkog imena.", "Preparing update" : "Priprema ažuriranja", + "Repair warning: " : "Upozorenje pri popravku:", + "Repair error: " : "Greška pri popravku:", "Please use the command line updater because automatic updating is disabled in the config.php." : "Molimo da ažurirate putem komandne linije jer je automatsko ažuriranje onemogućeno u config.php.", "[%d / %d]: Checking table %s" : "[%d / %d]: Provjeravanje tablice %s", "Turned on maintenance mode" : "Način rada za održavanje uključen", "Turned off maintenance mode" : "Način rada za održavanje isključen", + "Waiting for cron to finish (checks again in 5 seconds) …" : "Čekanje cron funkcije da završi (ponovna provjera za 5 sekundi) ...", "Updating database schema" : "Ažuriranje sheme baze podataka", "Updated database" : " Baza podataka ažurirana", "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "U tijeku je provjeranje može li shema baza podataka biti ažurirana (ovo može potrajati ovisno o veličini baze podataka)", @@ -55,6 +58,7 @@ "_Problem loading page, reloading in %n second_::_Problem loading page, reloading in %n seconds_" : ["Greška pri učitavanju stranice, ponovno učitavanje za %n sekundu","Greška pri učitavanju stranice, ponovno učitavanje za %n sekunde","Greška pri učitavanju stranice, ponovno učitavanje za %n sekundi"], "Saving..." : "Spremanje...", "Dismiss" : "Odpusti", + "Authentication required" : "Potrebna autentikacija", "This action requires you to confirm your password" : "Za izvršavanje ove radnje potvrdite vašu lozinku", "Confirm" : "Potvrdi", "Password" : "Lozinka", @@ -70,6 +74,7 @@ "No" : "Ne", "Yes" : "Da", "No files in here" : "Nema datoteka", + "No more subfolders in here" : "Ovdje više nema podmapa", "Choose" : "Odaberite", "Copy" : "Kopiraj", "Move" : "Premjesti", @@ -88,6 +93,7 @@ "(all selected)" : "(sve odabrano)", "({count} selected)" : "({count} odabran)", "Error loading file exists template" : "Pogrešno učitavanje predloška DATOTEKA POSTOJI", + "Pending" : "Čekam", "Copy to {folder}" : "Kopiraj u {folder}", "Move to {folder}" : "Premjesti u {folder}", "View changelog" : "Pregled zapisnika promjena", diff --git a/core/l10n/it.js b/core/l10n/it.js index f6d05902c9f..03467d06b1a 100644 --- a/core/l10n/it.js +++ b/core/l10n/it.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Consigliato particolarmente quando si utilizza il client desktop per la sincronizzazione dei file.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Per migrare a un altro database, usa lo strumento da riga di comando: 'occ db:convert-type', o leggi la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentazione ↗</a>.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "L'utilizzo della funzione di invio email integrata in php non è più supporato. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Aggiorna le impostazioni del tuo server di posta ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "Il limite di memoria di PHP è inferiore al valore consigliato di 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Alcune applicazioni sono di proprietà di un utente diverso da quelo del server web. Questo potrebbe verificarsi se le applicazioni sono state installate manualmente. Controlla i permessi delle cartelle delle seguenti applicazioni:", "Error occurred while checking server setup" : "Si è verificato un errore durante il controllo della configurazione del server", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o di spostare la cartella fuori dalla radice del server web.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "L'intestazione HTTP \"{header}\" non è configurata come \"{expected}\". \nQuesto è un potenziale rischio di sicurezza o di riservatezza, e noi consigliamo di modificare questa impostazione.", diff --git a/core/l10n/it.json b/core/l10n/it.json index d4efb385796..ecde940afba 100644 --- a/core/l10n/it.json +++ b/core/l10n/it.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Consigliato particolarmente quando si utilizza il client desktop per la sincronizzazione dei file.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Per migrare a un altro database, usa lo strumento da riga di comando: 'occ db:convert-type', o leggi la <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentazione ↗</a>.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "L'utilizzo della funzione di invio email integrata in php non è più supporato. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Aggiorna le impostazioni del tuo server di posta ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "Il limite di memoria di PHP è inferiore al valore consigliato di 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Alcune applicazioni sono di proprietà di un utente diverso da quelo del server web. Questo potrebbe verificarsi se le applicazioni sono state installate manualmente. Controlla i permessi delle cartelle delle seguenti applicazioni:", "Error occurred while checking server setup" : "Si è verificato un errore durante il controllo della configurazione del server", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o di spostare la cartella fuori dalla radice del server web.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "L'intestazione HTTP \"{header}\" non è configurata come \"{expected}\". \nQuesto è un potenziale rischio di sicurezza o di riservatezza, e noi consigliamo di modificare questa impostazione.", diff --git a/core/l10n/lv.js b/core/l10n/lv.js index b9df7a00918..b09fcaa8bdd 100644 --- a/core/l10n/lv.js +++ b/core/l10n/lv.js @@ -84,6 +84,7 @@ OC.L10N.register( "No" : "Nē", "Yes" : "Jā", "No files in here" : "Šeit nav datņu", + "No more subfolders in here" : "Šeit nav vairāk apakšmapju", "Choose" : "Izvēlieties", "Copy" : "Kopēt", "Move" : "Pārvietot", @@ -147,13 +148,16 @@ OC.L10N.register( "Expiration" : "Termiņš", "Expiration date" : "Termiņa datums", "Share link" : "Koplietot saiti", + "Enable" : "Iespējot", "Shared with you and the group {group} by {owner}" : "{owner} koplietoja ar jums un grupu {group}", "Shared with you and {circle} by {owner}" : " {owner} koplietoja ar tevi un {circle}", + "Shared with you and the conversation {conversation} by {owner}" : "Dalīts ar tevi un sarunu {conversation} no {owner}", "Shared with you by {owner}" : "{owner} koplietoja ar jums", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} koplietots ar saiti", "group" : "grupa", "remote" : "attālināti", "email" : "e-pasts", + "conversation" : "saruna", "shared by {sharer}" : "Koplietoja {sharer}", "Unshare" : "Pārtraukt koplietošanu", "Can reshare" : "Var atkārtoti kopīgot", @@ -161,6 +165,7 @@ OC.L10N.register( "Can create" : "Var izveidot", "Can change" : "Var mainīt", "Can delete" : "Var dzēst", + "Password protect by Talk" : "Aizsargāts ar paroli no Talk", "Access control" : "Piekļuves vadība", "Could not unshare" : "Nevarēja pārtraukt koplietošanu", "Error while sharing" : "Kļūda, daloties", diff --git a/core/l10n/lv.json b/core/l10n/lv.json index ccbfc00e44a..a9e26b5608c 100644 --- a/core/l10n/lv.json +++ b/core/l10n/lv.json @@ -82,6 +82,7 @@ "No" : "Nē", "Yes" : "Jā", "No files in here" : "Šeit nav datņu", + "No more subfolders in here" : "Šeit nav vairāk apakšmapju", "Choose" : "Izvēlieties", "Copy" : "Kopēt", "Move" : "Pārvietot", @@ -145,13 +146,16 @@ "Expiration" : "Termiņš", "Expiration date" : "Termiņa datums", "Share link" : "Koplietot saiti", + "Enable" : "Iespējot", "Shared with you and the group {group} by {owner}" : "{owner} koplietoja ar jums un grupu {group}", "Shared with you and {circle} by {owner}" : " {owner} koplietoja ar tevi un {circle}", + "Shared with you and the conversation {conversation} by {owner}" : "Dalīts ar tevi un sarunu {conversation} no {owner}", "Shared with you by {owner}" : "{owner} koplietoja ar jums", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} koplietots ar saiti", "group" : "grupa", "remote" : "attālināti", "email" : "e-pasts", + "conversation" : "saruna", "shared by {sharer}" : "Koplietoja {sharer}", "Unshare" : "Pārtraukt koplietošanu", "Can reshare" : "Var atkārtoti kopīgot", @@ -159,6 +163,7 @@ "Can create" : "Var izveidot", "Can change" : "Var mainīt", "Can delete" : "Var dzēst", + "Password protect by Talk" : "Aizsargāts ar paroli no Talk", "Access control" : "Piekļuves vadība", "Could not unshare" : "Nevarēja pārtraukt koplietošanu", "Error while sharing" : "Kļūda, daloties", diff --git a/core/l10n/nb.js b/core/l10n/nb.js index 5aff62d7d38..1115410b949 100644 --- a/core/l10n/nb.js +++ b/core/l10n/nb.js @@ -127,7 +127,7 @@ OC.L10N.register( "Last background job execution ran {relativeTime}. Something seems wrong." : "Den siste bakgrunsjobben brukte {relativeTime}. Noe virker galt.", "Check the background job settings" : "Kontroller instillinger for bakgrunnsjobb", "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the Internet to enjoy all features." : "Denne tjeneren har ingen fungerende internett-forbindelse. Dette betyr at noen funksjoner, som tilknytning av eksterne lagre, varslinger om oppdateringer eller installering av tredjepartsprogrammer ikke vil virke. Fjerntilgang til filer og utsending av varsler på e-post vil kanskje ikke virke heller. Det anbefales å aktivere en internett-forbindelse for denne tjeneren hvis du vil ha full funksjonalitet.", - "No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Inget hurtigminne har blitt satt opp. For å øke ytelsen bør du sette opp et hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentasjonen</a>.", + "No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Hurtigminne er ikke satt opp. For bedre ytelse bør du sette opp hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentasjonen</a>.", "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "/dev/urandom er ikke lesbar for PHP, noe som frarådes av sikkerhetsgrunner. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentasjonen</a>.", "You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Du bruker PHP-{version}. Oppgrader PHP-versjonen for å utnytte <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">ytelsen og sikkerhetsoppdateringene som tilbys av PHP Group</a, så fort din distribusjon støtter det.", "You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14." : "Du kjører nå PHP 5.6. Den nåværende hovedversjonen er den siste som støtter PHP 5.6. Det anbefales å oppgradere PHP-versjonen til 7.0+, for å kunne oppgradere til Nextcloud 14.", @@ -179,6 +179,7 @@ OC.L10N.register( "Enable" : "Aktiver", "Shared with you and the group {group} by {owner}" : "Delt med deg og gruppen {group} av {owner}", "Shared with you and {circle} by {owner}" : "Delt med deg og {circle} av {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Delt med deg og samtalen {conversation} av {owner}", "Shared with you by {owner}" : "Delt med deg av {owner}", "Choose a password for the mail share" : "Velg et passord for e-postlageret", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} delt via lenke", @@ -186,6 +187,7 @@ OC.L10N.register( "remote" : "ekstern", "remote group" : "ekstern gruppe", "email" : "e-post", + "conversation" : "samtale", "shared by {sharer}" : "delt av {sharer}", "Unshare" : "Avslutt deling", "Can reshare" : "Kan dele videre", @@ -356,7 +358,7 @@ OC.L10N.register( "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Vev-tjeneren din er ikke satt opp til å tillate synkronisering av filer ennå, fordi WebDAV-grensesnittet ikke ser ut til å virke.", "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Din vevtjener er ikke satt opp korrekt for å hente \"{url}\". Mer informasjon finner du i vår <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjon</a>.", "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Denne tjeneren har ingen fungerende internett-forbindelse. Dette betyr at noen funksjoner, som tilknytning av eksterne lagre, varslinger om oppdateringer eller installering av tredjepartsprogrammer ikke vil virke. Fjerntilgang til filer og utsending av varsler på e-post vil kanskje ikke virke heller. Vi anbefaler å aktivere en internett-forbindelse for denne tjeneren hvis du vil ha full funksjonalitet.", - "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Inget hurtigminne har blitt satt opp. For å øke ytelsen bør du sette opp et hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i vår <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjon</a>.", + "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Hurtigminne er ikke satt opp. For bedre ytelse bør du sette opp hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjonen</a>.", "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom er ikke lesbar for PHP, noe som frarådes av sikkerhetsgrunner. Mer informasjon finnes i vår <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjon</a>.", "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Du bruker PHP-{version}. Vi anbefaler deg å oppgradere PHP versjonen for å utnytte <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\"> ytelse og sikkerhetsoppdateringer som tilbys av PHP Group</a>, så fort din distribusjon støtter det.", "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "De omvendte mellomtjener-hodene er ikke satt opp rett, eller du kobler til Nextcloud fra en betrodd mellomtjener. Hvis du ikke kobler til Nextcloud fra en betrodd mellomtjener, er dette et sikkerhetsproblem, og kan tillate en angriper å forfalske deres IP-adresse slik den er synlig for Nextcloud. Ytterligere informasjon er å finne i <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjonen</a>.", @@ -366,7 +368,7 @@ OC.L10N.register( "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. We strongly recommend enabling this function." : "PHP-funksjonen \"set_time_limit\" er ikke tilgjengelig. Dette kan resultere i at skript blir stoppet midt i kjøring, noe som knekker installasjonen din. Det anbefales sterkt å skru på denne funksjonen.", "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Datamappen og filene dine er sannsynligvis tilgjengelige fra Internett. .htaccess-filen fungerer ikke. Det anbefales sterkt at du setter opp vev-tjeneren slik at datamappen ikke kan nås eller at du flytter datamappen ut av vev-tjenerens dokumentrot.", "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "HTTP-header \"{header}\" er ikke satt opp lik \"{expected}\". Dette kan være en sikkerhetsrisiko og vi anbefaler at denne innstillingen endres.", - "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "\"Strict-Transport-Security\"- (Streng transportsikkerhet) HTTP-hodet er ikke satt opp til minst \"{seconds}\" sekunder. For forbedret sikkerhet anbefales det å skru på HSTS som beskrevet i våre <a href=\"{docUrl}\" rel=\"noreferrer\">sikkerhetstips</a>.", + "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "HTTP innledning \"Strict-Transport-Security\" angir styrke på transportsikkerhet og er ikke satt opp med minst \"{seconds}\" sekunder. For bedre sikkerhet anbefales det å skru på HSTS som beskrevet i våre <a href=\"{docUrl}\" rel=\"noreferrer\">sikkerhetstips</a>.", "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Du besøker denne nettsiden via HTTP. Vi anbefaler på det sterkeste at du konfigurerer tjeneren til å kreve HTTPS i stedet, som beskrevet i <a href=\"{docUrl}\">sikkerhetstips</a>.", "Shared with {recipients}" : "Delt med {recipients}", "Error setting expiration date" : "Kan ikke sette utløpsdato", @@ -389,7 +391,7 @@ OC.L10N.register( "Add \"%s\" as trusted domain" : "Legg til \"%s\" som et klarert domene", "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "For hjelp, se i <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentasjonen</a>.", "Your PHP does not have freetype support. This will result in broken profile pictures and settings interface." : "Din PHP-installasjon har ikke FreeType-støtte. Dette fører til knekte profilbilder og skadelidende innstillingsgrensesnitt.", - "The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "\"Strict-Transport-Security\"- (Streng transportsikkerhet) HTTP-hodet er ikke satt opp til minst \"{seconds}\" sekunder. For bedret sikkerhet anbefales det å skru på HSTS som beskrevet i <a href=\"{docUrl}\" rel=\"noreferrer noopener\">sikkerhetstipsene</a>.", + "The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "HTTP innledning \"Strict-Transport-Security\" angir styrke på transportsikkerhet og er ikke satt opp med minst \"{seconds}\" sekunder. For bedre sikkerhet anbefales det å skru på HSTS som beskrevet i <a href=\"{docUrl}\" rel=\"noreferrer noopener\">sikkerhetstipsene</a>.", "Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "Du besøker denne nettsiden via HTTP. Det anbefales sterkt at du setter opp tjeneren til å kreve HTTPS i stedet, som beskrevet i <a href=\"{docUrl}\">sikkerhetstipsene</a>.", "Back to log in" : "Tilbake til innlogging", "Depending on your configuration, this button could also work to trust the domain:" : "Avhengig av ditt oppsett, kan denne knappen også betro domenet." diff --git a/core/l10n/nb.json b/core/l10n/nb.json index 67d4c77feb5..3f374cd0c4a 100644 --- a/core/l10n/nb.json +++ b/core/l10n/nb.json @@ -125,7 +125,7 @@ "Last background job execution ran {relativeTime}. Something seems wrong." : "Den siste bakgrunsjobben brukte {relativeTime}. Noe virker galt.", "Check the background job settings" : "Kontroller instillinger for bakgrunnsjobb", "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the Internet to enjoy all features." : "Denne tjeneren har ingen fungerende internett-forbindelse. Dette betyr at noen funksjoner, som tilknytning av eksterne lagre, varslinger om oppdateringer eller installering av tredjepartsprogrammer ikke vil virke. Fjerntilgang til filer og utsending av varsler på e-post vil kanskje ikke virke heller. Det anbefales å aktivere en internett-forbindelse for denne tjeneren hvis du vil ha full funksjonalitet.", - "No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Inget hurtigminne har blitt satt opp. For å øke ytelsen bør du sette opp et hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentasjonen</a>.", + "No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "Hurtigminne er ikke satt opp. For bedre ytelse bør du sette opp hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentasjonen</a>.", "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation</a>." : "/dev/urandom er ikke lesbar for PHP, noe som frarådes av sikkerhetsgrunner. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">dokumentasjonen</a>.", "You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Du bruker PHP-{version}. Oppgrader PHP-versjonen for å utnytte <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{phpLink}\">ytelsen og sikkerhetsoppdateringene som tilbys av PHP Group</a, så fort din distribusjon støtter det.", "You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14." : "Du kjører nå PHP 5.6. Den nåværende hovedversjonen er den siste som støtter PHP 5.6. Det anbefales å oppgradere PHP-versjonen til 7.0+, for å kunne oppgradere til Nextcloud 14.", @@ -177,6 +177,7 @@ "Enable" : "Aktiver", "Shared with you and the group {group} by {owner}" : "Delt med deg og gruppen {group} av {owner}", "Shared with you and {circle} by {owner}" : "Delt med deg og {circle} av {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "Delt med deg og samtalen {conversation} av {owner}", "Shared with you by {owner}" : "Delt med deg av {owner}", "Choose a password for the mail share" : "Velg et passord for e-postlageret", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} delt via lenke", @@ -184,6 +185,7 @@ "remote" : "ekstern", "remote group" : "ekstern gruppe", "email" : "e-post", + "conversation" : "samtale", "shared by {sharer}" : "delt av {sharer}", "Unshare" : "Avslutt deling", "Can reshare" : "Kan dele videre", @@ -354,7 +356,7 @@ "Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Vev-tjeneren din er ikke satt opp til å tillate synkronisering av filer ennå, fordi WebDAV-grensesnittet ikke ser ut til å virke.", "Your web server is not set up properly to resolve \"{url}\". Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Din vevtjener er ikke satt opp korrekt for å hente \"{url}\". Mer informasjon finner du i vår <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjon</a>.", "This server has no working Internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Denne tjeneren har ingen fungerende internett-forbindelse. Dette betyr at noen funksjoner, som tilknytning av eksterne lagre, varslinger om oppdateringer eller installering av tredjepartsprogrammer ikke vil virke. Fjerntilgang til filer og utsending av varsler på e-post vil kanskje ikke virke heller. Vi anbefaler å aktivere en internett-forbindelse for denne tjeneren hvis du vil ha full funksjonalitet.", - "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Inget hurtigminne har blitt satt opp. For å øke ytelsen bør du sette opp et hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i vår <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjon</a>.", + "No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "Hurtigminne er ikke satt opp. For bedre ytelse bør du sette opp hurtigminne hvis det er tilgjengelig. Mer informasjon finnes i <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjonen</a>.", "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "/dev/urandom er ikke lesbar for PHP, noe som frarådes av sikkerhetsgrunner. Mer informasjon finnes i vår <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjon</a>.", "You are currently running PHP {version}. We encourage you to upgrade your PHP version to take advantage of <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it." : "Du bruker PHP-{version}. Vi anbefaler deg å oppgradere PHP versjonen for å utnytte <a target=\"_blank\" rel=\"noreferrer\" href=\"{phpLink}\"> ytelse og sikkerhetsoppdateringer som tilbys av PHP Group</a>, så fort din distribusjon støtter det.", "The reverse proxy headers configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If you are not accessing Nextcloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to Nextcloud. Further information can be found in our <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">documentation</a>." : "De omvendte mellomtjener-hodene er ikke satt opp rett, eller du kobler til Nextcloud fra en betrodd mellomtjener. Hvis du ikke kobler til Nextcloud fra en betrodd mellomtjener, er dette et sikkerhetsproblem, og kan tillate en angriper å forfalske deres IP-adresse slik den er synlig for Nextcloud. Ytterligere informasjon er å finne i <a target=\"_blank\" rel=\"noreferrer\" href=\"{docLink}\">dokumentasjonen</a>.", @@ -364,7 +366,7 @@ "The PHP function \"set_time_limit\" is not available. This could result in scripts being halted mid-execution, breaking your installation. We strongly recommend enabling this function." : "PHP-funksjonen \"set_time_limit\" er ikke tilgjengelig. Dette kan resultere i at skript blir stoppet midt i kjøring, noe som knekker installasjonen din. Det anbefales sterkt å skru på denne funksjonen.", "Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Datamappen og filene dine er sannsynligvis tilgjengelige fra Internett. .htaccess-filen fungerer ikke. Det anbefales sterkt at du setter opp vev-tjeneren slik at datamappen ikke kan nås eller at du flytter datamappen ut av vev-tjenerens dokumentrot.", "The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "HTTP-header \"{header}\" er ikke satt opp lik \"{expected}\". Dette kan være en sikkerhetsrisiko og vi anbefaler at denne innstillingen endres.", - "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "\"Strict-Transport-Security\"- (Streng transportsikkerhet) HTTP-hodet er ikke satt opp til minst \"{seconds}\" sekunder. For forbedret sikkerhet anbefales det å skru på HSTS som beskrevet i våre <a href=\"{docUrl}\" rel=\"noreferrer\">sikkerhetstips</a>.", + "The \"Strict-Transport-Security\" HTTP header is not configured to at least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\" rel=\"noreferrer\">security tips</a>." : "HTTP innledning \"Strict-Transport-Security\" angir styrke på transportsikkerhet og er ikke satt opp med minst \"{seconds}\" sekunder. For bedre sikkerhet anbefales det å skru på HSTS som beskrevet i våre <a href=\"{docUrl}\" rel=\"noreferrer\">sikkerhetstips</a>.", "You are accessing this site via HTTP. We strongly suggest you configure your server to require using HTTPS instead as described in our <a href=\"{docUrl}\">security tips</a>." : "Du besøker denne nettsiden via HTTP. Vi anbefaler på det sterkeste at du konfigurerer tjeneren til å kreve HTTPS i stedet, som beskrevet i <a href=\"{docUrl}\">sikkerhetstips</a>.", "Shared with {recipients}" : "Delt med {recipients}", "Error setting expiration date" : "Kan ikke sette utløpsdato", @@ -387,7 +389,7 @@ "Add \"%s\" as trusted domain" : "Legg til \"%s\" som et klarert domene", "For help, see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation</a>." : "For hjelp, se i <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">dokumentasjonen</a>.", "Your PHP does not have freetype support. This will result in broken profile pictures and settings interface." : "Din PHP-installasjon har ikke FreeType-støtte. Dette fører til knekte profilbilder og skadelidende innstillingsgrensesnitt.", - "The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "\"Strict-Transport-Security\"- (Streng transportsikkerhet) HTTP-hodet er ikke satt opp til minst \"{seconds}\" sekunder. For bedret sikkerhet anbefales det å skru på HSTS som beskrevet i <a href=\"{docUrl}\" rel=\"noreferrer noopener\">sikkerhetstipsene</a>.", + "The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "HTTP innledning \"Strict-Transport-Security\" angir styrke på transportsikkerhet og er ikke satt opp med minst \"{seconds}\" sekunder. For bedre sikkerhet anbefales det å skru på HSTS som beskrevet i <a href=\"{docUrl}\" rel=\"noreferrer noopener\">sikkerhetstipsene</a>.", "Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "Du besøker denne nettsiden via HTTP. Det anbefales sterkt at du setter opp tjeneren til å kreve HTTPS i stedet, som beskrevet i <a href=\"{docUrl}\">sikkerhetstipsene</a>.", "Back to log in" : "Tilbake til innlogging", "Depending on your configuration, this button could also work to trust the domain:" : "Avhengig av ditt oppsett, kan denne knappen også betro domenet." diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js index 32511e73640..ac4cfb58cdc 100644 --- a/core/l10n/pt_BR.js +++ b/core/l10n/pt_BR.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Isso é recomendado ao usar o cliente da área de trabalho para sincronização de arquivos.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Para migrar o banco de dados, use o comando: 'occ db: convert-type' ou consulte a <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentação ↗</a>.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "O uso do mailer php embutido não é mais suportado. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Atualize suas configurações do servidor de e-mail ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "O limite de memória do PHP está abaixo do valor recomendado de 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Alguns diretórios de aplicativos são de propriedade de um usuário diferente do servidor da web. Esse pode ser o caso se os aplicativos tiverem sido instalados manualmente. Verifique as permissões dos seguintes diretórios de aplicativos:", "Error occurred while checking server setup" : "Erro ao verificar a configuração do servidor", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Seu diretório de dados e arquivos provavelmente podem ser acessados pela Internet. O arquivo .htaccess não está funcionando. É altamente recomendado que você configure seu servidor web para que o diretório de dados não seja mais acessível ou mova o diretório de dados fora da raiz de documentos do servidor web.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "O cabeçalho HTTP \"{header}\" não está definido para \"{expected}\". Este é um potencial risco de segurança ou privacidade e é recomendado ajustar esta configuração de acordo.", diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json index 5d6f853eb43..357899869e4 100644 --- a/core/l10n/pt_BR.json +++ b/core/l10n/pt_BR.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Isso é recomendado ao usar o cliente da área de trabalho para sincronização de arquivos.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Para migrar o banco de dados, use o comando: 'occ db: convert-type' ou consulte a <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentação ↗</a>.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "O uso do mailer php embutido não é mais suportado. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Atualize suas configurações do servidor de e-mail ↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "O limite de memória do PHP está abaixo do valor recomendado de 512MB.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Alguns diretórios de aplicativos são de propriedade de um usuário diferente do servidor da web. Esse pode ser o caso se os aplicativos tiverem sido instalados manualmente. Verifique as permissões dos seguintes diretórios de aplicativos:", "Error occurred while checking server setup" : "Erro ao verificar a configuração do servidor", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Seu diretório de dados e arquivos provavelmente podem ser acessados pela Internet. O arquivo .htaccess não está funcionando. É altamente recomendado que você configure seu servidor web para que o diretório de dados não seja mais acessível ou mova o diretório de dados fora da raiz de documentos do servidor web.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "O cabeçalho HTTP \"{header}\" não está definido para \"{expected}\". Este é um potencial risco de segurança ou privacidade e é recomendado ajustar esta configuração de acordo.", diff --git a/core/l10n/ru.js b/core/l10n/ru.js index 2ccf34b2a55..95d89a5944d 100644 --- a/core/l10n/ru.js +++ b/core/l10n/ru.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Такой переход рекомендован и при использовании приложений-клиентов для синхронизации файлов.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Для перехода к использованию другого механизма базы данных используйте команду: «occ db:convert-type» или обратитесь к <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">документации ↗</a>. ", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "Использование встроенного php отправителя больше не поддерживается. Пожалуйста, обновите настройки e-mail сервера.", + "The PHP memory limit is below the recommended value of 512MB." : "Разрешённое PHP максимальное значение использования памяти ниже рекомендуемого значения в 512 МБ,", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Владельцем некоторых каталогов не является учётная запись, под которой исполняется процесс web-сервера. Как правило это случается при установке вручную. Проверьте доступ к следующим каталогам приложения:", "Error occurred while checking server setup" : "Произошла ошибка при проверке настроек сервера", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Каталог данных и файлы, возможно, доступны из Интернета. Файл .htaccess не работает. Настоятельно рекомендуется настроить веб сервер таким образом, чтобы каталог данных не был доступен из внешней сети, либо переместить каталог данных за пределы корневого каталога веб-сервера.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "Заголовок HTTP «{header}» не настроен на значение «{expected}». Это потенциальная проблема безопасности для устранения которой рекомендуется задать этот параметр.", @@ -178,14 +180,16 @@ OC.L10N.register( "Share link" : "Поделиться ссылкой", "Enable" : "Включить", "Shared with you and the group {group} by {owner}" : "{owner} предоставил(а) доступ Вам и группе {group}", - "Shared with you and {circle} by {owner}" : "{owner} предоставил(а) Вам доступ и {circle}", + "Shared with you and {circle} by {owner}" : "{owner} предоставил(а) доступ Вам и участникам круга «{circle}»", + "Shared with you and the conversation {conversation} by {owner}" : "{owner} предоставил(а) доступ Вам и участникам беседы «{conversation} »", "Shared with you by {owner}" : "{owner} предоставил(а) Вам доступ", "Choose a password for the mail share" : "Укажите пароль для ссылки по почте", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} предоставил(а) доступ созданием ссылки", "group" : "группа", - "remote" : "удаленный", + "remote" : "на другом сервере", "remote group" : "группа на другом сервере", - "email" : "email", + "email" : "эл. почта", + "conversation" : "беседа", "shared by {sharer}" : "{sharer} предоставил(а) доступ", "Unshare" : "Закрыть доступ", "Can reshare" : "Можно делиться", @@ -391,7 +395,7 @@ OC.L10N.register( "Your PHP does not have freetype support. This will result in broken profile pictures and settings interface." : "Установленная версия PHP не поддерживает библиотеку FreeType, что приводит к неверному отображению изображений профиля и интерфейса настроек.", "The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "Заголовок HTTP «Strict-Transport-Security» должен быть настроен как минимум на «{seconds}» секунд. Для улучшения безопасности рекомендуется включить HSTS согласно нашим <a href=\"{docUrl}\" rel=\"noreferrer noopener\">подсказкам по безопасности</a>.", "Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "Используется небезопасное соподчинение по протоколу HTTP. Настоятельно рекомендуется настроить сервер на использование HTTPS согласно нашим <a href=\"{docUrl}\">подсказкам по безопасности</a>.", - "Back to log in" : "Авторизоваться повторно", + "Back to log in" : "Вернуться к диалогу входа в систему", "Depending on your configuration, this button could also work to trust the domain:" : "В зависимости от конфигурации, эта кнопка может сделать доверенным следующий домен:" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/core/l10n/ru.json b/core/l10n/ru.json index ed2793896c2..62e4867828d 100644 --- a/core/l10n/ru.json +++ b/core/l10n/ru.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Такой переход рекомендован и при использовании приложений-клиентов для синхронизации файлов.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Для перехода к использованию другого механизма базы данных используйте команду: «occ db:convert-type» или обратитесь к <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">документации ↗</a>. ", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "Использование встроенного php отправителя больше не поддерживается. Пожалуйста, обновите настройки e-mail сервера.", + "The PHP memory limit is below the recommended value of 512MB." : "Разрешённое PHP максимальное значение использования памяти ниже рекомендуемого значения в 512 МБ,", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Владельцем некоторых каталогов не является учётная запись, под которой исполняется процесс web-сервера. Как правило это случается при установке вручную. Проверьте доступ к следующим каталогам приложения:", "Error occurred while checking server setup" : "Произошла ошибка при проверке настроек сервера", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Каталог данных и файлы, возможно, доступны из Интернета. Файл .htaccess не работает. Настоятельно рекомендуется настроить веб сервер таким образом, чтобы каталог данных не был доступен из внешней сети, либо переместить каталог данных за пределы корневого каталога веб-сервера.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "Заголовок HTTP «{header}» не настроен на значение «{expected}». Это потенциальная проблема безопасности для устранения которой рекомендуется задать этот параметр.", @@ -176,14 +178,16 @@ "Share link" : "Поделиться ссылкой", "Enable" : "Включить", "Shared with you and the group {group} by {owner}" : "{owner} предоставил(а) доступ Вам и группе {group}", - "Shared with you and {circle} by {owner}" : "{owner} предоставил(а) Вам доступ и {circle}", + "Shared with you and {circle} by {owner}" : "{owner} предоставил(а) доступ Вам и участникам круга «{circle}»", + "Shared with you and the conversation {conversation} by {owner}" : "{owner} предоставил(а) доступ Вам и участникам беседы «{conversation} »", "Shared with you by {owner}" : "{owner} предоставил(а) Вам доступ", "Choose a password for the mail share" : "Укажите пароль для ссылки по почте", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} предоставил(а) доступ созданием ссылки", "group" : "группа", - "remote" : "удаленный", + "remote" : "на другом сервере", "remote group" : "группа на другом сервере", - "email" : "email", + "email" : "эл. почта", + "conversation" : "беседа", "shared by {sharer}" : "{sharer} предоставил(а) доступ", "Unshare" : "Закрыть доступ", "Can reshare" : "Можно делиться", @@ -389,7 +393,7 @@ "Your PHP does not have freetype support. This will result in broken profile pictures and settings interface." : "Установленная версия PHP не поддерживает библиотеку FreeType, что приводит к неверному отображению изображений профиля и интерфейса настроек.", "The \"Strict-Transport-Security\" HTTP header is not set to at least \"{seconds}\" seconds. For enhanced security, it is recommended to enable HSTS as described in the <a href=\"{docUrl}\" rel=\"noreferrer noopener\">security tips</a>." : "Заголовок HTTP «Strict-Transport-Security» должен быть настроен как минимум на «{seconds}» секунд. Для улучшения безопасности рекомендуется включить HSTS согласно нашим <a href=\"{docUrl}\" rel=\"noreferrer noopener\">подсказкам по безопасности</a>.", "Accessing site insecurely via HTTP. You are strongly adviced to set up your server to require HTTPS instead, as described in the <a href=\"{docUrl}\">security tips</a>." : "Используется небезопасное соподчинение по протоколу HTTP. Настоятельно рекомендуется настроить сервер на использование HTTPS согласно нашим <a href=\"{docUrl}\">подсказкам по безопасности</a>.", - "Back to log in" : "Авторизоваться повторно", + "Back to log in" : "Вернуться к диалогу входа в систему", "Depending on your configuration, this button could also work to trust the domain:" : "В зависимости от конфигурации, эта кнопка может сделать доверенным следующий домен:" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" }
\ No newline at end of file diff --git a/core/l10n/sr.js b/core/l10n/sr.js index 8c4c569e482..53a2324364b 100644 --- a/core/l10n/sr.js +++ b/core/l10n/sr.js @@ -179,6 +179,7 @@ OC.L10N.register( "Enable" : "Укључи", "Shared with you and the group {group} by {owner}" : "{owner} дели са вама и са групом {group}.", "Shared with you and {circle} by {owner}" : "Дељемп са Вама и кругом {circle} од стране корисника {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "{owner} поделио са Вама и у разговору {conversation}", "Shared with you by {owner}" : "{owner} дели са вама", "Choose a password for the mail share" : "Изаберите лозинку за дељење е-поштом", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} је поделио преко везе", @@ -186,6 +187,7 @@ OC.L10N.register( "remote" : "удаљени", "remote group" : "удаљена група", "email" : "е-пошта", + "conversation" : "разговор", "shared by {sharer}" : "поделио је {sharer}", "Unshare" : "Укини дељење", "Can reshare" : "Може да дели даље", diff --git a/core/l10n/sr.json b/core/l10n/sr.json index f8a8832f415..7c4870e639e 100644 --- a/core/l10n/sr.json +++ b/core/l10n/sr.json @@ -177,6 +177,7 @@ "Enable" : "Укључи", "Shared with you and the group {group} by {owner}" : "{owner} дели са вама и са групом {group}.", "Shared with you and {circle} by {owner}" : "Дељемп са Вама и кругом {circle} од стране корисника {owner}", + "Shared with you and the conversation {conversation} by {owner}" : "{owner} поделио са Вама и у разговору {conversation}", "Shared with you by {owner}" : "{owner} дели са вама", "Choose a password for the mail share" : "Изаберите лозинку за дељење е-поштом", "{{shareInitiatorDisplayName}} shared via link" : "{{shareInitiatorDisplayName}} је поделио преко везе", @@ -184,6 +185,7 @@ "remote" : "удаљени", "remote group" : "удаљена група", "email" : "е-пошта", + "conversation" : "разговор", "shared by {sharer}" : "поделио је {sharer}", "Unshare" : "Укини дељење", "Can reshare" : "Може да дели даље", diff --git a/core/l10n/tr.js b/core/l10n/tr.js index 6ffc48dae9e..bc087e90eb4 100644 --- a/core/l10n/tr.js +++ b/core/l10n/tr.js @@ -144,6 +144,8 @@ OC.L10N.register( "This is particularly recommended when using the desktop client for file synchronisation." : "Özellikle dosya eşitleme için masaüstü istemcisi kullanılırken SQLite kullanımı önerilmez.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Başka bir veritabanına geçmek için komut satırı aracını kullanın: 'occ db:convert-type' ya da <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">belgelere ↗</a> bakın.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "İç PHP e-posta gönderme uygulaması artık desteklenmiyor. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Lütfen e-posta sunucusu ayarlarınızı güncelleyin↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "PHP bellek sınırı önerilen 512 MB değerinden küçük.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Bazı uygulama klasörlerinin sahipliği web sunucusunun kullandığından başka bir kullanıcıya ait. Bu durum, uygulamalar el ile kurulduğunda ortaya çıkabilir. Şu uygulama klasörlerinin izinlerini denetleyin:", "Error occurred while checking server setup" : "Sunucu ayarları denetlenirken sorun çıktı", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Veri klasörünüz ve dosyalarınız İnternet üzerinden erişime açık olabilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak veri klasörüne erişimi engellemeniz ya da veri klasörünü web sunucu kök klasörü dışına taşımanız önemle önerilir.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTP üst bilgisi \"{expected}\" şeklinde ayarlanmamış. Bu durum olası bir güvenlik ya da gizlilik riski oluşturduğundan bu ayarın belirtildiği gibi yapılması önerilir.", diff --git a/core/l10n/tr.json b/core/l10n/tr.json index 7c3ef071164..1cf5c8a0927 100644 --- a/core/l10n/tr.json +++ b/core/l10n/tr.json @@ -142,6 +142,8 @@ "This is particularly recommended when using the desktop client for file synchronisation." : "Özellikle dosya eşitleme için masaüstü istemcisi kullanılırken SQLite kullanımı önerilmez.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">documentation ↗</a>." : "Başka bir veritabanına geçmek için komut satırı aracını kullanın: 'occ db:convert-type' ya da <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">belgelere ↗</a> bakın.", "Use of the the built in php mailer is no longer supported. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Please update your email server settings ↗<a/>." : "İç PHP e-posta gönderme uygulaması artık desteklenmiyor. <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"{docLink}\">Lütfen e-posta sunucusu ayarlarınızı güncelleyin↗<a/>.", + "The PHP memory limit is below the recommended value of 512MB." : "PHP bellek sınırı önerilen 512 MB değerinden küçük.", + "Some app directories are owned by a different user than the web server one. This may be the case if apps have been installed manually. Check the permissions of the following app directories:" : "Bazı uygulama klasörlerinin sahipliği web sunucusunun kullandığından başka bir kullanıcıya ait. Bu durum, uygulamalar el ile kurulduğunda ortaya çıkabilir. Şu uygulama klasörlerinin izinlerini denetleyin:", "Error occurred while checking server setup" : "Sunucu ayarları denetlenirken sorun çıktı", "Your data directory and files are probably accessible from the Internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root." : "Veri klasörünüz ve dosyalarınız İnternet üzerinden erişime açık olabilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak veri klasörüne erişimi engellemeniz ya da veri klasörünü web sunucu kök klasörü dışına taşımanız önemle önerilir.", "The \"{header}\" HTTP header is not set to \"{expected}\". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly." : "\"{header}\" HTTP üst bilgisi \"{expected}\" şeklinde ayarlanmamış. Bu durum olası bir güvenlik ya da gizlilik riski oluşturduğundan bu ayarın belirtildiği gibi yapılması önerilir.", diff --git a/core/register_command.php b/core/register_command.php index 0115c179bf9..744ee23e16b 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -154,6 +154,8 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\User\ListCommand(\OC::$server->getUserManager())); $application->add(new OC\Core\Command\User\Info(\OC::$server->getUserManager(), \OC::$server->getGroupManager())); + $application->add(new OC\Core\Command\Group\Add(\OC::$server->getGroupManager())); + $application->add(new OC\Core\Command\Group\Delete(\OC::$server->getGroupManager())); $application->add(new OC\Core\Command\Group\ListCommand(\OC::$server->getGroupManager())); $application->add(new OC\Core\Command\Group\AddUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager())); $application->add(new OC\Core\Command\Group\RemoveUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager())); diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 74ce43d4f88..0558da52d0b 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -78,7 +78,16 @@ </div> <?php if(isset($template) && $template->getFooterVisible()) { ?> <footer> - <p class="info"><?php print_unescaped($theme->getLongFooter()); ?></p> + <p><?php print_unescaped($theme->getLongFooter()); ?></p> + <?php + if ($_['showSimpleSignUpLink']) { + ?> + <p> + <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener">Get your own free account</a> + </p> + <?php + } + ?> </footer> <?php } ?> diff --git a/lib/composer/composer/autoload_classmap.php b/lib/composer/composer/autoload_classmap.php index 5b60dbd871f..c80072e596f 100644 --- a/lib/composer/composer/autoload_classmap.php +++ b/lib/composer/composer/autoload_classmap.php @@ -541,7 +541,9 @@ return array( 'OC\\Core\\Command\\Encryption\\SetDefaultModule' => $baseDir . '/core/Command/Encryption/SetDefaultModule.php', 'OC\\Core\\Command\\Encryption\\ShowKeyStorageRoot' => $baseDir . '/core/Command/Encryption/ShowKeyStorageRoot.php', 'OC\\Core\\Command\\Encryption\\Status' => $baseDir . '/core/Command/Encryption/Status.php', + 'OC\\Core\\Command\\Group\\Add' => $baseDir . '/core/Command/Group/Add.php', 'OC\\Core\\Command\\Group\\AddUser' => $baseDir . '/core/Command/Group/AddUser.php', + 'OC\\Core\\Command\\Group\\Delete' => $baseDir . '/core/Command/Group/Delete.php', 'OC\\Core\\Command\\Group\\ListCommand' => $baseDir . '/core/Command/Group/ListCommand.php', 'OC\\Core\\Command\\Group\\RemoveUser' => $baseDir . '/core/Command/Group/RemoveUser.php', 'OC\\Core\\Command\\Integrity\\CheckApp' => $baseDir . '/core/Command/Integrity/CheckApp.php', @@ -830,6 +832,7 @@ return array( 'OC\\Memcache\\Memcached' => $baseDir . '/lib/private/Memcache/Memcached.php', 'OC\\Memcache\\NullCache' => $baseDir . '/lib/private/Memcache/NullCache.php', 'OC\\Memcache\\Redis' => $baseDir . '/lib/private/Memcache/Redis.php', + 'OC\\MemoryInfo' => $baseDir . '/lib/private/MemoryInfo.php', 'OC\\Migration\\BackgroundRepair' => $baseDir . '/lib/private/Migration/BackgroundRepair.php', 'OC\\Migration\\ConsoleOutput' => $baseDir . '/lib/private/Migration/ConsoleOutput.php', 'OC\\Migration\\SimpleOutput' => $baseDir . '/lib/private/Migration/SimpleOutput.php', @@ -855,6 +858,7 @@ return array( 'OC\\Preview\\GIF' => $baseDir . '/lib/private/Preview/GIF.php', 'OC\\Preview\\Generator' => $baseDir . '/lib/private/Preview/Generator.php', 'OC\\Preview\\GeneratorHelper' => $baseDir . '/lib/private/Preview/GeneratorHelper.php', + 'OC\\Preview\\HEIC' => $baseDir . '/lib/private/Preview/HEIC.php', 'OC\\Preview\\Illustrator' => $baseDir . '/lib/private/Preview/Illustrator.php', 'OC\\Preview\\Image' => $baseDir . '/lib/private/Preview/Image.php', 'OC\\Preview\\JPEG' => $baseDir . '/lib/private/Preview/JPEG.php', diff --git a/lib/composer/composer/autoload_static.php b/lib/composer/composer/autoload_static.php index d91c4833b75..9e5ba1f2f15 100644 --- a/lib/composer/composer/autoload_static.php +++ b/lib/composer/composer/autoload_static.php @@ -571,7 +571,9 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c 'OC\\Core\\Command\\Encryption\\SetDefaultModule' => __DIR__ . '/../../..' . '/core/Command/Encryption/SetDefaultModule.php', 'OC\\Core\\Command\\Encryption\\ShowKeyStorageRoot' => __DIR__ . '/../../..' . '/core/Command/Encryption/ShowKeyStorageRoot.php', 'OC\\Core\\Command\\Encryption\\Status' => __DIR__ . '/../../..' . '/core/Command/Encryption/Status.php', + 'OC\\Core\\Command\\Group\\Add' => __DIR__ . '/../../..' . '/core/Command/Group/Add.php', 'OC\\Core\\Command\\Group\\AddUser' => __DIR__ . '/../../..' . '/core/Command/Group/AddUser.php', + 'OC\\Core\\Command\\Group\\Delete' => __DIR__ . '/../../..' . '/core/Command/Group/Delete.php', 'OC\\Core\\Command\\Group\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/Group/ListCommand.php', 'OC\\Core\\Command\\Group\\RemoveUser' => __DIR__ . '/../../..' . '/core/Command/Group/RemoveUser.php', 'OC\\Core\\Command\\Integrity\\CheckApp' => __DIR__ . '/../../..' . '/core/Command/Integrity/CheckApp.php', @@ -860,6 +862,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c 'OC\\Memcache\\Memcached' => __DIR__ . '/../../..' . '/lib/private/Memcache/Memcached.php', 'OC\\Memcache\\NullCache' => __DIR__ . '/../../..' . '/lib/private/Memcache/NullCache.php', 'OC\\Memcache\\Redis' => __DIR__ . '/../../..' . '/lib/private/Memcache/Redis.php', + 'OC\\MemoryInfo' => __DIR__ . '/../../..' . '/lib/private/MemoryInfo.php', 'OC\\Migration\\BackgroundRepair' => __DIR__ . '/../../..' . '/lib/private/Migration/BackgroundRepair.php', 'OC\\Migration\\ConsoleOutput' => __DIR__ . '/../../..' . '/lib/private/Migration/ConsoleOutput.php', 'OC\\Migration\\SimpleOutput' => __DIR__ . '/../../..' . '/lib/private/Migration/SimpleOutput.php', @@ -885,6 +888,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c 'OC\\Preview\\GIF' => __DIR__ . '/../../..' . '/lib/private/Preview/GIF.php', 'OC\\Preview\\Generator' => __DIR__ . '/../../..' . '/lib/private/Preview/Generator.php', 'OC\\Preview\\GeneratorHelper' => __DIR__ . '/../../..' . '/lib/private/Preview/GeneratorHelper.php', + 'OC\\Preview\\HEIC' => __DIR__ . '/../../..' . '/lib/private/Preview/HEIC.php', 'OC\\Preview\\Illustrator' => __DIR__ . '/../../..' . '/lib/private/Preview/Illustrator.php', 'OC\\Preview\\Image' => __DIR__ . '/../../..' . '/lib/private/Preview/Image.php', 'OC\\Preview\\JPEG' => __DIR__ . '/../../..' . '/lib/private/Preview/JPEG.php', diff --git a/lib/l10n/cs.js b/lib/l10n/cs.js index bbf05769a55..0f26fdd1db0 100644 --- a/lib/l10n/cs.js +++ b/lib/l10n/cs.js @@ -77,6 +77,7 @@ OC.L10N.register( "Groupware" : "Groupware", "Additional settings" : "Dodatečná nastavení", "Personal info" : "Osobní informace", + "Mobile & desktop" : "Mobilní a desktop", "Unlimited" : "Neomezeně", "Verifying" : "Ověření", "Verifying …" : "Ověřování …", @@ -126,14 +127,14 @@ OC.L10N.register( "Can’t increase permissions of %s" : "Nelze zvýšit oprávnění %s", "Files can’t be shared with delete permissions" : "Soubory nelze sdílet s oprávněními k odstranění", "Files can’t be shared with create permissions" : "Soubory nelze sdílet s oprávněními k vytváření", - "Expiration date is in the past" : "Datum vypršení je v minulosti", + "Expiration date is in the past" : "Datum skončení platnosti je v minulosti", "Can’t set expiration date more than %s days in the future" : "Nelze nastavit datum vypršení platnosti více než %s dní v budoucnu", "%s shared »%s« with you" : "%s s vámi sdílí »%s«", "%s shared »%s« with you." : "%s s vámi sdílel(a) »%s»", "Click the button below to open it." : "Pro otevření kliknětena tlačítko níže.", "%s via %s" : "%s pomocí %s", - "The requested share does not exist anymore" : "Požadované sdílení již neexistuje", - "Could not find category \"%s\"" : "Nelze nalézt kategorii \"%s\"", + "The requested share does not exist anymore" : "Požadované sdílení už neexistuje", + "Could not find category \"%s\"" : "Nedaří se nalézt kategorii „%s“", "Sunday" : "Neděle", "Monday" : "Pondělí", "Tuesday" : "Úterý", @@ -180,21 +181,21 @@ OC.L10N.register( "Nov." : "listopad", "Dec." : "prosinec", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Pouze následující znaky jsou povoleny pro uživatelské jméno: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"", - "A valid username must be provided" : "Musíte zadat platné uživatelské jméno", + "A valid username must be provided" : "Je třeba zadat platné uživatelské jméno", "Username contains whitespace at the beginning or at the end" : "Uživatelské jméno obsahuje mezery na svém začátku nebo konci", "Username must not consist of dots only" : "Uživatelské jméno se nesmí skládat ze samých teček", - "A valid password must be provided" : "Musíte zadat platné heslo", - "The username is already being used" : "Uživatelské jméno je již využíváno", + "A valid password must be provided" : "Je třeba zadat platné heslo", + "The username is already being used" : "Uživatelské jméno už je využíváno", "Could not create user" : "Nepodařilo se vytvořit uživatele", "User disabled" : "Uživatel zakázán", "Login canceled by app" : "Přihlášení zrušeno aplikací", "App \"%s\" cannot be installed because the following dependencies are not fulfilled: %s" : "Aplikaci \"%s\" nelze nainstalovat, protože nejsou splněny následující závislosti: %s", "a safe home for all your data" : "bezpečný domov pro všechna vaše data", - "File is currently busy, please try again later" : "Soubor je používán, zkus to později", + "File is currently busy, please try again later" : "Soubor je používán, zkuste to později", "Can't read file" : "Nelze přečíst soubor", "Application is not enabled" : "Aplikace není povolena", "Authentication error" : "Chyba ověření", - "Token expired. Please reload page." : "Token vypršel. Obnovte prosím stránku.", + "Token expired. Please reload page." : "Platnost tokenu skončila. Načtěte stránku znovu.", "No database drivers (sqlite, mysql, or postgresql) installed." : "Nejsou instalovány ovladače databází (sqlite, mysql nebo postresql).", "Cannot write into \"config\" directory" : "Nelze zapisovat do adresáře \"config\"", "Cannot write into \"apps\" directory" : "Nelze zapisovat do adresáře \"apps\"", @@ -202,11 +203,11 @@ OC.L10N.register( "Cannot create \"data\" directory" : "Nelze vytvořit datový adresář", "This can usually be fixed by giving the webserver write access to the root directory. See %s" : "To lze obvykle vyřešit povolením zápisu webovému serveru do kořenového adresáře. Viz %s", "Permissions can usually be fixed by giving the webserver write access to the root directory. See %s." : "Oprávnění lze obvykle napravit povolením zápisu webovému serveru do kořenového adresáře. Viz %s.", - "Setting locale to %s failed" : "Nastavení jazyka na %s selhalo", + "Setting locale to %s failed" : "Nastavení jazyka na %s se nezdařilo", "Please install one of these locales on your system and restart your webserver." : "Prosím nainstalujte alespoň jeden z těchto jazyků do svého systému a restartujte webový server.", "Please ask your server administrator to install the module." : "Požádejte svého správce systému o instalaci tohoto modulu.", "PHP module %s not installed." : "PHP modul %s není nainstalován.", - "PHP setting \"%s\" is not set to \"%s\"." : "PHP hodnota \"%s\" není nastavena na \"%s\".", + "PHP setting \"%s\" is not set to \"%s\"." : "PHP hodnota „%s“ není nastavena na „%s“.", "Adjusting this setting in php.ini will make Nextcloud run again" : "Změna tohoto nastavení v php.ini umožní Nextcloudu opět běžet", "mbstring.func_overload is set to \"%s\" instead of the expected value \"0\"" : "mbstring.func_overload je nastaven na \"%s\" místo očekávané hodnoty \"0\"", "To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini" : "Pro nápravu nastavte <code>mbstring.func_overload</code> na <code>0</code> v souboru php.ini", @@ -217,14 +218,14 @@ OC.L10N.register( "PHP modules have been installed, but they are still listed as missing?" : "PHP moduly jsou nainstalovány, ale stále se tváří jako chybějící?", "Please ask your server administrator to restart the web server." : "Požádejte svého správce systému o restart webového serveru.", "PostgreSQL >= 9 required" : "Je vyžadováno PostgreSQL >= 9", - "Please upgrade your database version" : "Aktualizujte prosím verzi své databáze", + "Please upgrade your database version" : "Aktualizujte verzi své databáze", "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Změňte prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", "Your data directory is readable by other users" : "Váš datový adresář mohou číst ostatní užovatelé", "Your data directory must be an absolute path" : "Váš datový adresář musí být absolutní cesta", - "Check the value of \"datadirectory\" in your configuration" : "Ověřte hodnotu \"datadirectory\" ve své konfiguraci", + "Check the value of \"datadirectory\" in your configuration" : "Zkontrolujte hodnotu „datadirectory“ ve svém nastavení", "Your data directory is invalid" : "Váš datový adresář je neplatný", "Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ujistěte se, že v kořenovém adresáři je soubor s názvem \".ocdata\".", - "Action \"%s\" not supported or implemented." : "Akce \"%s\" nepodporována nebo neimplementována.", + "Action \"%s\" not supported or implemented." : "Akce „%s“ není podporována nebo implementována.", "Authentication failed, wrong token or provider ID given" : "Autentizace selhala, předán chybný token nebo id poskytovatele", "Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloudový poskytovatel federace s ID: \"%s\" neexistuje", "Could not obtain lock type %d on \"%s\"." : "Nelze získat zámek typu %d na \"%s\".", @@ -232,7 +233,7 @@ OC.L10N.register( "Storage incomplete configuration. %s" : "Nekompletní konfigurace úložiště. %s", "Storage connection error. %s" : "Chyba připojení úložiště. %s", "Storage is temporarily not available" : "Úložiště je dočasně nedostupné", - "Storage connection timeout. %s" : "Vypršení připojení k úložišti. %s", + "Storage connection timeout. %s" : "Překročen časový limit připojování k úložišti. %s", "Personal" : "Osobní", "Admin" : "Správce", "APCu" : "APCu", @@ -240,12 +241,14 @@ OC.L10N.register( "Encryption" : "Šifrování", "Tips & tricks" : "Tipy a triky", "DB Error: \"%s\"" : "Chyba databáze: „%s“", + "Setting permissions for %s failed, because the item was not found" : "Nastavení oprávnění pro %s se nezdařilo, protože položka nebyla nalezena", + "Cannot clear expiration date. Shares are required to have an expiration date." : "Datum skončení platnosti nelze odebrat. Je třeba, aby sdílení měla datum skončení platnosti.", "Cannot increase permissions of %s" : "Nelze zvýšit oprávnění %s", "Files can't be shared with delete permissions" : "Soubory nemohou být sdíleny s právy pro smazání", "Files can't be shared with create permissions" : "Soubory nemohou být sdíleny s právy pro vytvoření", "Cannot set expiration date more than %s days in the future" : "Datum vypršení více jak %s dnů v budoucnosti nelze nastavit", "No app name specified" : "Nezadán název aplikace", - "App '%s' could not be installed!" : "Aplikaci '%s' se nepodařilo nainstalovat!", + "App '%s' could not be installed!" : "Aplikaci „%s“ se nepodařilo nainstalovat!", "Sync clients" : "Synchronizační klienti" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/lib/l10n/cs.json b/lib/l10n/cs.json index 111bc8eade0..1f4dd7ef180 100644 --- a/lib/l10n/cs.json +++ b/lib/l10n/cs.json @@ -75,6 +75,7 @@ "Groupware" : "Groupware", "Additional settings" : "Dodatečná nastavení", "Personal info" : "Osobní informace", + "Mobile & desktop" : "Mobilní a desktop", "Unlimited" : "Neomezeně", "Verifying" : "Ověření", "Verifying …" : "Ověřování …", @@ -124,14 +125,14 @@ "Can’t increase permissions of %s" : "Nelze zvýšit oprávnění %s", "Files can’t be shared with delete permissions" : "Soubory nelze sdílet s oprávněními k odstranění", "Files can’t be shared with create permissions" : "Soubory nelze sdílet s oprávněními k vytváření", - "Expiration date is in the past" : "Datum vypršení je v minulosti", + "Expiration date is in the past" : "Datum skončení platnosti je v minulosti", "Can’t set expiration date more than %s days in the future" : "Nelze nastavit datum vypršení platnosti více než %s dní v budoucnu", "%s shared »%s« with you" : "%s s vámi sdílí »%s«", "%s shared »%s« with you." : "%s s vámi sdílel(a) »%s»", "Click the button below to open it." : "Pro otevření kliknětena tlačítko níže.", "%s via %s" : "%s pomocí %s", - "The requested share does not exist anymore" : "Požadované sdílení již neexistuje", - "Could not find category \"%s\"" : "Nelze nalézt kategorii \"%s\"", + "The requested share does not exist anymore" : "Požadované sdílení už neexistuje", + "Could not find category \"%s\"" : "Nedaří se nalézt kategorii „%s“", "Sunday" : "Neděle", "Monday" : "Pondělí", "Tuesday" : "Úterý", @@ -178,21 +179,21 @@ "Nov." : "listopad", "Dec." : "prosinec", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Pouze následující znaky jsou povoleny pro uživatelské jméno: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"", - "A valid username must be provided" : "Musíte zadat platné uživatelské jméno", + "A valid username must be provided" : "Je třeba zadat platné uživatelské jméno", "Username contains whitespace at the beginning or at the end" : "Uživatelské jméno obsahuje mezery na svém začátku nebo konci", "Username must not consist of dots only" : "Uživatelské jméno se nesmí skládat ze samých teček", - "A valid password must be provided" : "Musíte zadat platné heslo", - "The username is already being used" : "Uživatelské jméno je již využíváno", + "A valid password must be provided" : "Je třeba zadat platné heslo", + "The username is already being used" : "Uživatelské jméno už je využíváno", "Could not create user" : "Nepodařilo se vytvořit uživatele", "User disabled" : "Uživatel zakázán", "Login canceled by app" : "Přihlášení zrušeno aplikací", "App \"%s\" cannot be installed because the following dependencies are not fulfilled: %s" : "Aplikaci \"%s\" nelze nainstalovat, protože nejsou splněny následující závislosti: %s", "a safe home for all your data" : "bezpečný domov pro všechna vaše data", - "File is currently busy, please try again later" : "Soubor je používán, zkus to později", + "File is currently busy, please try again later" : "Soubor je používán, zkuste to později", "Can't read file" : "Nelze přečíst soubor", "Application is not enabled" : "Aplikace není povolena", "Authentication error" : "Chyba ověření", - "Token expired. Please reload page." : "Token vypršel. Obnovte prosím stránku.", + "Token expired. Please reload page." : "Platnost tokenu skončila. Načtěte stránku znovu.", "No database drivers (sqlite, mysql, or postgresql) installed." : "Nejsou instalovány ovladače databází (sqlite, mysql nebo postresql).", "Cannot write into \"config\" directory" : "Nelze zapisovat do adresáře \"config\"", "Cannot write into \"apps\" directory" : "Nelze zapisovat do adresáře \"apps\"", @@ -200,11 +201,11 @@ "Cannot create \"data\" directory" : "Nelze vytvořit datový adresář", "This can usually be fixed by giving the webserver write access to the root directory. See %s" : "To lze obvykle vyřešit povolením zápisu webovému serveru do kořenového adresáře. Viz %s", "Permissions can usually be fixed by giving the webserver write access to the root directory. See %s." : "Oprávnění lze obvykle napravit povolením zápisu webovému serveru do kořenového adresáře. Viz %s.", - "Setting locale to %s failed" : "Nastavení jazyka na %s selhalo", + "Setting locale to %s failed" : "Nastavení jazyka na %s se nezdařilo", "Please install one of these locales on your system and restart your webserver." : "Prosím nainstalujte alespoň jeden z těchto jazyků do svého systému a restartujte webový server.", "Please ask your server administrator to install the module." : "Požádejte svého správce systému o instalaci tohoto modulu.", "PHP module %s not installed." : "PHP modul %s není nainstalován.", - "PHP setting \"%s\" is not set to \"%s\"." : "PHP hodnota \"%s\" není nastavena na \"%s\".", + "PHP setting \"%s\" is not set to \"%s\"." : "PHP hodnota „%s“ není nastavena na „%s“.", "Adjusting this setting in php.ini will make Nextcloud run again" : "Změna tohoto nastavení v php.ini umožní Nextcloudu opět běžet", "mbstring.func_overload is set to \"%s\" instead of the expected value \"0\"" : "mbstring.func_overload je nastaven na \"%s\" místo očekávané hodnoty \"0\"", "To fix this issue set <code>mbstring.func_overload</code> to <code>0</code> in your php.ini" : "Pro nápravu nastavte <code>mbstring.func_overload</code> na <code>0</code> v souboru php.ini", @@ -215,14 +216,14 @@ "PHP modules have been installed, but they are still listed as missing?" : "PHP moduly jsou nainstalovány, ale stále se tváří jako chybějící?", "Please ask your server administrator to restart the web server." : "Požádejte svého správce systému o restart webového serveru.", "PostgreSQL >= 9 required" : "Je vyžadováno PostgreSQL >= 9", - "Please upgrade your database version" : "Aktualizujte prosím verzi své databáze", + "Please upgrade your database version" : "Aktualizujte verzi své databáze", "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Změňte prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", "Your data directory is readable by other users" : "Váš datový adresář mohou číst ostatní užovatelé", "Your data directory must be an absolute path" : "Váš datový adresář musí být absolutní cesta", - "Check the value of \"datadirectory\" in your configuration" : "Ověřte hodnotu \"datadirectory\" ve své konfiguraci", + "Check the value of \"datadirectory\" in your configuration" : "Zkontrolujte hodnotu „datadirectory“ ve svém nastavení", "Your data directory is invalid" : "Váš datový adresář je neplatný", "Ensure there is a file called \".ocdata\" in the root of the data directory." : "Ujistěte se, že v kořenovém adresáři je soubor s názvem \".ocdata\".", - "Action \"%s\" not supported or implemented." : "Akce \"%s\" nepodporována nebo neimplementována.", + "Action \"%s\" not supported or implemented." : "Akce „%s“ není podporována nebo implementována.", "Authentication failed, wrong token or provider ID given" : "Autentizace selhala, předán chybný token nebo id poskytovatele", "Cloud Federation Provider with ID: \"%s\" does not exist." : "Cloudový poskytovatel federace s ID: \"%s\" neexistuje", "Could not obtain lock type %d on \"%s\"." : "Nelze získat zámek typu %d na \"%s\".", @@ -230,7 +231,7 @@ "Storage incomplete configuration. %s" : "Nekompletní konfigurace úložiště. %s", "Storage connection error. %s" : "Chyba připojení úložiště. %s", "Storage is temporarily not available" : "Úložiště je dočasně nedostupné", - "Storage connection timeout. %s" : "Vypršení připojení k úložišti. %s", + "Storage connection timeout. %s" : "Překročen časový limit připojování k úložišti. %s", "Personal" : "Osobní", "Admin" : "Správce", "APCu" : "APCu", @@ -238,12 +239,14 @@ "Encryption" : "Šifrování", "Tips & tricks" : "Tipy a triky", "DB Error: \"%s\"" : "Chyba databáze: „%s“", + "Setting permissions for %s failed, because the item was not found" : "Nastavení oprávnění pro %s se nezdařilo, protože položka nebyla nalezena", + "Cannot clear expiration date. Shares are required to have an expiration date." : "Datum skončení platnosti nelze odebrat. Je třeba, aby sdílení měla datum skončení platnosti.", "Cannot increase permissions of %s" : "Nelze zvýšit oprávnění %s", "Files can't be shared with delete permissions" : "Soubory nemohou být sdíleny s právy pro smazání", "Files can't be shared with create permissions" : "Soubory nemohou být sdíleny s právy pro vytvoření", "Cannot set expiration date more than %s days in the future" : "Datum vypršení více jak %s dnů v budoucnosti nelze nastavit", "No app name specified" : "Nezadán název aplikace", - "App '%s' could not be installed!" : "Aplikaci '%s' se nepodařilo nainstalovat!", + "App '%s' could not be installed!" : "Aplikaci „%s“ se nepodařilo nainstalovat!", "Sync clients" : "Synchronizační klienti" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" }
\ No newline at end of file diff --git a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php index d32fd8c856e..96ede656dae 100644 --- a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php +++ b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php @@ -28,14 +28,14 @@ class EnterpriseBundle extends Bundle { /** * {@inheritDoc} */ - public function getName() { - return (string)$this->l10n->t('Enterprise bundle'); + public function getName(): string { + return $this->l10n->t('Enterprise bundle'); } /** * {@inheritDoc} */ - public function getAppIdentifiers() { + public function getAppIdentifiers(): array { return [ 'admin_audit', 'user_ldap', @@ -43,6 +43,7 @@ class EnterpriseBundle extends Bundle { 'files_automatedtagging', 'user_saml', 'files_accesscontrol', + 'terms_of_service', ]; } diff --git a/lib/private/App/AppStore/Bundles/GroupwareBundle.php b/lib/private/App/AppStore/Bundles/GroupwareBundle.php index 042d97c3efc..4f0a815bfc8 100644 --- a/lib/private/App/AppStore/Bundles/GroupwareBundle.php +++ b/lib/private/App/AppStore/Bundles/GroupwareBundle.php @@ -39,7 +39,8 @@ class GroupwareBundle extends Bundle { return [ 'calendar', 'contacts', - 'spreed', + 'deck', + 'mail' ]; } diff --git a/lib/private/App/InfoParser.php b/lib/private/App/InfoParser.php index b811cfca31d..e0ed63fc784 100644 --- a/lib/private/App/InfoParser.php +++ b/lib/private/App/InfoParser.php @@ -174,6 +174,9 @@ class InfoParser { if (isset($array['commands']['command']) && is_array($array['commands']['command'])) { $array['commands'] = $array['commands']['command']; } + if (isset($array['two-factor-providers']['provider']) && is_array($array['two-factor-providers']['provider'])) { + $array['two-factor-providers'] = $array['two-factor-providers']['provider']; + } if (isset($array['activity']['filters']['filter']) && is_array($array['activity']['filters']['filter'])) { $array['activity']['filters'] = $array['activity']['filters']['filter']; } diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php index 1de5fbd6ca3..0e30fa02b94 100644 --- a/lib/private/Console/Application.php +++ b/lib/private/Console/Application.php @@ -29,6 +29,7 @@ */ namespace OC\Console; +use OC\MemoryInfo; use OC\NeedsUpdateException; use OC_App; use OCP\AppFramework\QueryException; @@ -52,20 +53,28 @@ class Application { private $request; /** @var ILogger */ private $logger; + /** @var MemoryInfo */ + private $memoryInfo; /** * @param IConfig $config * @param EventDispatcherInterface $dispatcher * @param IRequest $request * @param ILogger $logger + * @param MemoryInfo $memoryInfo */ - public function __construct(IConfig $config, EventDispatcherInterface $dispatcher, IRequest $request, ILogger $logger) { + public function __construct(IConfig $config, + EventDispatcherInterface $dispatcher, + IRequest $request, + ILogger $logger, + MemoryInfo $memoryInfo) { $defaults = \OC::$server->getThemingDefaults(); $this->config = $config; $this->application = new SymfonyApplication($defaults->getName(), \OC_Util::getVersionString()); $this->dispatcher = $dispatcher; $this->request = $request; $this->logger = $logger; + $this->memoryInfo = $memoryInfo; } /** @@ -97,6 +106,14 @@ class Application { if ($input->getOption('no-warnings')) { $output->setVerbosity(OutputInterface::VERBOSITY_QUIET); } + + if ($this->memoryInfo->isMemoryLimitSufficient() === false) { + $output->getErrorOutput()->writeln( + '<comment>The current PHP memory limit ' . + 'is below the recommended value of 512MB.</comment>' + ); + } + try { require_once __DIR__ . '/../../../core/register_command.php'; if ($this->config->getSystemValue('installed', false)) { diff --git a/lib/private/MemoryInfo.php b/lib/private/MemoryInfo.php new file mode 100644 index 00000000000..4b8d2bce37b --- /dev/null +++ b/lib/private/MemoryInfo.php @@ -0,0 +1,81 @@ +<?php +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2018, Michael Weimann (<mail@michael-weimann.eu>) + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OC; + +/** + * Helper class that covers memory info. + */ +class MemoryInfo { + + const RECOMMENDED_MEMORY_LIMIT = 512 * 1024 * 1024; + + /** + * Tests if the memory limit is greater or equal the recommended value. + * + * @return bool + */ + public function isMemoryLimitSufficient(): bool { + $memoryLimit = $this->getMemoryLimit(); + return $memoryLimit === -1 || $memoryLimit >= self::RECOMMENDED_MEMORY_LIMIT; + } + + /** + * Returns the php memory limit. + * + * @return int The memory limit in bytes. + */ + public function getMemoryLimit(): int { + $iniValue = trim(ini_get('memory_limit')); + if ($iniValue === '-1') { + return -1; + } else if (is_numeric($iniValue) === true) { + return (int)$iniValue; + } else { + return $this->memoryLimitToBytes($iniValue); + } + } + + /** + * Converts the ini memory limit to bytes. + * + * @param string $memoryLimit The "memory_limit" ini value + * @return int + */ + private function memoryLimitToBytes(string $memoryLimit): int { + $last = strtolower(substr($memoryLimit, -1)); + $memoryLimit = (int)substr($memoryLimit, 0, -1); + + // intended fall trough + switch($last) { + case 'g': + $memoryLimit *= 1024; + case 'm': + $memoryLimit *= 1024; + case 'k': + $memoryLimit *= 1024; + } + + return $memoryLimit; + } +} diff --git a/lib/private/Preview/Generator.php b/lib/private/Preview/Generator.php index 3e81004c8aa..86579e3480b 100644 --- a/lib/private/Preview/Generator.php +++ b/lib/private/Preview/Generator.php @@ -184,6 +184,10 @@ class Generator { continue; } + if (!$provider->isAvailable($file)) { + continue; + } + $maxWidth = (int)$this->config->getSystemValue('preview_max_x', 4096); $maxHeight = (int)$this->config->getSystemValue('preview_max_y', 4096); diff --git a/lib/private/Preview/HEIC.php b/lib/private/Preview/HEIC.php new file mode 100644 index 00000000000..151326129bc --- /dev/null +++ b/lib/private/Preview/HEIC.php @@ -0,0 +1,40 @@ +<?php +/** + * @author Thomas Müller <thomas.mueller@tmit.eu> + * + * @copyright Copyright (c) 2018, ownCloud GmbH + * @copyright Copyright (c) 2018, Sebastian Steinmetz (me@sebastiansteinmetz.ch) + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OC\Preview; + +class HEIC extends Bitmap { + /** + * {@inheritDoc} + */ + public function getMimeType() { + return '/image\/hei(f|c)/'; + } + + /** + * {@inheritDoc} + */ + public function isAvailable(\OCP\Files\FileInfo $file) { + return in_array("HEIC", \Imagick::queryFonts("HEI*") ); + } + +} diff --git a/lib/private/PreviewManager.php b/lib/private/PreviewManager.php index 979208d0aed..de03861badc 100644 --- a/lib/private/PreviewManager.php +++ b/lib/private/PreviewManager.php @@ -278,6 +278,7 @@ class PreviewManager implements IPreview { * - OC\Preview\JPEG * - OC\Preview\GIF * - OC\Preview\BMP + * - OC\Preview\HEIC * - OC\Preview\XBitmap * - OC\Preview\MarkDown * - OC\Preview\MP3 @@ -310,6 +311,7 @@ class PreviewManager implements IPreview { Preview\JPEG::class, Preview\GIF::class, Preview\BMP::class, + Preview\HEIC::class, Preview\XBitmap::class ]; @@ -370,6 +372,7 @@ class PreviewManager implements IPreview { 'PSD' => ['mimetype' => '/application\/x-photoshop/', 'class' => Preview\Photoshop::class], 'EPS' => ['mimetype' => '/application\/postscript/', 'class' => Preview\Postscript::class], 'TTF' => ['mimetype' => '/application\/(?:font-sfnt|x-font$)/', 'class' => Preview\Font::class], + 'HEIC' => ['mimetype' => '/image\/hei(f|c)/', 'class' => Preview\HEIC::class], ]; foreach ($imagickProviders as $queryFormat => $provider) { diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index fc2e5798e1c..0bd57c4139b 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -132,6 +132,7 @@ class TemplateLayout extends \OC_Template { parent::__construct('core', 'layout.public'); $this->assign( 'appid', $appId ); $this->assign('bodyid', 'body-public'); + $this->assign('showSimpleSignUpLink', $this->config->getSystemValue('simpleSignUpLink.shown', true) !== false); } else { parent::__construct('core', 'layout.base'); diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php index ee1439b9e20..fbd6a0a78e3 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -732,6 +732,9 @@ class Session implements IUserSession, Emitter { return false; } + // Update token scope + $this->lockdownManager->setToken($dbToken); + $this->tokenProvider->updateTokenActivity($dbToken); return true; diff --git a/lib/public/IUserManager.php b/lib/public/IUserManager.php index d20b4a3fa9a..904d447c319 100644 --- a/lib/public/IUserManager.php +++ b/lib/public/IUserManager.php @@ -131,7 +131,7 @@ interface IUserManager { * @param string $uid * @param string $password * @throws \InvalidArgumentException - * @return bool|\OCP\IUser the created user of false + * @return bool|\OCP\IUser the created user or false * @since 8.0.0 */ public function createUser($uid, $password); diff --git a/resources/config/mimetypemapping.dist.json b/resources/config/mimetypemapping.dist.json index e2771be6e89..614ac1a0ce7 100644 --- a/resources/config/mimetypemapping.dist.json +++ b/resources/config/mimetypemapping.dist.json @@ -62,6 +62,8 @@ "gz": ["application/x-gzip"], "gzip": ["application/x-gzip"], "h": ["text/x-h"], + "heic": ["image/heic"], + "heif": ["image/heif"], "hh": ["text/x-h"], "hpp": ["text/x-h"], "htaccess": ["text/plain"], diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php index c706d6e7350..747e60c7cb2 100644 --- a/settings/Controller/CheckSetupController.php +++ b/settings/Controller/CheckSetupController.php @@ -31,14 +31,17 @@ namespace OC\Settings\Controller; use bantu\IniGetWrapper\IniGetWrapper; +use DirectoryIterator; use Doctrine\DBAL\DBALException; use Doctrine\DBAL\Platforms\SqlitePlatform; use GuzzleHttp\Exception\ClientException; +use OC; use OC\AppFramework\Http; use OC\DB\Connection; use OC\DB\MissingIndexInformation; use OC\IntegrityCheck\Checker; use OC\Lock\NoopLockingProvider; +use OC\MemoryInfo; use OCP\AppFramework\Controller; use OCP\AppFramework\Http\DataDisplayResponse; use OCP\AppFramework\Http\DataResponse; @@ -81,6 +84,8 @@ class CheckSetupController extends Controller { private $lockingProvider; /** @var IDateTimeFormatter */ private $dateTimeFormatter; + /** @var MemoryInfo */ + private $memoryInfo; public function __construct($AppName, IRequest $request, @@ -94,7 +99,8 @@ class CheckSetupController extends Controller { EventDispatcherInterface $dispatcher, IDBConnection $db, ILockingProvider $lockingProvider, - IDateTimeFormatter $dateTimeFormatter) { + IDateTimeFormatter $dateTimeFormatter, + MemoryInfo $memoryInfo) { parent::__construct($AppName, $request); $this->config = $config; $this->clientService = $clientService; @@ -107,6 +113,7 @@ class CheckSetupController extends Controller { $this->db = $db; $this->lockingProvider = $lockingProvider; $this->dateTimeFormatter = $dateTimeFormatter; + $this->memoryInfo = $memoryInfo; } /** @@ -530,6 +537,54 @@ Raw output } /** + * Iterates through the configured app roots and + * tests if the subdirectories are owned by the same user than the current user. + * + * @return array + */ + protected function getAppDirsWithDifferentOwner(): array { + $currentUser = posix_getpwuid(posix_getuid()); + $appDirsWithDifferentOwner = []; + + foreach (OC::$APPSROOTS as $appRoot) { + if ($appRoot['writable'] === true) { + $appDirsWithDifferentOwner = array_merge( + $appDirsWithDifferentOwner, + $this->getAppDirsWithDifferentOwnerForAppRoot($currentUser, $appRoot) + ); + } + } + + sort($appDirsWithDifferentOwner); + return $appDirsWithDifferentOwner; + } + + /** + * Tests if the directories for one apps directory are writable by the current user. + * + * @param array $currentUser The current user + * @param array $appRoot The app root config + * @return string[] The none writable directory paths inside the app root + */ + private function getAppDirsWithDifferentOwnerForAppRoot(array $currentUser, array $appRoot): array { + $appDirsWithDifferentOwner = []; + $appsPath = $appRoot['path']; + $appsDir = new DirectoryIterator($appRoot['path']); + + foreach ($appsDir as $fileInfo) { + if ($fileInfo->isDir() && !$fileInfo->isDot()) { + $absAppPath = $appsPath . DIRECTORY_SEPARATOR . $fileInfo->getFilename(); + $appDirUser = posix_getpwuid(fileowner($absAppPath)); + if ($appDirUser !== $currentUser) { + $appDirsWithDifferentOwner[] = $absAppPath . DIRECTORY_SEPARATOR . $fileInfo->getFilename(); + } + } + } + + return $appDirsWithDifferentOwner; + } + + /** * @return DataResponse */ public function check() { @@ -565,7 +620,9 @@ Raw output 'isSqliteUsed' => $this->isSqliteUsed(), 'databaseConversionDocumentation' => $this->urlGenerator->linkToDocs('admin-db-conversion'), 'isPhpMailerUsed' => $this->isPhpMailerUsed(), - 'mailSettingsDocumentation' => $this->urlGenerator->getAbsoluteURL('index.php/settings/admin') + 'mailSettingsDocumentation' => $this->urlGenerator->getAbsoluteURL('index.php/settings/admin'), + 'isMemoryLimitSufficient' => $this->memoryInfo->isMemoryLimitSufficient(), + 'appDirsWithDifferentOwner' => $this->getAppDirsWithDifferentOwner(), ] ); } diff --git a/settings/Hooks.php b/settings/Hooks.php index 097d708a36a..f2b9e4fd086 100644 --- a/settings/Hooks.php +++ b/settings/Hooks.php @@ -165,6 +165,7 @@ class Hooks { $actor = $this->userSession->getUser(); if ($actor instanceof IUser) { + $subject = Provider::EMAIL_CHANGED_SELF; if ($actor->getUID() !== $user->getUID()) { $this->l = $this->languageFactory->get( 'settings', @@ -173,15 +174,11 @@ class Hooks { $this->config->getSystemValue('default_language', 'en') ) ); - - $text = $this->l->t('%1$s changed your email address on %2$s.', [$actor->getDisplayName(), $instanceUrl]); - $event->setAuthor($actor->getUID()) - ->setSubject(Provider::EMAIL_CHANGED_BY, [$actor->getUID()]); - } else { - $text = $this->l->t('Your email address on %s was changed.', [$instanceUrl]); - $event->setAuthor($actor->getUID()) - ->setSubject(Provider::EMAIL_CHANGED_SELF); + $subject = Provider::EMAIL_CHANGED; } + $text = $this->l->t('Your email address on %s was changed.', [$instanceUrl]); + $event->setAuthor($actor->getUID()) + ->setSubject($subject); } else { $text = $this->l->t('Your email address on %s was changed by an administrator.', [$instanceUrl]); $event->setSubject(Provider::EMAIL_CHANGED); diff --git a/settings/css/settings.scss b/settings/css/settings.scss index f3d51217f01..5746f26ac0b 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -632,7 +632,7 @@ span.usersLastLoginTooltip { thead tr { z-index: 100; background-color: var(--color-main-background); - position: sticky; + @include position('sticky'); // positional attribute is required for position to take affect. top: 0; } @@ -1408,7 +1408,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { align-items: center; /* let's define the column until storage path, what follows will be manually defined */ - grid-template-columns: 44px minmax(150px, 1fr) repeat(auto-fit, minmax(120px, 1fr)) 44px; + grid-template-columns: 44px minmax(150px, 1fr) repeat(auto-fit, minmax(120px, 1fr)); border-top: var(--color-border) 1px solid; &.disabled { opacity: .5; @@ -1439,7 +1439,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { /* various */ &#grid-header, &#new-user { - position: sticky; + @include position('sticky'); align-self: normal; background-color: var(--color-main-background); z-index: 55; /* above multiselect */ diff --git a/settings/js/settings-vue.js b/settings/js/settings-vue.js index 76a715e136e..f08d5253997 100644 --- a/settings/js/settings-vue.js +++ b/settings/js/settings-vue.js @@ -47,7 +47,7 @@ t.exports=function(t){return null!=t&&(n(t)||function(t){return"function"==typeo * vue-router v3.0.1 * (c) 2017 Evan You * @license MIT - */function l(t,e){0}function f(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}var p={name:"router-view",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,i=e.parent,o=e.data;o.routerView=!0;for(var s=i.$createElement,a=n.name,u=i.$route,c=i._routerViewCache||(i._routerViewCache={}),l=0,f=!1;i&&i._routerRoot!==i;)i.$vnode&&i.$vnode.data.routerView&&l++,i._inactive&&(f=!0),i=i.$parent;if(o.routerViewDepth=l,f)return s(c[a],o,r);var p=u.matched[l];if(!p)return c[a]=null,s();var d=c[a]=p.components[a];o.registerRouteInstance=function(t,e){var n=p.instances[a];(e&&n!==t||!e&&n===t)&&(p.instances[a]=e)},(o.hook||(o.hook={})).prepatch=function(t,e){p.instances[a]=e.componentInstance};var h=o.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(u,p.props&&p.props[a]);if(h){h=o.props=function(t,e){for(var n in e)t[n]=e[n];return t}({},h);var v=o.attrs=o.attrs||{};for(var m in h)d.props&&m in d.props||(v[m]=h[m],delete h[m])}return s(d,o,r)}};var d=/[!'()*]/g,h=function(t){return"%"+t.charCodeAt(0).toString(16)},v=/%2C/g,m=function(t){return encodeURIComponent(t).replace(d,h).replace(v,",")},g=decodeURIComponent;function y(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),r=g(n.shift()),i=n.length>0?g(n.join("=")):null;void 0===e[r]?e[r]=i:Array.isArray(e[r])?e[r].push(i):e[r]=[e[r],i]}),e):e}function b(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return m(e);if(Array.isArray(n)){var r=[];return n.forEach(function(t){void 0!==t&&(null===t?r.push(m(e)):r.push(m(e)+"="+m(t)))}),r.join("&")}return m(e)+"="+m(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var _=/\/?$/;function w(t,e,n,r){var i=r&&r.options.stringifyQuery,o=e.query||{};try{o=x(o)}catch(t){}var s={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:O(e,i),matched:t?function(t){var e=[];for(;t;)e.unshift(t),t=t.parent;return e}(t):[]};return n&&(s.redirectedFrom=O(n,i)),Object.freeze(s)}function x(t){if(Array.isArray(t))return t.map(x);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=x(t[n]);return e}return t}var C=w(null,{path:"/"});function O(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||b)(r)+i}function S(t,e){return e===C?t===e:!!e&&(t.path&&e.path?t.path.replace(_,"")===e.path.replace(_,"")&&t.hash===e.hash&&A(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&A(t.query,e.query)&&A(t.params,e.params)))}function A(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every(function(n){var r=t[n],i=e[n];return"object"==typeof r&&"object"==typeof i?A(r,i):String(r)===String(i)})}var k,E=[String,Object],$=[String,Array],L={name:"router-link",props:{to:{type:E,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:$,default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,i=n.resolve(this.to,r,this.append),o=i.location,s=i.route,a=i.href,u={},c=n.options.linkActiveClass,l=n.options.linkExactActiveClass,f=null==c?"router-link-active":c,p=null==l?"router-link-exact-active":l,d=null==this.activeClass?f:this.activeClass,h=null==this.exactActiveClass?p:this.exactActiveClass,v=o.path?w(null,o,null,n):s;u[h]=S(r,v),u[d]=this.exact?u[h]:function(t,e){return 0===t.path.replace(_,"/").indexOf(e.path.replace(_,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,v);var m=function(t){T(t)&&(e.replace?n.replace(o):n.push(o))},g={click:T};Array.isArray(this.event)?this.event.forEach(function(t){g[t]=m}):g[this.event]=m;var y={class:u};if("a"===this.tag)y.on=g,y.attrs={href:a};else{var b=function t(e){if(e)for(var n,r=0;r<e.length;r++){if("a"===(n=e[r]).tag)return n;if(n.children&&(n=t(n.children)))return n}}(this.$slots.default);if(b){b.isStatic=!1;var x=k.util.extend;(b.data=x({},b.data)).on=g,(b.data.attrs=x({},b.data.attrs)).href=a}else y.on=g}return t(this.tag,y,this.$slots.default)}};function T(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function P(t){if(!P.installed||k!==t){P.installed=!0,k=t;var e=function(t){return void 0!==t},n=function(t,n){var r=t.$options._parentVnode;e(r)&&e(r=r.data)&&e(r=r.registerRouteInstance)&&r(t,n)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("router-view",p),t.component("router-link",L);var r=t.config.optionMergeStrategies;r.beforeRouteEnter=r.beforeRouteLeave=r.beforeRouteUpdate=r.created}}var j="undefined"!=typeof window;function N(t,e,n){var r=t.charAt(0);if("/"===r)return t;if("?"===r||"#"===r)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var o=t.replace(/^\//,"").split("/"),s=0;s<o.length;s++){var a=o[s];".."===a?i.pop():"."!==a&&i.push(a)}return""!==i[0]&&i.unshift(""),i.join("/")}function I(t){return t.replace(/\/\//g,"/")}var M=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},U=X,D=V,R=function(t,e){return z(V(t,e))},F=z,B=J,G=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function V(t,e){for(var n,r=[],i=0,o=0,s="",a=e&&e.delimiter||"/";null!=(n=G.exec(t));){var u=n[0],c=n[1],l=n.index;if(s+=t.slice(o,l),o=l+u.length,c)s+=c[1];else{var f=t[o],p=n[2],d=n[3],h=n[4],v=n[5],m=n[6],g=n[7];s&&(r.push(s),s="");var y=null!=p&&null!=f&&f!==p,b="+"===m||"*"===m,_="?"===m||"*"===m,w=n[2]||a,x=h||v;r.push({name:d||i++,prefix:p||"",delimiter:w,optional:_,repeat:b,partial:y,asterisk:!!g,pattern:x?Y(x):g?".*":"[^"+W(w)+"]+?"})}}return o<t.length&&(s+=t.substr(o)),s&&r.push(s),r}function H(t){return encodeURI(t).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function q(t){return encodeURI(t).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function z(t){for(var e=new Array(t.length),n=0;n<t.length;n++)"object"==typeof t[n]&&(e[n]=new RegExp("^(?:"+t[n].pattern+")$"));return function(n,r){for(var i="",o=n||{},s=(r||{}).pretty?H:encodeURIComponent,a=0;a<t.length;a++){var u=t[a];if("string"!=typeof u){var c,l=o[u.name];if(null==l){if(u.optional){u.partial&&(i+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(M(l)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(l)+"`");if(0===l.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var f=0;f<l.length;f++){if(c=s(l[f]),!e[a].test(c))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(c)+"`");i+=(0===f?u.prefix:u.delimiter)+c}}else{if(c=u.asterisk?q(l):s(l),!e[a].test(c))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+c+'"');i+=u.prefix+c}}else i+=u}return i}}function W(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function Y(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function K(t,e){return t.keys=e,t}function Q(t){return t.sensitive?"":"i"}function J(t,e,n){M(e)||(n=e||n,e=[]);for(var r=(n=n||{}).strict,i=!1!==n.end,o="",s=0;s<t.length;s++){var a=t[s];if("string"==typeof a)o+=W(a);else{var u=W(a.prefix),c="(?:"+a.pattern+")";e.push(a),a.repeat&&(c+="(?:"+u+c+")*"),o+=c=a.optional?a.partial?u+"("+c+")?":"(?:"+u+"("+c+"))?":u+"("+c+")"}}var l=W(n.delimiter||"/"),f=o.slice(-l.length)===l;return r||(o=(f?o.slice(0,-l.length):o)+"(?:"+l+"(?=$))?"),o+=i?"$":r&&f?"":"(?="+l+"|$)",K(new RegExp("^"+o,Q(n)),e)}function X(t,e,n){return M(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)e.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return K(t,e)}(t,e):M(t)?function(t,e,n){for(var r=[],i=0;i<t.length;i++)r.push(X(t[i],e,n).source);return K(new RegExp("(?:"+r.join("|")+")",Q(n)),e)}(t,e,n):function(t,e,n){return J(V(t,n),e,n)}(t,e,n)}U.parse=D,U.compile=R,U.tokensToFunction=F,U.tokensToRegExp=B;var Z=Object.create(null);function tt(t,e,n){try{return(Z[t]||(Z[t]=U.compile(t)))(e||{},{pretty:!0})}catch(t){return""}}function et(t,e,n,r){var i=e||[],o=n||Object.create(null),s=r||Object.create(null);t.forEach(function(t){!function t(e,n,r,i,o,s){var a=i.path;var u=i.name;0;var c=i.pathToRegexpOptions||{};var l=function(t,e,n){n||(t=t.replace(/\/$/,""));if("/"===t[0])return t;if(null==e)return t;return I(e.path+"/"+t)}(a,o,c.strict);"boolean"==typeof i.caseSensitive&&(c.sensitive=i.caseSensitive);var f={path:l,regex:function(t,e){var n=U(t,[],e);0;return n}(l,c),components:i.components||{default:i.component},instances:{},name:u,parent:o,matchAs:s,redirect:i.redirect,beforeEnter:i.beforeEnter,meta:i.meta||{},props:null==i.props?{}:i.components?i.props:{default:i.props}};i.children&&i.children.forEach(function(i){var o=s?I(s+"/"+i.path):void 0;t(e,n,r,i,f,o)});if(void 0!==i.alias){var p=Array.isArray(i.alias)?i.alias:[i.alias];p.forEach(function(s){var a={path:s,children:i.children};t(e,n,r,a,o,f.path||"/")})}n[f.path]||(e.push(f.path),n[f.path]=f);u&&(r[u]||(r[u]=f))}(i,o,s,t)});for(var a=0,u=i.length;a<u;a++)"*"===i[a]&&(i.push(i.splice(a,1)[0]),u--,a--);return{pathList:i,pathMap:o,nameMap:s}}function nt(t,e,n,r){var i="string"==typeof t?{path:t}:t;if(i.name||i._normalized)return i;if(!i.path&&i.params&&e){(i=rt({},i))._normalized=!0;var o=rt(rt({},e.params),i.params);if(e.name)i.name=e.name,i.params=o;else if(e.matched.length){var s=e.matched[e.matched.length-1].path;i.path=tt(s,o,e.path)}else 0;return i}var a=function(t){var e="",n="",r=t.indexOf("#");r>=0&&(e=t.slice(r),t=t.slice(0,r));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),u=e&&e.path||"/",c=a.path?N(a.path,u,n||i.append):u,l=function(t,e,n){void 0===e&&(e={});var r,i=n||y;try{r=i(t||"")}catch(t){r={}}for(var o in e)r[o]=e[o];return r}(a.query,i.query,r&&r.options.parseQuery),f=i.hash||a.hash;return f&&"#"!==f.charAt(0)&&(f="#"+f),{_normalized:!0,path:c,query:l,hash:f}}function rt(t,e){for(var n in e)t[n]=e[n];return t}function it(t,e){var n=et(t),r=n.pathList,i=n.pathMap,o=n.nameMap;function s(t,n,s){var a=nt(t,n,!1,e),c=a.name;if(c){var l=o[c];if(!l)return u(null,a);var f=l.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof a.params&&(a.params={}),n&&"object"==typeof n.params)for(var p in n.params)!(p in a.params)&&f.indexOf(p)>-1&&(a.params[p]=n.params[p]);if(l)return a.path=tt(l.path,a.params),u(l,a,s)}else if(a.path){a.params={};for(var d=0;d<r.length;d++){var h=r[d],v=i[h];if(ot(v.regex,a.path,a.params))return u(v,a,s)}}return u(null,a)}function a(t,n){var r=t.redirect,i="function"==typeof r?r(w(t,n,null,e)):r;if("string"==typeof i&&(i={path:i}),!i||"object"!=typeof i)return u(null,n);var a=i,c=a.name,l=a.path,f=n.query,p=n.hash,d=n.params;if(f=a.hasOwnProperty("query")?a.query:f,p=a.hasOwnProperty("hash")?a.hash:p,d=a.hasOwnProperty("params")?a.params:d,c){o[c];return s({_normalized:!0,name:c,query:f,hash:p,params:d},void 0,n)}if(l){var h=function(t,e){return N(t,e.parent?e.parent.path:"/",!0)}(l,t);return s({_normalized:!0,path:tt(h,d),query:f,hash:p},void 0,n)}return u(null,n)}function u(t,n,r){return t&&t.redirect?a(t,r||n):t&&t.matchAs?function(t,e,n){var r=s({_normalized:!0,path:tt(n,e.params)});if(r){var i=r.matched,o=i[i.length-1];return e.params=r.params,u(o,e)}return u(null,e)}(0,n,t.matchAs):w(t,n,r,e)}return{match:s,addRoutes:function(t){et(t,r,i,o)}}}function ot(t,e,n){var r=e.match(t);if(!r)return!1;if(!n)return!0;for(var i=1,o=r.length;i<o;++i){var s=t.keys[i-1],a="string"==typeof r[i]?decodeURIComponent(r[i]):r[i];s&&(n[s.name]=a)}return!0}var st=Object.create(null);function at(){window.history.replaceState({key:yt()},""),window.addEventListener("popstate",function(t){ct(),t.state&&t.state.key&&function(t){mt=t}(t.state.key)})}function ut(t,e,n,r){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick(function(){var t=function(){var t=yt();if(t)return st[t]}(),o=i(e,n,r?t:null);o&&("function"==typeof o.then?o.then(function(e){dt(e,t)}).catch(function(t){0}):dt(o,t))})}}function ct(){var t=yt();t&&(st[t]={x:window.pageXOffset,y:window.pageYOffset})}function lt(t){return pt(t.x)||pt(t.y)}function ft(t){return{x:pt(t.x)?t.x:window.pageXOffset,y:pt(t.y)?t.y:window.pageYOffset}}function pt(t){return"number"==typeof t}function dt(t,e){var n="object"==typeof t;if(n&&"string"==typeof t.selector){var r=document.querySelector(t.selector);if(r){var i=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),r=t.getBoundingClientRect();return{x:r.left-n.left-e.x,y:r.top-n.top-e.y}}(r,i=function(t){return{x:pt(t.x)?t.x:0,y:pt(t.y)?t.y:0}}(i))}else lt(t)&&(e=ft(t))}else n&<(t)&&(e=ft(t));e&&window.scrollTo(e.x,e.y)}var ht=j&&function(){var t=window.navigator.userAgent;return(-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)}(),vt=j&&window.performance&&window.performance.now?window.performance:Date,mt=gt();function gt(){return vt.now().toFixed(3)}function yt(){return mt}function bt(t,e){ct();var n=window.history;try{e?n.replaceState({key:mt},"",t):(mt=gt(),n.pushState({key:mt},"",t))}catch(n){window.location[e?"replace":"assign"](t)}}function _t(t){bt(t,!0)}function wt(t,e,n){var r=function(i){i>=t.length?n():t[i]?e(t[i],function(){r(i+1)}):r(i+1)};r(0)}function xt(t){return function(e,n,r){var i=!1,o=0,s=null;Ct(t,function(t,e,n,a){if("function"==typeof t&&void 0===t.cid){i=!0,o++;var u,c=At(function(e){(function(t){return t.__esModule||St&&"Module"===t[Symbol.toStringTag]})(e)&&(e=e.default),t.resolved="function"==typeof e?e:k.extend(e),n.components[a]=e,--o<=0&&r()}),l=At(function(t){var e="Failed to resolve async component "+a+": "+t;s||(s=f(t)?t:new Error(e),r(s))});try{u=t(c,l)}catch(t){l(t)}if(u)if("function"==typeof u.then)u.then(c,l);else{var p=u.component;p&&"function"==typeof p.then&&p.then(c,l)}}}),i||r()}}function Ct(t,e){return Ot(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function Ot(t){return Array.prototype.concat.apply([],t)}var St="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function At(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var kt=function(t,e){this.router=t,this.base=function(t){if(!t)if(j){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=C,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function Et(t,e,n,r){var i=Ct(t,function(t,r,i,o){var s=function(t,e){"function"!=typeof t&&(t=k.extend(t));return t.options[e]}(t,e);if(s)return Array.isArray(s)?s.map(function(t){return n(t,r,i,o)}):n(s,r,i,o)});return Ot(r?i.reverse():i)}function $t(t,e){if(e)return function(){return t.apply(e,arguments)}}kt.prototype.listen=function(t){this.cb=t},kt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},kt.prototype.onError=function(t){this.errorCbs.push(t)},kt.prototype.transitionTo=function(t,e,n){var r=this,i=this.router.match(t,this.current);this.confirmTransition(i,function(){r.updateRoute(i),e&&e(i),r.ensureURL(),r.ready||(r.ready=!0,r.readyCbs.forEach(function(t){t(i)}))},function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,r.readyErrorCbs.forEach(function(e){e(t)}))})},kt.prototype.confirmTransition=function(t,e,n){var r=this,i=this.current,o=function(t){f(t)&&(r.errorCbs.length?r.errorCbs.forEach(function(e){e(t)}):(l(),console.error(t))),n&&n(t)};if(S(t,i)&&t.matched.length===i.matched.length)return this.ensureURL(),o();var s=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n<r&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),a=s.updated,u=s.deactivated,c=s.activated,p=[].concat(function(t){return Et(t,"beforeRouteLeave",$t,!0)}(u),this.router.beforeHooks,function(t){return Et(t,"beforeRouteUpdate",$t)}(a),c.map(function(t){return t.beforeEnter}),xt(c));this.pending=t;var d=function(e,n){if(r.pending!==t)return o();try{e(t,i,function(t){!1===t||f(t)?(r.ensureURL(!0),o(t)):"string"==typeof t||"object"==typeof t&&("string"==typeof t.path||"string"==typeof t.name)?(o(),"object"==typeof t&&t.replace?r.replace(t):r.push(t)):n(t)})}catch(t){o(t)}};wt(p,d,function(){var n=[];wt(function(t,e,n){return Et(t,"beforeRouteEnter",function(t,r,i,o){return function(t,e,n,r,i){return function(o,s,a){return t(o,s,function(t){a(t),"function"==typeof t&&r.push(function(){!function t(e,n,r,i){n[r]?e(n[r]):i()&&setTimeout(function(){t(e,n,r,i)},16)}(t,e.instances,n,i)})})}}(t,i,o,e,n)})}(c,n,function(){return r.current===t}).concat(r.router.resolveHooks),d,function(){if(r.pending!==t)return o();r.pending=null,e(t),r.router.app&&r.router.app.$nextTick(function(){n.forEach(function(t){t()})})})})},kt.prototype.updateRoute=function(t){var e=this.current;this.current=t,this.cb&&this.cb(t),this.router.afterHooks.forEach(function(n){n&&n(t,e)})};var Lt=function(t){function e(e,n){var r=this;t.call(this,e,n);var i=e.options.scrollBehavior;i&&at();var o=Tt(this.base);window.addEventListener("popstate",function(t){var n=r.current,s=Tt(r.base);r.current===C&&s===o||r.transitionTo(s,function(t){i&&ut(e,t,n,!0)})})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){bt(I(r.base+t.fullPath)),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){_t(I(r.base+t.fullPath)),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.ensureURL=function(t){if(Tt(this.base)!==this.current.fullPath){var e=I(this.base+this.current.fullPath);t?bt(e):_t(e)}},e.prototype.getCurrentLocation=function(){return Tt(this.base)},e}(kt);function Tt(t){var e=window.location.pathname;return t&&0===e.indexOf(t)&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var Pt=function(t){function e(e,n,r){t.call(this,e,n),r&&function(t){var e=Tt(t);if(!/^\/#/.test(e))return window.location.replace(I(t+"/#"+e)),!0}(this.base)||jt()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this,e=this.router.options.scrollBehavior,n=ht&&e;n&&at(),window.addEventListener(ht?"popstate":"hashchange",function(){var e=t.current;jt()&&t.transitionTo(Nt(),function(r){n&&ut(t.router,r,e,!0),ht||Ut(r.fullPath)})})},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){Mt(t.fullPath),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){Ut(t.fullPath),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;Nt()!==e&&(t?Mt(e):Ut(e))},e.prototype.getCurrentLocation=function(){return Nt()},e}(kt);function jt(){var t=Nt();return"/"===t.charAt(0)||(Ut("/"+t),!1)}function Nt(){var t=window.location.href,e=t.indexOf("#");return-1===e?"":t.slice(e+1)}function It(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Mt(t){ht?bt(It(t)):window.location.hash=t}function Ut(t){ht?_t(It(t)):window.location.replace(It(t))}var Dt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,function(){e.index=n,e.updateRoute(r)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(kt),Rt=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=it(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!ht&&!1!==t.fallback,this.fallback&&(e="hash"),j||(e="abstract"),this.mode=e,e){case"history":this.history=new Lt(this,t.base);break;case"hash":this.history=new Pt(this,t.base,this.fallback);break;case"abstract":this.history=new Dt(this,t.base);break;default:0}},Ft={currentRoute:{configurable:!0}};function Bt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Rt.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ft.currentRoute.get=function(){return this.history&&this.history.current},Rt.prototype.init=function(t){var e=this;if(this.apps.push(t),!this.app){this.app=t;var n=this.history;if(n instanceof Lt)n.transitionTo(n.getCurrentLocation());else if(n instanceof Pt){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},Rt.prototype.beforeEach=function(t){return Bt(this.beforeHooks,t)},Rt.prototype.beforeResolve=function(t){return Bt(this.resolveHooks,t)},Rt.prototype.afterEach=function(t){return Bt(this.afterHooks,t)},Rt.prototype.onReady=function(t,e){this.history.onReady(t,e)},Rt.prototype.onError=function(t){this.history.onError(t)},Rt.prototype.push=function(t,e,n){this.history.push(t,e,n)},Rt.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},Rt.prototype.go=function(t){this.history.go(t)},Rt.prototype.back=function(){this.go(-1)},Rt.prototype.forward=function(){this.go(1)},Rt.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},Rt.prototype.resolve=function(t,e,n){var r=nt(t,e||this.history.current,n,this),i=this.match(r,e),o=i.redirectedFrom||i.fullPath;return{location:r,route:i,href:function(t,e,n){var r="hash"===n?"#"+e:e;return t?I(t+"/"+r):r}(this.history.base,o,this.mode),normalizedTo:r,resolved:i}},Rt.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==C&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Rt.prototype,Ft),Rt.install=P,Rt.version="3.0.1",j&&window.Vue&&window.Vue.use(Rt);var Gt=Rt,Vt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"app-settings",attrs:{id:"content"}},[n("app-navigation",{attrs:{menu:t.menu}},[n("template",{slot:"settings-content"},[n("div",[n("p",[t._v(t._s(t.t("settings","Default quota :")))]),t._v(" "),n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.defaultQuota,options:t.quotaOptions,"tag-placeholder":"create",placeholder:t.t("settings","Select default quota"),label:"label","track-by":"id",allowEmpty:!1,taggable:!0},on:{tag:t.validateQuota,input:t.setDefaultQuota}})],1),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showLanguages,expression:"showLanguages"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showLanguages"},domProps:{checked:Array.isArray(t.showLanguages)?t._i(t.showLanguages,null)>-1:t.showLanguages},on:{change:function(e){var n=t.showLanguages,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showLanguages=n.concat([null])):o>-1&&(t.showLanguages=n.slice(0,o).concat(n.slice(o+1)))}else t.showLanguages=i}}}),t._v(" "),n("label",{attrs:{for:"showLanguages"}},[t._v(t._s(t.t("settings","Show Languages")))])]),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showLastLogin,expression:"showLastLogin"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showLastLogin"},domProps:{checked:Array.isArray(t.showLastLogin)?t._i(t.showLastLogin,null)>-1:t.showLastLogin},on:{change:function(e){var n=t.showLastLogin,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showLastLogin=n.concat([null])):o>-1&&(t.showLastLogin=n.slice(0,o).concat(n.slice(o+1)))}else t.showLastLogin=i}}}),t._v(" "),n("label",{attrs:{for:"showLastLogin"}},[t._v(t._s(t.t("settings","Show last login")))])]),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showUserBackend,expression:"showUserBackend"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showUserBackend"},domProps:{checked:Array.isArray(t.showUserBackend)?t._i(t.showUserBackend,null)>-1:t.showUserBackend},on:{change:function(e){var n=t.showUserBackend,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showUserBackend=n.concat([null])):o>-1&&(t.showUserBackend=n.slice(0,o).concat(n.slice(o+1)))}else t.showUserBackend=i}}}),t._v(" "),n("label",{attrs:{for:"showUserBackend"}},[t._v(t._s(t.t("settings","Show user backend")))])]),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showStoragePath,expression:"showStoragePath"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showStoragePath"},domProps:{checked:Array.isArray(t.showStoragePath)?t._i(t.showStoragePath,null)>-1:t.showStoragePath},on:{change:function(e){var n=t.showStoragePath,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showStoragePath=n.concat([null])):o>-1&&(t.showStoragePath=n.slice(0,o).concat(n.slice(o+1)))}else t.showStoragePath=i}}}),t._v(" "),n("label",{attrs:{for:"showStoragePath"}},[t._v(t._s(t.t("settings","Show storage path")))])])])],2),t._v(" "),n("user-list",{attrs:{users:t.users,showConfig:t.showConfig,selectedGroup:t.selectedGroup,externalActions:t.externalActions}})],1)};Vt._withStripped=!0;var Ht=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{"icon-loading":t.menu.loading},attrs:{id:"app-navigation"}},[t.menu.new?n("div",{staticClass:"app-navigation-new"},[n("button",{class:t.menu.new.icon,attrs:{type:"button",id:t.menu.new.id},on:{click:t.menu.new.action}},[t._v(t._s(t.menu.new.text))])]):t._e(),t._v(" "),n("ul",{attrs:{id:t.menu.id}},t._l(t.menu.items,function(t){return n("navigation-item",{key:t.key,attrs:{item:t}})})),t._v(" "),t.$slots["settings-content"]?n("div",{attrs:{id:"app-settings"}},[n("div",{attrs:{id:"app-settings-header"}},[n("button",{staticClass:"settings-button",attrs:{"data-apps-slide-toggle":"#app-settings-content"}},[t._v(t._s(t.t("settings","Settings")))])]),t._v(" "),n("div",{attrs:{id:"app-settings-content"}},[t._t("settings-content")],2)]):t._e()])};Ht._withStripped=!0;var qt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.item.caption?n("li",{staticClass:"app-navigation-caption"},[t._v(t._s(t.item.text))]):n("nav-element",t._b({class:[{"icon-loading-small":t.item.loading,open:t.item.opened,collapsible:t.item.collapsible&&t.item.children&&t.item.children.length>0},t.item.classes],attrs:{id:t.item.id}},"nav-element",t.navElement(t.item),!1),[t.item.bullet?n("div",{staticClass:"app-navigation-entry-bullet",style:{backgroundColor:t.item.bullet}}):t._e(),t._v(" "),n("a",{class:t.item.icon,attrs:{href:t.item.href?t.item.href:"#"},on:{click:t.toggleCollapse}},[t.item.iconUrl?n("img",{attrs:{alt:t.item.text,src:t.item.iconUrl}}):t._e(),t._v("\n\t\t"+t._s(t.item.text)+"\n\t")]),t._v(" "),t.item.utils?n("div",{staticClass:"app-navigation-entry-utils"},[n("ul",[Number.isInteger(t.item.utils.counter)?n("li",{staticClass:"app-navigation-entry-utils-counter"},[t._v(t._s(t.item.utils.counter))]):t._e(),t._v(" "),t.item.utils.actions&&1===t.item.utils.actions.length?n("li",{staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{class:t.item.utils.actions[0].icon,attrs:{title:t.item.utils.actions[0].text},on:{click:t.item.utils.actions[0].action}})]):t.item.utils.actions&&2===t.item.utils.actions.length&&!Number.isInteger(t.item.utils.counter)?t._l(t.item.utils.actions,function(t){return n("li",{key:t.action,staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{class:t.icon,attrs:{title:t.text},on:{click:t.action}})])}):t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n("li",{staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.hideMenu,expression:"hideMenu"}],on:{click:t.showMenu}})]):t._e()],2)]):t._e(),t._v(" "),t.item.utils&&t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n("div",{staticClass:"app-navigation-entry-menu",class:{open:t.openedMenu}},[n("popover-menu",{attrs:{menu:t.item.utils.actions}})],1):t._e(),t._v(" "),t.item.undo?n("div",{staticClass:"app-navigation-entry-deleted"},[n("div",{staticClass:"app-navigation-entry-deleted-description"},[t._v(t._s(t.item.undo.text))]),t._v(" "),n("button",{staticClass:"app-navigation-entry-deleted-button icon-history",attrs:{title:t.t("settings","Undo")}})]):t._e(),t._v(" "),t.item.edit?n("div",{staticClass:"app-navigation-entry-edit"},[n("form",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.item.text,expression:"item.text"}],attrs:{type:"text"},domProps:{value:t.item.text},on:{input:function(e){e.target.composing||t.$set(t.item,"text",e.target.value)}}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}}),t._v(" "),n("input",{staticClass:"icon-close",attrs:{type:"submit",value:""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.cancelEdit(e)}}})])]):t._e(),t._v(" "),t.item.children?n("ul",t._l(t.item.children,function(t,e){return n("navigation-item",{key:e,attrs:{item:t}})})):t._e()])};qt._withStripped=!0;var zt=function(){var t=this.$createElement,e=this._self._c||t;return e("ul",this._l(this.menu,function(t,n){return e("popover-item",{key:n,attrs:{item:t}})}))};zt._withStripped=!0;var Wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("li",[t.item.href?n("a",{attrs:{href:t.item.href?t.item.href:"#",target:t.item.target?t.item.target:"",rel:"noreferrer noopener"},on:{click:t.item.action}},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()]):t.item.action?n("button",{on:{click:t.item.action}},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()]):n("span",{staticClass:"menuitem"},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()])])};Wt._withStripped=!0;var Yt=a({props:["item"]},Wt,[],!1,null,null,null);Yt.options.__file="src/components/popoverMenu/popoverItem.vue";var Kt=a({name:"popoverMenu",props:["menu"],components:{popoverItem:Yt.exports}},zt,[],!1,null,null,null);Kt.options.__file="src/components/popoverMenu.vue";var Qt=Kt.exports,Jt=r(53),Xt=r.n(Jt),Zt=a({name:"navigationItem",props:["item"],components:{popoverMenu:Qt},directives:{ClickOutside:Xt.a},data:function(){return{openedMenu:!1}},methods:{showMenu:function(){this.openedMenu=!0},hideMenu:function(){this.openedMenu=!1},toggleCollapse:function(){i.a.set(this.item,"opened",!this.item.opened||!this.item.opened)},cancelEdit:function(){Array.isArray(this.item.classes)&&(this.item.classes=this.item.classes.filter(function(t){return"editing"!==t}))},navElement:function(t){return t.href?{is:"li"}:{is:"router-link",tag:"li",to:t.router,exact:!0}}},mounted:function(){this.popupItem=this.$el}},qt,[],!1,null,null,null);Zt.options.__file="src/components/appNavigation/navigationItem.vue";var te=a({name:"appNavigation",props:["menu"],components:{navigationItem:Zt.exports}},Ht,[],!1,null,null,null);te.options.__file="src/components/appNavigation.vue";var ee=te.exports,ne=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"user-list-grid",attrs:{id:"app-content"},on:{"&scroll":function(e){return t.onScroll(e)}}},[n("div",{staticClass:"row",class:{sticky:t.scrolled&&!t.showConfig.showNewUserForm},attrs:{id:"grid-header"}},[n("div",{staticClass:"avatar",attrs:{id:"headerAvatar"}}),t._v(" "),n("div",{staticClass:"name",attrs:{id:"headerName"}},[t._v(t._s(t.t("settings","Username")))]),t._v(" "),n("div",{staticClass:"displayName",attrs:{id:"headerDisplayName"}},[t._v(t._s(t.t("settings","Display name")))]),t._v(" "),n("div",{staticClass:"password",attrs:{id:"headerPassword"}},[t._v(t._s(t.t("settings","Password")))]),t._v(" "),n("div",{staticClass:"mailAddress",attrs:{id:"headerAddress"}},[t._v(t._s(t.t("settings","Email")))]),t._v(" "),n("div",{staticClass:"groups",attrs:{id:"headerGroups"}},[t._v(t._s(t.t("settings","Groups")))]),t._v(" "),t.subAdminsGroups.length>0&&t.settings.isAdmin?n("div",{staticClass:"subadmins",attrs:{id:"headerSubAdmins"}},[t._v(t._s(t.t("settings","Group admin for")))]):t._e(),t._v(" "),n("div",{staticClass:"quota",attrs:{id:"headerQuota"}},[t._v(t._s(t.t("settings","Quota")))]),t._v(" "),t.showConfig.showLanguages?n("div",{staticClass:"languages",attrs:{id:"headerLanguages"}},[t._v(t._s(t.t("settings","Language")))]):t._e(),t._v(" "),t.showConfig.showStoragePath?n("div",{staticClass:"headerStorageLocation storageLocation"},[t._v(t._s(t.t("settings","Storage location")))]):t._e(),t._v(" "),t.showConfig.showUserBackend?n("div",{staticClass:"headerUserBackend userBackend"},[t._v(t._s(t.t("settings","User backend")))]):t._e(),t._v(" "),t.showConfig.showLastLogin?n("div",{staticClass:"headerLastLogin lastLogin"},[t._v(t._s(t.t("settings","Last login")))]):t._e(),t._v(" "),n("div",{staticClass:"userActions"})]),t._v(" "),n("form",{directives:[{name:"show",rawName:"v-show",value:t.showConfig.showNewUserForm,expression:"showConfig.showNewUserForm"}],staticClass:"row",class:{sticky:t.scrolled&&t.showConfig.showNewUserForm},attrs:{id:"new-user",disabled:t.loading},on:{submit:function(e){return e.preventDefault(),t.createUser(e)}}},[n("div",{class:t.loading?"icon-loading-small":"icon-add"}),t._v(" "),n("div",{staticClass:"name"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.id,expression:"newUser.id"}],attrs:{id:"newusername",type:"text",required:"",placeholder:t.t("settings","Username"),name:"username",autocomplete:"off",autocapitalize:"none",autocorrect:"off",pattern:"[a-zA-Z0-9 _\\.@\\-']+"},domProps:{value:t.newUser.id},on:{input:function(e){e.target.composing||t.$set(t.newUser,"id",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"displayName"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.displayName,expression:"newUser.displayName"}],attrs:{id:"newdisplayname",type:"text",placeholder:t.t("settings","Display name"),name:"displayname",autocomplete:"off",autocapitalize:"none",autocorrect:"off"},domProps:{value:t.newUser.displayName},on:{input:function(e){e.target.composing||t.$set(t.newUser,"displayName",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"password"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.password,expression:"newUser.password"}],attrs:{id:"newuserpassword",type:"password",required:""===t.newUser.mailAddress,placeholder:t.t("settings","Password"),name:"password",autocomplete:"new-password",autocapitalize:"none",autocorrect:"off",minlength:t.minPasswordLength},domProps:{value:t.newUser.password},on:{input:function(e){e.target.composing||t.$set(t.newUser,"password",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"mailAddress"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.mailAddress,expression:"newUser.mailAddress"}],attrs:{id:"newemail",type:"email",required:""===t.newUser.password,placeholder:t.t("settings","Email"),name:"email",autocomplete:"off",autocapitalize:"none",autocorrect:"off"},domProps:{value:t.newUser.mailAddress},on:{input:function(e){e.target.composing||t.$set(t.newUser,"mailAddress",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"groups"},[t.settings.isAdmin?t._e():n("input",{attrs:{type:"text",tabindex:"-1",id:"newgroups",required:!t.settings.isAdmin},domProps:{value:t.newUser.groups}}),t._v(" "),n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.canAddGroups,placeholder:t.t("settings","Add user in group"),label:"name","track-by":"id",multiple:!0,"close-on-select":!1,allowEmpty:t.settings.isAdmin},model:{value:t.newUser.groups,callback:function(e){t.$set(t.newUser,"groups",e)},expression:"newUser.groups"}},[n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1),t._v(" "),t.subAdminsGroups.length>0&&t.settings.isAdmin?n("div",{staticClass:"subadmins"},[n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.subAdminsGroups,placeholder:t.t("settings","Set user as admin for"),label:"name","track-by":"id",multiple:!0,"close-on-select":!1},model:{value:t.newUser.subAdminsGroups,callback:function(e){t.$set(t.newUser,"subAdminsGroups",e)},expression:"newUser.subAdminsGroups"}},[n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1):t._e(),t._v(" "),n("div",{staticClass:"quota"},[n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.quotaOptions,placeholder:t.t("settings","Select user quota"),label:"label","track-by":"id",allowEmpty:!1,taggable:!0},on:{tag:t.validateQuota},model:{value:t.newUser.quota,callback:function(e){t.$set(t.newUser,"quota",e)},expression:"newUser.quota"}})],1),t._v(" "),t.showConfig.showLanguages?n("div",{staticClass:"languages"},[n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.languages,placeholder:t.t("settings","Default language"),label:"name","track-by":"code",allowEmpty:!1,"group-values":"languages","group-label":"label"},model:{value:t.newUser.language,callback:function(e){t.$set(t.newUser,"language",e)},expression:"newUser.language"}})],1):t._e(),t._v(" "),t.showConfig.showStoragePath?n("div",{staticClass:"storageLocation"}):t._e(),t._v(" "),t.showConfig.showUserBackend?n("div",{staticClass:"userBackend"}):t._e(),t._v(" "),t.showConfig.showLastLogin?n("div",{staticClass:"lastLogin"}):t._e(),t._v(" "),n("div",{staticClass:"userActions"},[n("input",{staticClass:"button primary icon-checkmark-white has-tooltip",attrs:{type:"submit",id:"newsubmit",value:"",title:t.t("settings","Add a new user")}})])]),t._v(" "),t._l(t.filteredUsers,function(e,r){return n("user-row",{key:r,attrs:{user:e,settings:t.settings,showConfig:t.showConfig,groups:t.groups,subAdminsGroups:t.subAdminsGroups,quotaOptions:t.quotaOptions,languages:t.languages,externalActions:t.externalActions}})}),t._v(" "),n("infinite-loading",{ref:"infiniteLoading",on:{infinite:t.infiniteHandler}},[n("div",{attrs:{slot:"spinner"},slot:"spinner"},[n("div",{staticClass:"users-icon-loading icon-loading"})]),t._v(" "),n("div",{attrs:{slot:"no-more"},slot:"no-more"},[n("div",{staticClass:"users-list-end"})]),t._v(" "),n("div",{attrs:{slot:"no-results"},slot:"no-results"},[n("div",{attrs:{id:"emptycontent"}},[n("div",{staticClass:"icon-contacts-dark"}),t._v(" "),n("h2",[t._v(t._s(t.t("settings","No users in here")))])])])])],2)};ne._withStripped=!0;var re=function(){var t=this,e=t.$createElement,n=t._self._c||e;return 1===Object.keys(t.user).length?n("div",{staticClass:"row",attrs:{"data-id":t.user.id}},[n("div",{staticClass:"avatar",class:{"icon-loading-small":t.loading.delete||t.loading.disable}},[t.loading.delete||t.loading.disable?t._e():n("img",{attrs:{alt:"",width:"32",height:"32",src:t.generateAvatar(t.user.id,32),srcset:t.generateAvatar(t.user.id,64)+" 2x, "+t.generateAvatar(t.user.id,128)+" 4x"}})]),t._v(" "),n("div",{staticClass:"name"},[t._v(t._s(t.user.id))]),t._v(" "),n("div",{staticClass:"obfuscated"},[t._v(t._s(t.t("settings","You do not have permissions to see the details of this user")))])]):n("div",{staticClass:"row",class:{disabled:t.loading.delete||t.loading.disable},attrs:{"data-id":t.user.id}},[n("div",{staticClass:"avatar",class:{"icon-loading-small":t.loading.delete||t.loading.disable}},[t.loading.delete||t.loading.disable?t._e():n("img",{attrs:{alt:"",width:"32",height:"32",src:t.generateAvatar(t.user.id,32),srcset:t.generateAvatar(t.user.id,64)+" 2x, "+t.generateAvatar(t.user.id,128)+" 4x"}})]),t._v(" "),n("div",{staticClass:"name"},[t._v(t._s(t.user.id))]),t._v(" "),n("form",{staticClass:"displayName",class:{"icon-loading-small":t.loading.displayName},on:{submit:function(e){return e.preventDefault(),t.updateDisplayName(e)}}},[n("input",{ref:"displayName",attrs:{id:"displayName"+t.user.id+t.rand,type:"text",disabled:t.loading.displayName||t.loading.all,autocomplete:"new-password",autocorrect:"off",autocapitalize:"off",spellcheck:"false"},domProps:{value:t.user.displayname}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]),t._v(" "),t.settings.canChangePassword?n("form",{staticClass:"password",class:{"icon-loading-small":t.loading.password},on:{submit:function(e){return e.preventDefault(),t.updatePassword(e)}}},[n("input",{ref:"password",attrs:{id:"password"+t.user.id+t.rand,type:"password",required:"",disabled:t.loading.password||t.loading.all,minlength:t.minPasswordLength,value:"",placeholder:t.t("settings","New password"),autocomplete:"new-password",autocorrect:"off",autocapitalize:"off",spellcheck:"false"}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]):n("div"),t._v(" "),n("form",{staticClass:"mailAddress",class:{"icon-loading-small":t.loading.mailAddress},on:{submit:function(e){return e.preventDefault(),t.updateEmail(e)}}},[n("input",{ref:"mailAddress",attrs:{id:"mailAddress"+t.user.id+t.rand,type:"email",disabled:t.loading.mailAddress||t.loading.all,autocomplete:"new-password",autocorrect:"off",autocapitalize:"off",spellcheck:"false"},domProps:{value:t.user.email}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]),t._v(" "),n("div",{staticClass:"groups",class:{"icon-loading-small":t.loading.groups}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userGroups,options:t.availableGroups,disabled:t.loading.groups||t.loading.all,"tag-placeholder":"create",placeholder:t.t("settings","Add user in group"),label:"name","track-by":"id",limit:2,multiple:!0,taggable:t.settings.isAdmin,closeOnSelect:!1},on:{tag:t.createGroup,select:t.addUserGroup,remove:t.removeUserGroup}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.formatGroupsTitle(t.userGroups),expression:"formatGroupsTitle(userGroups)",modifiers:{auto:!0}}],staticClass:"multiselect__limit",attrs:{slot:"limit"},slot:"limit"},[t._v("+"+t._s(t.userGroups.length-2))]),t._v(" "),n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1),t._v(" "),t.subAdminsGroups.length>0&&t.settings.isAdmin?n("div",{staticClass:"subadmins",class:{"icon-loading-small":t.loading.subadmins}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userSubAdminsGroups,options:t.subAdminsGroups,disabled:t.loading.subadmins||t.loading.all,placeholder:t.t("settings","Set user as admin for"),label:"name","track-by":"id",limit:2,multiple:!0,closeOnSelect:!1},on:{select:t.addUserSubAdmin,remove:t.removeUserSubAdmin}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.formatGroupsTitle(t.userSubAdminsGroups),expression:"formatGroupsTitle(userSubAdminsGroups)",modifiers:{auto:!0}}],staticClass:"multiselect__limit",attrs:{slot:"limit"},slot:"limit"},[t._v("+"+t._s(t.userSubAdminsGroups.length-2))]),t._v(" "),n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1):t._e(),t._v(" "),n("div",{staticClass:"quota",class:{"icon-loading-small":t.loading.quota}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userQuota,options:t.quotaOptions,disabled:t.loading.quota||t.loading.all,"tag-placeholder":"create",placeholder:t.t("settings","Select user quota"),label:"label","track-by":"id",allowEmpty:!1,taggable:!0},on:{tag:t.validateQuota,input:t.setUserQuota}}),t._v(" "),n("progress",{staticClass:"quota-user-progress",class:{warn:t.usedQuota>80},attrs:{max:"100"},domProps:{value:t.usedQuota}})],1),t._v(" "),t.showConfig.showLanguages?n("div",{staticClass:"languages",class:{"icon-loading-small":t.loading.languages}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userLanguage,options:t.languages,disabled:t.loading.languages||t.loading.all,placeholder:t.t("settings","No language set"),label:"name","track-by":"code",allowEmpty:!1,"group-values":"languages","group-label":"label"},on:{input:t.setUserLanguage}})],1):t._e(),t._v(" "),t.showConfig.showStoragePath?n("div",{staticClass:"storageLocation"},[t._v(t._s(t.user.storageLocation))]):t._e(),t._v(" "),t.showConfig.showUserBackend?n("div",{staticClass:"userBackend"},[t._v(t._s(t.user.backend))]):t._e(),t._v(" "),t.showConfig.showLastLogin?n("div",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.user.lastLogin>0?t.OC.Util.formatDate(t.user.lastLogin):"",expression:"user.lastLogin>0 ? OC.Util.formatDate(user.lastLogin) : ''",modifiers:{auto:!0}}],staticClass:"lastLogin"},[t._v("\n\t\t"+t._s(t.user.lastLogin>0?t.OC.Util.relativeModifiedDate(t.user.lastLogin):t.t("settings","Never"))+"\n\t")]):t._e(),t._v(" "),n("div",{staticClass:"userActions"},[t.OC.currentUser===t.user.id||"admin"===t.user.id||t.loading.all?t._e():n("div",{staticClass:"toggleUserActions"},[n("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.hideMenu,expression:"hideMenu"}],staticClass:"icon-more",on:{click:t.toggleMenu}}),t._v(" "),n("div",{staticClass:"popovermenu",class:{open:t.openedMenu}},[n("popover-menu",{attrs:{menu:t.userActions}})],1)]),t._v(" "),n("div",{staticClass:"feedback",style:{opacity:""!==t.feedbackMessage?1:0}},[n("div",{staticClass:"icon-checkmark"}),t._v("\n\t\t\t"+t._s(t.feedbackMessage)+"\n\t\t")])])])};re._withStripped=!0;var ie=r(9),oe=r.n(ie),se=r(107),ae="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};i.a.use(se.a);var ue=a({name:"userRow",props:["user","settings","groups","subAdminsGroups","quotaOptions","showConfig","languages","externalActions"],components:{popoverMenu:Qt,Multiselect:oe.a},directives:{ClickOutside:Xt.a},mounted:function(){},data:function(){return{rand:parseInt(1e3*Math.random()),openedMenu:!1,feedbackMessage:"",loading:{all:!1,displayName:!1,password:!1,mailAddress:!1,groups:!1,subadmins:!1,quota:!1,delete:!1,disable:!1,languages:!1}}},computed:{userActions:function(){var e=[{icon:"icon-delete",text:t("settings","Delete user"),action:this.deleteUser},{icon:this.user.enabled?"icon-close":"icon-add",text:this.user.enabled?t("settings","Disable user"):t("settings","Enable user"),action:this.enableDisableUser}];return null!==this.user.email&&""!==this.user.email&&e.push({icon:"icon-mail",text:t("settings","Resend welcome email"),action:this.sendWelcomeMail}),e.concat(this.externalActions)},userGroups:function(){var t=this,e=this.groups.filter(function(e){return t.user.groups.includes(e.id)});return e},userSubAdminsGroups:function(){var t=this,e=this.subAdminsGroups.filter(function(e){return t.user.subadmin.includes(e.id)});return e},availableGroups:function(){var t=this;return this.groups.map(function(e){var n=Object.assign({},e);return n.$isDisabled=!1===e.canAdd&&!t.user.groups.includes(e.id)||!1===e.canRemove&&t.user.groups.includes(e.id),n})},usedQuota:function(){var t=this.user.quota.quota;t>0?t=Math.min(100,Math.round(this.user.quota.used/t*100)):t=95*(1-1/(this.user.quota.used/(10*Math.pow(2,30))+1));return isNaN(t)?0:t},userQuota:function(){if(this.user.quota.quota>=0){var t=OC.Util.humanFileSize(this.user.quota.quota),e=this.quotaOptions.find(function(e){return e.id===t});return e||{id:t,label:t}}return"default"===this.user.quota.quota?this.quotaOptions[0]:this.quotaOptions[1]},minPasswordLength:function(){return this.$store.getters.getPasswordPolicyMinLength},userLanguage:function(){var t=this,e=this.languages[0].languages.concat(this.languages[1].languages).find(function(e){return e.code===t.user.language});return"object"!==(void 0===e?"undefined":ae(e))&&""!==this.user.language?{code:this.user.language,name:this.user.language}:""!==this.user.language&&e}},methods:{toggleMenu:function(){this.openedMenu=!this.openedMenu},hideMenu:function(){this.openedMenu=!1},generateAvatar:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:32;return OC.generateUrl("/avatar/{user}/{size}?v={version}",{user:t,size:e,version:oc_userconfig.avatar.version})},formatGroupsTitle:function(t){return t.map(function(t){return t.name}).slice(2).join(", ")},deleteUser:function(){var t=this;this.loading.delete=!0,this.loading.all=!0;var e=this.user.id;return this.$store.dispatch("deleteUser",e).then(function(){t.loading.delete=!1,t.loading.all=!1})},enableDisableUser:function(){var t=this;this.loading.delete=!0,this.loading.all=!0;var e=this.user.id,n=!this.user.enabled;return this.$store.dispatch("enableDisableUser",{userid:e,enabled:n}).then(function(){t.loading.delete=!1,t.loading.all=!1})},updateDisplayName:function(){var t=this,e=this.$refs.displayName.value;this.loading.displayName=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"displayname",value:e}).then(function(){t.loading.displayName=!1,t.$refs.displayName.value=e})},updatePassword:function(){var t=this,e=this.$refs.password.value;this.loading.password=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"password",value:e}).then(function(){t.loading.password=!1,t.$refs.password.value=""})},updateEmail:function(){var t=this,e=this.$refs.mailAddress.value;this.loading.mailAddress=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"email",value:e}).then(function(){t.loading.mailAddress=!1,t.$refs.mailAddress.value=e})},createGroup:function(t){var e=this;return this.loading={groups:!0,subadmins:!0},this.$store.dispatch("addGroup",t).then(function(){e.loading={groups:!1,subadmins:!1};var n=e.user.id;e.$store.dispatch("addUserGroup",{userid:n,gid:t})}).catch(function(){e.loading={groups:!1,subadmins:!1}}),this.$store.getters.getGroups[this.groups.length]},addUserGroup:function(t){var e=this;if(!1===t.canAdd)return!1;this.loading.groups=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("addUserGroup",{userid:n,gid:r}).then(function(){return e.loading.groups=!1})},removeUserGroup:function(t){var e=this;if(!1===t.canRemove)return!1;this.loading.groups=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("removeUserGroup",{userid:n,gid:r}).then(function(){e.loading.groups=!1,e.$route.params.selectedGroup===r&&e.$store.commit("deleteUser",n)}).catch(function(){e.loading.groups=!1})},addUserSubAdmin:function(t){var e=this;this.loading.subadmins=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("addUserSubAdmin",{userid:n,gid:r}).then(function(){return e.loading.subadmins=!1})},removeUserSubAdmin:function(t){var e=this;this.loading.subadmins=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("removeUserSubAdmin",{userid:n,gid:r}).then(function(){return e.loading.subadmins=!1})},setUserQuota:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"none";return this.loading.quota=!0,e=e.id?e.id:e,this.$store.dispatch("setUserData",{userid:this.user.id,key:"quota",value:e}).then(function(){return t.loading.quota=!1}),e},validateQuota:function(t){var e=OC.Util.computerFileSize(t);return null!==e&&e>=0&&this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(t)))},setUserLanguage:function(t){var e=this;return this.loading.languages=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"language",value:t.code}).then(function(){return e.loading.languages=!1}),t},sendWelcomeMail:function(){var e=this;this.loading.all=!0,this.$store.dispatch("sendWelcomeMail",this.user.id).then(function(n){n&&(e.feedbackMessage=t("setting","Welcome mail sent!"),setTimeout(function(){e.feedbackMessage=""},2e3)),e.loading.all=!1})}}},re,[],!1,null,null,null);ue.options.__file="src/components/userList/userRow.vue";var ce=ue.exports,le=r(108),fe=r.n(le),pe=a({name:"userList",props:["users","showConfig","selectedGroup","externalActions"],components:{userRow:ce,Multiselect:oe.a,InfiniteLoading:fe.a},data:function(){var e={id:"none",label:t("settings","Unlimited")},n={id:"default",label:t("settings","Default quota")};return{unlimitedQuota:e,defaultQuota:n,loading:!1,scrolled:!1,searchQuery:"",newUser:{id:"",displayName:"",password:"",mailAddress:"",groups:[],subAdminsGroups:[],quota:n,language:{code:"en",name:t("settings","Default language")}}}},mounted:function(){this.settings.canChangePassword||OC.Notification.showTemporary(t("settings","Password change is disabled because the master key is disabled")),i.a.set(this.newUser.language,"code",this.settings.defaultLanguage),this.setNewUserDefaultGroup(this.$route.params.selectedGroup),this.userSearch=new OCA.Search(this.search,this.resetSearch)},computed:{settings:function(){return this.$store.getters.getServerData},filteredUsers:function(){if("disabled"===this.selectedGroup){var t=this.users.filter(function(t){return!1===t.enabled});return 0===t.length&&this.$refs.infiniteLoading&&this.$refs.infiniteLoading.isComplete&&(this.$router.push({name:"users"}),this.$refs.infiniteLoading.$emit("$InfiniteLoading:reset")),t}return this.settings.isAdmin?this.users.filter(function(t){return!1!==t.enabled}):this.users.filter(function(t){return!1!==t.enabled&&t.id!==oc_current_user})},groups:function(){return this.$store.getters.getGroups.filter(function(t){return"disabled"!==t.id}).sort(function(t,e){return t.name.localeCompare(e.name)})},canAddGroups:function(){return this.groups.map(function(t){return(t=Object.assign({},t)).$isDisabled=!1===t.canAdd,t})},subAdminsGroups:function(){return this.$store.getters.getSubadminGroups},quotaOptions:function(){var t=this.settings.quotaPreset.reduce(function(t,e){return t.concat({id:e,label:e})},[]);return t.unshift(this.unlimitedQuota),t.unshift(this.defaultQuota),t},minPasswordLength:function(){return this.$store.getters.getPasswordPolicyMinLength},usersOffset:function(){return this.$store.getters.getUsersOffset},usersLimit:function(){return this.$store.getters.getUsersLimit},languages:function(){return Array({label:t("settings","Common languages"),languages:this.settings.languages.commonlanguages},{label:t("settings","All languages"),languages:this.settings.languages.languages})}},watch:{selectedGroup:function(t,e){this.$store.commit("resetUsers"),this.$refs.infiniteLoading.$emit("$InfiniteLoading:reset"),this.setNewUserDefaultGroup(t)}},methods:{onScroll:function(t){this.scrolled=t.target.scrollTo>0},validateQuota:function(t){var e=OC.Util.computerFileSize(t);return null!==e&&e>=0?(t=OC.Util.humanFileSize(OC.Util.computerFileSize(t)),this.newUser.quota={id:t,label:t}):this.newUser.quota=this.quotaOptions[0]},infiniteHandler:function(t){this.$store.dispatch("getUsers",{offset:this.usersOffset,limit:this.usersLimit,group:"disabled"!==this.selectedGroup?this.selectedGroup:"",search:this.searchQuery}).then(function(e){e?t.loaded():t.complete()})},search:function(t){this.searchQuery=t,this.$store.commit("resetUsers"),this.$refs.infiniteLoading.$emit("$InfiniteLoading:reset")},resetSearch:function(){this.search("")},resetForm:function(){Object.assign(this.newUser,this.$options.data.call(this).newUser),this.loading=!1},createUser:function(){var t=this;this.loading=!0,this.$store.dispatch("addUser",{userid:this.newUser.id,password:this.newUser.password,displayName:this.newUser.displayName,email:this.newUser.mailAddress,groups:this.newUser.groups.map(function(t){return t.id}),subadmin:this.newUser.subAdminsGroups.map(function(t){return t.id}),quota:this.newUser.quota.id,language:this.newUser.language.code}).then(function(){return t.resetForm()}).catch(function(){return t.loading=!1})},setNewUserDefaultGroup:function(t){if(t&&t.length>0){var e=this.groups.find(function(e){return e.id===t});if(e)return void(this.newUser.groups=[e])}this.newUser.groups=[]}}},ne,[],!1,null,null,null);pe.options.__file="src/components/userList.vue";var de=pe.exports,he=r(40),ve=r.n(he),me=r(28),ge=r.n(me),ye={headers:{requesttoken:document.getElementsByTagName("head")[0].getAttribute("data-requesttoken")}},be=function(t){return t.replace(/\/$/,"")},_e=function(){return new Promise(function(e,n){var r=void 0,i=setTimeout(function(){clearTimeout(r),document.getElementsByClassName("oc-dialog-close").length>0&&document.getElementsByClassName("oc-dialog-close")[0].click(),OC.Notification.showTemporary(t("settings","You did not enter the password in time")),n("Password request cancelled")},7e3);OC.PasswordConfirmation.requirePasswordConfirmation(),function t(){OC.PasswordConfirmation.requiresPasswordConfirmation()?r=setTimeout(t,500):(clearTimeout(r),clearTimeout(i),e())}()})},we=function(t){return ge.a.get(be(t),ye).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},xe=function(t,e){return ge.a.post(be(t),e,ye).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},Ce=function(t,e){return ge.a.put(be(t),e,ye).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},Oe=function(t,e){return ge.a.delete(be(t),{data:e,headers:ye.headers}).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},Se="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};i.a.use(ve.a),i.a.use(ve.a);var Ae=a({name:"Users",props:["selectedGroup"],components:{appNavigation:ee,userList:de,Multiselect:oe.a},beforeMount:function(){this.$store.commit("initGroups",{groups:this.$store.getters.getServerData.groups,orderBy:this.$store.getters.getServerData.sortGroups,userCount:this.$store.getters.getServerData.userCount}),this.$store.dispatch("getPasswordPolicyMinLength")},created:function(){Object.assign(OCA,{Settings:{UserList:{registerAction:this.registerAction}}})},data:function(){return{unlimitedQuota:{id:"none",label:t("settings","Unlimited")},selectedQuota:!1,externalActions:[],showConfig:{showStoragePath:!1,showUserBackend:!1,showLastLogin:!1,showNewUserForm:!1,showLanguages:!1}}},methods:{toggleNewUserMenu:function(){this.showConfig.showNewUserForm=!this.showConfig.showNewUserForm,this.showConfig.showNewUserForm&&i.a.nextTick(function(){window.newusername.focus()})},getLocalstorage:function(t){var e=this.$localStorage.get(t);return this.showConfig[t]=null!==e?"true"===e:this.showConfig[t],this.showConfig[t]},setLocalStorage:function(t,e){return this.showConfig[t]=e,this.$localStorage.set(t,e),e},removeGroup:function(e){var n=this;OC.dialogs.confirm(t("settings","You are about to remove the group {group}. The users will NOT be deleted.",{group:e}),t("settings","Please confirm the group removal "),function(t){t&&n.$store.dispatch("removeGroup",e)})},setDefaultQuota:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"none";this.$store.dispatch("setAppConfig",{app:"files",key:"default_quota",value:e.id?e.id:e}).then(function(){"object"!==(void 0===e?"undefined":Se(e))&&(e={id:e,label:e}),t.defaultQuota=e})},validateQuota:function(t){var e=OC.Util.computerFileSize(t);return 0===e?this.setDefaultQuota("none"):null!==e&&this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(t)))},registerAction:function(t,e,n){return this.externalActions.push({icon:t,text:e,action:n}),this.externalActions}},computed:{users:function(){return this.$store.getters.getUsers},loading:function(){return 0===Object.keys(this.users).length},usersOffset:function(){return this.$store.getters.getUsersOffset},usersLimit:function(){return this.$store.getters.getUsersLimit},showLanguages:{get:function(){return this.getLocalstorage("showLanguages")},set:function(t){this.setLocalStorage("showLanguages",t)}},showLastLogin:{get:function(){return this.getLocalstorage("showLastLogin")},set:function(t){this.setLocalStorage("showLastLogin",t)}},showUserBackend:{get:function(){return this.getLocalstorage("showUserBackend")},set:function(t){this.setLocalStorage("showUserBackend",t)}},showStoragePath:{get:function(){return this.getLocalstorage("showStoragePath")},set:function(t){this.setLocalStorage("showStoragePath",t)}},userCount:function(){return this.$store.getters.getUserCount},settings:function(){return this.$store.getters.getServerData},quotaOptions:function(){var t=this.settings.quotaPreset.reduce(function(t,e){return t.concat({id:e,label:e})},[]);return t.unshift(this.unlimitedQuota),t},defaultQuota:{get:function(){return!1!==this.selectedQuota?this.selectedQuota:OC.Util.computerFileSize(this.settings.defaultQuota)>0?{id:this.settings.defaultQuota,label:this.settings.defaultQuota}:this.unlimitedQuota},set:function(t){this.selectedQuota=t}},menu:function(){var e=this,n=this.$store.getters.getGroups,r=(n=(n=Array.isArray(n)?n:[]).map(function(n){var r={};if(r.id=n.id.replace(" ","_"),r.key=r.id,r.utils={},r.router={name:"group",params:{selectedGroup:n.id}},r.text=n.name,n.usercount-n.disabled>0&&(r.utils.counter=n.usercount-n.disabled),"admin"!==r.id&&"disabled"!==r.id&&e.settings.isAdmin){var i=e;r.utils.actions=[{icon:"icon-delete",text:t("settings","Remove group"),action:function(){i.removeGroup(n.id)}}]}return r})).find(function(t){return"admin"==t.id}),i=n.findIndex(function(t){return"disabled"==t.id}),o=n[i];r&&r.text&&(r.text=t("settings","Admins"),r.icon="icon-user-admin"),o&&o.text&&(o.text=t("settings","Disabled users"),o.icon="icon-disabled-users",0===o.utils.counter&&n.splice(i,1));var s=n.find(function(t){return"disabled"!==t.id&&"admin"!==t.id});if(s=void 0===s?[]:s,(s=Array.isArray(s)?s:[s]).length>0){var a={caption:!0,text:t("settings","Groups")};n.unshift(a)}var u={id:"everyone",key:"everyone",icon:"icon-contacts-dark",router:{name:"users"},text:t("settings","Everyone")};return this.userCount>0&&(u.utils={counter:this.userCount}),n.unshift(u),{id:"usergrouplist",new:{id:"new-user-button",text:t("settings","New user"),icon:"icon-add",action:this.toggleNewUserMenu},items:n}}}},Vt,[],!1,null,null,null);Ae.options.__file="src/views/Users.vue";var ke=Ae.exports,Ee=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"app-settings",class:{"with-app-sidebar":t.currentApp},attrs:{id:"content"}},[n("app-navigation",{attrs:{menu:t.menu}}),t._v(" "),n("div",{staticClass:"app-settings-content",class:{"icon-loading":t.loadingList},attrs:{id:"app-content"}},[n("app-list",{attrs:{category:t.category,app:t.currentApp,search:t.searchQuery}})],1),t._v(" "),t.id&&t.currentApp?n("div",{attrs:{id:"app-sidebar"}},[n("app-details",{attrs:{category:t.category,app:t.currentApp}})],1):t._e()],1)};Ee._withStripped=!0;var $e=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"app-content-inner"}},[n("div",{staticClass:"apps-list",class:{installed:t.useBundleView||t.useListView,store:t.useAppStoreView},attrs:{id:"apps-list"}},[t.useListView?[n("transition-group",{staticClass:"apps-list-container",attrs:{name:"app-list",tag:"div"}},t._l(t.apps,function(e){return n("app-item",{key:e.id,attrs:{app:e,category:t.category}})}))]:t._e(),t._v(" "),t._l(t.bundles,function(e){return t.useBundleView&&t.bundleApps(e.id).length>0?[n("transition-group",{staticClass:"apps-list-container",attrs:{name:"app-list",tag:"div"}},[n("div",{key:e.id,staticClass:"apps-header"},[n("div",{staticClass:"app-image"}),t._v(" "),n("h2",[t._v(t._s(e.name)+" "),n("input",{attrs:{type:"button",value:t.bundleToggleText(e.id)},on:{click:function(n){t.toggleBundle(e.id)}}})]),t._v(" "),n("div",{staticClass:"app-version"}),t._v(" "),n("div",{staticClass:"app-level"}),t._v(" "),n("div",{staticClass:"app-groups"}),t._v(" "),n("div",{staticClass:"actions"},[t._v(" ")])]),t._v(" "),t._l(t.bundleApps(e.id),function(r){return n("app-item",{key:e.id+r.id,attrs:{app:r,category:t.category}})})],2)]:t._e()}),t._v(" "),t.useAppStoreView?t._l(t.apps,function(e){return n("app-item",{key:e.id,attrs:{app:e,category:t.category,"list-view":!1}})}):t._e()],2),t._v(" "),n("div",{staticClass:"apps-list installed",attrs:{id:"apps-list-search"}},[n("div",{staticClass:"apps-list-container"},[""!==t.search&&t.searchApps.length>0?[n("div",{staticClass:"section"},[n("div"),t._v(" "),n("td",{attrs:{colspan:"5"}},[n("h2",[t._v(t._s(t.t("settings","Results from other categories")))])])]),t._v(" "),t._l(t.searchApps,function(e){return n("app-item",{key:e.id,attrs:{app:e,category:t.category,"list-view":!0}})})]:t._e()],2)]),t._v(" "),t.loading||0!==t.searchApps.length||0!==t.apps.length?t._e():n("div",{staticClass:"emptycontent emptycontent-search",attrs:{id:"apps-list-empty"}},[n("div",{staticClass:"icon-settings-dark",attrs:{id:"app-list-empty-icon"}}),t._v(" "),n("h2",[t._v(t._s(t.t("settings","No apps found for your versoin")))])]),t._v(" "),n("div",{attrs:{id:"searchresults"}})])};$e._withStripped=!0;var Le=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"section",class:{selected:t.isSelected},on:{click:t.showAppDetails}},[n("div",{staticClass:"app-image app-image-icon",on:{click:t.showAppDetails}},[t.listView&&!t.app.preview||!t.listView&&!t.app.screenshot?n("div",{staticClass:"icon-settings-dark"}):t._e(),t._v(" "),t.listView&&t.app.preview?n("svg",{attrs:{width:"32",height:"32",viewBox:"0 0 32 32"}},[n("defs",[n("filter",{attrs:{id:t.filterId}},[n("feColorMatrix",{attrs:{in:"SourceGraphic",type:"matrix",values:"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"}})],1)]),t._v(" "),n("image",{staticClass:"app-icon",attrs:{x:"0",y:"0",width:"32",height:"32",preserveAspectRatio:"xMinYMin meet",filter:t.filterUrl,"xlink:href":t.app.preview}})]):t._e(),t._v(" "),!t.listView&&t.app.screenshot?n("img",{attrs:{src:t.app.screenshot,width:"100%"}}):t._e()]),t._v(" "),n("div",{staticClass:"app-name",on:{click:t.showAppDetails}},[t._v("\n\t\t"+t._s(t.app.name)+"\n\t")]),t._v(" "),t.listView?t._e():n("div",{staticClass:"app-summary"},[t._v(t._s(t.app.summary))]),t._v(" "),t.listView?n("div",{staticClass:"app-version"},[t.app.version?n("span",[t._v(t._s(t.app.version))]):t.app.appstoreData.releases[0].version?n("span",[t._v(t._s(t.app.appstoreData.releases[0].version))]):t._e()]):t._e(),t._v(" "),n("div",{staticClass:"app-level"},[200===t.app.level?n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","Official apps are developed by and within the community. They offer central functionality and are ready for production use."),expression:"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')",modifiers:{auto:!0}}],staticClass:"official icon-checkmark"},[t._v("\n\t\t\t"+t._s(t.t("settings","Official")))]):t._e(),t._v(" "),t.listView?t._e():n("app-score",{attrs:{score:t.app.score}})],1),t._v(" "),n("div",{staticClass:"actions"},[t.app.error?n("div",{staticClass:"warning"},[t._v(t._s(t.app.error))]):t._e(),t._v(" "),t.loading(t.app.id)?n("div",{staticClass:"icon icon-loading-small"}):t._e(),t._v(" "),t.app.update?n("input",{staticClass:"update",attrs:{type:"button",value:t.t("settings","Update to {update}",{update:t.app.update}),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.update(t.app.id)}}}):t._e(),t._v(" "),t.app.canUnInstall?n("input",{staticClass:"uninstall",attrs:{type:"button",value:t.t("settings","Remove"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.remove(t.app.id)}}}):t._e(),t._v(" "),t.app.active?n("input",{staticClass:"enable",attrs:{type:"button",value:t.t("settings","Disable"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.disable(t.app.id)}}}):t._e(),t._v(" "),t.app.active?t._e():n("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.enableButtonTooltip,expression:"enableButtonTooltip",modifiers:{auto:!0}}],staticClass:"enable",attrs:{type:"button",value:t.enableButtonText,disabled:!t.app.canInstall||t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.enable(t.app.id)}}})])])};Le._withStripped=!0;var Te=function(){var t=this.$createElement;return(this._self._c||t)("img",{staticClass:"app-score-image",attrs:{src:this.scoreImage}})};Te._withStripped=!0;var Pe=a({name:"appScore",props:["score"],computed:{scoreImage:function(){var t="rating/s"+Math.round(10*this.score)+".svg";return OC.imagePath("core",t)}}},Te,[],!1,null,null,null);Pe.options.__file="src/components/appList/appScore.vue";var je=Pe.exports,Ne=a({mounted:function(){this.app.groups.length>0&&(this.groupCheckedAppsData=!0)},computed:{appGroups:function(){return this.app.groups.map(function(t){return{id:t,name:t}})},loading:function(){var t=this;return function(e){return t.$store.getters.loading(e)}},installing:function(){return this.$store.getters.loading("install")},enableButtonText:function(){return this.app.needsDownload?t("settings","Download and enable"):t("settings","Enable")},enableButtonTooltip:function(){return!!this.app.needsDownload&&t("settings","The app will be downloaded from the app store")}},methods:{asyncFindGroup:function(t){return this.$store.dispatch("getGroups",{search:t,limit:5,offset:0})},isLimitedToGroups:function(t){return!(!this.app.groups.length&&!this.groupCheckedAppsData)},setGroupLimit:function(){this.groupCheckedAppsData||this.$store.dispatch("enableApp",{appId:this.app.id,groups:[]})},canLimitToGroups:function(t){return!(t.types&&t.types.includes("filesystem")||t.types.includes("prelogin")||t.types.includes("authentication")||t.types.includes("logging")||t.types.includes("prevent_group_restriction"))},addGroupLimitation:function(t){var e=this.app.groups.concat([]).concat([t.id]);this.$store.dispatch("enableApp",{appId:this.app.id,groups:e})},removeGroupLimitation:function(t){var e=this.app.groups.concat([]),n=e.indexOf(t.id);n>-1&&e.splice(n,1),this.$store.dispatch("enableApp",{appId:this.app.id,groups:e})},enable:function(t){this.$store.dispatch("enableApp",{appId:t,groups:[]}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},disable:function(t){this.$store.dispatch("disableApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},remove:function(t){this.$store.dispatch("uninstallApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},install:function(t){this.$store.dispatch("enableApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},update:function(t){this.$store.dispatch("updateApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})}}},void 0,void 0,!1,null,null,null);Ne.options.__file="src/components/appManagement.vue";var Ie=Ne.exports,Me=a({name:"svgFilterMixin",mounted:function(){this.filterId="invertIconApps"+Math.floor(100*Math.random())+(new Date).getSeconds()+(new Date).getMilliseconds()},computed:{filterUrl:function(){return"url(#"+this.filterId+")"}},data:function(){return{filterId:""}}},void 0,void 0,!1,null,null,null);Me.options.__file="src/components/svgFilterMixin.vue";var Ue=Me.exports,De=a({name:"appItem",mixins:[Ie,Ue],props:{app:{},category:{},listView:{type:Boolean,default:!0}},watch:{"$route.params.id":function(t){this.isSelected=this.app.id===t}},components:{Multiselect:oe.a,AppScore:je},data:function(){return{isSelected:!1,scrolled:!1}},mounted:function(){this.isSelected=this.app.id===this.$route.params.id},computed:{},watchers:{},methods:{showAppDetails:function(t){"INPUT"!==t.currentTarget.tagName&&"A"!==t.currentTarget.tagName&&this.$router.push({name:"apps-details",params:{category:this.category,id:this.app.id}})},prefix:function(t,e){return t+"_"+e}}},Le,[],!1,null,null,null);De.options.__file="src/components/appList/appItem.vue";var Re=De.exports,Fe=a({name:"prefixMixin",methods:{prefix:function(t,e){return t+"_"+e}}},void 0,void 0,!1,null,null,null);Fe.options.__file="src/components/prefixMixin.vue";var Be=Fe.exports,Ge=a({name:"appList",mixins:[Be],props:["category","app","search"],components:{Multiselect:oe.a,appItem:Re},computed:{loading:function(){return this.$store.getters.loading("list")},apps:function(){var t=this,e=this.$store.getters.getAllApps.filter(function(e){return-1!==e.name.toLowerCase().search(t.search.toLowerCase())}).sort(function(t,e){var n=""+(t.active?0:1)+(t.update?0:1)+t.name,r=""+(e.active?0:1)+(e.update?0:1)+e.name;return OC.Util.naturalSortCompare(n,r)});return"installed"===this.category?e.filter(function(t){return t.installed}):"enabled"===this.category?e.filter(function(t){return t.active&&t.installed}):"disabled"===this.category?e.filter(function(t){return!t.active&&t.installed}):"app-bundles"===this.category?e.filter(function(t){return t.bundles}):"updates"===this.category?e.filter(function(t){return t.update}):e.filter(function(e){return e.appstore&&void 0!==e.category&&(e.category===t.category||e.category.indexOf(t.category)>-1)})},bundles:function(){return this.$store.getters.getServerData.bundles},bundleApps:function(){return function(t){return this.$store.getters.getAllApps.filter(function(e){return e.bundleId===t})}},searchApps:function(){var t=this;return""===this.search?[]:this.$store.getters.getAllApps.filter(function(e){return-1!==e.name.toLowerCase().search(t.search.toLowerCase())&&!t.apps.find(function(t){return t.id===e.id})})},useAppStoreView:function(){return!this.useListView&&!this.useBundleView},useListView:function(){return"installed"===this.category||"enabled"===this.category||"disabled"===this.category||"updates"===this.category},useBundleView:function(){return"app-bundles"===this.category},allBundlesEnabled:function(){var t=this;return function(e){return 0===t.bundleApps(e).filter(function(t){return!t.active}).length}},bundleToggleText:function(){var e=this;return function(n){return e.allBundlesEnabled(n)?t("settings","Disable all"):t("settings","Enable all")}}},methods:{toggleBundle:function(t){return this.allBundlesEnabled(t)?this.disableBundle(t):this.enableBundle(t)},enableBundle:function(t){var e=this.bundleApps(t).map(function(t){return t.id});this.$store.dispatch("enableApp",{appId:e,groups:[]}).catch(function(t){console.log(t),OC.Notification.show(t)})},disableBundle:function(t){var e=this.bundleApps(t).map(function(t){return t.id});this.$store.dispatch("disableApp",{appId:e,groups:[]}).catch(function(t){OC.Notification.show(t)})}}},$e,[],!1,null,null,null);Ge.options.__file="src/components/appList.vue";var Ve=Ge.exports,He=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{padding:"20px"},attrs:{id:"app-details-view"}},[n("a",{staticClass:"close icon-close",attrs:{href:"#"},on:{click:t.hideAppDetails}},[n("span",{staticClass:"hidden-visually"},[t._v("Close")])]),t._v(" "),n("h2",[t.app.preview?t._e():n("div",{staticClass:"icon-settings-dark"}),t._v(" "),t.app.previewAsIcon&&t.app.preview?n("svg",{attrs:{width:"32",height:"32",viewBox:"0 0 32 32"}},[n("defs",[n("filter",{attrs:{id:t.filterId}},[n("feColorMatrix",{attrs:{in:"SourceGraphic",type:"matrix",values:"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"}})],1)]),t._v(" "),n("image",{staticClass:"app-icon",attrs:{x:"0",y:"0",width:"32",height:"32",preserveAspectRatio:"xMinYMin meet",filter:t.filterUrl,"xlink:href":t.app.preview}})]):t._e(),t._v("\n\t\t"+t._s(t.app.name))]),t._v(" "),t.app.screenshot?n("img",{attrs:{src:t.app.screenshot,width:"100%"}}):t._e(),t._v(" "),200===t.app.level||t.hasRating?n("div",{staticClass:"app-level"},[200===t.app.level?n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","Official apps are developed by and within the community. They offer central functionality and are ready for production use."),expression:"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')",modifiers:{auto:!0}}],staticClass:"official icon-checkmark"},[t._v("\n\t\t\t"+t._s(t.t("settings","Official")))]):t._e(),t._v(" "),t.hasRating?n("app-score",{attrs:{score:t.app.appstoreData.ratingOverall}}):t._e()],1):t._e(),t._v(" "),t.author?n("div",{staticClass:"app-author"},[t._v("\n\t\t"+t._s(t.t("settings","by"))+"\n\t\t"),t._l(t.author,function(e,r){return n("span",[e["@attributes"]&&e["@attributes"].homepage?n("a",{attrs:{href:e["@attributes"].homepage}},[t._v(t._s(e["@value"]))]):e["@value"]?n("span",[t._v(t._s(e["@value"]))]):n("span",[t._v(t._s(e))]),r+1<t.author.length?n("span",[t._v(", ")]):t._e()])})],2):t._e(),t._v(" "),t.licence?n("div",{staticClass:"app-licence"},[t._v(t._s(t.licence))]):t._e(),t._v(" "),n("div",{staticClass:"actions"},[n("div",{staticClass:"actions-buttons"},[t.app.update?n("input",{staticClass:"update",attrs:{type:"button",value:t.t("settings","Update to {version}",{version:t.app.update}),disabled:t.installing||t.loading(t.app.id)}}):t._e(),t._v(" "),t.app.canUnInstall?n("input",{staticClass:"uninstall",attrs:{type:"button",value:t.t("settings","Remove"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){t.remove(t.app.id)}}}):t._e(),t._v(" "),t.app.active?n("input",{staticClass:"enable",attrs:{type:"button",value:t.t("settings","Disable"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){t.disable(t.app.id)}}}):t._e(),t._v(" "),t.app.active?t._e():n("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.enableButtonTooltip,expression:"enableButtonTooltip",modifiers:{auto:!0}}],staticClass:"enable",attrs:{type:"button",value:t.enableButtonText,disabled:!t.app.canInstall||t.installing||t.loading(t.app.id)},on:{click:function(e){t.enable(t.app.id)}}})]),t._v(" "),n("div",{staticClass:"app-groups"},[t.app.active&&t.canLimitToGroups(t.app)?n("div",{staticClass:"groups-enable"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.groupCheckedAppsData,expression:"groupCheckedAppsData"}],staticClass:"groups-enable__checkbox checkbox",attrs:{type:"checkbox",id:t.prefix("groups_enable",t.app.id)},domProps:{value:t.app.id,checked:Array.isArray(t.groupCheckedAppsData)?t._i(t.groupCheckedAppsData,t.app.id)>-1:t.groupCheckedAppsData},on:{change:[function(e){var n=t.groupCheckedAppsData,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t.app.id,s=t._i(n,o);r.checked?s<0&&(t.groupCheckedAppsData=n.concat([o])):s>-1&&(t.groupCheckedAppsData=n.slice(0,s).concat(n.slice(s+1)))}else t.groupCheckedAppsData=i},t.setGroupLimit]}}),t._v(" "),n("label",{attrs:{for:t.prefix("groups_enable",t.app.id)}},[t._v(t._s(t.t("settings","Limit to groups")))]),t._v(" "),n("input",{staticClass:"group_select",attrs:{type:"hidden",title:t.t("settings","All"),value:""}}),t._v(" "),t.isLimitedToGroups(t.app)?n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.groups,value:t.appGroups,"options-limit":5,placeholder:t.t("settings","Limit app usage to groups"),label:"name","track-by":"id",multiple:!0,"close-on-select":!1},on:{select:t.addGroupLimitation,remove:t.removeGroupLimitation,"search-change":t.asyncFindGroup}},[n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])]):t._e()],1):t._e()])]),t._v(" "),n("p",{staticClass:"documentation"},[t.app.internal?t._e():n("a",{staticClass:"appslink",attrs:{href:t.appstoreUrl,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","View in store"))+" ↗")]),t._v(" "),t.app.website?n("a",{staticClass:"appslink",attrs:{href:t.app.website,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Visit website"))+" ↗")]):t._e(),t._v(" "),t.app.bugs?n("a",{staticClass:"appslink",attrs:{href:t.app.bugs,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Report a bug"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.user?n("a",{staticClass:"appslink",attrs:{href:t.app.documentation.user,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","User documentation"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.admin?n("a",{staticClass:"appslink",attrs:{href:t.app.documentation.admin,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Admin documentation"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.developer?n("a",{staticClass:"appslink",attrs:{href:t.app.documentation.developer,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Developer documentation"))+" ↗")]):t._e()]),t._v(" "),n("ul",{staticClass:"app-dependencies"},[t.app.missingMinOwnCloudVersion?n("li",[t._v(t._s(t.t("settings","This app has no minimum Nextcloud version assigned. This will be an error in the future.")))]):t._e(),t._v(" "),t.app.missingMaxOwnCloudVersion?n("li",[t._v(t._s(t.t("settings","This app has no maximum Nextcloud version assigned. This will be an error in the future.")))]):t._e(),t._v(" "),t.app.canInstall?t._e():n("li",[t._v("\n\t\t\t"+t._s(t.t("settings","This app cannot be installed because the following dependencies are not fulfilled:"))+"\n\t\t\t"),n("ul",{staticClass:"missing-dependencies"},t._l(t.app.missingDependencies,function(e){return n("li",[t._v(t._s(e))])}))])]),t._v(" "),n("div",{staticClass:"app-description",domProps:{innerHTML:t._s(t.renderMarkdown)}})])};He._withStripped=!0;var qe=a({mixins:[Ie,Be,Ue],name:"appDetails",props:["category","app"],components:{Multiselect:oe.a,AppScore:je},data:function(){return{groupCheckedAppsData:!1}},mounted:function(){this.app.groups.length>0&&(this.groupCheckedAppsData=!0)},methods:{hideAppDetails:function(){this.$router.push({name:"apps-category",params:{category:this.category}})}},computed:{appstoreUrl:function(){return"https://apps.nextcloud.com/apps/"+this.app.id},licence:function(){return this.app.licence?t("settings","{license}-licensed",{license:(""+this.app.licence).toUpperCase()}):null},hasRating:function(){return this.app.appstoreData&&this.app.appstoreData.ratingNumOverall>5},author:function(){return"string"==typeof this.app.author?[{"@value":this.app.author}]:this.app.author["@value"]?[this.app.author]:this.app.author},appGroups:function(){return this.app.groups.map(function(t){return{id:t,name:t}})},groups:function(){return this.$store.getters.getGroups.filter(function(t){return"disabled"!==t.id}).sort(function(t,e){return t.name.localeCompare(e.name)})},renderMarkdown:function(){var t=new window.marked.Renderer;return t.link=function(t,e,n){try{var r=decodeURIComponent(unescape(t)).replace(/[^\w:]/g,"").toLowerCase()}catch(t){return""}if(0!==r.indexOf("http:")&&0!==r.indexOf("https:"))return"";var i='<a href="'+t+'" rel="noreferrer noopener"';return e&&(i+=' title="'+e+'"'),i+=">"+n+"</a>"},t.image=function(t,e,n){return n||e},t.blockquote=function(t){return t},DOMPurify.sanitize(window.marked(this.app.description.trim(),{renderer:t,gfm:!1,highlight:!1,tables:!1,breaks:!1,pedantic:!1,sanitize:!0,smartLists:!0,smartypants:!1}),{SAFE_FOR_JQUERY:!0,ALLOWED_TAGS:["strong","p","a","ul","ol","li","em","del","blockquote"]})}}},He,[],!1,null,null,null);qe.options.__file="src/components/appDetails.vue";var ze=qe.exports;i.a.use(ve.a),i.a.use(ve.a);var We=a({name:"Apps",props:{category:{type:String,default:"installed"},id:{type:String,default:""}},components:{AppDetails:ze,appNavigation:ee,appList:Ve},methods:{setSearch:function(t){this.searchQuery=t},resetSearch:function(){this.setSearch("")}},beforeMount:function(){this.$store.dispatch("getCategories"),this.$store.dispatch("getAllApps"),this.$store.dispatch("getGroups",{offset:0,limit:5}),this.$store.commit("setUpdateCount",this.$store.getters.getServerData.updateCount)},mounted:function(){this.appSearch=new OCA.Search(this.setSearch,this.resetSearch)},data:function(){return{searchQuery:""}},watch:{category:function(t,e){this.setSearch("")}},computed:{loading:function(){return this.$store.getters.loading("categories")},loadingList:function(){return this.$store.getters.loading("list")},currentApp:function(){var t=this;return this.apps.find(function(e){return e.id===t.id})},categories:function(){return this.$store.getters.getCategories},apps:function(){return this.$store.getters.getAllApps},updateCount:function(){return this.$store.getters.getUpdateCount},settings:function(){return this.$store.getters.getServerData},menu:function(){var e=this,n=this.$store.getters.getCategories;n=(n=Array.isArray(n)?n:[]).map(function(t){var e={};return e.id="app-category-"+t.ident,e.icon="icon-category-"+t.ident,e.classes=[],e.router={name:"apps-category",params:{category:t.ident}},e.text=t.displayName,e});var r=[{id:"app-category-your-apps",classes:[],router:{name:"apps"},icon:"icon-category-installed",text:t("settings","Your apps")},{id:"app-category-enabled",classes:[],icon:"icon-category-enabled",router:{name:"apps-category",params:{category:"enabled"}},text:t("settings","Active apps")},{id:"app-category-disabled",classes:[],icon:"icon-category-disabled",router:{name:"apps-category",params:{category:"disabled"}},text:t("settings","Disabled apps")}];if(!this.settings.appstoreEnabled)return{id:"appscategories",items:r};this.$store.getters.getUpdateCount>0&&r.push({id:"app-category-updates",classes:[],icon:"icon-download",router:{name:"apps-category",params:{category:"updates"}},text:t("settings","Updates"),utils:{counter:this.$store.getters.getUpdateCount}}),r.push({id:"app-category-app-bundles",classes:[],icon:"icon-category-app-bundles",router:{name:"apps-category",params:{category:"app-bundles"}},text:t("settings","App bundles")});var i=(n=r.concat(n)).findIndex(function(t){return t.id==="app-category-"+e.category});return i>=0?n[i].classes.push("active"):n[0].classes.push("active"),n.push({id:"app-developer-docs",classes:[],href:this.settings.developerDocumentation,text:t("settings","Developer documentation")+" ↗"}),{id:"appscategories",items:n,loading:this.loading}}}},Ee,[],!1,null,null,null);We.options.__file="src/views/Apps.vue";var Ye=We.exports; + */function l(t,e){0}function f(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}var p={name:"router-view",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,i=e.parent,o=e.data;o.routerView=!0;for(var s=i.$createElement,a=n.name,u=i.$route,c=i._routerViewCache||(i._routerViewCache={}),l=0,f=!1;i&&i._routerRoot!==i;)i.$vnode&&i.$vnode.data.routerView&&l++,i._inactive&&(f=!0),i=i.$parent;if(o.routerViewDepth=l,f)return s(c[a],o,r);var p=u.matched[l];if(!p)return c[a]=null,s();var d=c[a]=p.components[a];o.registerRouteInstance=function(t,e){var n=p.instances[a];(e&&n!==t||!e&&n===t)&&(p.instances[a]=e)},(o.hook||(o.hook={})).prepatch=function(t,e){p.instances[a]=e.componentInstance};var h=o.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}(u,p.props&&p.props[a]);if(h){h=o.props=function(t,e){for(var n in e)t[n]=e[n];return t}({},h);var v=o.attrs=o.attrs||{};for(var m in h)d.props&&m in d.props||(v[m]=h[m],delete h[m])}return s(d,o,r)}};var d=/[!'()*]/g,h=function(t){return"%"+t.charCodeAt(0).toString(16)},v=/%2C/g,m=function(t){return encodeURIComponent(t).replace(d,h).replace(v,",")},g=decodeURIComponent;function y(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach(function(t){var n=t.replace(/\+/g," ").split("="),r=g(n.shift()),i=n.length>0?g(n.join("=")):null;void 0===e[r]?e[r]=i:Array.isArray(e[r])?e[r].push(i):e[r]=[e[r],i]}),e):e}function b(t){var e=t?Object.keys(t).map(function(e){var n=t[e];if(void 0===n)return"";if(null===n)return m(e);if(Array.isArray(n)){var r=[];return n.forEach(function(t){void 0!==t&&(null===t?r.push(m(e)):r.push(m(e)+"="+m(t)))}),r.join("&")}return m(e)+"="+m(n)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var _=/\/?$/;function w(t,e,n,r){var i=r&&r.options.stringifyQuery,o=e.query||{};try{o=x(o)}catch(t){}var s={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:o,params:e.params||{},fullPath:O(e,i),matched:t?function(t){var e=[];for(;t;)e.unshift(t),t=t.parent;return e}(t):[]};return n&&(s.redirectedFrom=O(n,i)),Object.freeze(s)}function x(t){if(Array.isArray(t))return t.map(x);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=x(t[n]);return e}return t}var C=w(null,{path:"/"});function O(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||b)(r)+i}function S(t,e){return e===C?t===e:!!e&&(t.path&&e.path?t.path.replace(_,"")===e.path.replace(_,"")&&t.hash===e.hash&&A(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&A(t.query,e.query)&&A(t.params,e.params)))}function A(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every(function(n){var r=t[n],i=e[n];return"object"==typeof r&&"object"==typeof i?A(r,i):String(r)===String(i)})}var k,E=[String,Object],$=[String,Array],L={name:"router-link",props:{to:{type:E,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:$,default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,i=n.resolve(this.to,r,this.append),o=i.location,s=i.route,a=i.href,u={},c=n.options.linkActiveClass,l=n.options.linkExactActiveClass,f=null==c?"router-link-active":c,p=null==l?"router-link-exact-active":l,d=null==this.activeClass?f:this.activeClass,h=null==this.exactActiveClass?p:this.exactActiveClass,v=o.path?w(null,o,null,n):s;u[h]=S(r,v),u[d]=this.exact?u[h]:function(t,e){return 0===t.path.replace(_,"/").indexOf(e.path.replace(_,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(r,v);var m=function(t){T(t)&&(e.replace?n.replace(o):n.push(o))},g={click:T};Array.isArray(this.event)?this.event.forEach(function(t){g[t]=m}):g[this.event]=m;var y={class:u};if("a"===this.tag)y.on=g,y.attrs={href:a};else{var b=function t(e){if(e)for(var n,r=0;r<e.length;r++){if("a"===(n=e[r]).tag)return n;if(n.children&&(n=t(n.children)))return n}}(this.$slots.default);if(b){b.isStatic=!1;var x=k.util.extend;(b.data=x({},b.data)).on=g,(b.data.attrs=x({},b.data.attrs)).href=a}else y.on=g}return t(this.tag,y,this.$slots.default)}};function T(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function P(t){if(!P.installed||k!==t){P.installed=!0,k=t;var e=function(t){return void 0!==t},n=function(t,n){var r=t.$options._parentVnode;e(r)&&e(r=r.data)&&e(r=r.registerRouteInstance)&&r(t,n)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("router-view",p),t.component("router-link",L);var r=t.config.optionMergeStrategies;r.beforeRouteEnter=r.beforeRouteLeave=r.beforeRouteUpdate=r.created}}var j="undefined"!=typeof window;function N(t,e,n){var r=t.charAt(0);if("/"===r)return t;if("?"===r||"#"===r)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var o=t.replace(/^\//,"").split("/"),s=0;s<o.length;s++){var a=o[s];".."===a?i.pop():"."!==a&&i.push(a)}return""!==i[0]&&i.unshift(""),i.join("/")}function I(t){return t.replace(/\/\//g,"/")}var M=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},U=X,D=V,R=function(t,e){return z(V(t,e))},F=z,B=J,G=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function V(t,e){for(var n,r=[],i=0,o=0,s="",a=e&&e.delimiter||"/";null!=(n=G.exec(t));){var u=n[0],c=n[1],l=n.index;if(s+=t.slice(o,l),o=l+u.length,c)s+=c[1];else{var f=t[o],p=n[2],d=n[3],h=n[4],v=n[5],m=n[6],g=n[7];s&&(r.push(s),s="");var y=null!=p&&null!=f&&f!==p,b="+"===m||"*"===m,_="?"===m||"*"===m,w=n[2]||a,x=h||v;r.push({name:d||i++,prefix:p||"",delimiter:w,optional:_,repeat:b,partial:y,asterisk:!!g,pattern:x?Y(x):g?".*":"[^"+W(w)+"]+?"})}}return o<t.length&&(s+=t.substr(o)),s&&r.push(s),r}function H(t){return encodeURI(t).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function q(t){return encodeURI(t).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function z(t){for(var e=new Array(t.length),n=0;n<t.length;n++)"object"==typeof t[n]&&(e[n]=new RegExp("^(?:"+t[n].pattern+")$"));return function(n,r){for(var i="",o=n||{},s=(r||{}).pretty?H:encodeURIComponent,a=0;a<t.length;a++){var u=t[a];if("string"!=typeof u){var c,l=o[u.name];if(null==l){if(u.optional){u.partial&&(i+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(M(l)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(l)+"`");if(0===l.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var f=0;f<l.length;f++){if(c=s(l[f]),!e[a].test(c))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(c)+"`");i+=(0===f?u.prefix:u.delimiter)+c}}else{if(c=u.asterisk?q(l):s(l),!e[a].test(c))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+c+'"');i+=u.prefix+c}}else i+=u}return i}}function W(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function Y(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function K(t,e){return t.keys=e,t}function Q(t){return t.sensitive?"":"i"}function J(t,e,n){M(e)||(n=e||n,e=[]);for(var r=(n=n||{}).strict,i=!1!==n.end,o="",s=0;s<t.length;s++){var a=t[s];if("string"==typeof a)o+=W(a);else{var u=W(a.prefix),c="(?:"+a.pattern+")";e.push(a),a.repeat&&(c+="(?:"+u+c+")*"),o+=c=a.optional?a.partial?u+"("+c+")?":"(?:"+u+"("+c+"))?":u+"("+c+")"}}var l=W(n.delimiter||"/"),f=o.slice(-l.length)===l;return r||(o=(f?o.slice(0,-l.length):o)+"(?:"+l+"(?=$))?"),o+=i?"$":r&&f?"":"(?="+l+"|$)",K(new RegExp("^"+o,Q(n)),e)}function X(t,e,n){return M(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)e.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return K(t,e)}(t,e):M(t)?function(t,e,n){for(var r=[],i=0;i<t.length;i++)r.push(X(t[i],e,n).source);return K(new RegExp("(?:"+r.join("|")+")",Q(n)),e)}(t,e,n):function(t,e,n){return J(V(t,n),e,n)}(t,e,n)}U.parse=D,U.compile=R,U.tokensToFunction=F,U.tokensToRegExp=B;var Z=Object.create(null);function tt(t,e,n){try{return(Z[t]||(Z[t]=U.compile(t)))(e||{},{pretty:!0})}catch(t){return""}}function et(t,e,n,r){var i=e||[],o=n||Object.create(null),s=r||Object.create(null);t.forEach(function(t){!function t(e,n,r,i,o,s){var a=i.path;var u=i.name;0;var c=i.pathToRegexpOptions||{};var l=function(t,e,n){n||(t=t.replace(/\/$/,""));if("/"===t[0])return t;if(null==e)return t;return I(e.path+"/"+t)}(a,o,c.strict);"boolean"==typeof i.caseSensitive&&(c.sensitive=i.caseSensitive);var f={path:l,regex:function(t,e){var n=U(t,[],e);0;return n}(l,c),components:i.components||{default:i.component},instances:{},name:u,parent:o,matchAs:s,redirect:i.redirect,beforeEnter:i.beforeEnter,meta:i.meta||{},props:null==i.props?{}:i.components?i.props:{default:i.props}};i.children&&i.children.forEach(function(i){var o=s?I(s+"/"+i.path):void 0;t(e,n,r,i,f,o)});if(void 0!==i.alias){var p=Array.isArray(i.alias)?i.alias:[i.alias];p.forEach(function(s){var a={path:s,children:i.children};t(e,n,r,a,o,f.path||"/")})}n[f.path]||(e.push(f.path),n[f.path]=f);u&&(r[u]||(r[u]=f))}(i,o,s,t)});for(var a=0,u=i.length;a<u;a++)"*"===i[a]&&(i.push(i.splice(a,1)[0]),u--,a--);return{pathList:i,pathMap:o,nameMap:s}}function nt(t,e,n,r){var i="string"==typeof t?{path:t}:t;if(i.name||i._normalized)return i;if(!i.path&&i.params&&e){(i=rt({},i))._normalized=!0;var o=rt(rt({},e.params),i.params);if(e.name)i.name=e.name,i.params=o;else if(e.matched.length){var s=e.matched[e.matched.length-1].path;i.path=tt(s,o,e.path)}else 0;return i}var a=function(t){var e="",n="",r=t.indexOf("#");r>=0&&(e=t.slice(r),t=t.slice(0,r));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),u=e&&e.path||"/",c=a.path?N(a.path,u,n||i.append):u,l=function(t,e,n){void 0===e&&(e={});var r,i=n||y;try{r=i(t||"")}catch(t){r={}}for(var o in e)r[o]=e[o];return r}(a.query,i.query,r&&r.options.parseQuery),f=i.hash||a.hash;return f&&"#"!==f.charAt(0)&&(f="#"+f),{_normalized:!0,path:c,query:l,hash:f}}function rt(t,e){for(var n in e)t[n]=e[n];return t}function it(t,e){var n=et(t),r=n.pathList,i=n.pathMap,o=n.nameMap;function s(t,n,s){var a=nt(t,n,!1,e),c=a.name;if(c){var l=o[c];if(!l)return u(null,a);var f=l.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!=typeof a.params&&(a.params={}),n&&"object"==typeof n.params)for(var p in n.params)!(p in a.params)&&f.indexOf(p)>-1&&(a.params[p]=n.params[p]);if(l)return a.path=tt(l.path,a.params),u(l,a,s)}else if(a.path){a.params={};for(var d=0;d<r.length;d++){var h=r[d],v=i[h];if(ot(v.regex,a.path,a.params))return u(v,a,s)}}return u(null,a)}function a(t,n){var r=t.redirect,i="function"==typeof r?r(w(t,n,null,e)):r;if("string"==typeof i&&(i={path:i}),!i||"object"!=typeof i)return u(null,n);var a=i,c=a.name,l=a.path,f=n.query,p=n.hash,d=n.params;if(f=a.hasOwnProperty("query")?a.query:f,p=a.hasOwnProperty("hash")?a.hash:p,d=a.hasOwnProperty("params")?a.params:d,c){o[c];return s({_normalized:!0,name:c,query:f,hash:p,params:d},void 0,n)}if(l){var h=function(t,e){return N(t,e.parent?e.parent.path:"/",!0)}(l,t);return s({_normalized:!0,path:tt(h,d),query:f,hash:p},void 0,n)}return u(null,n)}function u(t,n,r){return t&&t.redirect?a(t,r||n):t&&t.matchAs?function(t,e,n){var r=s({_normalized:!0,path:tt(n,e.params)});if(r){var i=r.matched,o=i[i.length-1];return e.params=r.params,u(o,e)}return u(null,e)}(0,n,t.matchAs):w(t,n,r,e)}return{match:s,addRoutes:function(t){et(t,r,i,o)}}}function ot(t,e,n){var r=e.match(t);if(!r)return!1;if(!n)return!0;for(var i=1,o=r.length;i<o;++i){var s=t.keys[i-1],a="string"==typeof r[i]?decodeURIComponent(r[i]):r[i];s&&(n[s.name]=a)}return!0}var st=Object.create(null);function at(){window.history.replaceState({key:yt()},""),window.addEventListener("popstate",function(t){ct(),t.state&&t.state.key&&function(t){mt=t}(t.state.key)})}function ut(t,e,n,r){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick(function(){var t=function(){var t=yt();if(t)return st[t]}(),o=i(e,n,r?t:null);o&&("function"==typeof o.then?o.then(function(e){dt(e,t)}).catch(function(t){0}):dt(o,t))})}}function ct(){var t=yt();t&&(st[t]={x:window.pageXOffset,y:window.pageYOffset})}function lt(t){return pt(t.x)||pt(t.y)}function ft(t){return{x:pt(t.x)?t.x:window.pageXOffset,y:pt(t.y)?t.y:window.pageYOffset}}function pt(t){return"number"==typeof t}function dt(t,e){var n="object"==typeof t;if(n&&"string"==typeof t.selector){var r=document.querySelector(t.selector);if(r){var i=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),r=t.getBoundingClientRect();return{x:r.left-n.left-e.x,y:r.top-n.top-e.y}}(r,i=function(t){return{x:pt(t.x)?t.x:0,y:pt(t.y)?t.y:0}}(i))}else lt(t)&&(e=ft(t))}else n&<(t)&&(e=ft(t));e&&window.scrollTo(e.x,e.y)}var ht=j&&function(){var t=window.navigator.userAgent;return(-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)}(),vt=j&&window.performance&&window.performance.now?window.performance:Date,mt=gt();function gt(){return vt.now().toFixed(3)}function yt(){return mt}function bt(t,e){ct();var n=window.history;try{e?n.replaceState({key:mt},"",t):(mt=gt(),n.pushState({key:mt},"",t))}catch(n){window.location[e?"replace":"assign"](t)}}function _t(t){bt(t,!0)}function wt(t,e,n){var r=function(i){i>=t.length?n():t[i]?e(t[i],function(){r(i+1)}):r(i+1)};r(0)}function xt(t){return function(e,n,r){var i=!1,o=0,s=null;Ct(t,function(t,e,n,a){if("function"==typeof t&&void 0===t.cid){i=!0,o++;var u,c=At(function(e){(function(t){return t.__esModule||St&&"Module"===t[Symbol.toStringTag]})(e)&&(e=e.default),t.resolved="function"==typeof e?e:k.extend(e),n.components[a]=e,--o<=0&&r()}),l=At(function(t){var e="Failed to resolve async component "+a+": "+t;s||(s=f(t)?t:new Error(e),r(s))});try{u=t(c,l)}catch(t){l(t)}if(u)if("function"==typeof u.then)u.then(c,l);else{var p=u.component;p&&"function"==typeof p.then&&p.then(c,l)}}}),i||r()}}function Ct(t,e){return Ot(t.map(function(t){return Object.keys(t.components).map(function(n){return e(t.components[n],t.instances[n],t,n)})}))}function Ot(t){return Array.prototype.concat.apply([],t)}var St="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function At(t){var e=!1;return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var kt=function(t,e){this.router=t,this.base=function(t){if(!t)if(j){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";"/"!==t.charAt(0)&&(t="/"+t);return t.replace(/\/$/,"")}(e),this.current=C,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function Et(t,e,n,r){var i=Ct(t,function(t,r,i,o){var s=function(t,e){"function"!=typeof t&&(t=k.extend(t));return t.options[e]}(t,e);if(s)return Array.isArray(s)?s.map(function(t){return n(t,r,i,o)}):n(s,r,i,o)});return Ot(r?i.reverse():i)}function $t(t,e){if(e)return function(){return t.apply(e,arguments)}}kt.prototype.listen=function(t){this.cb=t},kt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},kt.prototype.onError=function(t){this.errorCbs.push(t)},kt.prototype.transitionTo=function(t,e,n){var r=this,i=this.router.match(t,this.current);this.confirmTransition(i,function(){r.updateRoute(i),e&&e(i),r.ensureURL(),r.ready||(r.ready=!0,r.readyCbs.forEach(function(t){t(i)}))},function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,r.readyErrorCbs.forEach(function(e){e(t)}))})},kt.prototype.confirmTransition=function(t,e,n){var r=this,i=this.current,o=function(t){f(t)&&(r.errorCbs.length?r.errorCbs.forEach(function(e){e(t)}):(l(),console.error(t))),n&&n(t)};if(S(t,i)&&t.matched.length===i.matched.length)return this.ensureURL(),o();var s=function(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n<r&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),a=s.updated,u=s.deactivated,c=s.activated,p=[].concat(function(t){return Et(t,"beforeRouteLeave",$t,!0)}(u),this.router.beforeHooks,function(t){return Et(t,"beforeRouteUpdate",$t)}(a),c.map(function(t){return t.beforeEnter}),xt(c));this.pending=t;var d=function(e,n){if(r.pending!==t)return o();try{e(t,i,function(t){!1===t||f(t)?(r.ensureURL(!0),o(t)):"string"==typeof t||"object"==typeof t&&("string"==typeof t.path||"string"==typeof t.name)?(o(),"object"==typeof t&&t.replace?r.replace(t):r.push(t)):n(t)})}catch(t){o(t)}};wt(p,d,function(){var n=[];wt(function(t,e,n){return Et(t,"beforeRouteEnter",function(t,r,i,o){return function(t,e,n,r,i){return function(o,s,a){return t(o,s,function(t){a(t),"function"==typeof t&&r.push(function(){!function t(e,n,r,i){n[r]?e(n[r]):i()&&setTimeout(function(){t(e,n,r,i)},16)}(t,e.instances,n,i)})})}}(t,i,o,e,n)})}(c,n,function(){return r.current===t}).concat(r.router.resolveHooks),d,function(){if(r.pending!==t)return o();r.pending=null,e(t),r.router.app&&r.router.app.$nextTick(function(){n.forEach(function(t){t()})})})})},kt.prototype.updateRoute=function(t){var e=this.current;this.current=t,this.cb&&this.cb(t),this.router.afterHooks.forEach(function(n){n&&n(t,e)})};var Lt=function(t){function e(e,n){var r=this;t.call(this,e,n);var i=e.options.scrollBehavior;i&&at();var o=Tt(this.base);window.addEventListener("popstate",function(t){var n=r.current,s=Tt(r.base);r.current===C&&s===o||r.transitionTo(s,function(t){i&&ut(e,t,n,!0)})})}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){bt(I(r.base+t.fullPath)),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){_t(I(r.base+t.fullPath)),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.ensureURL=function(t){if(Tt(this.base)!==this.current.fullPath){var e=I(this.base+this.current.fullPath);t?bt(e):_t(e)}},e.prototype.getCurrentLocation=function(){return Tt(this.base)},e}(kt);function Tt(t){var e=window.location.pathname;return t&&0===e.indexOf(t)&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var Pt=function(t){function e(e,n,r){t.call(this,e,n),r&&function(t){var e=Tt(t);if(!/^\/#/.test(e))return window.location.replace(I(t+"/#"+e)),!0}(this.base)||jt()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this,e=this.router.options.scrollBehavior,n=ht&&e;n&&at(),window.addEventListener(ht?"popstate":"hashchange",function(){var e=t.current;jt()&&t.transitionTo(Nt(),function(r){n&&ut(t.router,r,e,!0),ht||Ut(r.fullPath)})})},e.prototype.push=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){Mt(t.fullPath),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this,i=this.current;this.transitionTo(t,function(t){Ut(t.fullPath),ut(r.router,t,i,!1),e&&e(t)},n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;Nt()!==e&&(t?Mt(e):Ut(e))},e.prototype.getCurrentLocation=function(){return Nt()},e}(kt);function jt(){var t=Nt();return"/"===t.charAt(0)||(Ut("/"+t),!1)}function Nt(){var t=window.location.href,e=t.indexOf("#");return-1===e?"":t.slice(e+1)}function It(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function Mt(t){ht?bt(It(t)):window.location.hash=t}function Ut(t){ht?_t(It(t)):window.location.replace(It(t))}var Dt=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)},n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)},n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,function(){e.index=n,e.updateRoute(r)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(kt),Rt=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=it(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!ht&&!1!==t.fallback,this.fallback&&(e="hash"),j||(e="abstract"),this.mode=e,e){case"history":this.history=new Lt(this,t.base);break;case"hash":this.history=new Pt(this,t.base,this.fallback);break;case"abstract":this.history=new Dt(this,t.base);break;default:0}},Ft={currentRoute:{configurable:!0}};function Bt(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}Rt.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ft.currentRoute.get=function(){return this.history&&this.history.current},Rt.prototype.init=function(t){var e=this;if(this.apps.push(t),!this.app){this.app=t;var n=this.history;if(n instanceof Lt)n.transitionTo(n.getCurrentLocation());else if(n instanceof Pt){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},Rt.prototype.beforeEach=function(t){return Bt(this.beforeHooks,t)},Rt.prototype.beforeResolve=function(t){return Bt(this.resolveHooks,t)},Rt.prototype.afterEach=function(t){return Bt(this.afterHooks,t)},Rt.prototype.onReady=function(t,e){this.history.onReady(t,e)},Rt.prototype.onError=function(t){this.history.onError(t)},Rt.prototype.push=function(t,e,n){this.history.push(t,e,n)},Rt.prototype.replace=function(t,e,n){this.history.replace(t,e,n)},Rt.prototype.go=function(t){this.history.go(t)},Rt.prototype.back=function(){this.go(-1)},Rt.prototype.forward=function(){this.go(1)},Rt.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},Rt.prototype.resolve=function(t,e,n){var r=nt(t,e||this.history.current,n,this),i=this.match(r,e),o=i.redirectedFrom||i.fullPath;return{location:r,route:i,href:function(t,e,n){var r="hash"===n?"#"+e:e;return t?I(t+"/"+r):r}(this.history.base,o,this.mode),normalizedTo:r,resolved:i}},Rt.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==C&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(Rt.prototype,Ft),Rt.install=P,Rt.version="3.0.1",j&&window.Vue&&window.Vue.use(Rt);var Gt=Rt,Vt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"app-settings",attrs:{id:"content"}},[n("app-navigation",{attrs:{menu:t.menu}},[n("template",{slot:"settings-content"},[n("div",[n("p",[t._v(t._s(t.t("settings","Default quota :")))]),t._v(" "),n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.defaultQuota,options:t.quotaOptions,"tag-placeholder":"create",placeholder:t.t("settings","Select default quota"),label:"label","track-by":"id",allowEmpty:!1,taggable:!0},on:{tag:t.validateQuota,input:t.setDefaultQuota}})],1),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showLanguages,expression:"showLanguages"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showLanguages"},domProps:{checked:Array.isArray(t.showLanguages)?t._i(t.showLanguages,null)>-1:t.showLanguages},on:{change:function(e){var n=t.showLanguages,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showLanguages=n.concat([null])):o>-1&&(t.showLanguages=n.slice(0,o).concat(n.slice(o+1)))}else t.showLanguages=i}}}),t._v(" "),n("label",{attrs:{for:"showLanguages"}},[t._v(t._s(t.t("settings","Show Languages")))])]),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showLastLogin,expression:"showLastLogin"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showLastLogin"},domProps:{checked:Array.isArray(t.showLastLogin)?t._i(t.showLastLogin,null)>-1:t.showLastLogin},on:{change:function(e){var n=t.showLastLogin,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showLastLogin=n.concat([null])):o>-1&&(t.showLastLogin=n.slice(0,o).concat(n.slice(o+1)))}else t.showLastLogin=i}}}),t._v(" "),n("label",{attrs:{for:"showLastLogin"}},[t._v(t._s(t.t("settings","Show last login")))])]),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showUserBackend,expression:"showUserBackend"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showUserBackend"},domProps:{checked:Array.isArray(t.showUserBackend)?t._i(t.showUserBackend,null)>-1:t.showUserBackend},on:{change:function(e){var n=t.showUserBackend,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showUserBackend=n.concat([null])):o>-1&&(t.showUserBackend=n.slice(0,o).concat(n.slice(o+1)))}else t.showUserBackend=i}}}),t._v(" "),n("label",{attrs:{for:"showUserBackend"}},[t._v(t._s(t.t("settings","Show user backend")))])]),t._v(" "),n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.showStoragePath,expression:"showStoragePath"}],staticClass:"checkbox",attrs:{type:"checkbox",id:"showStoragePath"},domProps:{checked:Array.isArray(t.showStoragePath)?t._i(t.showStoragePath,null)>-1:t.showStoragePath},on:{change:function(e){var n=t.showStoragePath,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&(t.showStoragePath=n.concat([null])):o>-1&&(t.showStoragePath=n.slice(0,o).concat(n.slice(o+1)))}else t.showStoragePath=i}}}),t._v(" "),n("label",{attrs:{for:"showStoragePath"}},[t._v(t._s(t.t("settings","Show storage path")))])])])],2),t._v(" "),n("user-list",{attrs:{users:t.users,showConfig:t.showConfig,selectedGroup:t.selectedGroup,externalActions:t.externalActions}})],1)};Vt._withStripped=!0;var Ht=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{"icon-loading":t.menu.loading},attrs:{id:"app-navigation"}},[t.menu.new?n("div",{staticClass:"app-navigation-new"},[n("button",{class:t.menu.new.icon,attrs:{type:"button",id:t.menu.new.id},on:{click:t.menu.new.action}},[t._v(t._s(t.menu.new.text))])]):t._e(),t._v(" "),n("ul",{attrs:{id:t.menu.id}},t._l(t.menu.items,function(t){return n("navigation-item",{key:t.key,attrs:{item:t}})})),t._v(" "),t.$slots["settings-content"]?n("div",{attrs:{id:"app-settings"}},[n("div",{attrs:{id:"app-settings-header"}},[n("button",{staticClass:"settings-button",attrs:{"data-apps-slide-toggle":"#app-settings-content"}},[t._v(t._s(t.t("settings","Settings")))])]),t._v(" "),n("div",{attrs:{id:"app-settings-content"}},[t._t("settings-content")],2)]):t._e()])};Ht._withStripped=!0;var qt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.item.caption?n("li",{staticClass:"app-navigation-caption"},[t._v(t._s(t.item.text))]):n("nav-element",t._b({class:[{"icon-loading-small":t.item.loading,open:t.item.opened,collapsible:t.item.collapsible&&t.item.children&&t.item.children.length>0},t.item.classes],attrs:{id:t.item.id}},"nav-element",t.navElement(t.item),!1),[t.item.bullet?n("div",{staticClass:"app-navigation-entry-bullet",style:{backgroundColor:t.item.bullet}}):t._e(),t._v(" "),n("a",{class:t.item.icon,attrs:{href:t.item.href?t.item.href:"#"},on:{click:t.toggleCollapse}},[t.item.iconUrl?n("img",{attrs:{alt:t.item.text,src:t.item.iconUrl}}):t._e(),t._v("\n\t\t"+t._s(t.item.text)+"\n\t")]),t._v(" "),t.item.utils?n("div",{staticClass:"app-navigation-entry-utils"},[n("ul",[Number.isInteger(t.item.utils.counter)?n("li",{staticClass:"app-navigation-entry-utils-counter"},[t._v(t._s(t.item.utils.counter))]):t._e(),t._v(" "),t.item.utils.actions&&1===t.item.utils.actions.length?n("li",{staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{class:t.item.utils.actions[0].icon,attrs:{title:t.item.utils.actions[0].text},on:{click:t.item.utils.actions[0].action}})]):t.item.utils.actions&&2===t.item.utils.actions.length&&!Number.isInteger(t.item.utils.counter)?t._l(t.item.utils.actions,function(t){return n("li",{key:t.action,staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{class:t.icon,attrs:{title:t.text},on:{click:t.action}})])}):t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n("li",{staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.hideMenu,expression:"hideMenu"}],on:{click:t.showMenu}})]):t._e()],2)]):t._e(),t._v(" "),t.item.utils&&t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n("div",{staticClass:"app-navigation-entry-menu",class:{open:t.openedMenu}},[n("popover-menu",{attrs:{menu:t.item.utils.actions}})],1):t._e(),t._v(" "),t.item.undo?n("div",{staticClass:"app-navigation-entry-deleted"},[n("div",{staticClass:"app-navigation-entry-deleted-description"},[t._v(t._s(t.item.undo.text))]),t._v(" "),n("button",{staticClass:"app-navigation-entry-deleted-button icon-history",attrs:{title:t.t("settings","Undo")}})]):t._e(),t._v(" "),t.item.edit?n("div",{staticClass:"app-navigation-entry-edit"},[n("form",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.item.text,expression:"item.text"}],attrs:{type:"text"},domProps:{value:t.item.text},on:{input:function(e){e.target.composing||t.$set(t.item,"text",e.target.value)}}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}}),t._v(" "),n("input",{staticClass:"icon-close",attrs:{type:"submit",value:""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.cancelEdit(e)}}})])]):t._e(),t._v(" "),t.item.children?n("ul",t._l(t.item.children,function(t,e){return n("navigation-item",{key:e,attrs:{item:t}})})):t._e()])};qt._withStripped=!0;var zt=function(){var t=this.$createElement,e=this._self._c||t;return e("ul",this._l(this.menu,function(t,n){return e("popover-item",{key:n,attrs:{item:t}})}))};zt._withStripped=!0;var Wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("li",[t.item.href?n("a",{attrs:{href:t.item.href?t.item.href:"#",target:t.item.target?t.item.target:"",rel:"noreferrer noopener"},on:{click:t.item.action}},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()]):t.item.action?n("button",{on:{click:t.item.action}},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()]):n("span",{staticClass:"menuitem"},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()])])};Wt._withStripped=!0;var Yt=a({props:["item"]},Wt,[],!1,null,null,null);Yt.options.__file="src/components/popoverMenu/popoverItem.vue";var Kt=a({name:"popoverMenu",props:["menu"],components:{popoverItem:Yt.exports}},zt,[],!1,null,null,null);Kt.options.__file="src/components/popoverMenu.vue";var Qt=Kt.exports,Jt=r(53),Xt=r.n(Jt),Zt=a({name:"navigationItem",props:["item"],components:{popoverMenu:Qt},directives:{ClickOutside:Xt.a},data:function(){return{openedMenu:!1}},methods:{showMenu:function(){this.openedMenu=!0},hideMenu:function(){this.openedMenu=!1},toggleCollapse:function(){i.a.set(this.item,"opened",!this.item.opened||!this.item.opened)},cancelEdit:function(){Array.isArray(this.item.classes)&&(this.item.classes=this.item.classes.filter(function(t){return"editing"!==t}))},navElement:function(t){return t.href?{is:"li"}:{is:"router-link",tag:"li",to:t.router,exact:!0}}},mounted:function(){this.popupItem=this.$el}},qt,[],!1,null,null,null);Zt.options.__file="src/components/appNavigation/navigationItem.vue";var te=a({name:"appNavigation",props:["menu"],components:{navigationItem:Zt.exports}},Ht,[],!1,null,null,null);te.options.__file="src/components/appNavigation.vue";var ee=te.exports,ne=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"user-list-grid",attrs:{id:"app-content"},on:{"&scroll":function(e){return t.onScroll(e)}}},[n("div",{staticClass:"row",class:{sticky:t.scrolled&&!t.showConfig.showNewUserForm},attrs:{id:"grid-header"}},[n("div",{staticClass:"avatar",attrs:{id:"headerAvatar"}}),t._v(" "),n("div",{staticClass:"name",attrs:{id:"headerName"}},[t._v(t._s(t.t("settings","Username")))]),t._v(" "),n("div",{staticClass:"displayName",attrs:{id:"headerDisplayName"}},[t._v(t._s(t.t("settings","Display name")))]),t._v(" "),n("div",{staticClass:"password",attrs:{id:"headerPassword"}},[t._v(t._s(t.t("settings","Password")))]),t._v(" "),n("div",{staticClass:"mailAddress",attrs:{id:"headerAddress"}},[t._v(t._s(t.t("settings","Email")))]),t._v(" "),n("div",{staticClass:"groups",attrs:{id:"headerGroups"}},[t._v(t._s(t.t("settings","Groups")))]),t._v(" "),t.subAdminsGroups.length>0&&t.settings.isAdmin?n("div",{staticClass:"subadmins",attrs:{id:"headerSubAdmins"}},[t._v(t._s(t.t("settings","Group admin for")))]):t._e(),t._v(" "),n("div",{staticClass:"quota",attrs:{id:"headerQuota"}},[t._v(t._s(t.t("settings","Quota")))]),t._v(" "),t.showConfig.showLanguages?n("div",{staticClass:"languages",attrs:{id:"headerLanguages"}},[t._v(t._s(t.t("settings","Language")))]):t._e(),t._v(" "),t.showConfig.showStoragePath?n("div",{staticClass:"headerStorageLocation storageLocation"},[t._v(t._s(t.t("settings","Storage location")))]):t._e(),t._v(" "),t.showConfig.showUserBackend?n("div",{staticClass:"headerUserBackend userBackend"},[t._v(t._s(t.t("settings","User backend")))]):t._e(),t._v(" "),t.showConfig.showLastLogin?n("div",{staticClass:"headerLastLogin lastLogin"},[t._v(t._s(t.t("settings","Last login")))]):t._e(),t._v(" "),n("div",{staticClass:"userActions"})]),t._v(" "),n("form",{directives:[{name:"show",rawName:"v-show",value:t.showConfig.showNewUserForm,expression:"showConfig.showNewUserForm"}],staticClass:"row",class:{sticky:t.scrolled&&t.showConfig.showNewUserForm},attrs:{id:"new-user",disabled:t.loading},on:{submit:function(e){return e.preventDefault(),t.createUser(e)}}},[n("div",{class:t.loading?"icon-loading-small":"icon-add"}),t._v(" "),n("div",{staticClass:"name"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.id,expression:"newUser.id"}],attrs:{id:"newusername",type:"text",required:"",placeholder:t.t("settings","Username"),name:"username",autocomplete:"off",autocapitalize:"none",autocorrect:"off",pattern:"[a-zA-Z0-9 _\\.@\\-']+"},domProps:{value:t.newUser.id},on:{input:function(e){e.target.composing||t.$set(t.newUser,"id",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"displayName"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.displayName,expression:"newUser.displayName"}],attrs:{id:"newdisplayname",type:"text",placeholder:t.t("settings","Display name"),name:"displayname",autocomplete:"off",autocapitalize:"none",autocorrect:"off"},domProps:{value:t.newUser.displayName},on:{input:function(e){e.target.composing||t.$set(t.newUser,"displayName",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"password"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.password,expression:"newUser.password"}],attrs:{id:"newuserpassword",type:"password",required:""===t.newUser.mailAddress,placeholder:t.t("settings","Password"),name:"password",autocomplete:"new-password",autocapitalize:"none",autocorrect:"off",minlength:t.minPasswordLength},domProps:{value:t.newUser.password},on:{input:function(e){e.target.composing||t.$set(t.newUser,"password",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"mailAddress"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newUser.mailAddress,expression:"newUser.mailAddress"}],attrs:{id:"newemail",type:"email",required:""===t.newUser.password,placeholder:t.t("settings","Email"),name:"email",autocomplete:"off",autocapitalize:"none",autocorrect:"off"},domProps:{value:t.newUser.mailAddress},on:{input:function(e){e.target.composing||t.$set(t.newUser,"mailAddress",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"groups"},[t.settings.isAdmin?t._e():n("input",{attrs:{type:"text",tabindex:"-1",id:"newgroups",required:!t.settings.isAdmin},domProps:{value:t.newUser.groups}}),t._v(" "),n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.canAddGroups,placeholder:t.t("settings","Add user in group"),label:"name","track-by":"id",multiple:!0,"close-on-select":!1,allowEmpty:t.settings.isAdmin},model:{value:t.newUser.groups,callback:function(e){t.$set(t.newUser,"groups",e)},expression:"newUser.groups"}},[n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1),t._v(" "),t.subAdminsGroups.length>0&&t.settings.isAdmin?n("div",{staticClass:"subadmins"},[n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.subAdminsGroups,placeholder:t.t("settings","Set user as admin for"),label:"name","track-by":"id",multiple:!0,"close-on-select":!1},model:{value:t.newUser.subAdminsGroups,callback:function(e){t.$set(t.newUser,"subAdminsGroups",e)},expression:"newUser.subAdminsGroups"}},[n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1):t._e(),t._v(" "),n("div",{staticClass:"quota"},[n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.quotaOptions,placeholder:t.t("settings","Select user quota"),label:"label","track-by":"id",allowEmpty:!1,taggable:!0},on:{tag:t.validateQuota},model:{value:t.newUser.quota,callback:function(e){t.$set(t.newUser,"quota",e)},expression:"newUser.quota"}})],1),t._v(" "),t.showConfig.showLanguages?n("div",{staticClass:"languages"},[n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.languages,placeholder:t.t("settings","Default language"),label:"name","track-by":"code",allowEmpty:!1,"group-values":"languages","group-label":"label"},model:{value:t.newUser.language,callback:function(e){t.$set(t.newUser,"language",e)},expression:"newUser.language"}})],1):t._e(),t._v(" "),t.showConfig.showStoragePath?n("div",{staticClass:"storageLocation"}):t._e(),t._v(" "),t.showConfig.showUserBackend?n("div",{staticClass:"userBackend"}):t._e(),t._v(" "),t.showConfig.showLastLogin?n("div",{staticClass:"lastLogin"}):t._e(),t._v(" "),n("div",{staticClass:"userActions"},[n("input",{staticClass:"button primary icon-checkmark-white has-tooltip",attrs:{type:"submit",id:"newsubmit",value:"",title:t.t("settings","Add a new user")}})])]),t._v(" "),t._l(t.filteredUsers,function(e,r){return n("user-row",{key:r,attrs:{user:e,settings:t.settings,showConfig:t.showConfig,groups:t.groups,subAdminsGroups:t.subAdminsGroups,quotaOptions:t.quotaOptions,languages:t.languages,externalActions:t.externalActions}})}),t._v(" "),n("infinite-loading",{ref:"infiniteLoading",on:{infinite:t.infiniteHandler}},[n("div",{attrs:{slot:"spinner"},slot:"spinner"},[n("div",{staticClass:"users-icon-loading icon-loading"})]),t._v(" "),n("div",{attrs:{slot:"no-more"},slot:"no-more"},[n("div",{staticClass:"users-list-end"})]),t._v(" "),n("div",{attrs:{slot:"no-results"},slot:"no-results"},[n("div",{attrs:{id:"emptycontent"}},[n("div",{staticClass:"icon-contacts-dark"}),t._v(" "),n("h2",[t._v(t._s(t.t("settings","No users in here")))])])])])],2)};ne._withStripped=!0;var re=function(){var t=this,e=t.$createElement,n=t._self._c||e;return 1===Object.keys(t.user).length?n("div",{staticClass:"row",attrs:{"data-id":t.user.id}},[n("div",{staticClass:"avatar",class:{"icon-loading-small":t.loading.delete||t.loading.disable}},[t.loading.delete||t.loading.disable?t._e():n("img",{attrs:{alt:"",width:"32",height:"32",src:t.generateAvatar(t.user.id,32),srcset:t.generateAvatar(t.user.id,64)+" 2x, "+t.generateAvatar(t.user.id,128)+" 4x"}})]),t._v(" "),n("div",{staticClass:"name"},[t._v(t._s(t.user.id))]),t._v(" "),n("div",{staticClass:"obfuscated"},[t._v(t._s(t.t("settings","You do not have permissions to see the details of this user")))])]):n("div",{staticClass:"row",class:{disabled:t.loading.delete||t.loading.disable},attrs:{"data-id":t.user.id}},[n("div",{staticClass:"avatar",class:{"icon-loading-small":t.loading.delete||t.loading.disable}},[t.loading.delete||t.loading.disable?t._e():n("img",{attrs:{alt:"",width:"32",height:"32",src:t.generateAvatar(t.user.id,32),srcset:t.generateAvatar(t.user.id,64)+" 2x, "+t.generateAvatar(t.user.id,128)+" 4x"}})]),t._v(" "),n("div",{staticClass:"name"},[t._v(t._s(t.user.id))]),t._v(" "),n("form",{staticClass:"displayName",class:{"icon-loading-small":t.loading.displayName},on:{submit:function(e){return e.preventDefault(),t.updateDisplayName(e)}}},[n("input",{ref:"displayName",attrs:{id:"displayName"+t.user.id+t.rand,type:"text",disabled:t.loading.displayName||t.loading.all,autocomplete:"new-password",autocorrect:"off",autocapitalize:"off",spellcheck:"false"},domProps:{value:t.user.displayname}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]),t._v(" "),t.settings.canChangePassword?n("form",{staticClass:"password",class:{"icon-loading-small":t.loading.password},on:{submit:function(e){return e.preventDefault(),t.updatePassword(e)}}},[n("input",{ref:"password",attrs:{id:"password"+t.user.id+t.rand,type:"password",required:"",disabled:t.loading.password||t.loading.all,minlength:t.minPasswordLength,value:"",placeholder:t.t("settings","New password"),autocomplete:"new-password",autocorrect:"off",autocapitalize:"off",spellcheck:"false"}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]):n("div"),t._v(" "),n("form",{staticClass:"mailAddress",class:{"icon-loading-small":t.loading.mailAddress},on:{submit:function(e){return e.preventDefault(),t.updateEmail(e)}}},[n("input",{ref:"mailAddress",attrs:{id:"mailAddress"+t.user.id+t.rand,type:"email",disabled:t.loading.mailAddress||t.loading.all,autocomplete:"new-password",autocorrect:"off",autocapitalize:"off",spellcheck:"false"},domProps:{value:t.user.email}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]),t._v(" "),n("div",{staticClass:"groups",class:{"icon-loading-small":t.loading.groups}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userGroups,options:t.availableGroups,disabled:t.loading.groups||t.loading.all,"tag-placeholder":"create",placeholder:t.t("settings","Add user in group"),label:"name","track-by":"id",limit:2,multiple:!0,taggable:t.settings.isAdmin,closeOnSelect:!1},on:{tag:t.createGroup,select:t.addUserGroup,remove:t.removeUserGroup}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.formatGroupsTitle(t.userGroups),expression:"formatGroupsTitle(userGroups)",modifiers:{auto:!0}}],staticClass:"multiselect__limit",attrs:{slot:"limit"},slot:"limit"},[t._v("+"+t._s(t.userGroups.length-2))]),t._v(" "),n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1),t._v(" "),t.subAdminsGroups.length>0&&t.settings.isAdmin?n("div",{staticClass:"subadmins",class:{"icon-loading-small":t.loading.subadmins}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userSubAdminsGroups,options:t.subAdminsGroups,disabled:t.loading.subadmins||t.loading.all,placeholder:t.t("settings","Set user as admin for"),label:"name","track-by":"id",limit:2,multiple:!0,closeOnSelect:!1},on:{select:t.addUserSubAdmin,remove:t.removeUserSubAdmin}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.formatGroupsTitle(t.userSubAdminsGroups),expression:"formatGroupsTitle(userSubAdminsGroups)",modifiers:{auto:!0}}],staticClass:"multiselect__limit",attrs:{slot:"limit"},slot:"limit"},[t._v("+"+t._s(t.userSubAdminsGroups.length-2))]),t._v(" "),n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])])],1):t._e(),t._v(" "),n("div",{staticClass:"quota",class:{"icon-loading-small":t.loading.quota}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userQuota,options:t.quotaOptions,disabled:t.loading.quota||t.loading.all,"tag-placeholder":"create",placeholder:t.t("settings","Select user quota"),label:"label","track-by":"id",allowEmpty:!1,taggable:!0},on:{tag:t.validateQuota,input:t.setUserQuota}}),t._v(" "),n("progress",{staticClass:"quota-user-progress",class:{warn:t.usedQuota>80},attrs:{max:"100"},domProps:{value:t.usedQuota}})],1),t._v(" "),t.showConfig.showLanguages?n("div",{staticClass:"languages",class:{"icon-loading-small":t.loading.languages}},[n("multiselect",{staticClass:"multiselect-vue",attrs:{value:t.userLanguage,options:t.languages,disabled:t.loading.languages||t.loading.all,placeholder:t.t("settings","No language set"),label:"name","track-by":"code",allowEmpty:!1,"group-values":"languages","group-label":"label"},on:{input:t.setUserLanguage}})],1):t._e(),t._v(" "),t.showConfig.showStoragePath?n("div",{staticClass:"storageLocation"},[t._v(t._s(t.user.storageLocation))]):t._e(),t._v(" "),t.showConfig.showUserBackend?n("div",{staticClass:"userBackend"},[t._v(t._s(t.user.backend))]):t._e(),t._v(" "),t.showConfig.showLastLogin?n("div",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.user.lastLogin>0?t.OC.Util.formatDate(t.user.lastLogin):"",expression:"user.lastLogin>0 ? OC.Util.formatDate(user.lastLogin) : ''",modifiers:{auto:!0}}],staticClass:"lastLogin"},[t._v("\n\t\t"+t._s(t.user.lastLogin>0?t.OC.Util.relativeModifiedDate(t.user.lastLogin):t.t("settings","Never"))+"\n\t")]):t._e(),t._v(" "),n("div",{staticClass:"userActions"},[t.OC.currentUser===t.user.id||"admin"===t.user.id||t.loading.all?t._e():n("div",{staticClass:"toggleUserActions"},[n("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.hideMenu,expression:"hideMenu"}],staticClass:"icon-more",on:{click:t.toggleMenu}}),t._v(" "),n("div",{staticClass:"popovermenu",class:{open:t.openedMenu}},[n("popover-menu",{attrs:{menu:t.userActions}})],1)]),t._v(" "),n("div",{staticClass:"feedback",style:{opacity:""!==t.feedbackMessage?1:0}},[n("div",{staticClass:"icon-checkmark"}),t._v("\n\t\t\t"+t._s(t.feedbackMessage)+"\n\t\t")])])])};re._withStripped=!0;var ie=r(9),oe=r.n(ie),se=r(107),ae="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};i.a.use(se.a);var ue=a({name:"userRow",props:["user","settings","groups","subAdminsGroups","quotaOptions","showConfig","languages","externalActions"],components:{popoverMenu:Qt,Multiselect:oe.a},directives:{ClickOutside:Xt.a},mounted:function(){},data:function(){return{rand:parseInt(1e3*Math.random()),openedMenu:!1,feedbackMessage:"",loading:{all:!1,displayName:!1,password:!1,mailAddress:!1,groups:!1,subadmins:!1,quota:!1,delete:!1,disable:!1,languages:!1}}},computed:{userActions:function(){var e=[{icon:"icon-delete",text:t("settings","Delete user"),action:this.deleteUser},{icon:this.user.enabled?"icon-close":"icon-add",text:this.user.enabled?t("settings","Disable user"):t("settings","Enable user"),action:this.enableDisableUser}];return null!==this.user.email&&""!==this.user.email&&e.push({icon:"icon-mail",text:t("settings","Resend welcome email"),action:this.sendWelcomeMail}),e.concat(this.externalActions)},userGroups:function(){var t=this,e=this.groups.filter(function(e){return t.user.groups.includes(e.id)});return e},userSubAdminsGroups:function(){var t=this,e=this.subAdminsGroups.filter(function(e){return t.user.subadmin.includes(e.id)});return e},availableGroups:function(){var t=this;return this.groups.map(function(e){var n=Object.assign({},e);return n.$isDisabled=!1===e.canAdd&&!t.user.groups.includes(e.id)||!1===e.canRemove&&t.user.groups.includes(e.id),n})},usedQuota:function(){var t=this.user.quota.quota;t>0?t=Math.min(100,Math.round(this.user.quota.used/t*100)):t=95*(1-1/(this.user.quota.used/(10*Math.pow(2,30))+1));return isNaN(t)?0:t},userQuota:function(){if(this.user.quota.quota>=0){var t=OC.Util.humanFileSize(this.user.quota.quota),e=this.quotaOptions.find(function(e){return e.id===t});return e||{id:t,label:t}}return"default"===this.user.quota.quota?this.quotaOptions[0]:this.quotaOptions[1]},minPasswordLength:function(){return this.$store.getters.getPasswordPolicyMinLength},userLanguage:function(){var t=this,e=this.languages[0].languages.concat(this.languages[1].languages).find(function(e){return e.code===t.user.language});return"object"!==(void 0===e?"undefined":ae(e))&&""!==this.user.language?{code:this.user.language,name:this.user.language}:""!==this.user.language&&e}},methods:{toggleMenu:function(){this.openedMenu=!this.openedMenu},hideMenu:function(){this.openedMenu=!1},generateAvatar:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:32;return OC.generateUrl("/avatar/{user}/{size}?v={version}",{user:t,size:e,version:oc_userconfig.avatar.version})},formatGroupsTitle:function(t){return t.map(function(t){return t.name}).slice(2).join(", ")},deleteUser:function(){var t=this;this.loading.delete=!0,this.loading.all=!0;var e=this.user.id;return this.$store.dispatch("deleteUser",e).then(function(){t.loading.delete=!1,t.loading.all=!1})},enableDisableUser:function(){var t=this;this.loading.delete=!0,this.loading.all=!0;var e=this.user.id,n=!this.user.enabled;return this.$store.dispatch("enableDisableUser",{userid:e,enabled:n}).then(function(){t.loading.delete=!1,t.loading.all=!1})},updateDisplayName:function(){var t=this,e=this.$refs.displayName.value;this.loading.displayName=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"displayname",value:e}).then(function(){t.loading.displayName=!1,t.$refs.displayName.value=e})},updatePassword:function(){var t=this,e=this.$refs.password.value;this.loading.password=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"password",value:e}).then(function(){t.loading.password=!1,t.$refs.password.value=""})},updateEmail:function(){var t=this,e=this.$refs.mailAddress.value;this.loading.mailAddress=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"email",value:e}).then(function(){t.loading.mailAddress=!1,t.$refs.mailAddress.value=e})},createGroup:function(t){var e=this;return this.loading={groups:!0,subadmins:!0},this.$store.dispatch("addGroup",t).then(function(){e.loading={groups:!1,subadmins:!1};var n=e.user.id;e.$store.dispatch("addUserGroup",{userid:n,gid:t})}).catch(function(){e.loading={groups:!1,subadmins:!1}}),this.$store.getters.getGroups[this.groups.length]},addUserGroup:function(t){var e=this;if(!1===t.canAdd)return!1;this.loading.groups=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("addUserGroup",{userid:n,gid:r}).then(function(){return e.loading.groups=!1})},removeUserGroup:function(t){var e=this;if(!1===t.canRemove)return!1;this.loading.groups=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("removeUserGroup",{userid:n,gid:r}).then(function(){e.loading.groups=!1,e.$route.params.selectedGroup===r&&e.$store.commit("deleteUser",n)}).catch(function(){e.loading.groups=!1})},addUserSubAdmin:function(t){var e=this;this.loading.subadmins=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("addUserSubAdmin",{userid:n,gid:r}).then(function(){return e.loading.subadmins=!1})},removeUserSubAdmin:function(t){var e=this;this.loading.subadmins=!0;var n=this.user.id,r=t.id;return this.$store.dispatch("removeUserSubAdmin",{userid:n,gid:r}).then(function(){return e.loading.subadmins=!1})},setUserQuota:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"none";return this.loading.quota=!0,e=e.id?e.id:e,this.$store.dispatch("setUserData",{userid:this.user.id,key:"quota",value:e}).then(function(){return t.loading.quota=!1}),e},validateQuota:function(t){var e=OC.Util.computerFileSize(t);return null!==e&&e>=0&&this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(t)))},setUserLanguage:function(t){var e=this;return this.loading.languages=!0,this.$store.dispatch("setUserData",{userid:this.user.id,key:"language",value:t.code}).then(function(){return e.loading.languages=!1}),t},sendWelcomeMail:function(){var e=this;this.loading.all=!0,this.$store.dispatch("sendWelcomeMail",this.user.id).then(function(n){n&&(e.feedbackMessage=t("setting","Welcome mail sent!"),setTimeout(function(){e.feedbackMessage=""},2e3)),e.loading.all=!1})}}},re,[],!1,null,null,null);ue.options.__file="src/components/userList/userRow.vue";var ce=ue.exports,le=r(108),fe=r.n(le),pe=a({name:"userList",props:["users","showConfig","selectedGroup","externalActions"],components:{userRow:ce,Multiselect:oe.a,InfiniteLoading:fe.a},data:function(){var e={id:"none",label:t("settings","Unlimited")},n={id:"default",label:t("settings","Default quota")};return{unlimitedQuota:e,defaultQuota:n,loading:!1,scrolled:!1,searchQuery:"",newUser:{id:"",displayName:"",password:"",mailAddress:"",groups:[],subAdminsGroups:[],quota:n,language:{code:"en",name:t("settings","Default language")}}}},mounted:function(){this.settings.canChangePassword||OC.Notification.showTemporary(t("settings","Password change is disabled because the master key is disabled")),i.a.set(this.newUser.language,"code",this.settings.defaultLanguage),this.setNewUserDefaultGroup(this.$route.params.selectedGroup),this.userSearch=new OCA.Search(this.search,this.resetSearch)},computed:{settings:function(){return this.$store.getters.getServerData},filteredUsers:function(){if("disabled"===this.selectedGroup){var t=this.users.filter(function(t){return!1===t.enabled});return 0===t.length&&this.$refs.infiniteLoading&&this.$refs.infiniteLoading.isComplete&&(this.$router.push({name:"users"}),this.$refs.infiniteLoading.$emit("$InfiniteLoading:reset")),t}return this.settings.isAdmin?this.users.filter(function(t){return!1!==t.enabled}):this.users.filter(function(t){return!1!==t.enabled&&t.id!==oc_current_user})},groups:function(){return this.$store.getters.getGroups.filter(function(t){return"disabled"!==t.id}).sort(function(t,e){return t.name.localeCompare(e.name)})},canAddGroups:function(){return this.groups.map(function(t){return(t=Object.assign({},t)).$isDisabled=!1===t.canAdd,t})},subAdminsGroups:function(){return this.$store.getters.getSubadminGroups},quotaOptions:function(){var t=this.settings.quotaPreset.reduce(function(t,e){return t.concat({id:e,label:e})},[]);return t.unshift(this.unlimitedQuota),t.unshift(this.defaultQuota),t},minPasswordLength:function(){return this.$store.getters.getPasswordPolicyMinLength},usersOffset:function(){return this.$store.getters.getUsersOffset},usersLimit:function(){return this.$store.getters.getUsersLimit},languages:function(){return Array({label:t("settings","Common languages"),languages:this.settings.languages.commonlanguages},{label:t("settings","All languages"),languages:this.settings.languages.languages})}},watch:{selectedGroup:function(t,e){this.$store.commit("resetUsers"),this.$refs.infiniteLoading.$emit("$InfiniteLoading:reset"),this.setNewUserDefaultGroup(t)}},methods:{onScroll:function(t){this.scrolled=t.target.scrollTo>0},validateQuota:function(t){var e=OC.Util.computerFileSize(t);return null!==e&&e>=0?(t=OC.Util.humanFileSize(OC.Util.computerFileSize(t)),this.newUser.quota={id:t,label:t}):this.newUser.quota=this.quotaOptions[0]},infiniteHandler:function(t){this.$store.dispatch("getUsers",{offset:this.usersOffset,limit:this.usersLimit,group:"disabled"!==this.selectedGroup?this.selectedGroup:"",search:this.searchQuery}).then(function(e){e?t.loaded():t.complete()})},search:function(t){this.searchQuery=t,this.$store.commit("resetUsers"),this.$refs.infiniteLoading.$emit("$InfiniteLoading:reset")},resetSearch:function(){this.search("")},resetForm:function(){Object.assign(this.newUser,this.$options.data.call(this).newUser),this.loading=!1},createUser:function(){var t=this;this.loading=!0,this.$store.dispatch("addUser",{userid:this.newUser.id,password:this.newUser.password,displayName:this.newUser.displayName,email:this.newUser.mailAddress,groups:this.newUser.groups.map(function(t){return t.id}),subadmin:this.newUser.subAdminsGroups.map(function(t){return t.id}),quota:this.newUser.quota.id,language:this.newUser.language.code}).then(function(){return t.resetForm()}).catch(function(){return t.loading=!1})},setNewUserDefaultGroup:function(t){if(t&&t.length>0){var e=this.groups.find(function(e){return e.id===t});if(e)return void(this.newUser.groups=[e])}this.newUser.groups=[]}}},ne,[],!1,null,null,null);pe.options.__file="src/components/userList.vue";var de=pe.exports,he=r(40),ve=r.n(he),me=r(28),ge=r.n(me),ye={headers:{requesttoken:document.getElementsByTagName("head")[0].getAttribute("data-requesttoken")}},be=function(t){return t.replace(/\/$/,"")},_e=function(){return new Promise(function(e,n){var r=void 0,i=setTimeout(function(){clearTimeout(r),document.getElementsByClassName("oc-dialog-close").length>0&&document.getElementsByClassName("oc-dialog-close")[0].click(),OC.Notification.showTemporary(t("settings","You did not enter the password in time")),n("Password request cancelled")},7e3);OC.PasswordConfirmation.requirePasswordConfirmation(),function t(){OC.PasswordConfirmation.requiresPasswordConfirmation()?r=setTimeout(t,500):(clearTimeout(r),clearTimeout(i),e())}()})},we=function(t){return ge.a.get(be(t),ye).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},xe=function(t,e){return ge.a.post(be(t),e,ye).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},Ce=function(t,e){return ge.a.put(be(t),e,ye).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},Oe=function(t,e){return ge.a.delete(be(t),{data:e,headers:ye.headers}).then(function(t){return Promise.resolve(t)}).catch(function(t){return Promise.reject(t)})},Se="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};i.a.use(ve.a),i.a.use(ve.a);var Ae=a({name:"Users",props:["selectedGroup"],components:{appNavigation:ee,userList:de,Multiselect:oe.a},beforeMount:function(){this.$store.commit("initGroups",{groups:this.$store.getters.getServerData.groups,orderBy:this.$store.getters.getServerData.sortGroups,userCount:this.$store.getters.getServerData.userCount}),this.$store.dispatch("getPasswordPolicyMinLength")},created:function(){Object.assign(OCA,{Settings:{UserList:{registerAction:this.registerAction}}})},data:function(){return{unlimitedQuota:{id:"none",label:t("settings","Unlimited")},selectedQuota:!1,externalActions:[],showConfig:{showStoragePath:!1,showUserBackend:!1,showLastLogin:!1,showNewUserForm:!1,showLanguages:!1}}},methods:{toggleNewUserMenu:function(){this.showConfig.showNewUserForm=!this.showConfig.showNewUserForm,this.showConfig.showNewUserForm&&i.a.nextTick(function(){window.newusername.focus()})},getLocalstorage:function(t){var e=this.$localStorage.get(t);return this.showConfig[t]=null!==e?"true"===e:this.showConfig[t],this.showConfig[t]},setLocalStorage:function(t,e){return this.showConfig[t]=e,this.$localStorage.set(t,e),e},removeGroup:function(e){var n=this;OC.dialogs.confirm(t("settings","You are about to remove the group {group}. The users will NOT be deleted.",{group:e}),t("settings","Please confirm the group removal "),function(t){t&&n.$store.dispatch("removeGroup",e)})},setDefaultQuota:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"none";this.$store.dispatch("setAppConfig",{app:"files",key:"default_quota",value:e.id?e.id:e}).then(function(){"object"!==(void 0===e?"undefined":Se(e))&&(e={id:e,label:e}),t.defaultQuota=e})},validateQuota:function(t){var e=OC.Util.computerFileSize(t);return 0===e?this.setDefaultQuota("none"):null!==e&&this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(t)))},registerAction:function(t,e,n){return this.externalActions.push({icon:t,text:e,action:n}),this.externalActions}},computed:{users:function(){return this.$store.getters.getUsers},loading:function(){return 0===Object.keys(this.users).length},usersOffset:function(){return this.$store.getters.getUsersOffset},usersLimit:function(){return this.$store.getters.getUsersLimit},showLanguages:{get:function(){return this.getLocalstorage("showLanguages")},set:function(t){this.setLocalStorage("showLanguages",t)}},showLastLogin:{get:function(){return this.getLocalstorage("showLastLogin")},set:function(t){this.setLocalStorage("showLastLogin",t)}},showUserBackend:{get:function(){return this.getLocalstorage("showUserBackend")},set:function(t){this.setLocalStorage("showUserBackend",t)}},showStoragePath:{get:function(){return this.getLocalstorage("showStoragePath")},set:function(t){this.setLocalStorage("showStoragePath",t)}},userCount:function(){return this.$store.getters.getUserCount},settings:function(){return this.$store.getters.getServerData},quotaOptions:function(){var t=this.settings.quotaPreset.reduce(function(t,e){return t.concat({id:e,label:e})},[]);return t.unshift(this.unlimitedQuota),t},defaultQuota:{get:function(){return!1!==this.selectedQuota?this.selectedQuota:OC.Util.computerFileSize(this.settings.defaultQuota)>0?{id:this.settings.defaultQuota,label:this.settings.defaultQuota}:this.unlimitedQuota},set:function(t){this.selectedQuota=t}},menu:function(){var e=this,n=this.$store.getters.getGroups,r=(n=(n=Array.isArray(n)?n:[]).map(function(n){var r={};if(r.id=n.id.replace(" ","_"),r.key=r.id,r.utils={},r.router={name:"group",params:{selectedGroup:n.id}},r.text=n.name,n.usercount-n.disabled>0&&(r.utils.counter=n.usercount-n.disabled),"admin"!==r.id&&"disabled"!==r.id&&e.settings.isAdmin){var i=e;r.utils.actions=[{icon:"icon-delete",text:t("settings","Remove group"),action:function(){i.removeGroup(n.id)}}]}return r})).find(function(t){return"admin"==t.id}),i=n.findIndex(function(t){return"disabled"==t.id}),o=n[i];r&&r.text&&(r.text=t("settings","Admins"),r.icon="icon-user-admin"),o&&o.text&&(o.text=t("settings","Disabled users"),o.icon="icon-disabled-users",o.utils.counter||n.splice(i,1));var s=n.find(function(t){return"disabled"!==t.id&&"admin"!==t.id});if(s=void 0===s?[]:s,(s=Array.isArray(s)?s:[s]).length>0){var a={caption:!0,text:t("settings","Groups")};n.unshift(a)}var u={id:"everyone",key:"everyone",icon:"icon-contacts-dark",router:{name:"users"},text:t("settings","Everyone")};return this.userCount>0&&(u.utils={counter:this.userCount}),n.unshift(u),{id:"usergrouplist",new:{id:"new-user-button",text:t("settings","New user"),icon:"icon-add",action:this.toggleNewUserMenu},items:n}}}},Vt,[],!1,null,null,null);Ae.options.__file="src/views/Users.vue";var ke=Ae.exports,Ee=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"app-settings",class:{"with-app-sidebar":t.currentApp},attrs:{id:"content"}},[n("app-navigation",{attrs:{menu:t.menu}}),t._v(" "),n("div",{staticClass:"app-settings-content",class:{"icon-loading":t.loadingList},attrs:{id:"app-content"}},[n("app-list",{attrs:{category:t.category,app:t.currentApp,search:t.searchQuery}})],1),t._v(" "),t.id&&t.currentApp?n("div",{attrs:{id:"app-sidebar"}},[n("app-details",{attrs:{category:t.category,app:t.currentApp}})],1):t._e()],1)};Ee._withStripped=!0;var $e=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{attrs:{id:"app-content-inner"}},[n("div",{staticClass:"apps-list",class:{installed:t.useBundleView||t.useListView,store:t.useAppStoreView},attrs:{id:"apps-list"}},[t.useListView?[n("transition-group",{staticClass:"apps-list-container",attrs:{name:"app-list",tag:"div"}},t._l(t.apps,function(e){return n("app-item",{key:e.id,attrs:{app:e,category:t.category}})}))]:t._e(),t._v(" "),t._l(t.bundles,function(e){return t.useBundleView&&t.bundleApps(e.id).length>0?[n("transition-group",{staticClass:"apps-list-container",attrs:{name:"app-list",tag:"div"}},[n("div",{key:e.id,staticClass:"apps-header"},[n("div",{staticClass:"app-image"}),t._v(" "),n("h2",[t._v(t._s(e.name)+" "),n("input",{attrs:{type:"button",value:t.bundleToggleText(e.id)},on:{click:function(n){t.toggleBundle(e.id)}}})]),t._v(" "),n("div",{staticClass:"app-version"}),t._v(" "),n("div",{staticClass:"app-level"}),t._v(" "),n("div",{staticClass:"app-groups"}),t._v(" "),n("div",{staticClass:"actions"},[t._v(" ")])]),t._v(" "),t._l(t.bundleApps(e.id),function(r){return n("app-item",{key:e.id+r.id,attrs:{app:r,category:t.category}})})],2)]:t._e()}),t._v(" "),t.useAppStoreView?t._l(t.apps,function(e){return n("app-item",{key:e.id,attrs:{app:e,category:t.category,"list-view":!1}})}):t._e()],2),t._v(" "),n("div",{staticClass:"apps-list installed",attrs:{id:"apps-list-search"}},[n("div",{staticClass:"apps-list-container"},[""!==t.search&&t.searchApps.length>0?[n("div",{staticClass:"section"},[n("div"),t._v(" "),n("td",{attrs:{colspan:"5"}},[n("h2",[t._v(t._s(t.t("settings","Results from other categories")))])])]),t._v(" "),t._l(t.searchApps,function(e){return n("app-item",{key:e.id,attrs:{app:e,category:t.category,"list-view":!0}})})]:t._e()],2)]),t._v(" "),t.loading||0!==t.searchApps.length||0!==t.apps.length?t._e():n("div",{staticClass:"emptycontent emptycontent-search",attrs:{id:"apps-list-empty"}},[n("div",{staticClass:"icon-settings-dark",attrs:{id:"app-list-empty-icon"}}),t._v(" "),n("h2",[t._v(t._s(t.t("settings","No apps found for your version")))])]),t._v(" "),n("div",{attrs:{id:"searchresults"}})])};$e._withStripped=!0;var Le=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"section",class:{selected:t.isSelected},on:{click:t.showAppDetails}},[n("div",{staticClass:"app-image app-image-icon",on:{click:t.showAppDetails}},[t.listView&&!t.app.preview||!t.listView&&!t.app.screenshot?n("div",{staticClass:"icon-settings-dark"}):t._e(),t._v(" "),t.listView&&t.app.preview?n("svg",{attrs:{width:"32",height:"32",viewBox:"0 0 32 32"}},[n("defs",[n("filter",{attrs:{id:t.filterId}},[n("feColorMatrix",{attrs:{in:"SourceGraphic",type:"matrix",values:"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"}})],1)]),t._v(" "),n("image",{staticClass:"app-icon",attrs:{x:"0",y:"0",width:"32",height:"32",preserveAspectRatio:"xMinYMin meet",filter:t.filterUrl,"xlink:href":t.app.preview}})]):t._e(),t._v(" "),!t.listView&&t.app.screenshot?n("img",{attrs:{src:t.app.screenshot,width:"100%"}}):t._e()]),t._v(" "),n("div",{staticClass:"app-name",on:{click:t.showAppDetails}},[t._v("\n\t\t"+t._s(t.app.name)+"\n\t")]),t._v(" "),t.listView?t._e():n("div",{staticClass:"app-summary"},[t._v(t._s(t.app.summary))]),t._v(" "),t.listView?n("div",{staticClass:"app-version"},[t.app.version?n("span",[t._v(t._s(t.app.version))]):t.app.appstoreData.releases[0].version?n("span",[t._v(t._s(t.app.appstoreData.releases[0].version))]):t._e()]):t._e(),t._v(" "),n("div",{staticClass:"app-level"},[200===t.app.level?n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","Official apps are developed by and within the community. They offer central functionality and are ready for production use."),expression:"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')",modifiers:{auto:!0}}],staticClass:"official icon-checkmark"},[t._v("\n\t\t\t"+t._s(t.t("settings","Official")))]):t._e(),t._v(" "),t.listView?t._e():n("app-score",{attrs:{score:t.app.score}})],1),t._v(" "),n("div",{staticClass:"actions"},[t.app.error?n("div",{staticClass:"warning"},[t._v(t._s(t.app.error))]):t._e(),t._v(" "),t.loading(t.app.id)?n("div",{staticClass:"icon icon-loading-small"}):t._e(),t._v(" "),t.app.update?n("input",{staticClass:"update",attrs:{type:"button",value:t.t("settings","Update to {update}",{update:t.app.update}),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.update(t.app.id)}}}):t._e(),t._v(" "),t.app.canUnInstall?n("input",{staticClass:"uninstall",attrs:{type:"button",value:t.t("settings","Remove"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.remove(t.app.id)}}}):t._e(),t._v(" "),t.app.active?n("input",{staticClass:"enable",attrs:{type:"button",value:t.t("settings","Disable"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.disable(t.app.id)}}}):t._e(),t._v(" "),t.app.active?t._e():n("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.enableButtonTooltip,expression:"enableButtonTooltip",modifiers:{auto:!0}}],staticClass:"enable",attrs:{type:"button",value:t.enableButtonText,disabled:!t.app.canInstall||t.installing||t.loading(t.app.id)},on:{click:function(e){e.stopPropagation(),t.enable(t.app.id)}}})])])};Le._withStripped=!0;var Te=function(){var t=this.$createElement;return(this._self._c||t)("img",{staticClass:"app-score-image",attrs:{src:this.scoreImage}})};Te._withStripped=!0;var Pe=a({name:"appScore",props:["score"],computed:{scoreImage:function(){var t="rating/s"+Math.round(10*this.score)+".svg";return OC.imagePath("core",t)}}},Te,[],!1,null,null,null);Pe.options.__file="src/components/appList/appScore.vue";var je=Pe.exports,Ne=a({mounted:function(){this.app.groups.length>0&&(this.groupCheckedAppsData=!0)},computed:{appGroups:function(){return this.app.groups.map(function(t){return{id:t,name:t}})},loading:function(){var t=this;return function(e){return t.$store.getters.loading(e)}},installing:function(){return this.$store.getters.loading("install")},enableButtonText:function(){return this.app.needsDownload?t("settings","Download and enable"):t("settings","Enable")},enableButtonTooltip:function(){return!!this.app.needsDownload&&t("settings","The app will be downloaded from the app store")}},methods:{asyncFindGroup:function(t){return this.$store.dispatch("getGroups",{search:t,limit:5,offset:0})},isLimitedToGroups:function(t){return!(!this.app.groups.length&&!this.groupCheckedAppsData)},setGroupLimit:function(){this.groupCheckedAppsData||this.$store.dispatch("enableApp",{appId:this.app.id,groups:[]})},canLimitToGroups:function(t){return!(t.types&&t.types.includes("filesystem")||t.types.includes("prelogin")||t.types.includes("authentication")||t.types.includes("logging")||t.types.includes("prevent_group_restriction"))},addGroupLimitation:function(t){var e=this.app.groups.concat([]).concat([t.id]);this.$store.dispatch("enableApp",{appId:this.app.id,groups:e})},removeGroupLimitation:function(t){var e=this.app.groups.concat([]),n=e.indexOf(t.id);n>-1&&e.splice(n,1),this.$store.dispatch("enableApp",{appId:this.app.id,groups:e})},enable:function(t){this.$store.dispatch("enableApp",{appId:t,groups:[]}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},disable:function(t){this.$store.dispatch("disableApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},remove:function(t){this.$store.dispatch("uninstallApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},install:function(t){this.$store.dispatch("enableApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})},update:function(t){this.$store.dispatch("updateApp",{appId:t}).then(function(t){OC.Settings.Apps.rebuildNavigation()}).catch(function(t){OC.Notification.show(t)})}}},void 0,void 0,!1,null,null,null);Ne.options.__file="src/components/appManagement.vue";var Ie=Ne.exports,Me=a({name:"svgFilterMixin",mounted:function(){this.filterId="invertIconApps"+Math.floor(100*Math.random())+(new Date).getSeconds()+(new Date).getMilliseconds()},computed:{filterUrl:function(){return"url(#"+this.filterId+")"}},data:function(){return{filterId:""}}},void 0,void 0,!1,null,null,null);Me.options.__file="src/components/svgFilterMixin.vue";var Ue=Me.exports,De=a({name:"appItem",mixins:[Ie,Ue],props:{app:{},category:{},listView:{type:Boolean,default:!0}},watch:{"$route.params.id":function(t){this.isSelected=this.app.id===t}},components:{Multiselect:oe.a,AppScore:je},data:function(){return{isSelected:!1,scrolled:!1}},mounted:function(){this.isSelected=this.app.id===this.$route.params.id},computed:{},watchers:{},methods:{showAppDetails:function(t){"INPUT"!==t.currentTarget.tagName&&"A"!==t.currentTarget.tagName&&this.$router.push({name:"apps-details",params:{category:this.category,id:this.app.id}})},prefix:function(t,e){return t+"_"+e}}},Le,[],!1,null,null,null);De.options.__file="src/components/appList/appItem.vue";var Re=De.exports,Fe=a({name:"prefixMixin",methods:{prefix:function(t,e){return t+"_"+e}}},void 0,void 0,!1,null,null,null);Fe.options.__file="src/components/prefixMixin.vue";var Be=Fe.exports,Ge=a({name:"appList",mixins:[Be],props:["category","app","search"],components:{Multiselect:oe.a,appItem:Re},computed:{loading:function(){return this.$store.getters.loading("list")},apps:function(){var t=this,e=this.$store.getters.getAllApps.filter(function(e){return-1!==e.name.toLowerCase().search(t.search.toLowerCase())}).sort(function(t,e){var n=""+(t.active?0:1)+(t.update?0:1)+t.name,r=""+(e.active?0:1)+(e.update?0:1)+e.name;return OC.Util.naturalSortCompare(n,r)});return"installed"===this.category?e.filter(function(t){return t.installed}):"enabled"===this.category?e.filter(function(t){return t.active&&t.installed}):"disabled"===this.category?e.filter(function(t){return!t.active&&t.installed}):"app-bundles"===this.category?e.filter(function(t){return t.bundles}):"updates"===this.category?e.filter(function(t){return t.update}):e.filter(function(e){return e.appstore&&void 0!==e.category&&(e.category===t.category||e.category.indexOf(t.category)>-1)})},bundles:function(){return this.$store.getters.getServerData.bundles},bundleApps:function(){return function(t){return this.$store.getters.getAllApps.filter(function(e){return e.bundleId===t})}},searchApps:function(){var t=this;return""===this.search?[]:this.$store.getters.getAllApps.filter(function(e){return-1!==e.name.toLowerCase().search(t.search.toLowerCase())&&!t.apps.find(function(t){return t.id===e.id})})},useAppStoreView:function(){return!this.useListView&&!this.useBundleView},useListView:function(){return"installed"===this.category||"enabled"===this.category||"disabled"===this.category||"updates"===this.category},useBundleView:function(){return"app-bundles"===this.category},allBundlesEnabled:function(){var t=this;return function(e){return 0===t.bundleApps(e).filter(function(t){return!t.active}).length}},bundleToggleText:function(){var e=this;return function(n){return e.allBundlesEnabled(n)?t("settings","Disable all"):t("settings","Enable all")}}},methods:{toggleBundle:function(t){return this.allBundlesEnabled(t)?this.disableBundle(t):this.enableBundle(t)},enableBundle:function(t){var e=this.bundleApps(t).map(function(t){return t.id});this.$store.dispatch("enableApp",{appId:e,groups:[]}).catch(function(t){console.log(t),OC.Notification.show(t)})},disableBundle:function(t){var e=this.bundleApps(t).map(function(t){return t.id});this.$store.dispatch("disableApp",{appId:e,groups:[]}).catch(function(t){OC.Notification.show(t)})}}},$e,[],!1,null,null,null);Ge.options.__file="src/components/appList.vue";var Ve=Ge.exports,He=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{padding:"20px"},attrs:{id:"app-details-view"}},[n("a",{staticClass:"close icon-close",attrs:{href:"#"},on:{click:t.hideAppDetails}},[n("span",{staticClass:"hidden-visually"},[t._v("Close")])]),t._v(" "),n("h2",[t.app.preview?t._e():n("div",{staticClass:"icon-settings-dark"}),t._v(" "),t.app.previewAsIcon&&t.app.preview?n("svg",{attrs:{width:"32",height:"32",viewBox:"0 0 32 32"}},[n("defs",[n("filter",{attrs:{id:t.filterId}},[n("feColorMatrix",{attrs:{in:"SourceGraphic",type:"matrix",values:"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"}})],1)]),t._v(" "),n("image",{staticClass:"app-icon",attrs:{x:"0",y:"0",width:"32",height:"32",preserveAspectRatio:"xMinYMin meet",filter:t.filterUrl,"xlink:href":t.app.preview}})]):t._e(),t._v("\n\t\t"+t._s(t.app.name))]),t._v(" "),t.app.screenshot?n("img",{attrs:{src:t.app.screenshot,width:"100%"}}):t._e(),t._v(" "),200===t.app.level||t.hasRating?n("div",{staticClass:"app-level"},[200===t.app.level?n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.t("settings","Official apps are developed by and within the community. They offer central functionality and are ready for production use."),expression:"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')",modifiers:{auto:!0}}],staticClass:"official icon-checkmark"},[t._v("\n\t\t\t"+t._s(t.t("settings","Official")))]):t._e(),t._v(" "),t.hasRating?n("app-score",{attrs:{score:t.app.appstoreData.ratingOverall}}):t._e()],1):t._e(),t._v(" "),t.author?n("div",{staticClass:"app-author"},[t._v("\n\t\t"+t._s(t.t("settings","by"))+"\n\t\t"),t._l(t.author,function(e,r){return n("span",[e["@attributes"]&&e["@attributes"].homepage?n("a",{attrs:{href:e["@attributes"].homepage}},[t._v(t._s(e["@value"]))]):e["@value"]?n("span",[t._v(t._s(e["@value"]))]):n("span",[t._v(t._s(e))]),r+1<t.author.length?n("span",[t._v(", ")]):t._e()])})],2):t._e(),t._v(" "),t.licence?n("div",{staticClass:"app-licence"},[t._v(t._s(t.licence))]):t._e(),t._v(" "),n("div",{staticClass:"actions"},[n("div",{staticClass:"actions-buttons"},[t.app.update?n("input",{staticClass:"update",attrs:{type:"button",value:t.t("settings","Update to {version}",{version:t.app.update}),disabled:t.installing||t.loading(t.app.id)}}):t._e(),t._v(" "),t.app.canUnInstall?n("input",{staticClass:"uninstall",attrs:{type:"button",value:t.t("settings","Remove"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){t.remove(t.app.id)}}}):t._e(),t._v(" "),t.app.active?n("input",{staticClass:"enable",attrs:{type:"button",value:t.t("settings","Disable"),disabled:t.installing||t.loading(t.app.id)},on:{click:function(e){t.disable(t.app.id)}}}):t._e(),t._v(" "),t.app.active?t._e():n("input",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.enableButtonTooltip,expression:"enableButtonTooltip",modifiers:{auto:!0}}],staticClass:"enable",attrs:{type:"button",value:t.enableButtonText,disabled:!t.app.canInstall||t.installing||t.loading(t.app.id)},on:{click:function(e){t.enable(t.app.id)}}})]),t._v(" "),n("div",{staticClass:"app-groups"},[t.app.active&&t.canLimitToGroups(t.app)?n("div",{staticClass:"groups-enable"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.groupCheckedAppsData,expression:"groupCheckedAppsData"}],staticClass:"groups-enable__checkbox checkbox",attrs:{type:"checkbox",id:t.prefix("groups_enable",t.app.id)},domProps:{value:t.app.id,checked:Array.isArray(t.groupCheckedAppsData)?t._i(t.groupCheckedAppsData,t.app.id)>-1:t.groupCheckedAppsData},on:{change:[function(e){var n=t.groupCheckedAppsData,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t.app.id,s=t._i(n,o);r.checked?s<0&&(t.groupCheckedAppsData=n.concat([o])):s>-1&&(t.groupCheckedAppsData=n.slice(0,s).concat(n.slice(s+1)))}else t.groupCheckedAppsData=i},t.setGroupLimit]}}),t._v(" "),n("label",{attrs:{for:t.prefix("groups_enable",t.app.id)}},[t._v(t._s(t.t("settings","Limit to groups")))]),t._v(" "),n("input",{staticClass:"group_select",attrs:{type:"hidden",title:t.t("settings","All"),value:""}}),t._v(" "),t.isLimitedToGroups(t.app)?n("multiselect",{staticClass:"multiselect-vue",attrs:{options:t.groups,value:t.appGroups,"options-limit":5,placeholder:t.t("settings","Limit app usage to groups"),label:"name","track-by":"id",multiple:!0,"close-on-select":!1},on:{select:t.addGroupLimitation,remove:t.removeGroupLimitation,"search-change":t.asyncFindGroup}},[n("span",{attrs:{slot:"noResult"},slot:"noResult"},[t._v(t._s(t.t("settings","No results")))])]):t._e()],1):t._e()])]),t._v(" "),n("p",{staticClass:"documentation"},[t.app.internal?t._e():n("a",{staticClass:"appslink",attrs:{href:t.appstoreUrl,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","View in store"))+" ↗")]),t._v(" "),t.app.website?n("a",{staticClass:"appslink",attrs:{href:t.app.website,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Visit website"))+" ↗")]):t._e(),t._v(" "),t.app.bugs?n("a",{staticClass:"appslink",attrs:{href:t.app.bugs,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Report a bug"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.user?n("a",{staticClass:"appslink",attrs:{href:t.app.documentation.user,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","User documentation"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.admin?n("a",{staticClass:"appslink",attrs:{href:t.app.documentation.admin,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Admin documentation"))+" ↗")]):t._e(),t._v(" "),t.app.documentation&&t.app.documentation.developer?n("a",{staticClass:"appslink",attrs:{href:t.app.documentation.developer,target:"_blank",rel:"noreferrer noopener"}},[t._v(t._s(t.t("settings","Developer documentation"))+" ↗")]):t._e()]),t._v(" "),n("ul",{staticClass:"app-dependencies"},[t.app.missingMinOwnCloudVersion?n("li",[t._v(t._s(t.t("settings","This app has no minimum Nextcloud version assigned. This will be an error in the future.")))]):t._e(),t._v(" "),t.app.missingMaxOwnCloudVersion?n("li",[t._v(t._s(t.t("settings","This app has no maximum Nextcloud version assigned. This will be an error in the future.")))]):t._e(),t._v(" "),t.app.canInstall?t._e():n("li",[t._v("\n\t\t\t"+t._s(t.t("settings","This app cannot be installed because the following dependencies are not fulfilled:"))+"\n\t\t\t"),n("ul",{staticClass:"missing-dependencies"},t._l(t.app.missingDependencies,function(e){return n("li",[t._v(t._s(e))])}))])]),t._v(" "),n("div",{staticClass:"app-description",domProps:{innerHTML:t._s(t.renderMarkdown)}})])};He._withStripped=!0;var qe=a({mixins:[Ie,Be,Ue],name:"appDetails",props:["category","app"],components:{Multiselect:oe.a,AppScore:je},data:function(){return{groupCheckedAppsData:!1}},mounted:function(){this.app.groups.length>0&&(this.groupCheckedAppsData=!0)},methods:{hideAppDetails:function(){this.$router.push({name:"apps-category",params:{category:this.category}})}},computed:{appstoreUrl:function(){return"https://apps.nextcloud.com/apps/"+this.app.id},licence:function(){return this.app.licence?t("settings","{license}-licensed",{license:(""+this.app.licence).toUpperCase()}):null},hasRating:function(){return this.app.appstoreData&&this.app.appstoreData.ratingNumOverall>5},author:function(){return"string"==typeof this.app.author?[{"@value":this.app.author}]:this.app.author["@value"]?[this.app.author]:this.app.author},appGroups:function(){return this.app.groups.map(function(t){return{id:t,name:t}})},groups:function(){return this.$store.getters.getGroups.filter(function(t){return"disabled"!==t.id}).sort(function(t,e){return t.name.localeCompare(e.name)})},renderMarkdown:function(){var t=new window.marked.Renderer;return t.link=function(t,e,n){try{var r=decodeURIComponent(unescape(t)).replace(/[^\w:]/g,"").toLowerCase()}catch(t){return""}if(0!==r.indexOf("http:")&&0!==r.indexOf("https:"))return"";var i='<a href="'+t+'" rel="noreferrer noopener"';return e&&(i+=' title="'+e+'"'),i+=">"+n+"</a>"},t.image=function(t,e,n){return n||e},t.blockquote=function(t){return t},DOMPurify.sanitize(window.marked(this.app.description.trim(),{renderer:t,gfm:!1,highlight:!1,tables:!1,breaks:!1,pedantic:!1,sanitize:!0,smartLists:!0,smartypants:!1}),{SAFE_FOR_JQUERY:!0,ALLOWED_TAGS:["strong","p","a","ul","ol","li","em","del","blockquote"]})}}},He,[],!1,null,null,null);qe.options.__file="src/components/appDetails.vue";var ze=qe.exports;i.a.use(ve.a),i.a.use(ve.a);var We=a({name:"Apps",props:{category:{type:String,default:"installed"},id:{type:String,default:""}},components:{AppDetails:ze,appNavigation:ee,appList:Ve},methods:{setSearch:function(t){this.searchQuery=t},resetSearch:function(){this.setSearch("")}},beforeMount:function(){this.$store.dispatch("getCategories"),this.$store.dispatch("getAllApps"),this.$store.dispatch("getGroups",{offset:0,limit:5}),this.$store.commit("setUpdateCount",this.$store.getters.getServerData.updateCount)},mounted:function(){this.appSearch=new OCA.Search(this.setSearch,this.resetSearch)},data:function(){return{searchQuery:""}},watch:{category:function(t,e){this.setSearch("")}},computed:{loading:function(){return this.$store.getters.loading("categories")},loadingList:function(){return this.$store.getters.loading("list")},currentApp:function(){var t=this;return this.apps.find(function(e){return e.id===t.id})},categories:function(){return this.$store.getters.getCategories},apps:function(){return this.$store.getters.getAllApps},updateCount:function(){return this.$store.getters.getUpdateCount},settings:function(){return this.$store.getters.getServerData},menu:function(){var e=this,n=this.$store.getters.getCategories;n=(n=Array.isArray(n)?n:[]).map(function(t){var e={};return e.id="app-category-"+t.ident,e.icon="icon-category-"+t.ident,e.classes=[],e.router={name:"apps-category",params:{category:t.ident}},e.text=t.displayName,e});var r=[{id:"app-category-your-apps",classes:[],router:{name:"apps"},icon:"icon-category-installed",text:t("settings","Your apps")},{id:"app-category-enabled",classes:[],icon:"icon-category-enabled",router:{name:"apps-category",params:{category:"enabled"}},text:t("settings","Active apps")},{id:"app-category-disabled",classes:[],icon:"icon-category-disabled",router:{name:"apps-category",params:{category:"disabled"}},text:t("settings","Disabled apps")}];if(!this.settings.appstoreEnabled)return{id:"appscategories",items:r};this.$store.getters.getUpdateCount>0&&r.push({id:"app-category-updates",classes:[],icon:"icon-download",router:{name:"apps-category",params:{category:"updates"}},text:t("settings","Updates"),utils:{counter:this.$store.getters.getUpdateCount}}),r.push({id:"app-category-app-bundles",classes:[],icon:"icon-category-app-bundles",router:{name:"apps-category",params:{category:"app-bundles"}},text:t("settings","App bundles")});var i=(n=r.concat(n)).findIndex(function(t){return t.id==="app-category-"+e.category});return i>=0?n[i].classes.push("active"):n[0].classes.push("active"),n.push({id:"app-developer-docs",classes:[],href:this.settings.developerDocumentation,text:t("settings","Developer documentation")+" ↗"}),{id:"appscategories",items:n,loading:this.loading}}}},Ee,[],!1,null,null,null);We.options.__file="src/views/Apps.vue";var Ye=We.exports; /* * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> * diff --git a/settings/js/settings-vue.js.map b/settings/js/settings-vue.js.map index 98ec3120d5b..d8f0df33b90 100644 --- a/settings/js/settings-vue.js.map +++ b/settings/js/settings-vue.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/core-js/modules/_export.js","webpack:///./node_modules/vue/dist/vue.esm.js","webpack:///./node_modules/core-js/modules/_is-object.js","webpack:///./node_modules/core-js/modules/_global.js","webpack:///./node_modules/core-js/modules/_an-object.js","webpack:///./node_modules/core-js/modules/_wks.js","webpack:///./node_modules/core-js/modules/_fails.js","webpack:///./node_modules/core-js/modules/_object-dp.js","webpack:///./node_modules/core-js/modules/_to-length.js","webpack:///./node_modules/vue-multiselect/dist/vue-multiselect.min.js","webpack:///./node_modules/axios/lib/utils.js","webpack:///./node_modules/core-js/modules/_descriptors.js","webpack:///./node_modules/core-js/modules/_hide.js","webpack:///./node_modules/core-js/modules/_has.js","webpack:///./node_modules/core-js/modules/_to-iobject.js","webpack:///./node_modules/core-js/modules/_object-sap.js","webpack:///./node_modules/core-js/modules/_ctx.js","webpack:///./node_modules/core-js/modules/_to-object.js","webpack:///./node_modules/core-js/modules/_typed-array.js","webpack:///./node_modules/core-js/modules/_object-gopd.js","webpack:///./node_modules/core-js/modules/_redefine.js","webpack:///./node_modules/core-js/modules/_meta.js","webpack:///./node_modules/core-js/modules/_property-desc.js","webpack:///./node_modules/core-js/modules/_uid.js","webpack:///./node_modules/core-js/modules/_a-function.js","webpack:///./node_modules/core-js/modules/_to-integer.js","webpack:///./node_modules/core-js/modules/_defined.js","webpack:///./node_modules/core-js/modules/_object-keys.js","webpack:///./node_modules/axios/index.js","webpack:///./node_modules/core-js/modules/_core.js","webpack:///./node_modules/core-js/modules/_library.js","webpack:///./node_modules/core-js/modules/_redefine-all.js","webpack:///./node_modules/core-js/modules/_an-instance.js","webpack:///./node_modules/core-js/modules/_cof.js","webpack:///./node_modules/core-js/modules/_to-absolute-index.js","webpack:///./node_modules/core-js/modules/_set-to-string-tag.js","webpack:///./node_modules/core-js/modules/_iterators.js","webpack:///./node_modules/core-js/modules/_object-gpo.js","webpack:///./node_modules/core-js/modules/_add-to-unscopables.js","webpack:///./node_modules/core-js/modules/_validate-collection.js","webpack:///./node_modules/vue-localstorage/dist/vue-local-storage.js","webpack:///./node_modules/core-js/modules/_to-primitive.js","webpack:///./node_modules/core-js/modules/_object-gopn.js","webpack:///./node_modules/core-js/modules/_object-create.js","webpack:///./node_modules/core-js/modules/_array-methods.js","webpack:///./node_modules/core-js/modules/_object-pie.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/core-js/modules/_set-species.js","webpack:///./node_modules/core-js/modules/_iter-detect.js","webpack:///./node_modules/core-js/modules/_for-of.js","webpack:///./node_modules/core-js/modules/_collection.js","webpack:///./node_modules/core-js/modules/_object-gops.js","webpack:///./node_modules/core-js/modules/_fix-re-wks.js","webpack:///./node_modules/vue-click-outside/index.js","webpack:///./node_modules/process/browser.js","webpack:///./node_modules/axios/lib/defaults.js","webpack:///./node_modules/core-js/modules/_dom-create.js","webpack:///./node_modules/core-js/modules/_typed.js","webpack:///./node_modules/core-js/modules/_iobject.js","webpack:///./node_modules/core-js/modules/_array-includes.js","webpack:///./node_modules/core-js/modules/_shared-key.js","webpack:///./node_modules/core-js/modules/_shared.js","webpack:///./node_modules/core-js/modules/_enum-bug-keys.js","webpack:///./node_modules/core-js/modules/_array-fill.js","webpack:///./node_modules/core-js/modules/_species-constructor.js","webpack:///./node_modules/core-js/modules/_classof.js","webpack:///./node_modules/core-js/modules/_is-array-iter.js","webpack:///./node_modules/core-js/modules/core.get-iterator-method.js","webpack:///./node_modules/core-js/modules/es6.array.iterator.js","webpack:///./node_modules/core-js/modules/_set-proto.js","webpack:///./node_modules/core-js/modules/_task.js","webpack:///./node_modules/core-js/modules/_string-context.js","webpack:///./node_modules/core-js/modules/_fails-is-regexp.js","webpack:///./node_modules/core-js/modules/_create-property.js","webpack:///./node_modules/core-js/modules/_math-sign.js","webpack:///./node_modules/core-js/modules/_math-expm1.js","webpack:///./node_modules/core-js/modules/_user-agent.js","webpack:///./node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/axios/lib/core/createError.js","webpack:///./node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/core-js/modules/_ie8-dom-define.js","webpack:///./node_modules/core-js/modules/_typed-buffer.js","webpack:///./node_modules/core-js/modules/_to-index.js","webpack:///./node_modules/core-js/modules/_object-keys-internal.js","webpack:///./node_modules/core-js/modules/_html.js","webpack:///./node_modules/core-js/modules/_is-array.js","webpack:///./node_modules/core-js/modules/_iter-step.js","webpack:///./node_modules/core-js/modules/_iter-define.js","webpack:///./node_modules/core-js/modules/_array-copy-within.js","webpack:///./node_modules/core-js/modules/_collection-strong.js","webpack:///./node_modules/core-js/modules/_iter-call.js","webpack:///./node_modules/core-js/modules/_object-assign.js","webpack:///./node_modules/core-js/modules/_collection-weak.js","webpack:///./node_modules/core-js/modules/_invoke.js","webpack:///./node_modules/core-js/modules/_own-keys.js","webpack:///./node_modules/core-js/modules/_new-promise-capability.js","webpack:///./node_modules/core-js/modules/_wks-ext.js","webpack:///./node_modules/core-js/modules/_object-gopn-ext.js","webpack:///./node_modules/core-js/modules/_string-repeat.js","webpack:///./node_modules/core-js/modules/_is-regexp.js","webpack:///./node_modules/core-js/modules/_is-integer.js","webpack:///./node_modules/core-js/modules/_math-log1p.js","webpack:///./node_modules/core-js/modules/_object-to-array.js","webpack:///./node_modules/core-js/modules/_string-pad.js","webpack:///./node_modules/vuex-router-sync/index.js","webpack:///./node_modules/v-tooltip/dist/v-tooltip.esm.js","webpack:///./node_modules/vue-infinite-loading/dist/vue-infinite-loading.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./node_modules/axios/lib/axios.js","webpack:///./node_modules/is-buffer/index.js","webpack:///./node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///./node_modules/axios/lib/core/settle.js","webpack:///./node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/axios/lib/helpers/btoa.js","webpack:///./node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/core-js/modules/es6.typed.array-buffer.js","webpack:///./node_modules/core-js/modules/es6.typed.int8-array.js","webpack:///./node_modules/core-js/modules/_object-dps.js","webpack:///./node_modules/core-js/modules/_array-species-create.js","webpack:///./node_modules/core-js/modules/_array-species-constructor.js","webpack:///./node_modules/core-js/modules/_iter-create.js","webpack:///./node_modules/core-js/modules/es6.typed.uint8-array.js","webpack:///./node_modules/core-js/modules/es6.typed.uint8-clamped-array.js","webpack:///./node_modules/core-js/modules/es6.typed.int16-array.js","webpack:///./node_modules/core-js/modules/es6.typed.uint16-array.js","webpack:///./node_modules/core-js/modules/es6.typed.int32-array.js","webpack:///./node_modules/core-js/modules/es6.typed.uint32-array.js","webpack:///./node_modules/core-js/modules/es6.typed.float32-array.js","webpack:///./node_modules/core-js/modules/es6.typed.float64-array.js","webpack:///./node_modules/core-js/modules/es6.map.js","webpack:///./node_modules/core-js/modules/_inherit-if-required.js","webpack:///./node_modules/core-js/modules/es6.set.js","webpack:///./node_modules/core-js/modules/es6.weak-map.js","webpack:///./node_modules/core-js/modules/es6.weak-set.js","webpack:///./node_modules/core-js/modules/es6.reflect.apply.js","webpack:///./node_modules/core-js/modules/es6.reflect.construct.js","webpack:///./node_modules/core-js/modules/_bind.js","webpack:///./node_modules/core-js/modules/es6.reflect.define-property.js","webpack:///./node_modules/core-js/modules/es6.reflect.delete-property.js","webpack:///./node_modules/core-js/modules/es6.reflect.get.js","webpack:///./node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js","webpack:///./node_modules/core-js/modules/es6.reflect.get-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.reflect.has.js","webpack:///./node_modules/core-js/modules/es6.reflect.is-extensible.js","webpack:///./node_modules/core-js/modules/es6.reflect.own-keys.js","webpack:///./node_modules/core-js/modules/es6.reflect.prevent-extensions.js","webpack:///./node_modules/core-js/modules/es6.reflect.set.js","webpack:///./node_modules/core-js/modules/es6.reflect.set-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.promise.js","webpack:///./node_modules/core-js/modules/_microtask.js","webpack:///./node_modules/core-js/modules/_perform.js","webpack:///./node_modules/core-js/modules/_promise-resolve.js","webpack:///./node_modules/core-js/modules/es6.symbol.js","webpack:///./node_modules/core-js/modules/_wks-define.js","webpack:///./node_modules/core-js/modules/_enum-keys.js","webpack:///./node_modules/core-js/modules/es6.object.freeze.js","webpack:///./node_modules/core-js/modules/es6.object.seal.js","webpack:///./node_modules/core-js/modules/es6.object.prevent-extensions.js","webpack:///./node_modules/core-js/modules/es6.object.is-frozen.js","webpack:///./node_modules/core-js/modules/es6.object.is-sealed.js","webpack:///./node_modules/core-js/modules/es6.object.is-extensible.js","webpack:///./node_modules/core-js/modules/es6.object.get-own-property-descriptor.js","webpack:///./node_modules/core-js/modules/es6.object.get-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.object.keys.js","webpack:///./node_modules/core-js/modules/es6.object.get-own-property-names.js","webpack:///./node_modules/core-js/modules/es6.object.assign.js","webpack:///./node_modules/core-js/modules/es6.object.is.js","webpack:///./node_modules/core-js/modules/_same-value.js","webpack:///./node_modules/core-js/modules/es6.object.set-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.function.name.js","webpack:///./node_modules/core-js/modules/es6.string.raw.js","webpack:///./node_modules/core-js/modules/es6.string.from-code-point.js","webpack:///./node_modules/core-js/modules/es6.string.code-point-at.js","webpack:///./node_modules/core-js/modules/_string-at.js","webpack:///./node_modules/core-js/modules/es6.string.repeat.js","webpack:///./node_modules/core-js/modules/es6.string.starts-with.js","webpack:///./node_modules/core-js/modules/es6.string.ends-with.js","webpack:///./node_modules/core-js/modules/es6.string.includes.js","webpack:///./node_modules/core-js/modules/es6.regexp.flags.js","webpack:///./node_modules/core-js/modules/_flags.js","webpack:///./node_modules/core-js/modules/es6.regexp.match.js","webpack:///./node_modules/core-js/modules/es6.regexp.replace.js","webpack:///./node_modules/core-js/modules/es6.regexp.split.js","webpack:///./node_modules/core-js/modules/es6.regexp.search.js","webpack:///./node_modules/core-js/modules/es6.array.from.js","webpack:///./node_modules/core-js/modules/es6.array.of.js","webpack:///./node_modules/core-js/modules/es6.array.copy-within.js","webpack:///./node_modules/core-js/modules/es6.array.find.js","webpack:///./node_modules/core-js/modules/es6.array.find-index.js","webpack:///./node_modules/core-js/modules/es6.array.fill.js","webpack:///./node_modules/core-js/modules/es6.number.is-finite.js","webpack:///./node_modules/core-js/modules/es6.number.is-integer.js","webpack:///./node_modules/core-js/modules/es6.number.is-safe-integer.js","webpack:///./node_modules/core-js/modules/es6.number.is-nan.js","webpack:///./node_modules/core-js/modules/es6.number.epsilon.js","webpack:///./node_modules/core-js/modules/es6.number.min-safe-integer.js","webpack:///./node_modules/core-js/modules/es6.number.max-safe-integer.js","webpack:///./node_modules/core-js/modules/es6.math.acosh.js","webpack:///./node_modules/core-js/modules/es6.math.asinh.js","webpack:///./node_modules/core-js/modules/es6.math.atanh.js","webpack:///./node_modules/core-js/modules/es6.math.cbrt.js","webpack:///./node_modules/core-js/modules/es6.math.clz32.js","webpack:///./node_modules/core-js/modules/es6.math.cosh.js","webpack:///./node_modules/core-js/modules/es6.math.expm1.js","webpack:///./node_modules/core-js/modules/es6.math.fround.js","webpack:///./node_modules/core-js/modules/_math-fround.js","webpack:///./node_modules/core-js/modules/es6.math.hypot.js","webpack:///./node_modules/core-js/modules/es6.math.imul.js","webpack:///./node_modules/core-js/modules/es6.math.log1p.js","webpack:///./node_modules/core-js/modules/es6.math.log10.js","webpack:///./node_modules/core-js/modules/es6.math.log2.js","webpack:///./node_modules/core-js/modules/es6.math.sign.js","webpack:///./node_modules/core-js/modules/es6.math.sinh.js","webpack:///./node_modules/core-js/modules/es6.math.tanh.js","webpack:///./node_modules/core-js/modules/es6.math.trunc.js","webpack:///./node_modules/core-js/modules/es7.array.includes.js","webpack:///./node_modules/core-js/modules/es7.object.values.js","webpack:///./node_modules/core-js/modules/es7.object.entries.js","webpack:///./node_modules/core-js/modules/es7.object.get-own-property-descriptors.js","webpack:///./node_modules/core-js/modules/es7.string.pad-start.js","webpack:///./node_modules/core-js/modules/es7.string.pad-end.js","webpack:///./node_modules/core-js/modules/web.timers.js","webpack:///./node_modules/core-js/modules/web.immediate.js","webpack:///./node_modules/core-js/modules/web.dom.iterable.js","webpack:///./node_modules/regenerator-runtime/runtime.js","webpack:///./src/App.vue?647a","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./src/App.vue","webpack:///src/App.vue","webpack:///./node_modules/vue-router/dist/vue-router.esm.js","webpack:///./src/views/Users.vue?de85","webpack:///./src/components/appNavigation.vue?2324","webpack:///./src/components/appNavigation/navigationItem.vue?5477","webpack:///./src/components/popoverMenu.vue?6abc","webpack:///./src/components/popoverMenu/popoverItem.vue?e129","webpack:///src/components/popoverMenu/popoverItem.vue","webpack:///./src/components/popoverMenu/popoverItem.vue","webpack:///./src/components/popoverMenu.vue","webpack:///src/components/popoverMenu.vue","webpack:///./src/components/appNavigation/navigationItem.vue","webpack:///src/components/appNavigation/navigationItem.vue","webpack:///./src/components/appNavigation.vue","webpack:///src/components/appNavigation.vue","webpack:///./src/components/userList.vue?63c6","webpack:///./src/components/userList/userRow.vue?a78d","webpack:///src/components/userList/userRow.vue","webpack:///./src/components/userList/userRow.vue","webpack:///./src/components/userList.vue","webpack:///src/components/userList.vue","webpack:///./src/store/api.js","webpack:///src/views/Users.vue","webpack:///./src/views/Users.vue","webpack:///./src/views/Apps.vue?550c","webpack:///./src/components/appList.vue?307d","webpack:///./src/components/appList/appItem.vue?c8e3","webpack:///./src/components/appList/appScore.vue?bca6","webpack:///src/components/appList/appScore.vue","webpack:///./src/components/appList/appScore.vue","webpack:///./src/components/appManagement.vue","webpack:///src/components/appManagement.vue","webpack:///./src/components/svgFilterMixin.vue","webpack:///src/components/svgFilterMixin.vue","webpack:///./src/components/appList/appItem.vue","webpack:///src/components/appList/appItem.vue","webpack:///./src/components/prefixMixin.vue","webpack:///src/components/prefixMixin.vue","webpack:///./src/components/appList.vue","webpack:///src/components/appList.vue","webpack:///./src/components/appDetails.vue?649c","webpack:///src/components/appDetails.vue","webpack:///./src/components/appDetails.vue","webpack:///src/views/Apps.vue","webpack:///./src/views/Apps.vue","webpack:///./src/router.js","webpack:///./node_modules/vuex/dist/vuex.esm.js","webpack:///./src/store/users.js","webpack:///./src/store/apps.js","webpack:///./src/store/settings.js","webpack:///./src/store/oc.js","webpack:///./src/store/index.js","webpack:///./src/main.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","global","core","hide","redefine","ctx","$export","type","source","own","out","exp","IS_FORCED","F","IS_GLOBAL","G","IS_STATIC","S","IS_PROTO","P","IS_BIND","B","target","expProto","undefined","Function","U","W","R","setImmediate","emptyObject","freeze","isUndef","v","isDef","isTrue","isPrimitive","isObject","obj","_toString","toString","isPlainObject","isRegExp","isValidArrayIndex","val","parseFloat","String","Math","floor","isFinite","JSON","stringify","toNumber","isNaN","makeMap","str","expectsLowerCase","map","list","split","length","toLowerCase","isBuiltInTag","isReservedAttribute","remove","arr","item","index","indexOf","splice","hasOwn","cached","fn","cache","camelizeRE","camelize","replace","_","toUpperCase","capitalize","charAt","slice","hyphenateRE","hyphenate","boundFn","a","arguments","apply","_length","toArray","start","ret","Array","extend","to","_from","toObject","res","noop","b","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArray","isArrayB","every","e","keysA","keys","keysB","looseIndexOf","once","called","this","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","_lifecycleHooks","isReserved","charCodeAt","def","writable","configurable","bailRE","_isServer","hasProto","inBrowser","window","inWeex","WXEnvironment","platform","weexPlatform","UA","navigator","userAgent","isIE","test","isIE9","isEdge","isIOS","nativeWatch","watch","supportsPassive","opts","addEventListener","isServerRendering","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","ownKeys","Set","set","has","add","clear","warn","uid","Dep","id","subs","addSub","sub","push","removeSub","depend","addDep","notify","update","targetStack","pushTarget","_target","popTarget","pop","VNode","tag","data","children","text","elm","context","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","parent","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","forEach","method","original","args","len","inserted","result","ob","__ob__","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","src","__proto__","observe","asRootData","isExtensible","_isVue","defineReactive","customSetter","shallow","getOwnPropertyDescriptor","setter","childOb","dependArray","newVal","max","del","items","strats","mergeData","from","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","concat","mergeAssets","hook","key$1","props","methods","inject","computed","provide","defaultStrat","mergeOptions","options","normalizeProps","normalized","normalizeInject","dirs","directives","normalizeDirectives","extendsFrom","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","prop","absent","booleanIndex","getTypeIndex","Boolean","stringIndex","default","$options","_props","getType","getPropDefaultValue","prevShouldObserve","match","isSameType","expectedTypes","handleError","err","info","cur","$parent","hooks","errorCaptured","globalHandleError","logError","console","error","microTimerFunc","macroTimerFunc","callbacks","pending","flushCallbacks","copies","useMacroTask","MessageChannel","setTimeout","channel","port","port2","port1","onmessage","postMessage","Promise","resolve","then","nextTick","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","on","oldOn","remove$$1","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","lastIndex","last","isTextNode","shift","_isVList","isFalse","ensureCtor","comp","base","getFirstComponentChild","$once","$on","remove$1","$off","updateComponentListeners","listeners","oldListeners","resolveSlots","slots","attrs","slot","name$1","isWhitespace","resolveScopedSlots","activeInstance","isInInactiveTree","_inactive","activateChildComponent","direct","_directInactive","$children","callHook","handlers","j","_hasHookEvent","$emit","queue","activatedChildren","waiting","flushing","flushSchedulerQueue","watcher","sort","run","activatedQueue","updatedQueue","callActivatedHooks","_watcher","_isMounted","callUpdatedHooks","emit","uid$1","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","sync","active","dirty","deps","newDeps","depIds","newDepIds","expression","path","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","proxy","sourceKey","initState","propsOptions","_propKeys","loop","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","handler","createWatcher","initWatch","shouldCache","createComputedGetter","$watch","resolveInject","filter","provideKey","_provided","provideDefault","renderList","render","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","slotNodes","$slots","_rendered","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","domProps","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","staticRenderFns","_renderProxy","markOnce","markStaticNode","bindObjectListeners","existing","ours","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","FunctionalRenderContext","contextVm","_original","isCompiled","_compiled","needNormalization","injections","scopedSlots","_scopeId","_c","createElement","cloneAndMarkFunctionalResult","clone","mergeProps","componentVNodeHooks","init","hydrating","parentElm","refElm","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","_parentElm","_refElm","inlineTemplate","createComponentInstanceForVnode","$mount","oldVnode","parentVnode","renderChildren","hasChildren","_renderChildren","$vnode","_vnode","$attrs","$listeners","propKeys","_parentListeners","$forceUpdate","updateChildComponent","insert","queueActivatedComponent","destroy","deactivateChildComponent","$destroy","hooksToMerge","createComponent","baseCtor","_base","cid","factory","errorComp","resolved","loading","loadingComp","contexts","forceRender","reject","reason","component","delay","timeout","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","functional","renderContext","vnodes","createFunctionalComponent","nativeOn","abstract","installComponentHooks","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","applyNS","force","style","class","registerDeepBindings","_createElement","uid$3","super","superOptions","modifiedOptions","modified","latest","extended","extendOptions","sealed","sealedOptions","dedupe","resolveModifiedOptions","components","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","constructor","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$root","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","el","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","cbs","i$1","eventsMixin","_update","prevEl","$el","prevVnode","prevActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","RegExp","builtInComponents","KeepAlive","include","exclude","Number","created","destroyed","mounted","this$1","parseInt","configDef","util","delete","plugin","installedPlugins","_installedPlugins","unshift","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","ssrContext","version","acceptValue","attr","isEnumeratedAttr","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","isFalsyAttrValue","genClassForVnode","parentNode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","query","selected","document","querySelector","nodeOps","tagName","multiple","setAttribute","createElementNS","namespace","createTextNode","createComment","insertBefore","newNode","referenceNode","removeChild","appendChild","nextSibling","setTextContent","textContent","setStyleScope","scopeId","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","dir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","join","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","chr","index$1","expressionPos","expressionEndPos","klass","validDivisionCharRE","parseFilters","prev","filters","inSingle","inDouble","inTemplateString","inRegex","curly","square","paren","lastFilterIndex","trim","pushFilter","wrapFilter","baseWarn","msg","pluckModuleFunction","addProp","plain","addAttr","addRawAttr","attrsMap","attrsList","addDirective","arg","addHandler","important","events","right","middle","native","nativeEvents","newHandler","getBindingAttr","getStatic","dynamicValue","getAndRemoveAttr","staticValue","removeFromMap","genComponentModel","number","valueExpression","assignment","genAssignmentCode","lastIndexOf","eof","isStringStart","next","parseString","parseBracket","parseModel","inBracket","stringQuote","target$1","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","add$1","_withTask","withMacroTask","onceHandler","remove$2","createOnceHandler","updateDOMListeners","change","normalizeEvents","updateDOMProps","oldProps","childNodes","_value","strCur","shouldUpdateValue","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","isDirtyWithModifiers","parseStyleText","cssText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","addClass","classList","getAttribute","removeClass","tar","resolveTransition","css","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","patch","backend","removeNode","createElm","insertedVnodeQueue","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","pre","hasChildNodes","innerHTML","childrenMatch","firstChild","fullInvoke","isInitialPatch","isRealElement","hasAttribute","emptyNodeAt","oldElm","parentElm$1","patchable","i$2","createPatchFunction","vmodel","trigger","directive","binding","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","hasNoMatchingOption","actuallySetSelected","isMultiple","option","selectedIndex","createEvent","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","h","rawChild","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","pos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","prevChildren","rawChildren","transitionData","kept","removed","c$1","beforeUpdate","updated","hasMove","_reflow","body","offsetHeight","propertyName","_hasMove","cloneNode","HTMLUnknownElement","HTMLElement","mountComponent","defaultTagRE","regexEscapeRE","buildRegex","delimiters","open","close","klass$1","staticKeys","transformNode","classBinding","genData","decoder","style$1","styleBinding","he","html","isUnaryTag","canBeLeftOpenTag","isNonPhrasingTag","attribute","ncname","qnameCapture","startTagOpen","startTagClose","endTag","doctype","comment","conditionalComment","IS_REGEX_CAPTURING_BROKEN","g","isPlainTextElement","reCache","decodingMap","<",">",""","&"," ","	","encodedAttr","encodedAttrWithNewLines","isIgnoreNewlineTag","shouldIgnoreFirstNewline","decodeAttr","shouldDecodeNewlines","re","warn$2","transforms","preTransforms","postTransforms","platformIsPreTag","platformMustUseProp","platformGetTagNamespace","onRE","dirRE","forAliasRE","forIteratorRE","stripParensRE","argRE","bindRE","modifierRE","decodeHTMLCached","createASTElement","makeAttrsMap","parse","template","isPreTag","root","currentParent","stack","preserveWhitespace","inPre","closeElement","element","lastTag","expectHTML","isUnaryTag$$1","canBeLeftOpenTag$$1","endTagLength","stackedTag","reStackedTag","rest$1","all","chars","parseEndTag","textEnd","commentEnd","shouldKeepComment","substring","advance","conditionalEnd","doctypeMatch","endTagMatch","curIndex","startTagMatch","parseStartTag","handleStartTag","rest","unarySlash","unary","shouldDecodeNewlinesForHref","lowerCasedTag","lowerCasedTagName","parseHTML","comments","ieNSBug","ieNSPrefix","guardIESVGBug","isForbiddenTag","forbidden","checkRootConstraints","processPre","processRawAttrs","processed","processFor","if","addIfCondition","block","else","elseif","processIf","processOnce","processElement","findPrevElement","processIfConditions","slotScope","slotTarget","lastNode","isTextTag","tagRE","tokenValue","tokens","rawTokens","exec","@binding","parseText","processKey","for","checkInFor","processRef","slotName","processSlot","processComponent","isProp","hasBindings","parseModifiers","camel","argMatch","processAttrs","inMatch","alias","iteratorMatch","iterator1","iterator2","parseFor","condition","ifConditions","cloneASTElement","modules$1","preTransformNode","typeBinding","ifCondition","ifConditionExtra","hasElse","elseIfCondition","branch0","branch1","branch2","isStaticKey","isPlatformReservedTag","baseOptions","_warn","code","genSelect","valueBinding","trueValueBinding","falseValueBinding","genCheckboxModel","genRadioModel","needCompositionGuard","genDefaultModel","reduce","genStaticKeys","genStaticKeysCached","optimize","markStatic$1","static","isDirectChildOfTemplateFor","l$1","markStaticRoots","staticInFor","staticRoot","fnExpRE","simplePathRE","esc","tab","space","up","down","keyNames","genGuard","modifierCode","stop","prevent","self","ctrl","alt","meta","genHandlers","genHandler","isMethodPath","isFunctionExpression","genModifierCode","keyModifier","genFilterCode","genKeyFilter","keyVal","keyCode","keyName","baseDirectives","wrapListeners","wrapData","cloak","CodegenState","dataGenFns","maybeComponent","onceId","generate","ast","state","genElement","staticProcessed","genStatic","onceProcessed","genOnce","forProcessed","altGen","altHelper","genFor","ifProcessed","genIf","genChildren","bind$$1","genSlot","componentName","genData$2","genComponent","altEmpty","genIfConditions","conditions","genTernaryExp","needRuntime","hasRuntime","gen","genDirectives","genProps","genScopedSlot","inlineRenderFns","genInlineTemplate","genForScopedSlot","checkSkip","altGenElement","altGenNode","el$1","needsNormalization","getNormalizationType","genNode","genComment","transformSpecialNewlines","genText","createFunction","errors","div","compileToFunctions","baseCompile","compile","finalOptions","tips","tip","compiled","fnGenErrors","createCompileToFunctionFn","createCompilerCreator","createCompiler","getShouldDecode","href","idToTemplate","mount","documentElement","outerHTML","container","getOuterHTML","__webpack_exports__","it","__g","TypeError","store","USE_SYMBOL","anObject","IE8_DOM_DEFINE","toPrimitive","dP","f","O","Attributes","toInteger","min","u","y","__e","random","virtual","propertyIsEnumerable","ceil","valueOf","x","w","$isLabel","$groupLabel","search","isOpen","prefferedOpenDirection","optimizedHeight","maxHeight","internalSearch","required","trackBy","label","searchable","clearOnSelect","hideSelected","allowEmpty","resetAfter","closeOnSelect","customLabel","taggable","tagPlaceholder","tagPosition","optionsLimit","groupValues","groupLabel","groupSelect","blockKeys","preserveSearch","preselectFirst","internalValue","select","filteredOptions","filterAndFlat","isSelected","isExistingOption","isTag","valueKeys","optionKeys","flatAndStrip","currentOptionLabel","getOptionLabel","updateSearch","selectGroup","disabled","$isDisabled","pointerDirty","deactivate","removeElement","find","wholeGroupSelected","removeLastElement","adjustPosition","pointer","focus","blur","toggle","innerHeight","bottom","openDirection","showPointer","optionHeight","pointerPosition","visibleElements","pointerAdjust","optionHighlight","multiselect__option--highlight","multiselect__option--selected","groupHighlight","multiselect__option--group-selected","addPointerElement","pointerReset","pointerForward","scrollTop","pointerBackward","pointerSet","L","k","E","V","entries","values","contentWindow","write","getOwnPropertySymbols","inspectSource","selectLabel","selectGroupLabel","selectedLabel","deselectLabel","deselectGroupLabel","showLabels","limit","limitText","showNoResults","tabindex","isSingleLabelVisible","singleValue","visibleValues","isPlaceholderVisible","deselectLabelText","deselectGroupLabelText","selectLabelText","selectGroupLabelText","selectedLabelText","inputStyle","width","position","padding","contentStyle","isAbove","showSearchInput","hasSingleSelectedSlot","visibleSingleValue","done","preventExtensions","KEY","NEED","fastKey","getWeak","onFreeze","getPrototypeOf","Arguments","C","T","A","$","D","M","N","H","QObject","I","findChild","K","z","iterator","J","X","Y","Q","Z","tt","et","keyFor","useSetter","useSimple","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","beforeCreate","_injectStyles","esModule","multiselect--active","multiselect--disabled","multiselect--above","keydown","currentTarget","preventDefault","stopPropagation","keyup","mousedown","aria-hidden","autocomplete","input","data-select","data-selected","data-deselect","click","mouseenter","isBuffer","isFunction","isArrayBuffer","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isUndefined","isDate","isFile","isBlob","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","product","merge","assignValue","thisArg","createDesc","IObject","defined","fails","aFunction","that","LIBRARY","$typed","$buffer","anInstance","propertyDesc","redefineAll","toLength","toIndex","toAbsoluteIndex","classof","isArrayIter","gOPN","getIterFn","wks","createArrayMethod","createArrayIncludes","speciesConstructor","ArrayIterators","Iterators","$iterDetect","setSpecies","arrayFill","arrayCopyWithin","$DP","$GOPD","gOPD","RangeError","Uint8Array","ArrayProto","$ArrayBuffer","$DataView","DataView","arrayForEach","arrayFilter","arraySome","arrayEvery","arrayFind","arrayFindIndex","arrayIncludes","arrayIndexOf","arrayValues","arrayEntries","arrayLastIndexOf","arrayReduce","arrayReduceRight","reduceRight","arrayJoin","arraySort","arraySlice","arrayToString","arrayToLocaleString","toLocaleString","ITERATOR","TAG","TYPED_CONSTRUCTOR","DEF_CONSTRUCTOR","ALL_CONSTRUCTORS","CONSTR","TYPED_ARRAY","TYPED","VIEW","$map","allocate","LITTLE_ENDIAN","Uint16Array","FORCED_SET","toOffset","BYTES","offset","validate","speciesFromList","fromList","addGetter","internal","_d","$from","step","aLen","mapfn","mapping","iterFn","$of","TO_LOCALE_BUG","$toLocaleString","proto","copyWithin","callbackfn","fill","predicate","findIndex","searchElement","includes","separator","reverse","comparefn","subarray","begin","$begin","byteOffset","BYTES_PER_ELEMENT","$slice","arrayLike","$iterators","isTAIndex","$getDesc","$setDesc","desc","$TypedArrayPrototype$","wrapper","CLAMPED","NAME","GETTER","SETTER","TypedArray","Base","TAC","FORCED","ABV","TypedArrayPrototype","addElement","round","$offset","$length","byteLength","$len","iter","$nativeIterator","CORRECT_ITER_NAME","$iterator","of","pIE","toIObject","SRC","$toString","TPL","safe","META","setDesc","FREEZE","setMeta","bitmap","px","$keys","enumBugKeys","Constructor","forbiddenField","stat","IE_PROTO","ObjectProto","UNSCOPABLES","TYPE","process","VueLocalStorage","_properties","_namespace","_isSupported","_getLsKey","lsKey","_lsSet","rawValue","localStorage","setItem","_lsGet","defaultValue","defaultType","_process","removeItem","addProperty","array","vueLocalStorage","server","SERVER_BUILD","isSupported","existingProp","log","hiddenKeys","dPs","Empty","createDict","iframeDocument","iframe","lt","Properties","asc","$create","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","NO_HOLES","$this","eval","DESCRIPTORS","SPECIES","SAFE_CLOSING","riter","skipClosing","BREAK","RETURN","iterable","forOf","setToStringTag","inheritIfRequired","common","IS_WEAK","ADDER","fixMethod","instance","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","getConstructor","setStrong","SYMBOL","strfn","rxfn","string","isServer","vNode","$isServer","elements","composedPath","contains","popupItem","isPopup","__vueClickOutside__","cachedSetTimeout","cachedClearTimeout","defaultSetTimout","Error","defaultClearTimeout","runTimeout","fun","clearTimeout","currentQueue","draining","queueIndex","cleanUpNextTick","drainQueue","marker","runClearTimeout","Item","title","browser","argv","versions","addListener","off","removeListener","removeAllListeners","prependListener","prependOnceListener","cwd","chdir","umask","utils","normalizeHeaderName","DEFAULT_CONTENT_TYPE","Content-Type","setContentTypeIfUnset","headers","defaults","adapter","XMLHttpRequest","getDefaultAdapter","transformRequest","transformResponse","xsrfCookieName","xsrfHeaderName","maxContentLength","validateStatus","status","Accept","Typed","TypedArrayConstructors","cof","IS_INCLUDES","fromIndex","shared","endPos","ARG","tryGet","callee","getIteratorMethod","addToUnscopables","iterated","kind","check","setPrototypeOf","buggy","defer","invoke","cel","setTask","clearTask","clearImmediate","Dispatch","counter","listener","now","importScripts","searchString","MATCH","$defineProperty","sign","$expm1","expm1","settle","buildURL","parseHeaders","isURLSameOrigin","createError","btoa","requestData","requestHeaders","request","loadEvent","xDomain","XDomainRequest","url","onprogress","ontimeout","auth","username","password","Authorization","paramsSerializer","readyState","responseURL","responseHeaders","getAllResponseHeaders","response","responseType","responseText","statusText","onerror","cookies","xsrfValue","withCredentials","read","setRequestHeader","onDownloadProgress","onUploadProgress","upload","cancelToken","promise","cancel","abort","send","enhanceError","message","__CANCEL__","Cancel","PROTOTYPE","WRONG_INDEX","Infinity","BaseBuffer","abs","pow","LN2","$BUFFER","$LENGTH","$OFFSET","packIEEE754","mLen","nBytes","eLen","eMax","eBias","rt","unpackIEEE754","nBits","NaN","unpackI32","bytes","packI8","packI16","packI32","packF64","packF32","view","isLittleEndian","intIndex","pack","conversion","ArrayBufferProto","$setInt8","setInt8","getInt8","setUint8","bufferLength","getUint8","getInt16","getUint16","getInt32","getUint32","getFloat32","getFloat64","setInt16","setUint16","setInt32","setUint32","setFloat32","setFloat64","names","$iterCreate","BUGGY","returnThis","DEFAULT","IS_SET","IteratorPrototype","getMethod","DEF_VALUES","VALUES_BUG","$native","$default","$entries","$anyNative","count","inc","$iterDefine","SIZE","getEntry","entry","getKeys","gOPS","$assign","assign","getSymbols","isEnum","$has","uncaughtFrozenStore","UncaughtFrozenStore","findUncaughtFrozen","ufstore","un","$$resolve","$$reject","windowNames","getWindowNames","log1p","isEntries","repeat","maxLength","fillString","stringLength","fillStr","intMaxLength","fillLen","stringFiller","cloneRoute","fullPath","router","moduleName","registerModule","namespaced","currentRoute","mutations","ROUTE_CHANGED","currentPath","isTimeTraveling","storeUnwatch","route","afterEachUnHook","afterEach","commit","unregisterModule","isBrowser","longerTimeoutBrowsers","timeoutDuration","debounce","scheduled","functionToCheck","getStyleComputedProperty","getParentNode","nodeName","host","getScrollParent","ownerDocument","_getStyleComputedProp","overflow","overflowX","overflowY","isIE11","MSInputMethodContext","documentMode","isIE10","getOffsetParent","noOffsetParent","offsetParent","nextElementSibling","getRoot","findCommonOffsetParent","element1","element2","order","compareDocumentPosition","Node","DOCUMENT_POSITION_FOLLOWING","range","createRange","setStart","setEnd","commonAncestorContainer","firstElementChild","isOffsetContainer","element1root","getScroll","upperSide","scrollingElement","getBordersSize","axis","sideA","sideB","getSize","computedStyle","getWindowSizes","height","classCallCheck","createClass","descriptor","protoProps","staticProps","_extends","getClientRect","offsets","rect","scrollLeft","sizes","clientWidth","clientHeight","horizScrollbar","offsetWidth","vertScrollbar","getOffsetRectRelativeToArbitraryNode","fixedPosition","isHTML","childrenRect","parentRect","scrollParent","borderTopWidth","borderLeftWidth","marginTop","marginLeft","subtract","modifier","includeScroll","getFixedPositionOffsetParent","parentElement","getBoundaries","popper","reference","boundariesElement","boundaries","excludeScroll","relativeOffset","innerWidth","getViewportOffsetRectRelativeToArtbitraryNode","boundariesNode","isFixed","_getWindowSizes","computeAutoPlacement","placement","refRect","rects","sortedAreas","area","_ref","getArea","filteredAreas","_ref2","computedPlacement","variation","getReferenceOffsets","getOuterSizes","marginBottom","marginRight","getOppositePlacement","matched","getPopperOffsets","referenceOffsets","popperRect","popperOffsets","isHoriz","mainSide","secondarySide","measurement","secondaryMeasurement","runModifiers","ends","enabled","isModifierEnabled","modifierName","getSupportedPropertyName","prefixes","upperProp","prefix","toCheck","getWindow","defaultView","setupEventListeners","updateBound","scrollElement","attachToScrollParents","scrollParents","isBody","eventsEnabled","disableEventListeners","cancelAnimationFrame","scheduleUpdate","removeEventListeners","isNumeric","setStyles","unit","isModifierRequired","requestingName","requestedName","requesting","isRequired","_requesting","requested","placements","validPlacements","clockwise","BEHAVIORS","FLIP","CLOCKWISE","COUNTERCLOCKWISE","parseOffset","basePlacement","useHeight","fragments","frag","divider","splitRegex","ops","op","mergeWithPrevious","toValue","index2","Defaults","positionFixed","removeOnDestroy","onCreate","onUpdate","shiftvariation","_data$offsets","isVertical","side","shiftOffsets","preventOverflow","transformProp","popperStyles","priority","primary","escapeWithReference","secondary","keepTogether","opSide","arrow","_data$offsets$arrow","arrowElement","sideCapitalized","altSide","arrowElementSize","center","popperMarginSide","popperBorderSide","sideValue","flip","flipped","originalPlacement","placementOpposite","flipOrder","behavior","refOffsets","overlapsRef","overflowsLeft","overflowsRight","overflowsTop","overflowsBottom","overflowsBoundaries","flippedVariation","flipVariations","getOppositeVariation","inner","subtractLength","bound","attributes","computeStyle","legacyGpuAccelerationOption","gpuAcceleration","offsetParentRect","prefixedProperty","willChange","invertTop","invertLeft","x-placement","arrowStyles","applyStyle","setAttributes","onLoad","modifierOptions","Popper","_this","isDestroyed","isCreated","jquery","enableEventListeners","Utils","PopperUtils","SVGAnimatedString","convertToArray","addClasses","classes","newClasses","className","baseVal","newClass","SVGElement","removeClasses","_typeof","classCallCheck$1","createClass$1","_extends$1","DEFAULT_OPTIONS","openTooltips","Tooltip","_initialiseProps","_isOpen","_classes","content","_tooltipNode","_setContent","classesUpdated","defaultClass","setClasses","getOptions","needPopperUpdate","needRestart","dispose","popperInstance","_isDisposed","_enableDocumentTouch","_setEventListeners","tooltipGenerator","tooltipNode","substr","autoHide","asyncContent","_applyContent","_this2","allowHtml","rootNode","titleNode","innerSelector","loadingClass","loadingContent","asyncResult","catch","innerText","_disposeTimer","updateClasses","_ensureShown","_this3","_create","_findContainer","_append","popperOptions","arrowSelector","_this4","_noLongerOpen","disposeTime","disposeTimeout","_this5","func","_hide","_this6","directEvents","oppositeEvents","hideOnTargetClick","evt","usedByTooltip","_scheduleShow","_scheduleHide","_this7","computedDelay","_scheduleTimer","_show","_this8","_setTooltipNodeEvent","_this9","_dispose","relatedreference","toElement","relatedTarget","evt2","relatedreference2","_onDocumentTouch","positions","defaultOptions","defaultPlacement","defaultTargetClass","defaultHtml","defaultTemplate","defaultArrowSelector","defaultInnerSelector","defaultDelay","defaultTrigger","defaultOffset","defaultContainer","defaultBoundariesElement","defaultPopperOptions","defaultLoadingClass","defaultLoadingContent","defaultHideOnTargetClick","popover","defaultBaseClass","defaultWrapperClass","defaultInnerClass","defaultArrowClass","defaultAutoHide","defaultHandleResize","typeofOffset","getPlacement","getContent","destroyTooltip","_tooltip","_tooltipOldShow","_tooltipTargetClasses","tooltip","setContent","setOptions","_vueEl","targetClasses","createTooltip","addListeners","onClick","onTouchStart","removeListeners","onTouchEnd","onTouchCancel","closePopover","$_vclosepopover_touch","closeAllPopover","$_closePopoverModifiers","changedTouches","touch","$_vclosepopover_touchPoint","firstTouch","screenY","screenX","vclosepopover","isIE$1","initCompat","ua","msie","rv","edge","getInternetExplorerVersion","ResizeObserver","_h","addResizeHandlers","_resizeObject","contentDocument","_w","removeResizeHandlers","onload","beforeDestroy","plugin$2","GlobalVue$1","getDefault","MSStream","openPopovers","Element","Popover","_vm","cssClass","aria-describedby","popoverId","popoverBaseClass","popoverClass","visibility","popoverWrapperClass","popoverInnerClass","handleResize","$_handleResize","popoverArrowClass","openGroup","oldVal","popoverNode","$_findContainer","$_removeEventListeners","$_addEventListeners","$_updatePopper","$_isDisposed","$_mounted","$_events","$_preventOpen","$_init","_ref$force","skipDelay","$_scheduleShow","$_beingShowed","$_scheduleHide","$_show","$_disposeTimer","$_getOffset","$_hide","$_scheduleTimer","$_setTooltipNodeEvent","event2","_ref3","$_restartPopper","$_handleGlobalClose","handleGlobalClose","commonjsGlobal","lodash_merge","createCommonjsModule","LARGE_ARRAY_SIZE","HASH_UNDEFINED","HOT_COUNT","HOT_SPAN","MAX_SAFE_INTEGER","argsTag","asyncTag","funcTag","genTag","nullTag","objectTag","proxyTag","undefinedTag","reIsHostCtor","reIsUint","typedArrayTags","freeGlobal","freeSelf","freeExports","freeModule","moduleExports","freeProcess","nodeUtil","nodeIsTypedArray","isTypedArray","safeGet","funcProto","objectProto","coreJsData","funcToString","maskSrcKey","nativeObjectToString","objectCtorString","reIsNative","Buffer","allocUnsafe","getPrototype","overArg","objectCreate","symToStringTag","getNative","nativeIsBuffer","nativeMax","nativeNow","Date","Map","nativeCreate","baseCreate","Hash","ListCache","MapCache","Stack","__data__","size","arrayLikeKeys","inherited","isArr","isArg","isArguments","isBuff","isType","skipIndexes","iteratee","baseTimes","isIndex","assignMergeValue","eq","baseAssignValue","objValue","assocIndexOf","getMapData","pairs","baseFor","fromRight","keysFunc","createBaseFor","baseGetTag","isOwn","unmasked","getRawTag","objectToString","baseIsArguments","isObjectLike","baseIsNative","isMasked","toSource","baseKeysIn","nativeKeysIn","isProto","isPrototype","baseMerge","srcIndex","customizer","srcValue","mergeFunc","stacked","newValue","isCommon","isTyped","isArrayLike","isArrayLikeObject","isDeep","copy","cloneBuffer","typedArray","arrayBuffer","cloneArrayBuffer","cloneTypedArray","copyArray","isNew","copyObject","keysIn","toPlainObject","initCloneObject","baseMergeDeep","baseRest","setToString","otherArgs","overRest","isKeyable","lastCalled","stamp","remaining","shortOut","constant","other","isLength","baseUnary","assigner","sources","guard","isIterateeCall","createAssigner","installed","GlobalVue","unescape","encodeURIComponent","sourceRoot","parts","media","sourceMap","styleSheet","DEBUG","head","getElementsByTagName","locals","STATE_CHANGER","INFINITE_EVENT","INFINITE_LOOP","scrollHandler","isLoading","isComplete","isFirstLoad","debounceTimer","debounceDuration","infiniteLoopChecked","infiniteLoopTimer","continuousCallTimes","Spinner","isNoResults","isNoMore","distance","onInfinite","spinner","direction","forceUseInfiniteWrapper","Event","attemptLoad","stateChanger","loaded","complete","reset","deactivated","activated","getCurrentDistance","pageYOffset","BUBBLES","CIRCLES","SPIRAL","WAVEDOTS","spinnerView","scope","Timeout","clearFn","_id","_clearFn","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","registerImmediate","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessageIsAsynchronous","oldOnMessage","canUsePostMessage","messagePrefix","onGlobalMessage","attachEvent","installPostMessageImplementation","installMessageChannelImplementation","script","onreadystatechange","installReadyStateChangeImplementation","task","Axios","createInstance","defaultConfig","axios","instanceConfig","CancelToken","isCancel","promises","spread","readFloatLE","isSlowBuffer","_isBuffer","InterceptorManager","dispatchRequest","interceptors","chain","interceptor","fulfilled","rejected","encode","serializedParams","toISOString","ignoreDuplicateOf","parsed","line","originURL","urlParsingNode","resolveURL","protocol","hostname","pathname","location","requestURL","charCode","output","idx","expires","domain","secure","cookie","toGMTString","decodeURIComponent","eject","transformData","isAbsoluteURL","combineURLs","throwIfCancellationRequested","throwIfRequested","baseURL","relativeURL","executor","resolvePromise","token","$isView","first","final","viewS","viewT","strong","InternalMap","each","weak","$WeakMap","rApply","fApply","thisArgument","argumentsList","rConstruct","construct","NEW_TARGET_BUG","ARGS_BUG","Target","newTarget","$args","factories","partArgs","propertyKey","deleteProperty","receiver","getProto","$isExtensible","$preventExtensions","existingDescriptor","ownDesc","setProto","Internal","newGenericPromiseCapability","OwnPromiseCapability","Wrapper","microtask","newPromiseCapabilityModule","perform","promiseResolve","$Promise","isNode","empty","newPromiseCapability","USE_NATIVE","FakePromise","PromiseRejectionEvent","isThenable","isReject","ok","reaction","exited","fail","onHandleUnhandled","exit","onUnhandled","unhandled","isUnhandled","onunhandledrejection","_a","onrejectionhandled","$reject","$resolve","onFulfilled","onRejected","capability","$index","alreadyCalled","race","macrotask","MutationObserver","WebKitMutationObserver","flush","standalone","characterData","promiseCapability","$fails","wksExt","wksDefine","enumKeys","gOPNExt","$Symbol","$JSON","_stringify","HIDDEN","TO_PRIMITIVE","SymbolRegistry","AllSymbols","OPSymbols","setSymbolDesc","protoDesc","wrap","sym","isSymbol","$defineProperties","$propertyIsEnumerable","$getOwnPropertyDescriptor","$getOwnPropertyNames","$getOwnPropertySymbols","IS_OP","es6Symbols","wellKnownSymbols","replacer","$replacer","symbols","$freeze","$seal","$isFrozen","$isSealed","$getPrototypeOf","FProto","nameRE","callSite","tpl","fromCharCode","$fromCodePoint","fromCodePoint","$at","codePointAt","TO_STRING","$startsWith","startsWith","$endsWith","endsWith","endPosition","flags","ignoreCase","multiline","unicode","sticky","$match","regexp","REPLACE","$replace","searchValue","replaceValue","SPLIT","$split","_split","$push","NPCG","separator2","lastLength","lastLastIndex","splitLimit","separatorCopy","SEARCH","$search","createProperty","$find","forced","_isFinite","isInteger","isSafeInteger","EPSILON","MIN_SAFE_INTEGER","sqrt","$acosh","acosh","MAX_VALUE","$asinh","asinh","$atanh","atanh","cbrt","clz32","LOG2E","cosh","fround","EPSILON32","MAX32","MIN32","$abs","$sign","roundTiesToEven","hypot","value1","value2","sum","larg","$imul","imul","xn","yn","xl","yl","log10","LOG10E","log2","sinh","tanh","trunc","$includes","$values","getOwnPropertyDescriptors","getDesc","$pad","padStart","padEnd","MSIE","time","boundArgs","$task","TO_STRING_TAG","ArrayValues","DOMIterables","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","collections","explicit","Collection","Op","iteratorSymbol","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","inModule","runtime","regeneratorRuntime","GenStateSuspendedStart","GenStateSuspendedYield","GenStateExecuting","GenStateCompleted","ContinueSentinel","NativeIteratorPrototype","Gp","GeneratorFunctionPrototype","Generator","GeneratorFunction","displayName","isGeneratorFunction","genFun","ctor","mark","awrap","__await","defineIteratorMethods","AsyncIterator","async","innerFn","outerFn","tryLocsList","Context","skipTempReset","sent","_sent","delegate","tryEntries","resetTryEntry","rootRecord","completion","rval","dispatchException","exception","loc","caught","record","tryLoc","hasCatch","hasFinally","catchLoc","finallyLoc","abrupt","finallyEntry","afterLoc","finish","thrown","delegateYield","resultName","nextLoc","protoGenerator","generator","_invoke","doneResult","delegateResult","maybeInvokeDelegate","tryCatch","makeInvokeMethod","previousPromise","callInvokeWithMethodAndArg","unwrapped","return","pushTryEntry","locs","iteratorMethod","Appvue_type_template_id_7ba5bd90_render","normalizeComponent","scriptExports","functionalTemplate","injectStyles","moduleIdentifier","shadowMode","shadowRoot","originalRender","_withStripped","beforeMount","getElementById","$store","dataset","__file","App","isError","View","routerView","$route","_routerViewCache","depth","inactive","_routerRoot","routerViewDepth","registerRouteInstance","instances","propsToPass","resolveProps","encodeReserveRE","encodeReserveReplacer","commaRE","decode","parseQuery","param","stringifyQuery","val2","trailingSlashRE","createRoute","redirectedFrom","stringifyQuery$$1","getFullPath","formatMatch","START","_stringifyQuery","isSameRoute","isObjectEqual","aKeys","bKeys","aVal","bVal","_Vue","toTypes","eventTypes","Link","exact","append","exactActiveClass","$router","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","queryIncludes","isIncludedRoute","guardEvent","findAnchor","metaKey","ctrlKey","shiftKey","defaultPrevented","button","registerInstance","callVal","_router","history","_route","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","resolvePath","relative","firstChar","segment","cleanPath","isarray","pathToRegexp_1","pathToRegexp","parse_1","compile_1","tokensToFunction","tokensToFunction_1","tokensToRegExp_1","tokensToRegExp","PATH_REGEXP","defaultDelimiter","delimiter","escaped","group","asterisk","partial","optional","escapeGroup","escapeString","encodeURIComponentPretty","encodeURI","encodeAsterisk","pretty","attachKeys","sensitive","strict","endsWithDelimiter","groups","regexpToRegexp","arrayToRegexp","stringToRegexp","regexpCompileCache","fillParams","routeMsg","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","redirect","childMatchAs","aliases","aliasRoute","normalizeLocation","_normalized","vue_router_esm_assign","rawPath","parsedPath","hashIndex","queryIndex","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","createMatcher","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoutes","positionStore","setupScroll","replaceState","getStateKey","saveScrollPosition","_key","setStateKey","handleScroll","isPop","app","scrollBehavior","getScrollPosition","shouldScroll","scrollToPosition","pageXOffset","isValidPosition","normalizePosition","selector","docRect","elRect","getElementPosition","normalizeOffset","scrollTo","supportsPushState","Time","genKey","toFixed","pushState","runQueue","resolveAsyncComponents","hasAsync","flatMapComponents","resolvedDef","isESModule","flatten","History","baseEl","normalizeBase","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","guards","extractGuard","bindGuard","listen","onReady","errorCb","onError","transitionTo","onComplete","onAbort","confirmTransition","updateRoute","ensureURL","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","postEnterCbs","isValid","poll","bindEnterGuard","extractEnterGuards","resolveHooks","afterHooks","HTML5History","History$$1","expectScroll","initLocation","getLocation","go","fromRoute","getCurrentLocation","HashHistory","checkFallback","ensureSlash","setupListeners","supportsScroll","getHash","replaceHash","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","registerHook","setupHashListener","beforeEach","beforeResolve","back","forward","getMatchedComponents","createHref","normalizedTo","vue_router_esm","Usersvue_type_template_id_68be103e_render","menu","defaultQuota","quotaOptions","tag-placeholder","track-by","validateQuota","setDefaultQuota","showLanguages","checked","$$a","$$el","$$c","$$i","showLastLogin","showUserBackend","showStoragePath","users","showConfig","selectedGroup","externalActions","appNavigationvue_type_template_id_142c1cb5_render","icon-loading","new","icon","action","data-apps-slide-toggle","navigationItemvue_type_template_id_2cb61dde_render","caption","icon-loading-small","opened","collapsible","navElement","bullet","backgroundColor","toggleCollapse","iconUrl","actions","hideMenu","showMenu","openedMenu","undo","edit","cancelEdit","popoverMenuvue_type_template_id_04ea21c4_render","popoverItemvue_type_template_id_4c6af9e6_render","rel","longtext","popoverItem_component","popoverMenu_component","popoverItem","popoverMenu","navigationItem_component","ClickOutside","vue_click_outside_default","vue_esm","appNavigation_component","navigationItem","appNavigation","userListvue_type_template_id_40745299_render","&scroll","onScroll","scrolled","showNewUserForm","subAdminsGroups","settings","isAdmin","submit","createUser","newUser","autocapitalize","autocorrect","mailAddress","minlength","minPasswordLength","canAddGroups","close-on-select","$$v","quota","languages","group-values","group-label","language","filteredUsers","infinite","infiniteHandler","userRowvue_type_template_id_d19586ce_render","data-id","disable","generateAvatar","srcset","updateDisplayName","rand","spellcheck","displayname","canChangePassword","updatePassword","updateEmail","email","userGroups","availableGroups","createGroup","addUserGroup","removeUserGroup","formatGroupsTitle","auto","subadmins","userSubAdminsGroups","addUserSubAdmin","removeUserSubAdmin","userQuota","setUserQuota","usedQuota","userLanguage","setUserLanguage","storageLocation","lastLogin","OC","Util","formatDate","relativeModifiedDate","currentUser","toggleMenu","userActions","opacity","feedbackMessage","v_tooltip_esm","userRow_component","Multiselect","vue_multiselect_min_default","deleteUser","enableDisableUser","sendWelcomeMail","subadmin","groupClone","canAdd","canRemove","used","humanQuota","humanFileSize","getters","getPasswordPolicyMinLength","userLang","lang","generateUrl","oc_userconfig","avatar","userid","dispatch","gid","_this10","getGroups","_this11","_this12","_this13","_this14","_this15","validQuota","computerFileSize","_this16","_this17","success","userRow","userList_component","InfiniteLoading","vue_infinite_loading_default","unlimitedQuota","searchQuery","Notification","showTemporary","defaultLanguage","setNewUserDefaultGroup","userSearch","OCA","Search","resetSearch","getServerData","disabledUsers","infiniteLoading","oc_current_user","localeCompare","getSubadminGroups","quotaPreset","acc","usersOffset","getUsersOffset","usersLimit","getUsersLimit","commonlanguages","$state","resetForm","currentGroup","userList","tokenHeaders","requesttoken","sanitize","store_api","passwordTimeout","promiseTimeout","getElementsByClassName","PasswordConfirmation","requirePasswordConfirmation","waitForpassword","requiresPasswordConfirmation","axios_default","post","put","vue_local_storage_default","Users_component","orderBy","sortGroups","userCount","Settings","UserList","registerAction","selectedQuota","toggleNewUserMenu","newusername","getLocalstorage","localConfig","$localStorage","setLocalStorage","removeGroup","groupid","dialogs","confirm","Usersvue_type_script_lang_js_typeof","getUsers","getUserCount","adminGroup","usercount","disabledGroupIndex","disabledGroup","realGroups","everyoneGroup","Users","Appsvue_type_template_id_33a216a8_render","with-app-sidebar","currentApp","loadingList","category","appListvue_type_template_id_a1862e02_render","useBundleView","useListView","useAppStoreView","bundles","bundle","bundleApps","bundleToggleText","toggleBundle","list-view","searchApps","colspan","appItemvue_type_template_id_1c68d544_render","showAppDetails","listView","preview","screenshot","viewBox","filterId","in","preserveAspectRatio","filterUrl","xlink:href","summary","appstoreData","releases","level","score","installing","canUnInstall","enableButtonTooltip","enableButtonText","canInstall","enable","appScorevue_type_template_id_71d71231_render","scoreImage","appScore_component","imageName","imagePath","appScore","appManagement_component","groupCheckedAppsData","appGroups","needsDownload","asyncFindGroup","isLimitedToGroups","setGroupLimit","appId","canLimitToGroups","types","addGroupLimitation","removeGroupLimitation","currentGroups","Apps","rebuildNavigation","appManagement_render","appManagement_staticRenderFns","appManagement","svgFilterMixin_component","getSeconds","getMilliseconds","svgFilterMixin_render","svgFilterMixin_staticRenderFns","svgFilterMixin","appItem_component","$route.params.id","AppScore","_prefix","appItem","prefixMixin_component","prefixMixin_render","prefixMixin_staticRenderFns","prefixMixin","appList_component","getAllApps","sortStringA","sortStringB","naturalSortCompare","appstore","bundleId","_app","allBundlesEnabled","disableBundle","enableBundle","appList","appDetailsvue_type_template_id_273c8e71_render","hideAppDetails","previewAsIcon","hasRating","ratingOverall","author","licence","options-limit","search-change","appstoreUrl","website","bugs","documentation","admin","developer","missingMinOwnCloudVersion","missingMaxOwnCloudVersion","missingDependencies","renderMarkdown","appDetails_component","license","ratingNumOverall","@value","renderer","marked","Renderer","link","prot","image","blockquote","quote","DOMPurify","description","gfm","highlight","tables","breaks","pedantic","smartLists","smartypants","SAFE_FOR_JQUERY","ALLOWED_TAGS","appDetails","Apps_component","AppDetails","setSearch","updateCount","appSearch","categories","getCategories","getUpdateCount","ident","defaultCategories","appstoreEnabled","activeGroup","developerDocumentation","applyMixin","vuexInit","devtoolHook","forEachValue","Module","rawModule","_children","_rawModule","rawState","prototypeAccessors$1","addChild","getChild","forEachChild","forEachGetter","forEachAction","forEachMutation","ModuleCollection","rawRootModule","register","getNamespace","targetModule","newModule","rawChildModule","unregister","Store","vuex_esm_install","plugins","_committing","_actions","_actionSubscribers","_mutations","_wrappedGetters","_modules","_modulesNamespaceMap","_subscribers","_watcherVM","payload","installModule","resetStoreVM","_devtoolHook","targetState","subscribe","mutation","devtoolPlugin","vuex_esm_prototypeAccessors","genericSubscribe","resetStore","hot","oldVm","$$state","enableStrictMode","_withCommit","rootState","isRoot","parentState","getNestedState","local","noNamespace","_type","_payload","_options","unifyObjectStyle","gettersProxy","splitPos","localType","makeLocalGetters","makeLocalContext","registerMutation","rootGetters","isPromise","rawGetter","registerGetter","subscribeAction","preserveState","hotUpdate","newOptions","committing","mapState","normalizeNamespace","states","normalizeMap","getModuleByNamespace","vuex","mapMutations","mapGetters","mapActions","helper","vuex_esm","createNamespacedHelpers","orderGroups","appendUsers","usersObj","setPasswordPolicyMinLength","initGroups","addGroup","groupIndex","groupSearch","_ref4","_ref5","_ref6","userIndex","addUserData","ocs","_ref7","setUserData","_ref8","humanValue","resetUsers","_ref9","linkToOCS","_ref10","limitParam","getUsersFromList","_ref11","getUsersFromGroup","_ref12","oc_capabilities","password_policy","minLength","_ref13","_ref14","_ref15","_ref16","addUser","_ref17","_ref18","_ref19","_ref19$enabled","userStatus","_ref20","allowedEmpty","store_apps","APPS_API_FAILURE","showHtml","initCategories","setUpdateCount","addCategory","appendCategories","categoriesArray","setAllApps","setError","clearError","enableApp","disableApp","removable","uninstallApp","updateApp","resetApps","startLoading","stopLoading","appIds","_appId","update_required","reload","serverData","setServerData","oc","setAppConfig","store_mutations","API_FAILURE","vuex_router_sync","main_app"],"mappings":"aACA,IAAAA,KAGA,SAAAC,EAAAC,GAGA,GAAAF,EAAAE,GACA,OAAAF,EAAAE,GAAAC,QAGA,IAAAC,EAAAJ,EAAAE,IACAG,EAAAH,EACAI,GAAA,EACAH,YAUA,OANAI,EAAAL,GAAAM,KAAAJ,EAAAD,QAAAC,IAAAD,QAAAF,GAGAG,EAAAE,GAAA,EAGAF,EAAAD,QAKAF,EAAAQ,EAAAF,EAGAN,EAAAS,EAAAV,EAGAC,EAAAU,EAAA,SAAAR,EAAAS,EAAAC,GACAZ,EAAAa,EAAAX,EAAAS,IACAG,OAAAC,eAAAb,EAAAS,GAA0CK,YAAA,EAAAC,IAAAL,KAK1CZ,EAAAkB,EAAA,SAAAhB,GACA,oBAAAiB,eAAAC,aACAN,OAAAC,eAAAb,EAAAiB,OAAAC,aAAwDC,MAAA,WAExDP,OAAAC,eAAAb,EAAA,cAAiDmB,OAAA,KAQjDrB,EAAAsB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAArB,EAAAqB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,iBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAX,OAAAY,OAAA,MAGA,GAFA1B,EAAAkB,EAAAO,GACAX,OAAAC,eAAAU,EAAA,WAAyCT,YAAA,EAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAArB,EAAAU,EAAAe,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAzB,EAAA6B,EAAA,SAAA1B,GACA,IAAAS,EAAAT,KAAAqB,WACA,WAA2B,OAAArB,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAH,EAAAU,EAAAE,EAAA,IAAAA,GACAA,GAIAZ,EAAAa,EAAA,SAAAiB,EAAAC,GAAsD,OAAAjB,OAAAkB,UAAAC,eAAA1B,KAAAuB,EAAAC,IAGtD/B,EAAAkC,EAAA,IAIAlC,IAAAmC,EAAA,uBClFA,IAAAC,EAAApC,EAAA,GACAqC,EAAArC,EAAA,IACAsC,EAAAtC,EAAA,IACAuC,EAAAvC,EAAA,IACAwC,EAAAxC,EAAA,IAGAyC,EAAA,SAAAC,EAAA/B,EAAAgC,GACA,IAQAhB,EAAAiB,EAAAC,EAAAC,EARAC,EAAAL,EAAAD,EAAAO,EACAC,EAAAP,EAAAD,EAAAS,EACAC,EAAAT,EAAAD,EAAAW,EACAC,EAAAX,EAAAD,EAAAa,EACAC,EAAAb,EAAAD,EAAAe,EACAC,EAAAR,EAAAb,EAAAe,EAAAf,EAAAzB,KAAAyB,EAAAzB,QAAkFyB,EAAAzB,QAAuB,UACzGT,EAAA+C,EAAAZ,IAAA1B,KAAA0B,EAAA1B,OACA+C,EAAAxD,EAAA,YAAAA,EAAA,cAGA,IAAAyB,KADAsB,IAAAN,EAAAhC,GACAgC,EAIAE,IAFAD,GAAAG,GAAAU,QAAAE,IAAAF,EAAA9B,IAEA8B,EAAAd,GAAAhB,GAEAmB,EAAAS,GAAAX,EAAAJ,EAAAK,EAAAT,GAAAiB,GAAA,mBAAAR,EAAAL,EAAAoB,SAAArD,KAAAsC,KAEAY,GAAAlB,EAAAkB,EAAA9B,EAAAkB,EAAAH,EAAAD,EAAAoB,GAEA3D,EAAAyB,IAAAkB,GAAAP,EAAApC,EAAAyB,EAAAmB,GACAO,GAAAK,EAAA/B,IAAAkB,IAAAa,EAAA/B,GAAAkB,IAGAT,EAAAC,OAEAI,EAAAO,EAAA,EACAP,EAAAS,EAAA,EACAT,EAAAW,EAAA,EACAX,EAAAa,EAAA,EACAb,EAAAe,EAAA,GACAf,EAAAqB,EAAA,GACArB,EAAAoB,EAAA,GACApB,EAAAsB,EAAA,IACA5D,EAAAD,QAAAuC,iCC1CA,SAAAL,EAAA4B;;;;;;AAOA,IAAAC,EAAAnD,OAAAoD,WAIA,SAAAC,EAAAC,GACA,YAAAT,IAAAS,GAAA,OAAAA,EAGA,SAAAC,EAAAD,GACA,YAAAT,IAAAS,GAAA,OAAAA,EAGA,SAAAE,EAAAF,GACA,WAAAA,EAUA,SAAAG,EAAAlD,GACA,MACA,iBAAAA,GACA,iBAAAA,GAEA,iBAAAA,GACA,kBAAAA,EASA,SAAAmD,EAAAC,GACA,cAAAA,GAAA,iBAAAA,EAMA,IAAAC,EAAA5D,OAAAkB,UAAA2C,SAUA,SAAAC,EAAAH,GACA,0BAAAC,EAAAnE,KAAAkE,GAGA,SAAAI,EAAAT,GACA,0BAAAM,EAAAnE,KAAA6D,GAMA,SAAAU,EAAAC,GACA,IAAAlD,EAAAmD,WAAAC,OAAAF,IACA,OAAAlD,GAAA,GAAAqD,KAAAC,MAAAtD,QAAAuD,SAAAL,GAMA,SAAAJ,EAAAI,GACA,aAAAA,EACA,GACA,iBAAAA,EACAM,KAAAC,UAAAP,EAAA,QACAE,OAAAF,GAOA,SAAAQ,EAAAR,GACA,IAAAlD,EAAAmD,WAAAD,GACA,OAAAS,MAAA3D,GAAAkD,EAAAlD,EAOA,SAAA4D,EACAC,EACAC,GAIA,IAFA,IAAAC,EAAA9E,OAAAY,OAAA,MACAmE,EAAAH,EAAAI,MAAA,KACA1F,EAAA,EAAiBA,EAAAyF,EAAAE,OAAiB3F,IAClCwF,EAAAC,EAAAzF,KAAA,EAEA,OAAAuF,EACA,SAAAZ,GAAsB,OAAAa,EAAAb,EAAAiB,gBACtB,SAAAjB,GAAsB,OAAAa,EAAAb,IAMtB,IAAAkB,EAAAR,EAAA,qBAKAS,EAAAT,EAAA,8BAKA,SAAAU,EAAAC,EAAAC,GACA,GAAAD,EAAAL,OAAA,CACA,IAAAO,EAAAF,EAAAG,QAAAF,GACA,GAAAC,GAAA,EACA,OAAAF,EAAAI,OAAAF,EAAA,IAQA,IAAArE,EAAAnB,OAAAkB,UAAAC,eACA,SAAAwE,EAAAhC,EAAA9C,GACA,OAAAM,EAAA1B,KAAAkE,EAAA9C,GAMA,SAAA+E,EAAAC,GACA,IAAAC,EAAA9F,OAAAY,OAAA,MACA,gBAAAgE,GAEA,OADAkB,EAAAlB,KACAkB,EAAAlB,GAAAiB,EAAAjB,KAOA,IAAAmB,EAAA,SACAC,EAAAJ,EAAA,SAAAhB,GACA,OAAAA,EAAAqB,QAAAF,EAAA,SAAAG,EAAAvG,GAAkD,OAAAA,IAAAwG,cAAA,OAMlDC,EAAAR,EAAA,SAAAhB,GACA,OAAAA,EAAAyB,OAAA,GAAAF,cAAAvB,EAAA0B,MAAA,KAMAC,EAAA,aACAC,EAAAZ,EAAA,SAAAhB,GACA,OAAAA,EAAAqB,QAAAM,EAAA,OAAArB,gBA8BA,IAAApE,EAAAgC,SAAA5B,UAAAJ,KAJA,SAAA+E,EAAAnE,GACA,OAAAmE,EAAA/E,KAAAY,IAfA,SAAAmE,EAAAnE,GACA,SAAA+E,EAAAC,GACA,IAAAnH,EAAAoH,UAAA1B,OACA,OAAA1F,EACAA,EAAA,EACAsG,EAAAe,MAAAlF,EAAAiF,WACAd,EAAApG,KAAAiC,EAAAgF,GACAb,EAAApG,KAAAiC,GAIA,OADA+E,EAAAI,QAAAhB,EAAAZ,OACAwB,GAcA,SAAAK,EAAA/B,EAAAgC,GACAA,KAAA,EAGA,IAFA,IAAAzH,EAAAyF,EAAAE,OAAA8B,EACAC,EAAA,IAAAC,MAAA3H,GACAA,KACA0H,EAAA1H,GAAAyF,EAAAzF,EAAAyH,GAEA,OAAAC,EAMA,SAAAE,EAAAC,EAAAC,GACA,QAAAvG,KAAAuG,EACAD,EAAAtG,GAAAuG,EAAAvG,GAEA,OAAAsG,EAMA,SAAAE,EAAA/B,GAEA,IADA,IAAAgC,KACAhI,EAAA,EAAiBA,EAAAgG,EAAAL,OAAgB3F,IACjCgG,EAAAhG,IACA4H,EAAAI,EAAAhC,EAAAhG,IAGA,OAAAgI,EAQA,SAAAC,EAAAb,EAAAc,EAAA7H,IAKA,IAAA8H,EAAA,SAAAf,EAAAc,EAAA7H,GAA6B,UAK7B+H,EAAA,SAAAxB,GAA6B,OAAAA,GAe7B,SAAAyB,EAAAjB,EAAAc,GACA,GAAAd,IAAAc,EAAgB,SAChB,IAAAI,EAAAlE,EAAAgD,GACAmB,EAAAnE,EAAA8D,GACA,IAAAI,IAAAC,EAsBG,OAAAD,IAAAC,GACH1D,OAAAuC,KAAAvC,OAAAqD,GAtBA,IACA,IAAAM,EAAAb,MAAAc,QAAArB,GACAsB,EAAAf,MAAAc,QAAAP,GACA,GAAAM,GAAAE,EACA,OAAAtB,EAAAzB,SAAAuC,EAAAvC,QAAAyB,EAAAuB,MAAA,SAAAC,EAAA5I,GACA,OAAAqI,EAAAO,EAAAV,EAAAlI,MAEO,GAAAwI,GAAAE,EAQP,SAPA,IAAAG,EAAAnI,OAAAoI,KAAA1B,GACA2B,EAAArI,OAAAoI,KAAAZ,GACA,OAAAW,EAAAlD,SAAAoD,EAAApD,QAAAkD,EAAAF,MAAA,SAAApH,GACA,OAAA8G,EAAAjB,EAAA7F,GAAA2G,EAAA3G,MAMK,MAAAqH,GAEL,UASA,SAAAI,EAAAhD,EAAArB,GACA,QAAA3E,EAAA,EAAiBA,EAAAgG,EAAAL,OAAgB3F,IACjC,GAAAqI,EAAArC,EAAAhG,GAAA2E,GAAkC,OAAA3E,EAElC,SAMA,SAAAiJ,EAAA1C,GACA,IAAA2C,GAAA,EACA,kBACAA,IACAA,GAAA,EACA3C,EAAAe,MAAA6B,KAAA9B,aAKA,IAAA+B,EAAA,uBAEAC,GACA,YACA,YACA,UAGAC,GACA,eACA,UACA,cACA,UACA,eACA,UACA,gBACA,YACA,YACA,cACA,iBAKAC,GAKAC,sBAAA9I,OAAAY,OAAA,MAKAmI,QAAA,EAKAC,eAAA,EAKAC,UAAA,EAKAC,aAAA,EAKAC,aAAA,KAKAC,YAAA,KAKAC,mBAMAC,SAAAtJ,OAAAY,OAAA,MAMA2I,cAAA9B,EAMA+B,eAAA/B,EAMAgC,iBAAAhC,EAKAiC,gBAAAnC,EAKAoC,qBAAAjC,EAMAkC,YAAAnC,EAKAoC,gBAAAjB,GAQA,SAAAkB,EAAAlF,GACA,IAAAjF,GAAAiF,EAAA,IAAAmF,WAAA,GACA,YAAApK,GAAA,KAAAA,EAMA,SAAAqK,EAAArG,EAAA9C,EAAAoD,EAAA/D,GACAF,OAAAC,eAAA0D,EAAA9C,GACAN,MAAA0D,EACA/D,eACA+J,UAAA,EACAC,cAAA,IAOA,IAAAC,EAAA,UAkBA,IAiCAC,EAjCAC,EAAA,gBAGAC,EAAA,oBAAAC,OACAC,EAAA,oBAAAC,+BAAAC,SACAC,EAAAH,GAAAC,cAAAC,SAAAxF,cACA0F,EAAAN,GAAAC,OAAAM,UAAAC,UAAA5F,cACA6F,EAAAH,GAAA,eAAAI,KAAAJ,GACAK,EAAAL,KAAAnF,QAAA,cACAyF,EAAAN,KAAAnF,QAAA,WAEA0F,GADAP,KAAAnF,QAAA,WACAmF,GAAA,uBAAAI,KAAAJ,IAAA,QAAAD,GAIAS,IAHAR,GAAA,cAAAI,KAAAJ,MAGqBS,OAErBC,IAAA,EACA,GAAAhB,EACA,IACA,IAAAiB,MACAvL,OAAAC,eAAAsL,GAAA,WACApL,IAAA,WAEAmL,IAAA,KAGAf,OAAAiB,iBAAA,oBAAAD,IACG,MAAArD,IAMH,IAAAuD,GAAA,WAWA,YAVA5I,IAAAuH,IAOAA,GALAE,IAAAE,QAAA,IAAAlJ,GAGA,WAAAA,EAAA,QAAAoK,IAAAC,SAKAvB,GAIAnB,GAAAqB,GAAAC,OAAAqB,6BAGA,SAAAC,GAAAC,GACA,yBAAAA,GAAA,cAAAd,KAAAc,EAAAjI,YAGA,IAIAkI,GAJAC,GACA,oBAAA3L,QAAAwL,GAAAxL,SACA,oBAAA4L,SAAAJ,GAAAI,QAAAC,SAMAH,GAFA,oBAAAI,KAAAN,GAAAM,KAEAA,IAGA,WACA,SAAAA,IACA1D,KAAA2D,IAAApM,OAAAY,OAAA,MAYA,OAVAuL,EAAAjL,UAAAmL,IAAA,SAAAxL,GACA,WAAA4H,KAAA2D,IAAAvL,IAEAsL,EAAAjL,UAAAoL,IAAA,SAAAzL,GACA4H,KAAA2D,IAAAvL,IAAA,GAEAsL,EAAAjL,UAAAqL,MAAA,WACA9D,KAAA2D,IAAApM,OAAAY,OAAA,OAGAuL,EAdA,GAoBA,IAAAK,GAAAjF,EA+FAkF,GAAA,EAMAC,GAAA,WACAjE,KAAAkE,GAAAF,KACAhE,KAAAmE,SAGAF,GAAAxL,UAAA2L,OAAA,SAAAC,GACArE,KAAAmE,KAAAG,KAAAD,IAGAJ,GAAAxL,UAAA8L,UAAA,SAAAF,GACAzH,EAAAoD,KAAAmE,KAAAE,IAGAJ,GAAAxL,UAAA+L,OAAA,WACAP,GAAA/J,QACA+J,GAAA/J,OAAAuK,OAAAzE,OAIAiE,GAAAxL,UAAAiM,OAAA,WAGA,IADA,IAAAP,EAAAnE,KAAAmE,KAAAtG,QACAhH,EAAA,EAAAC,EAAAqN,EAAA3H,OAAkC3F,EAAAC,EAAOD,IACzCsN,EAAAtN,GAAA8N,UAOAV,GAAA/J,OAAA,KACA,IAAA0K,MAEA,SAAAC,GAAAC,GACAb,GAAA/J,QAAmB0K,GAAAN,KAAAL,GAAA/J,QACnB+J,GAAA/J,OAAA4K,EAGA,SAAAC,KACAd,GAAA/J,OAAA0K,GAAAI,MAKA,IAAAC,GAAA,SACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,GAEAzF,KAAAkF,MACAlF,KAAAmF,OACAnF,KAAAoF,WACApF,KAAAqF,OACArF,KAAAsF,MACAtF,KAAA9H,QAAAkC,EACA4F,KAAAuF,UACAvF,KAAA0F,eAAAtL,EACA4F,KAAA2F,eAAAvL,EACA4F,KAAA4F,eAAAxL,EACA4F,KAAA5H,IAAA+M,KAAA/M,IACA4H,KAAAwF,mBACAxF,KAAA6F,uBAAAzL,EACA4F,KAAA8F,YAAA1L,EACA4F,KAAA+F,KAAA,EACA/F,KAAAgG,UAAA,EACAhG,KAAAiG,cAAA,EACAjG,KAAAkG,WAAA,EACAlG,KAAAmG,UAAA,EACAnG,KAAAoG,QAAA,EACApG,KAAAyF,eACAzF,KAAAqG,eAAAjM,EACA4F,KAAAsG,oBAAA,GAGAC,IAA0BC,OAAS/E,cAAA,IAInC8E,GAAAC,MAAA9O,IAAA,WACA,OAAAsI,KAAA6F,mBAGAtO,OAAAkP,iBAAAxB,GAAAxM,UAAA8N,IAEA,IAAAG,GAAA,SAAArB,QACA,IAAAA,MAAA,IAEA,IAAAsB,EAAA,IAAA1B,GAGA,OAFA0B,EAAAtB,OACAsB,EAAAT,WAAA,EACAS,GAGA,SAAAC,GAAApL,GACA,WAAAyJ,QAAA7K,gBAAAsB,OAAAF,IAOA,SAAAqL,GAAAC,GACA,IAAAC,EAAA,IAAA9B,GACA6B,EAAA5B,IACA4B,EAAA3B,KACA2B,EAAA1B,SACA0B,EAAAzB,KACAyB,EAAAxB,IACAwB,EAAAvB,QACAuB,EAAAtB,iBACAsB,EAAArB,cAUA,OARAsB,EAAA7O,GAAA4O,EAAA5O,GACA6O,EAAAf,SAAAc,EAAAd,SACAe,EAAA3O,IAAA0O,EAAA1O,IACA2O,EAAAb,UAAAY,EAAAZ,UACAa,EAAArB,UAAAoB,EAAApB,UACAqB,EAAApB,UAAAmB,EAAAnB,UACAoB,EAAAnB,UAAAkB,EAAAlB,UACAmB,EAAAZ,UAAA,EACAY,EAQA,IAAAC,GAAAxI,MAAA/F,UACAwO,GAAA1P,OAAAY,OAAA6O,KAGA,OACA,MACA,QACA,UACA,SACA,OACA,WAMAE,QAAA,SAAAC,GAEA,IAAAC,EAAAJ,GAAAG,GACA5F,EAAA0F,GAAAE,EAAA,WAEA,IADA,IAAAE,KAAAC,EAAApJ,UAAA1B,OACA8K,KAAAD,EAAAC,GAAApJ,UAAAoJ,GAEA,IAEAC,EAFAC,EAAAJ,EAAAjJ,MAAA6B,KAAAqH,GACAI,EAAAzH,KAAA0H,OAEA,OAAAP,GACA,WACA,cACAI,EAAAF,EACA,MACA,aACAE,EAAAF,EAAAxJ,MAAA,GAMA,OAHA0J,GAAmBE,EAAAE,aAAAJ,GAEnBE,EAAAG,IAAAlD,SACA8C,MAMA,IAAAK,GAAAtQ,OAAAuQ,oBAAAb,IAMAc,IAAA,EAEA,SAAAC,GAAAlQ,GACAiQ,GAAAjQ,EASA,IAAAmQ,GAAA,SAAAnQ,IACAkI,KAAAlI,QACAkI,KAAA4H,IAAA,IAAA3D,GACAjE,KAAAkI,QAAA,EACA3G,EAAAzJ,EAAA,SAAAkI,MACAxB,MAAAc,QAAAxH,MACA8J,EACAuG,GACAC,IACAtQ,EAAAmP,GAAAY,IACA7H,KAAA2H,aAAA7P,IAEAkI,KAAAqI,KAAAvQ,IA+BA,SAAAqQ,GAAAjO,EAAAoO,EAAA3I,GAEAzF,EAAAqO,UAAAD,EASA,SAAAF,GAAAlO,EAAAoO,EAAA3I,GACA,QAAA9I,EAAA,EAAAC,EAAA6I,EAAAnD,OAAkC3F,EAAAC,EAAOD,IAAA,CACzC,IAAAuB,EAAAuH,EAAA9I,GACA0K,EAAArH,EAAA9B,EAAAkQ,EAAAlQ,KASA,SAAAoQ,GAAA1Q,EAAA2Q,GAIA,IAAAhB,EAHA,GAAAxM,EAAAnD,mBAAAmN,IAkBA,OAdA/H,EAAApF,EAAA,WAAAA,EAAA4P,kBAAAO,GACAR,EAAA3P,EAAA4P,OAEAK,KACA/E,OACAxE,MAAAc,QAAAxH,IAAAuD,EAAAvD,KACAP,OAAAmR,aAAA5Q,KACAA,EAAA6Q,SAEAlB,EAAA,IAAAQ,GAAAnQ,IAEA2Q,GAAAhB,GACAA,EAAAS,UAEAT,EAMA,SAAAmB,GACA1N,EACA9C,EACAoD,EACAqN,EACAC,GAEA,IAAAlB,EAAA,IAAA3D,GAEAzL,EAAAjB,OAAAwR,yBAAA7N,EAAA9C,GACA,IAAAI,IAAA,IAAAA,EAAAiJ,aAAA,CAKA,IAAApK,EAAAmB,KAAAd,IACAL,GAAA,IAAA6G,UAAA1B,SACAhB,EAAAN,EAAA9C,IAEA,IAAA4Q,EAAAxQ,KAAAmL,IAEAsF,GAAAH,GAAAN,GAAAhN,GACAjE,OAAAC,eAAA0D,EAAA9C,GACAX,YAAA,EACAgK,cAAA,EACA/J,IAAA,WACA,IAAAI,EAAAT,IAAAL,KAAAkE,GAAAM,EAUA,OATAyI,GAAA/J,SACA0N,EAAApD,SACAyE,IACAA,EAAArB,IAAApD,SACAhG,MAAAc,QAAAxH,IAoGA,SAAAoR,EAAApR,GACA,QAAA2H,OAAA,EAAA5I,EAAA,EAAAC,EAAAgB,EAAA0E,OAAiD3F,EAAAC,EAAOD,KACxD4I,EAAA3H,EAAAjB,KACA4I,EAAAiI,QAAAjI,EAAAiI,OAAAE,IAAApD,SACAhG,MAAAc,QAAAG,IACAyJ,EAAAzJ,GAxGAyJ,CAAApR,KAIAA,GAEA6L,IAAA,SAAAwF,GACA,IAAArR,EAAAT,IAAAL,KAAAkE,GAAAM,EAEA2N,IAAArR,GAAAqR,MAAArR,OAOAkR,EACAA,EAAAhS,KAAAkE,EAAAiO,GAEA3N,EAAA2N,EAEAF,GAAAH,GAAAN,GAAAW,GACAvB,EAAAlD,cAUA,SAAAf,GAAAzJ,EAAA9B,EAAAoD,GAMA,GAAAgD,MAAAc,QAAApF,IAAAqB,EAAAnD,GAGA,OAFA8B,EAAAsC,OAAAb,KAAAyN,IAAAlP,EAAAsC,OAAApE,GACA8B,EAAA+C,OAAA7E,EAAA,EAAAoD,GACAA,EAEA,GAAApD,KAAA8B,KAAA9B,KAAAb,OAAAkB,WAEA,OADAyB,EAAA9B,GAAAoD,EACAA,EAEA,IAAAiM,EAAA,EAAAC,OACA,OAAAxN,EAAAyO,QAAAlB,KAAAS,QAKA1M,EAEAiM,GAIAmB,GAAAnB,EAAA3P,MAAAM,EAAAoD,GACAiM,EAAAG,IAAAlD,SACAlJ,IALAtB,EAAA9B,GAAAoD,EACAA,GAUA,SAAA6N,GAAAnP,EAAA9B,GAMA,GAAAoG,MAAAc,QAAApF,IAAAqB,EAAAnD,GACA8B,EAAA+C,OAAA7E,EAAA,OADA,CAIA,IAAAqP,EAAA,EAAAC,OACAxN,EAAAyO,QAAAlB,KAAAS,SAOAhL,EAAAhD,EAAA9B,YAGA8B,EAAA9B,GACAqP,GAGAA,EAAAG,IAAAlD,WAlMAuD,GAAAxP,UAAA4P,KAAA,SAAAnN,GAEA,IADA,IAAAyE,EAAApI,OAAAoI,KAAAzE,GACArE,EAAA,EAAiBA,EAAA8I,EAAAnD,OAAiB3F,IAClC+R,GAAA1N,EAAAyE,EAAA9I,KAOAoR,GAAAxP,UAAAkP,aAAA,SAAA2B,GACA,QAAAzS,EAAA,EAAAC,EAAAwS,EAAA9M,OAAmC3F,EAAAC,EAAOD,IAC1C2R,GAAAc,EAAAzS,KA8MA,IAAA0S,GAAAnJ,EAAAC,sBAoBA,SAAAmJ,GAAA9K,EAAA+K,GACA,IAAAA,EAAc,OAAA/K,EAGd,IAFA,IAAAtG,EAAAsR,EAAAC,EACAhK,EAAApI,OAAAoI,KAAA8J,GACA5S,EAAA,EAAiBA,EAAA8I,EAAAnD,OAAiB3F,IAElC6S,EAAAhL,EADAtG,EAAAuH,EAAA9I,IAEA8S,EAAAF,EAAArR,GACA8E,EAAAwB,EAAAtG,GAEKiD,EAAAqO,IAAArO,EAAAsO,IACLH,GAAAE,EAAAC,GAFAhG,GAAAjF,EAAAtG,EAAAuR,GAKA,OAAAjL,EAMA,SAAAkL,GACAC,EACAC,EACAC,GAEA,OAAAA,EAoBA,WAEA,IAAAC,EAAA,mBAAAF,EACAA,EAAA9S,KAAA+S,KACAD,EACAG,EAAA,mBAAAJ,EACAA,EAAA7S,KAAA+S,KACAF,EACA,OAAAG,EACAR,GAAAQ,EAAAC,GAEAA,GA7BAH,EAGAD,EAQA,WACA,OAAAL,GACA,mBAAAM,IAAA9S,KAAAgJ,WAAA8J,EACA,mBAAAD,IAAA7S,KAAAgJ,WAAA6J,IAVAC,EAHAD,EA2DA,SAAAK,GACAL,EACAC,GAEA,OAAAA,EACAD,EACAA,EAAAM,OAAAL,GACAtL,MAAAc,QAAAwK,GACAA,GACAA,GACAD,EAcA,SAAAO,GACAP,EACAC,EACAC,EACA3R,GAEA,IAAAyG,EAAAtH,OAAAY,OAAA0R,GAAA,MACA,OAAAC,EAEArL,EAAAI,EAAAiL,GAEAjL,EA5DA0K,GAAApE,KAAA,SACA0E,EACAC,EACAC,GAEA,OAAAA,EAcAH,GAAAC,EAAAC,EAAAC,GAbAD,GAAA,mBAAAA,EAQAD,EAEAD,GAAAC,EAAAC,IAsBA3J,EAAA+G,QAAA,SAAAmD,GACAd,GAAAc,GAAAH,KAyBAhK,EAAAgH,QAAA,SAAA/N,GACAoQ,GAAApQ,EAAA,KAAAiR,KASAb,GAAA3G,MAAA,SACAiH,EACAC,EACAC,EACA3R,GAMA,GAHAyR,IAAAlH,KAAkCkH,OAAAzP,GAClC0P,IAAAnH,KAAiCmH,OAAA1P,IAEjC0P,EAAkB,OAAAvS,OAAAY,OAAA0R,GAAA,MAIlB,IAAAA,EAAmB,OAAAC,EACnB,IAAAvL,KAEA,QAAA+L,KADA7L,EAAAF,EAAAsL,GACAC,EAAA,CACA,IAAAhE,EAAAvH,EAAA+L,GACA9D,EAAAsD,EAAAQ,GACAxE,IAAAtH,MAAAc,QAAAwG,KACAA,OAEAvH,EAAA+L,GAAAxE,EACAA,EAAAqE,OAAA3D,GACAhI,MAAAc,QAAAkH,SAEA,OAAAjI,GAMAgL,GAAAgB,MACAhB,GAAAiB,QACAjB,GAAAkB,OACAlB,GAAAmB,SAAA,SACAb,EACAC,EACAC,EACA3R,GAKA,IAAAyR,EAAmB,OAAAC,EACnB,IAAAvL,EAAAhH,OAAAY,OAAA,MAGA,OAFAsG,EAAAF,EAAAsL,GACAC,GAAiBrL,EAAAF,EAAAuL,GACjBvL,GAEAgL,GAAAoB,QAAAf,GAKA,IAAAgB,GAAA,SAAAf,EAAAC,GACA,YAAA1P,IAAA0P,EACAD,EACAC,GA0HA,SAAAe,GACA/E,EACAU,EACAuD,GAMA,mBAAAvD,IACAA,IAAAsE,SApGA,SAAAA,EAAAf,GACA,IAAAQ,EAAAO,EAAAP,MACA,GAAAA,EAAA,CACA,IACA1T,EAAA2E,EADAqD,KAEA,GAAAL,MAAAc,QAAAiL,GAEA,IADA1T,EAAA0T,EAAA/N,OACA3F,KAEA,iBADA2E,EAAA+O,EAAA1T,MAGAgI,EADAtB,EAAA/B,KACqBrC,KAAA,YAKlB,GAAAkC,EAAAkP,GACH,QAAAnS,KAAAmS,EACA/O,EAAA+O,EAAAnS,GAEAyG,EADAtB,EAAAnF,IACAiD,EAAAG,GACAA,GACWrC,KAAAqC,GASXsP,EAAAP,MAAA1L,GAwEAkM,CAAAvE,GAlEA,SAAAsE,EAAAf,GACA,IAAAU,EAAAK,EAAAL,OACA,GAAAA,EAAA,CACA,IAAAO,EAAAF,EAAAL,UACA,GAAAjM,MAAAc,QAAAmL,GACA,QAAA5T,EAAA,EAAmBA,EAAA4T,EAAAjO,OAAmB3F,IACtCmU,EAAAP,EAAA5T,KAA+B4S,KAAAgB,EAAA5T,SAE5B,GAAAwE,EAAAoP,GACH,QAAArS,KAAAqS,EAAA,CACA,IAAAjP,EAAAiP,EAAArS,GACA4S,EAAA5S,GAAAiD,EAAAG,GACAiD,GAAkBgL,KAAArR,GAAYoD,IACnBiO,KAAAjO,KAsDXyP,CAAAzE,GAxCA,SAAAsE,GACA,IAAAI,EAAAJ,EAAAK,WACA,GAAAD,EACA,QAAA9S,KAAA8S,EAAA,CACA,IAAA3J,EAAA2J,EAAA9S,GACA,mBAAAmJ,IACA2J,EAAA9S,IAAqBC,KAAAkJ,EAAAoD,OAAApD,KAmCrB6J,CAAA5E,GACA,IAAA6E,EAAA7E,EAAA8E,QAIA,GAHAD,IACAvF,EAAA+E,GAAA/E,EAAAuF,EAAAtB,IAEAvD,EAAA+E,OACA,QAAA1U,EAAA,EAAAC,EAAA0P,EAAA+E,OAAA/O,OAA4C3F,EAAAC,EAAOD,IACnDiP,EAAA+E,GAAA/E,EAAAU,EAAA+E,OAAA1U,GAAAkT,GAGA,IACA3R,EADA0S,KAEA,IAAA1S,KAAA0N,EACA0F,EAAApT,GAEA,IAAAA,KAAAoO,EACAtJ,EAAA4I,EAAA1N,IACAoT,EAAApT,GAGA,SAAAoT,EAAApT,GACA,IAAAqT,EAAAlC,GAAAnR,IAAAwS,GACAE,EAAA1S,GAAAqT,EAAA3F,EAAA1N,GAAAoO,EAAApO,GAAA2R,EAAA3R,GAEA,OAAA0S,EAQA,SAAAY,GACAZ,EACA3R,EACA+K,EACAyH,GAGA,oBAAAzH,EAAA,CAGA,IAAA0H,EAAAd,EAAA3R,GAEA,GAAA+D,EAAA0O,EAAA1H,GAA2B,OAAA0H,EAAA1H,GAC3B,IAAA2H,EAAAtO,EAAA2G,GACA,GAAAhH,EAAA0O,EAAAC,GAAoC,OAAAD,EAAAC,GACpC,IAAAC,EAAAnO,EAAAkO,GACA,OAAA3O,EAAA0O,EAAAE,GAAqCF,EAAAE,GAErCF,EAAA1H,IAAA0H,EAAAC,IAAAD,EAAAE,IAYA,SAAAC,GACA3T,EACA4T,EACAC,EACAlC,GAEA,IAAAmC,EAAAF,EAAA5T,GACA+T,GAAAjP,EAAA+O,EAAA7T,GACAN,EAAAmU,EAAA7T,GAEAgU,EAAAC,GAAAC,QAAAJ,EAAA/S,MACA,GAAAiT,GAAA,EACA,GAAAD,IAAAjP,EAAAgP,EAAA,WACApU,GAAA,OACK,QAAAA,OAAAiG,EAAA3F,GAAA,CAGL,IAAAmU,EAAAF,GAAA3Q,OAAAwQ,EAAA/S,OACAoT,EAAA,GAAAH,EAAAG,KACAzU,GAAA,GAKA,QAAAsC,IAAAtC,EAAA,CACAA,EAqBA,SAAAiS,EAAAmC,EAAA9T,GAEA,IAAA8E,EAAAgP,EAAA,WACA,OAEA,IAAA3K,EAAA2K,EAAAM,QAEA,EAUA,GAAAzC,KAAA0C,SAAAR,gBACA7R,IAAA2P,EAAA0C,SAAAR,UAAA7T,SACAgC,IAAA2P,EAAA2C,OAAAtU,GAEA,OAAA2R,EAAA2C,OAAAtU,GAIA,yBAAAmJ,GAAA,aAAAoL,GAAAT,EAAA/S,MACAoI,EAAAvK,KAAA+S,GACAxI,EAhDAqL,CAAA7C,EAAAmC,EAAA9T,GAGA,IAAAyU,EAAA9E,GACAC,IAAA,GACAQ,GAAA1Q,GACAkQ,GAAA6E,GASA,OAAA/U,EAuHA,SAAA6U,GAAAvP,GACA,IAAA0P,EAAA1P,KAAAhC,WAAA0R,MAAA,sBACA,OAAAA,IAAA,MAGA,SAAAC,GAAA9O,EAAAc,GACA,OAAA4N,GAAA1O,KAAA0O,GAAA5N,GAGA,SAAAsN,GAAAlT,EAAA6T,GACA,IAAAxO,MAAAc,QAAA0N,GACA,OAAAD,GAAAC,EAAA7T,GAAA,KAEA,QAAAtC,EAAA,EAAAyQ,EAAA0F,EAAAxQ,OAA6C3F,EAAAyQ,EAASzQ,IACtD,GAAAkW,GAAAC,EAAAnW,GAAAsC,GACA,OAAAtC,EAGA,SAKA,SAAAoW,GAAAC,EAAAnD,EAAAoD,GACA,GAAApD,EAEA,IADA,IAAAqD,EAAArD,EACAqD,IAAAC,SAAA,CACA,IAAAC,EAAAF,EAAAX,SAAAc,cACA,GAAAD,EACA,QAAAzW,EAAA,EAAuBA,EAAAyW,EAAA9Q,OAAkB3F,IACzC,IAEA,IADA,IAAAyW,EAAAzW,GAAAG,KAAAoW,EAAAF,EAAAnD,EAAAoD,GAC0B,OACf,MAAA1N,GACX+N,GAAA/N,EAAA2N,EAAA,uBAMAI,GAAAN,EAAAnD,EAAAoD,GAGA,SAAAK,GAAAN,EAAAnD,EAAAoD,GACA,GAAA/M,EAAAM,aACA,IACA,OAAAN,EAAAM,aAAA1J,KAAA,KAAAkW,EAAAnD,EAAAoD,GACK,MAAA1N,GACLgO,GAAAhO,EAAA,4BAGAgO,GAAAP,EAAAnD,EAAAoD,GAGA,SAAAM,GAAAP,EAAAnD,EAAAoD,GAKA,IAAAtL,IAAAE,GAAA,oBAAA2L,QAGA,MAAAR,EAFAQ,QAAAC,MAAAT,GASA,IAoBAU,GACAC,GArBAC,MACAC,IAAA,EAEA,SAAAC,KACAD,IAAA,EACA,IAAAE,EAAAH,GAAAjQ,MAAA,GACAiQ,GAAAtR,OAAA,EACA,QAAA3F,EAAA,EAAiBA,EAAAoX,EAAAzR,OAAmB3F,IACpCoX,EAAApX,KAcA,IAAAqX,IAAA,EAOA,YAAAzT,GAAA2I,GAAA3I,GACAoT,GAAA,WACApT,EAAAuT,UAEC,uBAAAG,iBACD/K,GAAA+K,iBAEA,uCAAAA,eAAA/S,WAUAyS,GAAA,WACAO,WAAAJ,GAAA,QAVA,CACA,IAAAK,GAAA,IAAAF,eACAG,GAAAD,GAAAE,MACAF,GAAAG,MAAAC,UAAAT,GACAH,GAAA,WACAS,GAAAI,YAAA,IAWA,uBAAAC,SAAAvL,GAAAuL,SAAA,CACA,IAAAhW,GAAAgW,QAAAC,UACAhB,GAAA,WACAjV,GAAAkW,KAAAb,IAMAtL,GAAgB0L,WAAAtP,SAIhB8O,GAAAC,GAgBA,SAAAiB,GAAAC,EAAA9V,GACA,IAAA+V,EAqBA,GApBAlB,GAAAxJ,KAAA,WACA,GAAAyK,EACA,IACAA,EAAA/X,KAAAiC,GACO,MAAAwG,GACPwN,GAAAxN,EAAAxG,EAAA,iBAEK+V,GACLA,EAAA/V,KAGA8U,KACAA,IAAA,EACAG,GACAL,KAEAD,OAIAmB,GAAA,oBAAAJ,QACA,WAAAA,QAAA,SAAAC,GACAI,EAAAJ,IA2GA,IAAAK,GAAA,IAAA3L,GAOA,SAAA4L,GAAA1T,IAKA,SAAA2T,EAAA3T,EAAA4T,GACA,IAAAvY,EAAA8I,EACA,IAAA0P,EAAA7Q,MAAAc,QAAA9D,GACA,IAAA6T,IAAApU,EAAAO,IAAAjE,OAAA+X,SAAA9T,iBAAAyJ,GACA,OAEA,GAAAzJ,EAAAkM,OAAA,CACA,IAAA6H,EAAA/T,EAAAkM,OAAAE,IAAA1D,GACA,GAAAkL,EAAAxL,IAAA2L,GACA,OAEAH,EAAAvL,IAAA0L,GAEA,GAAAF,EAEA,IADAxY,EAAA2E,EAAAgB,OACA3F,KAAiBsY,EAAA3T,EAAA3E,GAAAuY,QAIjB,IAFAzP,EAAApI,OAAAoI,KAAAnE,GACA3E,EAAA8I,EAAAnD,OACA3F,KAAiBsY,EAAA3T,EAAAmE,EAAA9I,IAAAuY,GAvBjBD,CAAA3T,EAAAyT,IACAA,GAAAnL,QA4BA,IAsaA5J,GAtaAsV,GAAArS,EAAA,SAAA/F,GACA,IAAAqY,EAAA,MAAArY,EAAAwG,OAAA,GAEA8R,EAAA,OADAtY,EAAAqY,EAAArY,EAAAyG,MAAA,GAAAzG,GACAwG,OAAA,GAEA+R,EAAA,OADAvY,EAAAsY,EAAAtY,EAAAyG,MAAA,GAAAzG,GACAwG,OAAA,GAEA,OACAxG,KAFAA,EAAAuY,EAAAvY,EAAAyG,MAAA,GAAAzG,EAGA0I,KAAA4P,EACAC,UACAF,aAIA,SAAAG,GAAAC,GACA,SAAAC,IACA,IAAAC,EAAA7R,UAEA2R,EAAAC,EAAAD,IACA,IAAArR,MAAAc,QAAAuQ,GAOA,OAAAA,EAAA1R,MAAA,KAAAD,WALA,IADA,IAAA6I,EAAA8I,EAAAhS,QACAhH,EAAA,EAAqBA,EAAAkQ,EAAAvK,OAAmB3F,IACxCkQ,EAAAlQ,GAAAsH,MAAA,KAAA4R,GAQA,OADAD,EAAAD,MACAC,EAGA,SAAAE,GACAC,EACAC,EACArM,EACAsM,EACApG,GAEA,IAAA3S,EAAAgW,EAAAgD,EAAAC,EACA,IAAAjZ,KAAA6Y,EACA7C,EAAA6C,EAAA7Y,GACAgZ,EAAAF,EAAA9Y,GACAiZ,EAAAb,GAAApY,GAEAwD,EAAAwS,KAKKxS,EAAAwV,IACLxV,EAAAwS,EAAAyC,OACAzC,EAAA6C,EAAA7Y,GAAAwY,GAAAxC,IAEAvJ,EAAAwM,EAAAjZ,KAAAgW,EAAAiD,EAAAvQ,KAAAuQ,EAAAV,QAAAU,EAAAZ,QAAAY,EAAAC,SACKlD,IAAAgD,IACLA,EAAAP,IAAAzC,EACA6C,EAAA7Y,GAAAgZ,IAGA,IAAAhZ,KAAA8Y,EACAtV,EAAAqV,EAAA7Y,KAEA+Y,GADAE,EAAAb,GAAApY,IACAA,KAAA8Y,EAAA9Y,GAAAiZ,EAAAV,SAOA,SAAAY,GAAAhP,EAAAiP,EAAAnG,GAIA,IAAAyF,EAHAvO,aAAA0D,KACA1D,IAAA4D,KAAAkF,OAAA9I,EAAA4D,KAAAkF,UAGA,IAAAoG,EAAAlP,EAAAiP,GAEA,SAAAE,IACArG,EAAAlM,MAAA6B,KAAA9B,WAGAtB,EAAAkT,EAAAD,IAAAa,GAGA9V,EAAA6V,GAEAX,EAAAF,IAAAc,IAGA5V,EAAA2V,EAAAZ,MAAA9U,EAAA0V,EAAAE,SAEAb,EAAAW,GACAZ,IAAAvL,KAAAoM,GAGAZ,EAAAF,IAAAa,EAAAC,IAIAZ,EAAAa,QAAA,EACApP,EAAAiP,GAAAV,EA8CA,SAAAc,GACA/R,EACAgS,EACAzY,EACA0Y,EACAC,GAEA,GAAAjW,EAAA+V,GAAA,CACA,GAAA3T,EAAA2T,EAAAzY,GAKA,OAJAyG,EAAAzG,GAAAyY,EAAAzY,GACA2Y,UACAF,EAAAzY,IAEA,EACK,GAAA8E,EAAA2T,EAAAC,GAKL,OAJAjS,EAAAzG,GAAAyY,EAAAC,GACAC,UACAF,EAAAC,IAEA,EAGA,SA8BA,SAAAE,GAAA5L,GACA,OAAApK,EAAAoK,IACAwB,GAAAxB,IACA5G,MAAAc,QAAA8F,GASA,SAAA6L,EAAA7L,EAAA8L,GACA,IAAArS,KACA,IAAAhI,EAAAK,EAAAia,EAAAC,EACA,IAAAva,EAAA,EAAaA,EAAAuO,EAAA5I,OAAqB3F,IAElC+D,EADA1D,EAAAkO,EAAAvO,KACA,kBAAAK,IACAia,EAAAtS,EAAArC,OAAA,EACA4U,EAAAvS,EAAAsS,GAEA3S,MAAAc,QAAApI,GACAA,EAAAsF,OAAA,IAGA6U,IAFAna,EAAA+Z,EAAA/Z,GAAAga,GAAA,QAAAra,IAEA,KAAAwa,GAAAD,KACAvS,EAAAsS,GAAAvK,GAAAwK,EAAA/L,KAAAnO,EAAA,GAAAmO,MACAnO,EAAAoa,SAEAzS,EAAAyF,KAAAnG,MAAAU,EAAA3H,IAEK8D,EAAA9D,GACLma,GAAAD,GAIAvS,EAAAsS,GAAAvK,GAAAwK,EAAA/L,KAAAnO,GACO,KAAAA,GAEP2H,EAAAyF,KAAAsC,GAAA1P,IAGAma,GAAAna,IAAAma,GAAAD,GAEAvS,EAAAsS,GAAAvK,GAAAwK,EAAA/L,KAAAnO,EAAAmO,OAGAtK,EAAAqK,EAAAmM,WACAzW,EAAA5D,EAAAgO,MACAtK,EAAA1D,EAAAkB,MACA0C,EAAAoW,KACAha,EAAAkB,IAAA,UAAA8Y,EAAA,IAAAra,EAAA,MAEAgI,EAAAyF,KAAApN,KAIA,OAAA2H,EArDAoS,CAAA7L,QACAhL,EAGA,SAAAiX,GAAA1K,GACA,OAAA7L,EAAA6L,IAAA7L,EAAA6L,EAAAtB,OAzoEA,SAAAxK,GACA,WAAAA,EAwoEA2W,CAAA7K,EAAAT,WAqDA,SAAAuL,GAAAC,EAAAC,GAOA,OALAD,EAAAzZ,YACAsL,IAAA,WAAAmO,EAAA9Z,OAAAC,gBAEA6Z,IAAAlF,SAEAvR,EAAAyW,GACAC,EAAAlT,OAAAiT,GACAA,EAwHA,SAAApL,GAAAK,GACA,OAAAA,EAAAT,WAAAS,EAAAlB,aAKA,SAAAmM,GAAAxM,GACA,GAAA5G,MAAAc,QAAA8F,GACA,QAAAvO,EAAA,EAAmBA,EAAAuO,EAAA5I,OAAqB3F,IAAA,CACxC,IAAAK,EAAAkO,EAAAvO,GACA,GAAAiE,EAAA5D,KAAA4D,EAAA5D,EAAAsO,mBAAAc,GAAApP,IACA,OAAAA,GAsBA,SAAA2M,GAAAwM,EAAAjT,EAAA0C,GACAA,EACA5F,GAAA2X,MAAAxB,EAAAjT,GAEAlD,GAAA4X,IAAAzB,EAAAjT,GAIA,SAAA2U,GAAA1B,EAAAjT,GACAlD,GAAA8X,KAAA3B,EAAAjT,GAGA,SAAA6U,GACAlI,EACAmI,EACAC,GAEAjY,GAAA6P,EACAiG,GAAAkC,EAAAC,MAA+CtO,GAAAkO,IAC/C7X,QAAAE,EAgHA,SAAAgY,GACAhN,EACAG,GAEA,IAAA8M,KACA,IAAAjN,EACA,OAAAiN,EAEA,QAAAxb,EAAA,EAAAC,EAAAsO,EAAA5I,OAAsC3F,EAAAC,EAAOD,IAAA,CAC7C,IAAA2P,EAAApB,EAAAvO,GACAsO,EAAAqB,EAAArB,KAOA,GALAA,KAAAmN,OAAAnN,EAAAmN,MAAAC,aACApN,EAAAmN,MAAAC,KAIA/L,EAAAjB,aAAAiB,EAAAd,YAAAH,IACAJ,GAAA,MAAAA,EAAAoN,MAUAF,EAAA7F,UAAA6F,EAAA7F,aAAAlI,KAAAkC,OATA,CACA,IAAApP,EAAA+N,EAAAoN,KACAA,EAAAF,EAAAjb,KAAAib,EAAAjb,OACA,aAAAoP,EAAAtB,IACAqN,EAAAjO,KAAAnG,MAAAoU,EAAA/L,EAAApB,cAEAmN,EAAAjO,KAAAkC,IAOA,QAAAgM,KAAAH,EACAA,EAAAG,GAAAhT,MAAAiT,YACAJ,EAAAG,GAGA,OAAAH,EAGA,SAAAI,GAAA9L,GACA,OAAAA,EAAAT,YAAAS,EAAAlB,cAAA,MAAAkB,EAAAtB,KAGA,SAAAqN,GACA7C,EACAhR,GAEAA,QACA,QAAAhI,EAAA,EAAiBA,EAAAgZ,EAAArT,OAAgB3F,IACjC2H,MAAAc,QAAAuQ,EAAAhZ,IACA6b,GAAA7C,EAAAhZ,GAAAgI,GAEAA,EAAAgR,EAAAhZ,GAAAuB,KAAAyX,EAAAhZ,GAAAuG,GAGA,OAAAyB,EAKA,IAAA8T,GAAA,KAiQA,SAAAC,GAAA7I,GACA,KAAAA,QAAAsD,UACA,GAAAtD,EAAA8I,UAAuB,SAEvB,SAGA,SAAAC,GAAA/I,EAAAgJ,GACA,GAAAA,GAEA,GADAhJ,EAAAiJ,iBAAA,EACAJ,GAAA7I,GACA,YAEG,GAAAA,EAAAiJ,gBACH,OAEA,GAAAjJ,EAAA8I,WAAA,OAAA9I,EAAA8I,UAAA,CACA9I,EAAA8I,WAAA,EACA,QAAAhc,EAAA,EAAmBA,EAAAkT,EAAAkJ,UAAAzW,OAAyB3F,IAC5Cic,GAAA/I,EAAAkJ,UAAApc,IAEAqc,GAAAnJ,EAAA,cAoBA,SAAAmJ,GAAAnJ,EAAAM,GAEAxF,KACA,IAAAsO,EAAApJ,EAAA0C,SAAApC,GACA,GAAA8I,EACA,QAAAtc,EAAA,EAAAuc,EAAAD,EAAA3W,OAAwC3F,EAAAuc,EAAOvc,IAC/C,IACAsc,EAAAtc,GAAAG,KAAA+S,GACO,MAAAtK,GACPwN,GAAAxN,EAAAsK,EAAAM,EAAA,SAIAN,EAAAsJ,eACAtJ,EAAAuJ,MAAA,QAAAjJ,GAEAtF,KAMA,IAEAwO,MACAC,MACA5P,MAEA6P,IAAA,EACAC,IAAA,EACA3W,GAAA,EAiBA,SAAA4W,KAEA,IAAAC,EAAA1P,EAcA,IAfAwP,IAAA,EAWAH,GAAAM,KAAA,SAAA5V,EAAAc,GAA8B,OAAAd,EAAAiG,GAAAnF,EAAAmF,KAI9BnH,GAAA,EAAiBA,GAAAwW,GAAA/W,OAAsBO,KAEvCmH,GADA0P,EAAAL,GAAAxW,KACAmH,GACAN,GAAAM,GAAA,KACA0P,EAAAE,MAmBA,IAAAC,EAAAP,GAAA3V,QACAmW,EAAAT,GAAA1V,QAnDAd,GAAAwW,GAAA/W,OAAAgX,GAAAhX,OAAA,EACAoH,MAIA6P,GAAAC,IAAA,EAmFA,SAAAH,GACA,QAAA1c,EAAA,EAAiBA,EAAA0c,EAAA/W,OAAkB3F,IACnC0c,EAAA1c,GAAAgc,WAAA,EACAC,GAAAS,EAAA1c,IAAA,GAnCAod,CAAAF,GAUA,SAAAR,GACA,IAAA1c,EAAA0c,EAAA/W,OACA,KAAA3F,KAAA,CACA,IAAA+c,EAAAL,EAAA1c,GACAkT,EAAA6J,EAAA7J,GACAA,EAAAmK,WAAAN,GAAA7J,EAAAoK,YACAjB,GAAAnJ,EAAA,YAfAqK,CAAAJ,GAIAxT,IAAAJ,EAAAI,UACAA,GAAA6T,KAAA,SA+DA,IAAAC,GAAA,EAOAC,GAAA,SACAxK,EACAyK,EACAzF,EACAjE,EACA2J,GAEAzU,KAAA+J,KACA0K,IACA1K,EAAAmK,SAAAlU,MAEA+J,EAAA2K,UAAApQ,KAAAtE,MAEA8K,GACA9K,KAAA2U,OAAA7J,EAAA6J,KACA3U,KAAA4U,OAAA9J,EAAA8J,KACA5U,KAAA6U,OAAA/J,EAAA+J,KACA7U,KAAA8U,OAAAhK,EAAAgK,MAEA9U,KAAA2U,KAAA3U,KAAA4U,KAAA5U,KAAA6U,KAAA7U,KAAA8U,MAAA,EAEA9U,KAAA+O,KACA/O,KAAAkE,KAAAoQ,GACAtU,KAAA+U,QAAA,EACA/U,KAAAgV,MAAAhV,KAAA6U,KACA7U,KAAAiV,QACAjV,KAAAkV,WACAlV,KAAAmV,OAAA,IAAA7R,GACAtD,KAAAoV,UAAA,IAAA9R,GACAtD,KAAAqV,WAEA,GAEA,mBAAAb,EACAxU,KAAA3I,OAAAmd,GAEAxU,KAAA3I,OAzlFA,SAAAie,GACA,IAAA5T,EAAAa,KAAA+S,GAAA,CAGA,IAAAC,EAAAD,EAAA/Y,MAAA,KACA,gBAAArB,GACA,QAAArE,EAAA,EAAmBA,EAAA0e,EAAA/Y,OAAqB3F,IAAA,CACxC,IAAAqE,EAAiB,OACjBA,IAAAqa,EAAA1e,IAEA,OAAAqE,IA+kFAsa,CAAAhB,GACAxU,KAAA3I,SACA2I,KAAA3I,OAAA,eASA2I,KAAAlI,MAAAkI,KAAA6U,UACAza,EACA4F,KAAAtI,OAMA6c,GAAA9b,UAAAf,IAAA,WAEA,IAAAI,EADA+M,GAAA7E,MAEA,IAAA+J,EAAA/J,KAAA+J,GACA,IACAjS,EAAAkI,KAAA3I,OAAAL,KAAA+S,KACG,MAAAtK,GACH,IAAAO,KAAA4U,KAGA,MAAAnV,EAFAwN,GAAAxN,EAAAsK,EAAA,uBAAA/J,KAAA,gBAIG,QAGHA,KAAA2U,MACAzF,GAAApX,GAEAiN,KACA/E,KAAAyV,cAEA,OAAA3d,GAMAyc,GAAA9b,UAAAgM,OAAA,SAAAmD,GACA,IAAA1D,EAAA0D,EAAA1D,GACAlE,KAAAoV,UAAAxR,IAAAM,KACAlE,KAAAoV,UAAAvR,IAAAK,GACAlE,KAAAkV,QAAA5Q,KAAAsD,GACA5H,KAAAmV,OAAAvR,IAAAM,IACA0D,EAAAxD,OAAApE,QAQAuU,GAAA9b,UAAAgd,YAAA,WAIA,IAHA,IAEA5e,EAAAmJ,KAAAiV,KAAAzY,OACA3F,KAAA,CACA,IAAA+Q,EAJA5H,KAIAiV,KAAApe,GAJAmJ,KAKAoV,UAAAxR,IAAAgE,EAAA1D,KACA0D,EAAArD,UANAvE,MASA,IAAA0V,EAAA1V,KAAAmV,OACAnV,KAAAmV,OAAAnV,KAAAoV,UACApV,KAAAoV,UAAAM,EACA1V,KAAAoV,UAAAtR,QACA4R,EAAA1V,KAAAiV,KACAjV,KAAAiV,KAAAjV,KAAAkV,QACAlV,KAAAkV,QAAAQ,EACA1V,KAAAkV,QAAA1Y,OAAA,GAOA+X,GAAA9b,UAAAkM,OAAA,WAEA3E,KAAA6U,KACA7U,KAAAgV,OAAA,EACGhV,KAAA8U,KACH9U,KAAA8T,MA7JA,SAAAF,GACA,IAAA1P,EAAA0P,EAAA1P,GACA,SAAAN,GAAAM,GAAA,CAEA,GADAN,GAAAM,IAAA,EACAwP,GAEK,CAIL,IADA,IAAA7c,EAAA0c,GAAA/W,OAAA,EACA3F,EAAAkG,IAAAwW,GAAA1c,GAAAqN,GAAA0P,EAAA1P,IACArN,IAEA0c,GAAAtW,OAAApG,EAAA,IAAA+c,QARAL,GAAAjP,KAAAsP,GAWAH,KACAA,IAAA,EACA3E,GAAA6E,MA6IAgC,CAAA3V,OAQAuU,GAAA9b,UAAAqb,IAAA,WACA,GAAA9T,KAAA+U,OAAA,CACA,IAAAjd,EAAAkI,KAAAtI,MACA,GACAI,IAAAkI,KAAAlI,OAIAmD,EAAAnD,IACAkI,KAAA2U,KACA,CAEA,IAAAiB,EAAA5V,KAAAlI,MAEA,GADAkI,KAAAlI,QACAkI,KAAA4U,KACA,IACA5U,KAAA+O,GAAA/X,KAAAgJ,KAAA+J,GAAAjS,EAAA8d,GACS,MAAAnW,GACTwN,GAAAxN,EAAAO,KAAA+J,GAAA,yBAAA/J,KAAA,qBAGAA,KAAA+O,GAAA/X,KAAAgJ,KAAA+J,GAAAjS,EAAA8d,MAUArB,GAAA9b,UAAAod,SAAA,WACA7V,KAAAlI,MAAAkI,KAAAtI,MACAsI,KAAAgV,OAAA,GAMAT,GAAA9b,UAAA+L,OAAA,WAIA,IAHA,IAEA3N,EAAAmJ,KAAAiV,KAAAzY,OACA3F,KAHAmJ,KAIAiV,KAAApe,GAAA2N,UAOA+P,GAAA9b,UAAAqd,SAAA,WAGA,GAAA9V,KAAA+U,OAAA,CAIA/U,KAAA+J,GAAAgM,mBACAnZ,EAAAoD,KAAA+J,GAAA2K,UAAA1U,MAGA,IADA,IAAAnJ,EAAAmJ,KAAAiV,KAAAzY,OACA3F,KAVAmJ,KAWAiV,KAAApe,GAAA0N,UAXAvE,MAaAA,KAAA+U,QAAA,IAMA,IAAAiB,IACAve,YAAA,EACAgK,cAAA,EACA/J,IAAAoH,EACA6E,IAAA7E,GAGA,SAAAmX,GAAA/b,EAAAgc,EAAA9d,GACA4d,GAAAte,IAAA,WACA,OAAAsI,KAAAkW,GAAA9d,IAEA4d,GAAArS,IAAA,SAAAnI,GACAwE,KAAAkW,GAAA9d,GAAAoD,GAEAjE,OAAAC,eAAA0C,EAAA9B,EAAA4d,IAGA,SAAAG,GAAApM,GACAA,EAAA2K,aACA,IAAA5R,EAAAiH,EAAA0C,SACA3J,EAAAyH,OAaA,SAAAR,EAAAqM,GACA,IAAAnK,EAAAlC,EAAA0C,SAAAR,cACA1B,EAAAR,EAAA2C,UAGA/M,EAAAoK,EAAA0C,SAAA4J,aACAtM,EAAAsD,SAGArF,IAAA,GAEA,IAAAsO,EAAA,SAAAle,GACAuH,EAAA2E,KAAAlM,GACA,IAAAN,EAAAiU,GAAA3T,EAAAge,EAAAnK,EAAAlC,GAuBAnB,GAAA2B,EAAAnS,EAAAN,GAKAM,KAAA2R,GACAkM,GAAAlM,EAAA,SAAA3R,IAIA,QAAAA,KAAAge,EAAAE,EAAAle,GACA4P,IAAA,GA5DmBuO,CAAAxM,EAAAjH,EAAAyH,OACnBzH,EAAA0H,SAgNA,SAAAT,EAAAS,GACAT,EAAA0C,SAAAlC,MACA,QAAAnS,KAAAoS,EAsBAT,EAAA3R,GAAA,MAAAoS,EAAApS,GAAA0G,EAAAzG,EAAAmS,EAAApS,GAAA2R,GAxOqByM,CAAAzM,EAAAjH,EAAA0H,SACrB1H,EAAAqC,KA6DA,SAAA4E,GACA,IAAA5E,EAAA4E,EAAA0C,SAAAtH,KAIA9J,EAHA8J,EAAA4E,EAAA0M,MAAA,mBAAAtR,EAwCA,SAAAA,EAAA4E,GAEAlF,KACA,IACA,OAAAM,EAAAnO,KAAA+S,KACG,MAAAtK,GAEH,OADAwN,GAAAxN,EAAAsK,EAAA,aAEG,QACHhF,MAhDA2R,CAAAvR,EAAA4E,GACA5E,SAEAA,MAQA,IAAAxF,EAAApI,OAAAoI,KAAAwF,GACAoF,EAAAR,EAAA0C,SAAAlC,MAEA1T,GADAkT,EAAA0C,SAAAjC,QACA7K,EAAAnD,QACA,KAAA3F,KAAA,CACA,IAAAuB,EAAAuH,EAAA9I,GACA,EAQA0T,GAAArN,EAAAqN,EAAAnS,IAMKiJ,EAAAjJ,IACL6d,GAAAlM,EAAA,QAAA3R,GAIAoQ,GAAArD,GAAA,GAnGAwR,CAAA5M,GAEAvB,GAAAuB,EAAA0M,UAAyB,GAEzB3T,EAAA4H,UAiHA,SAAAX,EAAAW,GAEA,IAAAkM,EAAA7M,EAAA8M,kBAAAtf,OAAAY,OAAA,MAEA2e,EAAA9T,KAEA,QAAA5K,KAAAsS,EAAA,CACA,IAAAqM,EAAArM,EAAAtS,GACAf,EAAA,mBAAA0f,MAAArf,IACA,EAOAof,IAEAF,EAAAxe,GAAA,IAAAmc,GACAxK,EACA1S,GAAAyH,EACAA,EACAkY,KAOA5e,KAAA2R,GACAkN,GAAAlN,EAAA3R,EAAA2e,IA/IsBG,CAAAnN,EAAAjH,EAAA4H,UACtB5H,EAAAF,OAAAE,EAAAF,QAAAD,IAqOA,SAAAoH,EAAAnH,GACA,QAAAxK,KAAAwK,EAAA,CACA,IAAAuU,EAAAvU,EAAAxK,GACA,GAAAoG,MAAAc,QAAA6X,GACA,QAAAtgB,EAAA,EAAqBA,EAAAsgB,EAAA3a,OAAoB3F,IACzCugB,GAAArN,EAAA3R,EAAA+e,EAAAtgB,SAGAugB,GAAArN,EAAA3R,EAAA+e,IA5OAE,CAAAtN,EAAAjH,EAAAF,OA6GA,IAAAoU,IAA8BnC,MAAA,GA2C9B,SAAAoC,GACA/c,EACA9B,EACA2e,GAEA,IAAAO,GAAAtU,KACA,mBAAA+T,GACAf,GAAAte,IAAA4f,EACAC,GAAAnf,GACA2e,EACAf,GAAArS,IAAA7E,IAEAkX,GAAAte,IAAAqf,EAAArf,IACA4f,IAAA,IAAAP,EAAA1Z,MACAka,GAAAnf,GACA2e,EAAArf,IACAoH,EACAkX,GAAArS,IAAAoT,EAAApT,IACAoT,EAAApT,IACA7E,GAWAvH,OAAAC,eAAA0C,EAAA9B,EAAA4d,IAGA,SAAAuB,GAAAnf,GACA,kBACA,IAAAwb,EAAA5T,KAAA6W,mBAAA7W,KAAA6W,kBAAAze,GACA,GAAAwb,EAOA,OANAA,EAAAoB,OACApB,EAAAiC,WAEA5R,GAAA/J,QACA0Z,EAAApP,SAEAoP,EAAA9b,OA8CA,SAAAsf,GACArN,EACAyK,EACA2C,EACArM,GASA,OAPAzP,EAAA8b,KACArM,EAAAqM,EACAA,aAEA,iBAAAA,IACAA,EAAApN,EAAAoN,IAEApN,EAAAyN,OAAAhD,EAAA2C,EAAArM,GAoFA,SAAA2M,GAAAhN,EAAAV,GACA,GAAAU,EAAA,CAUA,IARA,IAAAjD,EAAAjQ,OAAAY,OAAA,MACAwH,EAAA4D,GACAC,QAAAC,QAAAgH,GAAAiN,OAAA,SAAAtf,GAEA,OAAAb,OAAAwR,yBAAA0B,EAAArS,GAAAX,aAEAF,OAAAoI,KAAA8K,GAEA5T,EAAA,EAAmBA,EAAA8I,EAAAnD,OAAiB3F,IAAA,CAIpC,IAHA,IAAAuB,EAAAuH,EAAA9I,GACA8gB,EAAAlN,EAAArS,GAAAqR,KACArQ,EAAA2Q,EACA3Q,GAAA,CACA,GAAAA,EAAAwe,WAAA1a,EAAA9D,EAAAwe,UAAAD,GAAA,CACAnQ,EAAApP,GAAAgB,EAAAwe,UAAAD,GACA,MAEAve,IAAAiU,QAEA,IAAAjU,EACA,eAAAqR,EAAArS,GAAA,CACA,IAAAyf,EAAApN,EAAArS,GAAAoU,QACAhF,EAAApP,GAAA,mBAAAyf,EACAA,EAAA7gB,KAAA+S,GACA8N,OACS,EAKT,OAAArQ,GASA,SAAAsQ,GACAtc,EACAuc,GAEA,IAAAxZ,EAAA1H,EAAAC,EAAA6I,EAAAvH,EACA,GAAAoG,MAAAc,QAAA9D,IAAA,iBAAAA,EAEA,IADA+C,EAAA,IAAAC,MAAAhD,EAAAgB,QACA3F,EAAA,EAAAC,EAAA0E,EAAAgB,OAA+B3F,EAAAC,EAAOD,IACtC0H,EAAA1H,GAAAkhB,EAAAvc,EAAA3E,WAEG,oBAAA2E,EAEH,IADA+C,EAAA,IAAAC,MAAAhD,GACA3E,EAAA,EAAeA,EAAA2E,EAAS3E,IACxB0H,EAAA1H,GAAAkhB,EAAAlhB,EAAA,EAAAA,QAEG,GAAAoE,EAAAO,GAGH,IAFAmE,EAAApI,OAAAoI,KAAAnE,GACA+C,EAAA,IAAAC,MAAAmB,EAAAnD,QACA3F,EAAA,EAAAC,EAAA6I,EAAAnD,OAAgC3F,EAAAC,EAAOD,IACvCuB,EAAAuH,EAAA9I,GACA0H,EAAA1H,GAAAkhB,EAAAvc,EAAApD,KAAAvB,GAMA,OAHAiE,EAAAyD,KACA,EAAAgT,UAAA,GAEAhT,EAQA,SAAAyZ,GACA5gB,EACA6gB,EACA1N,EACA2N,GAEA,IACAC,EADAC,EAAApY,KAAAqY,aAAAjhB,GAEA,GAAAghB,EACA7N,QACA2N,IAOA3N,EAAA9L,OAA8ByZ,GAAA3N,IAE9B4N,EAAAC,EAAA7N,IAAA0N,MACG,CACH,IAAAK,EAAAtY,KAAAuY,OAAAnhB,GAEAkhB,IAQAA,EAAAE,WAAA,GAEAL,EAAAG,GAAAL,EAGA,IAAA/d,EAAAqQ,KAAAgI,KACA,OAAArY,EACA8F,KAAAyY,eAAA,YAA4ClG,KAAArY,GAAeie,GAE3DA,EASA,SAAAO,GAAAxU,GACA,OAAAwH,GAAA1L,KAAAyM,SAAA,UAAAvI,IAAAjF,EAKA,SAAA0Z,GAAAC,EAAAC,GACA,OAAAra,MAAAc,QAAAsZ,IACA,IAAAA,EAAA5b,QAAA6b,GAEAD,IAAAC,EASA,SAAAC,GACAC,EACA3gB,EACA4gB,EACAC,EACAC,GAEA,IAAAC,EAAA/Y,EAAAS,SAAAzI,IAAA4gB,EACA,OAAAE,GAAAD,IAAA7Y,EAAAS,SAAAzI,GACAugB,GAAAO,EAAAD,GACGE,EACHR,GAAAQ,EAAAJ,GACGE,EACHlb,EAAAkb,KAAA7gB,OADG,EAUH,SAAAghB,GACAjU,EACAD,EACApN,EACAuhB,EACAC,GAEA,GAAAxhB,EACA,GAAAmD,EAAAnD,GAKK,CAIL,IAAA+Y,EAHArS,MAAAc,QAAAxH,KACAA,EAAA8G,EAAA9G,IAGA,IAAAwe,EAAA,SAAAle,GACA,GACA,UAAAA,GACA,UAAAA,GACAuE,EAAAvE,GAEAyY,EAAA1L,MACS,CACT,IAAAhM,EAAAgM,EAAAmN,OAAAnN,EAAAmN,MAAAnZ,KACA0X,EAAAwI,GAAAjZ,EAAAe,YAAA+D,EAAA/L,EAAAf,GACA+M,EAAAoU,WAAApU,EAAAoU,aACApU,EAAAmN,QAAAnN,EAAAmN,UAEAla,KAAAyY,IACAA,EAAAzY,GAAAN,EAAAM,GAEAkhB,KACAnU,EAAA8K,KAAA9K,EAAA8K,QACA,UAAA7X,GAAA,SAAAohB,GACA1hB,EAAAM,GAAAohB,MAMA,QAAAphB,KAAAN,EAAAwe,EAAAle,QAGA,OAAA+M,EAQA,SAAAsU,GACA1c,EACA2c,GAEA,IAAAvc,EAAA6C,KAAA2Z,eAAA3Z,KAAA2Z,iBACAC,EAAAzc,EAAAJ,GAGA,OAAA6c,IAAAF,EACAE,GAQAC,GALAD,EAAAzc,EAAAJ,GAAAiD,KAAAyM,SAAAqN,gBAAA/c,GAAA/F,KACAgJ,KAAA+Z,aACA,KACA/Z,MAEA,aAAAjD,GAAA,GACA6c,GAOA,SAAAI,GACAJ,EACA7c,EACA3E,GAGA,OADAyhB,GAAAD,EAAA,WAAA7c,GAAA3E,EAAA,IAAAA,EAAA,QACAwhB,EAGA,SAAAC,GACAD,EACAxhB,EACAgO,GAEA,GAAA5H,MAAAc,QAAAsa,GACA,QAAA/iB,EAAA,EAAmBA,EAAA+iB,EAAApd,OAAiB3F,IACpC+iB,EAAA/iB,IAAA,iBAAA+iB,EAAA/iB,IACAojB,GAAAL,EAAA/iB,GAAAuB,EAAA,IAAAvB,EAAAuP,QAIA6T,GAAAL,EAAAxhB,EAAAgO,GAIA,SAAA6T,GAAAtT,EAAAvO,EAAAgO,GACAO,EAAAX,UAAA,EACAW,EAAAvO,MACAuO,EAAAP,SAKA,SAAA8T,GAAA/U,EAAArN,GACA,GAAAA,EACA,GAAAuD,EAAAvD,GAKK,CACL,IAAAmY,EAAA9K,EAAA8K,GAAA9K,EAAA8K,GAAAxR,KAA4C0G,EAAA8K,OAC5C,QAAA7X,KAAAN,EAAA,CACA,IAAAqiB,EAAAlK,EAAA7X,GACAgiB,EAAAtiB,EAAAM,GACA6X,EAAA7X,GAAA+hB,KAAAhQ,OAAAgQ,EAAAC,WAIA,OAAAjV,EAKA,SAAAkV,GAAAngB,GACAA,EAAAogB,GAAAN,GACA9f,EAAAqgB,GAAAve,EACA9B,EAAAsgB,GAAApf,EACAlB,EAAAugB,GAAA3C,GACA5d,EAAAwgB,GAAA1C,GACA9d,EAAAygB,GAAAzb,EACAhF,EAAA0gB,GAAA/a,EACA3F,EAAA2gB,GAAApB,GACAvf,EAAA4gB,GAAApC,GACAxe,EAAA6gB,GAAAjC,GACA5e,EAAA8gB,GAAA5B,GACAlf,EAAA+gB,GAAArU,GACA1M,EAAAghB,GAAAxU,GACAxM,EAAAihB,GAAAzI,GACAxY,EAAAkhB,GAAAlB,GAKA,SAAAmB,GACAlW,EACAoF,EACAnF,EACAU,EACAzC,GAEA,IAGAiY,EAHAxQ,EAAAzH,EAAAyH,QAIA5N,EAAA4I,EAAA,SACAwV,EAAA/jB,OAAAY,OAAA2N,IAEAyV,UAAAzV,GAKAwV,EAAAxV,EAEAA,IAAAyV,WAEA,IAAAC,EAAAzgB,EAAA+P,EAAA2Q,WACAC,GAAAF,EAEAxb,KAAAmF,OACAnF,KAAAuK,QACAvK,KAAAoF,WACApF,KAAA8F,SACA9F,KAAAkS,UAAA/M,EAAA8K,IAAAvV,EACAsF,KAAA2b,WAAAlE,GAAA3M,EAAAL,OAAA3E,GACA9F,KAAAqS,MAAA,WAA4B,OAAAD,GAAAhN,EAAAU,IAG5B0V,IAEAxb,KAAAyM,SAAA3B,EAEA9K,KAAAuY,OAAAvY,KAAAqS,QACArS,KAAAqY,aAAAlT,EAAAyW,aAAAlhB,GAGAoQ,EAAA+Q,SACA7b,KAAA8b,GAAA,SAAA7d,EAAAc,EAAA7H,EAAAC,GACA,IAAA2P,EAAAiV,GAAAT,EAAArd,EAAAc,EAAA7H,EAAAC,EAAAukB,GAKA,OAJA5U,IAAAtI,MAAAc,QAAAwH,KACAA,EAAAlB,UAAAkF,EAAA+Q,SACA/U,EAAApB,UAAAI,GAEAgB,GAGA9G,KAAA8b,GAAA,SAAA7d,EAAAc,EAAA7H,EAAAC,GAAqC,OAAA4kB,GAAAT,EAAArd,EAAAc,EAAA7H,EAAAC,EAAAukB,IA+CrC,SAAAM,GAAAlV,EAAA3B,EAAAmW,EAAAxQ,GAIA,IAAAmR,EAAApV,GAAAC,GAMA,OALAmV,EAAAvW,UAAA4V,EACAW,EAAAtW,UAAAmF,EACA3F,EAAAoN,QACA0J,EAAA9W,OAAA8W,EAAA9W,UAAmCoN,KAAApN,EAAAoN,MAEnC0J,EAGA,SAAAC,GAAAxd,EAAA+K,GACA,QAAArR,KAAAqR,EACA/K,EAAAnB,EAAAnF,IAAAqR,EAAArR,GA1DAiiB,GAAAgB,GAAA5iB,WAoFA,IAAA0jB,IACAC,KAAA,SACAtV,EACAuV,EACAC,EACAC,GAEA,GACAzV,EAAAjB,oBACAiB,EAAAjB,kBAAA2W,cACA1V,EAAA3B,KAAAsX,UACA,CAEA,IAAAC,EAAA5V,EACAqV,GAAAQ,SAAAD,SACK,EACL5V,EAAAjB,kBAgKA,SACAiB,EACAhB,EACAwW,EACAC,GAEA,IAAAzR,GACA8R,cAAA,EACA9W,SACA+W,aAAA/V,EACAgW,WAAAR,GAAA,KACAS,QAAAR,GAAA,MAGAS,EAAAlW,EAAA3B,KAAA6X,eACAliB,EAAAkiB,KACAlS,EAAAiN,OAAAiF,EAAAjF,OACAjN,EAAAgP,gBAAAkD,EAAAlD,iBAEA,WAAAhT,EAAAtB,iBAAAnC,KAAAyH,GAnLAmS,CACAnW,EACA6L,GACA2J,EACAC,IAEAW,OAAAb,EAAAvV,EAAAxB,SAAAlL,EAAAiiB,KAIAM,SAAA,SAAAQ,EAAArW,GACA,IAAAgE,EAAAhE,EAAAtB,kBAvzCA,SACAuE,EACAkC,EACAiG,EACAkL,EACAC,GAQA,IAAAC,KACAD,GACAtT,EAAA0C,SAAA8Q,iBACAH,EAAAjY,KAAAyW,aACA7R,EAAAsO,eAAA3d,GAkBA,GAfAqP,EAAA0C,SAAAoQ,aAAAO,EACArT,EAAAyT,OAAAJ,EAEArT,EAAA0T,SACA1T,EAAA0T,OAAA3X,OAAAsX,GAEArT,EAAA0C,SAAA8Q,gBAAAF,EAKAtT,EAAA2T,OAAAN,EAAAjY,KAAAmN,OAAA5X,EACAqP,EAAA4T,WAAAzL,GAAAxX,EAGAuR,GAAAlC,EAAA0C,SAAAlC,MAAA,CACAvC,IAAA,GAGA,IAFA,IAAAuC,EAAAR,EAAA2C,OACAkR,EAAA7T,EAAA0C,SAAA4J,cACAxf,EAAA,EAAmBA,EAAA+mB,EAAAphB,OAAqB3F,IAAA,CACxC,IAAAuB,EAAAwlB,EAAA/mB,GACAmV,EAAAjC,EAAA0C,SAAAlC,MACAA,EAAAnS,GAAA2T,GAAA3T,EAAA4T,EAAAC,EAAAlC,GAEA/B,IAAA,GAEA+B,EAAA0C,SAAAR,YAIAiG,KAAAxX,EACA,IAAAyX,EAAApI,EAAA0C,SAAAoR,iBACA9T,EAAA0C,SAAAoR,iBAAA3L,EACAD,GAAAlI,EAAAmI,EAAAC,GAGAmL,IACAvT,EAAAwO,OAAAnG,GAAAiL,EAAAD,EAAA7X,SACAwE,EAAA+T,gBA+vCAC,CADAjX,EAAAjB,kBAAAsX,EAAAtX,kBAGAiF,EAAAmB,UACAnB,EAAAoH,UACApL,EACAgE,EAAA1F,WAIA4Y,OAAA,SAAAlX,GACA,IAAAvB,EAAAuB,EAAAvB,QACAM,EAAAiB,EAAAjB,kBACAA,EAAAsO,aACAtO,EAAAsO,YAAA,EACAjB,GAAArN,EAAA,YAEAiB,EAAA3B,KAAAsX,YACAlX,EAAA4O,WA1mCA,SAAApK,GAGAA,EAAA8I,WAAA,EACAW,GAAAlP,KAAAyF,GA4mCAkU,CAAApY,GAEAiN,GAAAjN,GAAA,KAKAqY,QAAA,SAAApX,GACA,IAAAjB,EAAAiB,EAAAjB,kBACAA,EAAA2W,eACA1V,EAAA3B,KAAAsX,UA/vCA,SAAA0B,EAAApU,EAAAgJ,GACA,KAAAA,IACAhJ,EAAAiJ,iBAAA,EACAJ,GAAA7I,KAIAA,EAAA8I,WAAA,CACA9I,EAAA8I,WAAA,EACA,QAAAhc,EAAA,EAAmBA,EAAAkT,EAAAkJ,UAAAzW,OAAyB3F,IAC5CsnB,EAAApU,EAAAkJ,UAAApc,IAEAqc,GAAAnJ,EAAA,gBAsvCAoU,CAAAtY,GAAA,GAFAA,EAAAuY,cAQAC,GAAA9mB,OAAAoI,KAAAwc,IAEA,SAAAmC,GACAjb,EACA8B,EACAI,EACAH,EACAF,GAEA,IAAAtK,EAAAyI,GAAA,CAIA,IAAAkb,EAAAhZ,EAAAkH,SAAA+R,MASA,GANAvjB,EAAAoI,KACAA,EAAAkb,EAAA9f,OAAA4E,IAKA,mBAAAA,EAAA,CAQA,IAAAoC,EACA,GAAA7K,EAAAyI,EAAAob,WAGArkB,KADAiJ,EA54DA,SACAqb,EACAH,EACAhZ,GAEA,GAAAxK,EAAA2jB,EAAA/Q,QAAA7S,EAAA4jB,EAAAC,WACA,OAAAD,EAAAC,UAGA,GAAA7jB,EAAA4jB,EAAAE,UACA,OAAAF,EAAAE,SAGA,GAAA7jB,EAAA2jB,EAAAG,UAAA/jB,EAAA4jB,EAAAI,aACA,OAAAJ,EAAAI,YAGA,IAAAhkB,EAAA4jB,EAAAK,UAGG,CACH,IAAAA,EAAAL,EAAAK,UAAAxZ,GACAuP,GAAA,EAEAkK,EAAA,WACA,QAAAnoB,EAAA,EAAAC,EAAAioB,EAAAviB,OAA0C3F,EAAAC,EAAOD,IACjDkoB,EAAAloB,GAAAinB,gBAIAlP,EAAA9O,EAAA,SAAAjB,GAEA6f,EAAAE,SAAAnN,GAAA5S,EAAA0f,GAGAzJ,GACAkK,MAIAC,EAAAnf,EAAA,SAAAof,GAKApkB,EAAA4jB,EAAAC,aACAD,EAAA/Q,OAAA,EACAqR,OAIAngB,EAAA6f,EAAA9P,EAAAqQ,GA6CA,OA3CAhkB,EAAA4D,KACA,mBAAAA,EAAAgQ,KAEAjU,EAAA8jB,EAAAE,WACA/f,EAAAgQ,KAAAD,EAAAqQ,GAEOnkB,EAAA+D,EAAAsgB,YAAA,mBAAAtgB,EAAAsgB,UAAAtQ,OACPhQ,EAAAsgB,UAAAtQ,KAAAD,EAAAqQ,GAEAnkB,EAAA+D,EAAA8O,SACA+Q,EAAAC,UAAAlN,GAAA5S,EAAA8O,MAAA4Q,IAGAzjB,EAAA+D,EAAAggB,WACAH,EAAAI,YAAArN,GAAA5S,EAAAggB,QAAAN,GACA,IAAA1f,EAAAugB,MACAV,EAAAG,SAAA,EAEAzQ,WAAA,WACAxT,EAAA8jB,EAAAE,WAAAhkB,EAAA8jB,EAAA/Q,SACA+Q,EAAAG,SAAA,EACAG,MAEangB,EAAAugB,OAAA,MAIbtkB,EAAA+D,EAAAwgB,UACAjR,WAAA,WACAxT,EAAA8jB,EAAAE,WACAK,EAGA,OAGWpgB,EAAAwgB,WAKXvK,GAAA,EAEA4J,EAAAG,QACAH,EAAAI,YACAJ,EAAAE,SA/EAF,EAAAK,SAAAza,KAAAiB,GAy3DA+Z,CADA7Z,EAAApC,EACAkb,EAAAhZ,IAKA,OA95DA,SACAmZ,EACAvZ,EACAI,EACAH,EACAF,GAEA,IAAAyB,EAAAD,KAGA,OAFAC,EAAAlB,aAAAiZ,EACA/X,EAAAN,WAAoBlB,OAAAI,UAAAH,WAAAF,OACpByB,EAo5DA4Y,CACA9Z,EACAN,EACAI,EACAH,EACAF,GAKAC,QAIAqa,GAAAnc,GAGAvI,EAAAqK,EAAAsa,QAkFA,SAAA3U,EAAA3F,GACA,IAAA+G,EAAApB,EAAA2U,OAAA3U,EAAA2U,MAAAvT,MAAA,QACAmE,EAAAvF,EAAA2U,OAAA3U,EAAA2U,MAAApP,OAAA,SAAgElL,EAAAoF,QAAApF,EAAAoF,WAA+B2B,GAAA/G,EAAAsa,MAAA3nB,MAC/F,IAAAmY,EAAA9K,EAAA8K,KAAA9K,EAAA8K,OACAnV,EAAAmV,EAAAI,IACAJ,EAAAI,IAAAlL,EAAAsa,MAAAC,UAAAvV,OAAA8F,EAAAI,IAEAJ,EAAAI,GAAAlL,EAAAsa,MAAAC,SAxFAC,CAAAtc,EAAAyH,QAAA3F,GAIA,IAAA8G,EA3lEA,SACA9G,EACA9B,EACA6B,GAKA,IAAA8G,EAAA3I,EAAAyH,QAAAP,MACA,IAAA3P,EAAAoR,GAAA,CAGA,IAAAnN,KACAyT,EAAAnN,EAAAmN,MACA/H,EAAApF,EAAAoF,MACA,GAAAzP,EAAAwX,IAAAxX,EAAAyP,GACA,QAAAnS,KAAA4T,EAAA,CACA,IAAA8E,EAAA/S,EAAA3F,GAiBAwY,GAAA/R,EAAA0L,EAAAnS,EAAA0Y,GAAA,IACAF,GAAA/R,EAAAyT,EAAAla,EAAA0Y,GAAA,GAGA,OAAAjS,GAqjEA+gB,CAAAza,EAAA9B,GAGA,GAAAtI,EAAAsI,EAAAyH,QAAA+U,YACA,OAzNA,SACAxc,EACA4I,EACA9G,EACAmW,EACAlW,GAEA,IAAA0F,EAAAzH,EAAAyH,QACAP,KACAyB,EAAAlB,EAAAP,MACA,GAAAzP,EAAAkR,GACA,QAAA5T,KAAA4T,EACAzB,EAAAnS,GAAA2T,GAAA3T,EAAA4T,EAAAC,GAAAvR,QAGAI,EAAAqK,EAAAmN,QAA4B4J,GAAA3R,EAAApF,EAAAmN,OAC5BxX,EAAAqK,EAAAoF,QAA4B2R,GAAA3R,EAAApF,EAAAoF,OAG5B,IAAAuV,EAAA,IAAAzE,GACAlW,EACAoF,EACAnF,EACAkW,EACAjY,GAGAyD,EAAAgE,EAAAiN,OAAA/gB,KAAA,KAAA8oB,EAAAhE,GAAAgE,GAEA,GAAAhZ,aAAA7B,GACA,OAAA+W,GAAAlV,EAAA3B,EAAA2a,EAAAha,OAAAgF,GACG,GAAAtM,MAAAc,QAAAwH,GAAA,CAGH,IAFA,IAAAiZ,EAAA/O,GAAAlK,OACAjI,EAAA,IAAAL,MAAAuhB,EAAAvjB,QACA3F,EAAA,EAAmBA,EAAAkpB,EAAAvjB,OAAmB3F,IACtCgI,EAAAhI,GAAAmlB,GAAA+D,EAAAlpB,GAAAsO,EAAA2a,EAAAha,OAAAgF,GAEA,OAAAjM,GAoLAmhB,CAAA3c,EAAA4I,EAAA9G,EAAAI,EAAAH,GAKA,IAAA8M,EAAA/M,EAAA8K,GAKA,GAFA9K,EAAA8K,GAAA9K,EAAA8a,SAEAllB,EAAAsI,EAAAyH,QAAAoV,UAAA,CAKA,IAAA3N,EAAApN,EAAAoN,KACApN,KACAoN,IACApN,EAAAoN,SA6CA,SAAApN,GAEA,IADA,IAAAmI,EAAAnI,EAAAkF,OAAAlF,EAAAkF,SACAxT,EAAA,EAAiBA,EAAAwnB,GAAA7hB,OAAyB3F,IAAA,CAC1C,IAAAuB,EAAAimB,GAAAxnB,GACAyW,EAAAlV,GAAA+jB,GAAA/jB,IA5CA+nB,CAAAhb,GAGA,IAAA/N,EAAAiM,EAAAyH,QAAA1T,MAAA8N,EAYA,OAXA,IAAAD,GACA,iBAAA5B,EAAA,KAAAjM,EAAA,IAAAA,EAAA,IACA+N,OAAA/K,gBAAAmL,GACKlC,OAAA4I,YAAAiG,YAAAhN,MAAAE,YACLK,KAuDA,IAAA2a,GAAA,EACAC,GAAA,EAIA,SAAAtE,GACAxW,EACAL,EACAC,EACAC,EACAkb,EACAC,GAUA,OARA/hB,MAAAc,QAAA6F,IAAAnK,EAAAmK,MACAmb,EAAAlb,EACAA,EAAAD,EACAA,OAAA/K,GAEAW,EAAAwlB,KACAD,EAAAD,IAKA,SACA9a,EACAL,EACAC,EACAC,EACAkb,GAEA,GAAAxlB,EAAAqK,IAAArK,EAAA,EAAA4M,QAMA,OAAAhB,KAGA5L,EAAAqK,IAAArK,EAAAqK,EAAAqb,MACAtb,EAAAC,EAAAqb,IAEA,IAAAtb,EAEA,OAAAwB,KAGA,EAYAlI,MAAAc,QAAA8F,IACA,mBAAAA,EAAA,MAEAD,SACAyW,aAAwBpP,QAAApH,EAAA,IACxBA,EAAA5I,OAAA,GAEA8jB,IAAAD,GACAjb,EAAA4L,GAAA5L,GACGkb,IAAAF,KACHhb,EA3qEA,SAAAA,GACA,QAAAvO,EAAA,EAAiBA,EAAAuO,EAAA5I,OAAqB3F,IACtC,GAAA2H,MAAAc,QAAA8F,EAAAvO,IACA,OAAA2H,MAAA/F,UAAA0R,OAAAhM,SAAAiH,GAGA,OAAAA,EAqqEAqb,CAAArb,IAEA,IAAA0B,EAAA5O,EACA,oBAAAgN,EAAA,CACA,IAAA7B,EACAnL,EAAAqN,EAAAiY,QAAAjY,EAAAiY,OAAAtlB,IAAAkI,EAAAa,gBAAAiE,GAGA4B,EAFA1G,EAAAU,cAAAoE,GAEA,IAAAD,GACA7E,EAAAc,qBAAAgE,GAAAC,EAAAC,OACAhL,SAAAmL,GAEKzK,EAAAuI,EAAAqI,GAAAnG,EAAAkH,SAAA,aAAAvH,IAELoZ,GAAAjb,EAAA8B,EAAAI,EAAAH,EAAAF,GAKA,IAAAD,GACAC,EAAAC,EAAAC,OACAhL,SAAAmL,QAKAuB,EAAAwX,GAAApZ,EAAAC,EAAAI,EAAAH,GAEA,OAAA5G,MAAAc,QAAAwH,GACAA,EACGhM,EAAAgM,IACHhM,EAAA5C,IAQA,SAAAwoB,EAAA5Z,EAAA5O,EAAAyoB,GACA7Z,EAAA5O,KACA,kBAAA4O,EAAA5B,MAEAhN,OAAAkC,EACAumB,GAAA,GAEA,GAAA7lB,EAAAgM,EAAA1B,UACA,QAAAvO,EAAA,EAAAC,EAAAgQ,EAAA1B,SAAA5I,OAA8C3F,EAAAC,EAAOD,IAAA,CACrD,IAAA2P,EAAAM,EAAA1B,SAAAvO,GACAiE,EAAA0L,EAAAtB,OACAtK,EAAA4L,EAAAtO,KAAA6C,EAAA4lB,IAAA,QAAAna,EAAAtB,MACAwb,EAAAla,EAAAtO,EAAAyoB,IApBoBD,CAAA5Z,EAAA5O,GACpB4C,EAAAqK,IA4BA,SAAAA,GACAlK,EAAAkK,EAAAyb,QACA1R,GAAA/J,EAAAyb,OAEA3lB,EAAAkK,EAAA0b,QACA3R,GAAA/J,EAAA0b,OAjCsBC,CAAA3b,GACtB2B,GAEAJ,KApFAqa,CAAAxb,EAAAL,EAAAC,EAAAC,EAAAkb,GAmOA,IAAAU,GAAA,EAkFA,SAAAxB,GAAAnc,GACA,IAAAyH,EAAAzH,EAAAyH,QACA,GAAAzH,EAAA4d,MAAA,CACA,IAAAC,EAAA1B,GAAAnc,EAAA4d,OAEA,GAAAC,IADA7d,EAAA6d,aACA,CAGA7d,EAAA6d,eAEA,IAAAC,EAcA,SAAA9d,GACA,IAAA+d,EACAC,EAAAhe,EAAAyH,QACAwW,EAAAje,EAAAke,cACAC,EAAAne,EAAAoe,cACA,QAAArpB,KAAAipB,EACAA,EAAAjpB,KAAAopB,EAAAppB,KACAgpB,IAAsBA,MACtBA,EAAAhpB,GAAAspB,GAAAL,EAAAjpB,GAAAkpB,EAAAlpB,GAAAopB,EAAAppB,KAGA,OAAAgpB,EAzBAO,CAAAte,GAEA8d,GACA1iB,EAAA4E,EAAAke,cAAAJ,IAEArW,EAAAzH,EAAAyH,QAAAD,GAAAqW,EAAA7d,EAAAke,gBACAnqB,OACA0T,EAAA8W,WAAA9W,EAAA1T,MAAAiM,IAIA,OAAAyH,EAiBA,SAAA4W,GAAAL,EAAAC,EAAAE,GAGA,GAAAhjB,MAAAc,QAAA+hB,GAAA,CACA,IAAAxiB,KACA2iB,EAAAhjB,MAAAc,QAAAkiB,SACAF,EAAA9iB,MAAAc,QAAAgiB,SACA,QAAAzqB,EAAA,EAAmBA,EAAAwqB,EAAA7kB,OAAmB3F,KAEtCyqB,EAAAtkB,QAAAqkB,EAAAxqB,KAAA,GAAA2qB,EAAAxkB,QAAAqkB,EAAAxqB,IAAA,IACAgI,EAAAyF,KAAA+c,EAAAxqB,IAGA,OAAAgI,EAEA,OAAAwiB,EAIA,SAAAQ,GAAA/W,GAMA9K,KAAA8hB,MAAAhX,GA0CA,SAAAiX,GAAAF,GAMAA,EAAApD,IAAA,EACA,IAAAA,EAAA,EAKAoD,EAAApjB,OAAA,SAAA8iB,GACAA,QACA,IAAAS,EAAAhiB,KACAiiB,EAAAD,EAAAvD,IACAyD,EAAAX,EAAAY,QAAAZ,EAAAY,UACA,GAAAD,EAAAD,GACA,OAAAC,EAAAD,GAGA,IAAA7qB,EAAAmqB,EAAAnqB,MAAA4qB,EAAAlX,QAAA1T,KAKA,IAAAgrB,EAAA,SAAAtX,GACA9K,KAAA8hB,MAAAhX,IA6CA,OA3CAsX,EAAA3pB,UAAAlB,OAAAY,OAAA6pB,EAAAvpB,YACA4pB,YAAAD,EACAA,EAAA3D,QACA2D,EAAAtX,QAAAD,GACAmX,EAAAlX,QACAyW,GAEAa,EAAA,MAAAJ,EAKAI,EAAAtX,QAAAP,OAmCA,SAAA+X,GACA,IAAA/X,EAAA+X,EAAAxX,QAAAP,MACA,QAAAnS,KAAAmS,EACA0L,GAAAqM,EAAA7pB,UAAA,SAAAL,GArCAmqB,CAAAH,GAEAA,EAAAtX,QAAAJ,UAuCA,SAAA4X,GACA,IAAA5X,EAAA4X,EAAAxX,QAAAJ,SACA,QAAAtS,KAAAsS,EACAuM,GAAAqL,EAAA7pB,UAAAL,EAAAsS,EAAAtS,IAzCAoqB,CAAAJ,GAIAA,EAAA3jB,OAAAujB,EAAAvjB,OACA2jB,EAAAK,MAAAT,EAAAS,MACAL,EAAAM,IAAAV,EAAAU,IAIAxiB,EAAAgH,QAAA,SAAA/N,GACAipB,EAAAjpB,GAAA6oB,EAAA7oB,KAGA/B,IACAgrB,EAAAtX,QAAA8W,WAAAxqB,GAAAgrB,GAMAA,EAAAlB,aAAAc,EAAAlX,QACAsX,EAAAb,gBACAa,EAAAX,cAAAhjB,KAAiC2jB,EAAAtX,SAGjCoX,EAAAD,GAAAG,EACAA,GAoDA,SAAAO,GAAA7f,GACA,OAAAA,MAAAO,KAAAyH,QAAA1T,MAAA0L,EAAAoC,KAGA,SAAA0d,GAAAC,EAAAzrB,GACA,OAAAoH,MAAAc,QAAAujB,GACAA,EAAA7lB,QAAA5F,IAAA,EACG,iBAAAyrB,EACHA,EAAAtmB,MAAA,KAAAS,QAAA5F,IAAA,IACGkE,EAAAunB,IACHA,EAAAtgB,KAAAnL,GAMA,SAAA0rB,GAAAC,EAAArL,GACA,IAAAra,EAAA0lB,EAAA1lB,MACAsC,EAAAojB,EAAApjB,KACA8d,EAAAsF,EAAAtF,OACA,QAAArlB,KAAAiF,EAAA,CACA,IAAA2lB,EAAA3lB,EAAAjF,GACA,GAAA4qB,EAAA,CACA,IAAA5rB,EAAAurB,GAAAK,EAAAxd,kBACApO,IAAAsgB,EAAAtgB,IACA6rB,GAAA5lB,EAAAjF,EAAAuH,EAAA8d,KAMA,SAAAwF,GACA5lB,EACAjF,EACAuH,EACAujB,GAEA,IAAAC,EAAA9lB,EAAAjF,IACA+qB,GAAAD,GAAAC,EAAAje,MAAAge,EAAAhe,KACAie,EAAAtd,kBAAAuY,WAEA/gB,EAAAjF,GAAA,KACAwE,EAAA+C,EAAAvH,IA/VA,SAAAypB,GACAA,EAAAppB,UAAAqpB,MAAA,SAAAhX,GACA,IAAAf,EAAA/J,KAEA+J,EAAAqZ,KAAApC,KAWAjX,EAAApB,QAAA,EAEAmC,KAAA8R,aA0CA,SAAA7S,EAAAe,GACA,IAAAhI,EAAAiH,EAAA0C,SAAAlV,OAAAY,OAAA4R,EAAAsY,YAAAvX,SAEAsS,EAAAtS,EAAA+R,aACA/Z,EAAAgD,OAAAgF,EAAAhF,OACAhD,EAAA+Z,aAAAO,EACAta,EAAAga,WAAAhS,EAAAgS,WACAha,EAAAia,QAAAjS,EAAAiS,QAEA,IAAAsG,EAAAjG,EAAA5X,iBACA1C,EAAAmJ,UAAAoX,EAAApX,UACAnJ,EAAA+a,iBAAAwF,EAAAnR,UACApP,EAAAya,gBAAA8F,EAAAje,SACAtC,EAAAwgB,cAAAD,EAAAne,IAEA4F,EAAAiN,SACAjV,EAAAiV,OAAAjN,EAAAiN,OACAjV,EAAAgX,gBAAAhP,EAAAgP,iBAvDAyJ,CAAAxZ,EAAAe,GAEAf,EAAA0C,SAAA5B,GACA2U,GAAAzV,EAAAsY,aACAvX,MACAf,GAOAA,EAAAgQ,aAAAhQ,EAGAA,EAAAyZ,MAAAzZ,EAn9DA,SAAAA,GACA,IAAAe,EAAAf,EAAA0C,SAGA3G,EAAAgF,EAAAhF,OACA,GAAAA,IAAAgF,EAAAoV,SAAA,CACA,KAAApa,EAAA2G,SAAAyT,UAAApa,EAAAuH,SACAvH,IAAAuH,QAEAvH,EAAAmN,UAAA3O,KAAAyF,GAGAA,EAAAsD,QAAAvH,EACAiE,EAAA0Z,MAAA3d,IAAA2d,MAAA1Z,EAEAA,EAAAkJ,aACAlJ,EAAA2Z,SAEA3Z,EAAAmK,SAAA,KACAnK,EAAA8I,UAAA,KACA9I,EAAAiJ,iBAAA,EACAjJ,EAAAoK,YAAA,EACApK,EAAAyS,cAAA,EACAzS,EAAAgM,mBAAA,EA67DA4N,CAAA5Z,GAnqEA,SAAAA,GACAA,EAAA6Z,QAAArsB,OAAAY,OAAA,MACA4R,EAAAsJ,eAAA,EAEA,IAAAnB,EAAAnI,EAAA0C,SAAAoR,iBACA3L,GACAD,GAAAlI,EAAAmI,GA8pEA2R,CAAA9Z,GAnJA,SAAAA,GACAA,EAAA0T,OAAA,KACA1T,EAAA4P,aAAA,KACA,IAAA7O,EAAAf,EAAA0C,SACA2Q,EAAArT,EAAAyT,OAAA1S,EAAA+R,aACAiD,EAAA1C,KAAA7X,QACAwE,EAAAwO,OAAAnG,GAAAtH,EAAAyS,gBAAAuC,GACA/V,EAAAsO,aAAA3d,EAKAqP,EAAA+R,GAAA,SAAA7d,EAAAc,EAAA7H,EAAAC,GAAiC,OAAA4kB,GAAAhS,EAAA9L,EAAAc,EAAA7H,EAAAC,GAAA,IAGjC4S,EAAA0O,eAAA,SAAAxa,EAAAc,EAAA7H,EAAAC,GAA6C,OAAA4kB,GAAAhS,EAAA9L,EAAAc,EAAA7H,EAAAC,GAAA,IAI7C,IAAA2sB,EAAA1G,KAAAjY,KAWAyD,GAAAmB,EAAA,SAAA+Z,KAAAxR,OAAA5X,EAAA,SACAkO,GAAAmB,EAAA,aAAAe,EAAA+S,kBAAAnjB,EAAA,SAqHAqpB,CAAAha,GACAmJ,GAAAnJ,EAAA,gBAl+BA,SAAAA,GACA,IAAAvC,EAAAiQ,GAAA1N,EAAA0C,SAAAhC,OAAAV,GACAvC,IACAQ,IAAA,GACAzQ,OAAAoI,KAAA6H,GAAAN,QAAA,SAAA9O,GAYAwQ,GAAAmB,EAAA3R,EAAAoP,EAAApP,MAGA4P,IAAA,IAg9BAgc,CAAAja,GACAoM,GAAApM,GA7+BA,SAAAA,GACA,IAAAY,EAAAZ,EAAA0C,SAAA9B,QACAA,IACAZ,EAAA6N,UAAA,mBAAAjN,EACAA,EAAA3T,KAAA+S,GACAY,GAy+BAsZ,CAAAla,GACAmJ,GAAAnJ,EAAA,WASAA,EAAA0C,SAAAyX,IACAna,EAAAmT,OAAAnT,EAAA0C,SAAAyX,KA4FAC,CAAAtC,IAtoCA,SAAAA,GAIA,IAAAuC,GACA1sB,IAAA,WAA6B,OAAAsI,KAAAyW,QAC7B4N,GACA3sB,IAAA,WAA8B,OAAAsI,KAAA0M,SAa9BnV,OAAAC,eAAAqqB,EAAAppB,UAAA,QAAA2rB,GACA7sB,OAAAC,eAAAqqB,EAAAppB,UAAA,SAAA4rB,GAEAxC,EAAAppB,UAAA6rB,KAAA3gB,GACAke,EAAAppB,UAAA8rB,QAAAlb,GAEAwY,EAAAppB,UAAA+e,OAAA,SACAhD,EACAzF,EACAjE,GAGA,GAAAzP,EAAA0T,GACA,OAAAqI,GAFApX,KAEAwU,EAAAzF,EAAAjE,IAEAA,SACA8J,MAAA,EACA,IAAAhB,EAAA,IAAAW,GANAvU,KAMAwU,EAAAzF,EAAAjE,GAIA,OAHAA,EAAA0Z,WACAzV,EAAA/X,KARAgJ,KAQA4T,EAAA9b,OAEA,WACA8b,EAAAkC,aA6lCA2O,CAAA5C,IA/uEA,SAAAA,GACA,IAAA6C,EAAA,SACA7C,EAAAppB,UAAAqZ,IAAA,SAAAzB,EAAAjT,GAIA,GAAAoB,MAAAc,QAAA+Q,GACA,QAAAxZ,EAAA,EAAAC,EAAAuZ,EAAA7T,OAAuC3F,EAAAC,EAAOD,IAJ9CmJ,KAKA8R,IAAAzB,EAAAxZ,GAAAuG,QAHA4C,KAMA4jB,QAAAvT,KANArQ,KAMA4jB,QAAAvT,QAAA/L,KAAAlH,GAGAsnB,EAAAniB,KAAA8N,KATArQ,KAUAqT,eAAA,GAGA,OAbArT,MAgBA6hB,EAAAppB,UAAAoZ,MAAA,SAAAxB,EAAAjT,GACA,IAAA2M,EAAA/J,KACA,SAAAiQ,IACAlG,EAAAiI,KAAA3B,EAAAJ,GACA7S,EAAAe,MAAA4L,EAAA7L,WAIA,OAFA+R,EAAA7S,KACA2M,EAAA+H,IAAAzB,EAAAJ,GACAlG,GAGA8X,EAAAppB,UAAAuZ,KAAA,SAAA3B,EAAAjT,GACA,IAEA2M,EAAA/J,KAEA,IAAA9B,UAAA1B,OAEA,OADAuN,EAAA6Z,QAAArsB,OAAAY,OAAA,MACA4R,EAGA,GAAAvL,MAAAc,QAAA+Q,GAAA,CACA,QAAAxZ,EAAA,EAAAC,EAAAuZ,EAAA7T,OAAuC3F,EAAAC,EAAOD,IAV9CmJ,KAWAgS,KAAA3B,EAAAxZ,GAAAuG,GAEA,OAAA2M,EAGA,IAAA4a,EAAA5a,EAAA6Z,QAAAvT,GACA,IAAAsU,EACA,OAAA5a,EAEA,IAAA3M,EAEA,OADA2M,EAAA6Z,QAAAvT,GAAA,KACAtG,EAEA,GAAA3M,EAIA,IAFA,IAAA2R,EACA6V,EAAAD,EAAAnoB,OACAooB,KAEA,IADA7V,EAAA4V,EAAAC,MACAxnB,GAAA2R,EAAA3R,OAAA,CACAunB,EAAA1nB,OAAA2nB,EAAA,GACA,MAIA,OAAA7a,GAGA8X,EAAAppB,UAAA6a,MAAA,SAAAjD,GACA,IAaAsU,EAbA3kB,KAaA4jB,QAAAvT,GACA,GAAAsU,EAAA,CACAA,IAAAnoB,OAAA,EAAA6B,EAAAsmB,KAEA,IADA,IAAAtd,EAAAhJ,EAAAH,UAAA,GACArH,EAAA,EAAAC,EAAA6tB,EAAAnoB,OAAqC3F,EAAAC,EAAOD,IAC5C,IACA8tB,EAAA9tB,GAAAsH,MAnBA6B,KAmBAqH,GACS,MAAA5H,GACTwN,GAAAxN,EArBAO,KAqBA,sBAAAqQ,EAAA,MAIA,OAzBArQ,MAuqEA6kB,CAAAhD,IAziEA,SAAAA,GACAA,EAAAppB,UAAAqsB,QAAA,SAAAhe,EAAAuV,GACA,IAAAtS,EAAA/J,KACA+J,EAAAoK,YACAjB,GAAAnJ,EAAA,gBAEA,IAAAgb,EAAAhb,EAAAib,IACAC,EAAAlb,EAAA0T,OACAyH,EAAAvS,GACAA,GAAA5I,EACAA,EAAA0T,OAAA3W,EAGAme,EAYAlb,EAAAib,IAAAjb,EAAAob,UAAAF,EAAAne,IAVAiD,EAAAib,IAAAjb,EAAAob,UACApb,EAAAib,IAAAle,EAAAuV,GAAA,EACAtS,EAAA0C,SAAAqQ,WACA/S,EAAA0C,SAAAsQ,SAIAhT,EAAA0C,SAAAqQ,WAAA/S,EAAA0C,SAAAsQ,QAAA,MAKApK,GAAAuS,EAEAH,IACAA,EAAAK,QAAA,MAEArb,EAAAib,MACAjb,EAAAib,IAAAI,QAAArb,GAGAA,EAAAyT,QAAAzT,EAAAsD,SAAAtD,EAAAyT,SAAAzT,EAAAsD,QAAAoQ,SACA1T,EAAAsD,QAAA2X,IAAAjb,EAAAib,MAMAnD,EAAAppB,UAAAqlB,aAAA,WACA9d,KACAkU,UADAlU,KAEAkU,SAAAvP,UAIAkd,EAAAppB,UAAA2lB,SAAA,WACA,IAAArU,EAAA/J,KACA,IAAA+J,EAAAgM,kBAAA,CAGA7C,GAAAnJ,EAAA,iBACAA,EAAAgM,mBAAA,EAEA,IAAAjQ,EAAAiE,EAAAsD,SACAvH,KAAAiQ,mBAAAhM,EAAA0C,SAAAyT,UACAtjB,EAAAkJ,EAAAmN,UAAAlJ,GAGAA,EAAAmK,UACAnK,EAAAmK,SAAA4B,WAGA,IADA,IAAAjf,EAAAkT,EAAA2K,UAAAlY,OACA3F,KACAkT,EAAA2K,UAAA7d,GAAAif,WAIA/L,EAAA0M,MAAA/O,QACAqC,EAAA0M,MAAA/O,OAAAQ,UAGA6B,EAAAyS,cAAA,EAEAzS,EAAAob,UAAApb,EAAA0T,OAAA,MAEAvK,GAAAnJ,EAAA,aAEAA,EAAAiI,OAEAjI,EAAAib,MACAjb,EAAAib,IAAAI,QAAA,MAGArb,EAAAyT,SACAzT,EAAAyT,OAAA1X,OAAA,QAi9DAuf,CAAAxD,IA/NA,SAAAA,GAEAxH,GAAAwH,EAAAppB,WAEAopB,EAAAppB,UAAA6sB,UAAA,SAAAloB,GACA,OAAA0R,GAAA1R,EAAA4C,OAGA6hB,EAAAppB,UAAA8sB,QAAA,WACA,IAqBAze,EArBAiD,EAAA/J,KACAwlB,EAAAzb,EAAA0C,SACAsL,EAAAyN,EAAAzN,OACA8E,EAAA2I,EAAA3I,aAUAA,IACA9S,EAAAsO,aAAAwE,EAAA1X,KAAAyW,aAAAlhB,GAKAqP,EAAAyT,OAAAX,EAGA,IACA/V,EAAAiR,EAAA/gB,KAAA+S,EAAAgQ,aAAAhQ,EAAA0O,gBACK,MAAAhZ,GACLwN,GAAAxN,EAAAsK,EAAA,UAgBAjD,EAAAiD,EAAA0T,OAgBA,OAZA3W,aAAA7B,KAQA6B,EAAAJ,MAGAI,EAAAhB,OAAA+W,EACA/V,GA8JA2e,CAAA5D,IA4MA,IAAA6D,IAAAhqB,OAAAiqB,OAAAnnB,OAmFAonB,IACAC,WAjFAzuB,KAAA,aACA8oB,UAAA,EAEA3V,OACAub,QAAAJ,GACAK,QAAAL,GACAtc,KAAA1N,OAAAsqB,SAGAC,QAAA,WACAjmB,KAAA3C,MAAA9F,OAAAY,OAAA,MACA6H,KAAAL,SAGAumB,UAAA,WAGA,QAAA9tB,KAFA4H,KAEA3C,MACA4lB,GAHAjjB,KAGA3C,MAAAjF,EAHA4H,KAGAL,OAIAwmB,QAAA,WACA,IAAAC,EAAApmB,KAEAA,KAAAwX,OAAA,mBAAAhc,GACAsnB,GAAAsD,EAAA,SAAAhvB,GAA0C,OAAAwrB,GAAApnB,EAAApE,OAE1C4I,KAAAwX,OAAA,mBAAAhc,GACAsnB,GAAAsD,EAAA,SAAAhvB,GAA0C,OAAAwrB,GAAApnB,EAAApE,QAI1C2gB,OAAA,WACA,IAAAxF,EAAAvS,KAAAuY,OAAA/L,QACA1F,EAAA8K,GAAAW,GACA/M,EAAAsB,KAAAtB,iBACA,GAAAA,EAAA,CAEA,IAAApO,EAAAurB,GAAAnd,GAEAsgB,EADA9lB,KACA8lB,QACAC,EAFA/lB,KAEA+lB,QACA,GAEAD,KAAA1uB,IAAAwrB,GAAAkD,EAAA1uB,KAEA2uB,GAAA3uB,GAAAwrB,GAAAmD,EAAA3uB,GAEA,OAAA0P,EAGA,IACAzJ,EADA2C,KACA3C,MACAsC,EAFAK,KAEAL,KACAvH,EAAA,MAAA0O,EAAA1O,IAGAoN,EAAAnC,KAAAob,KAAAjZ,EAAAN,IAAA,KAAAM,EAAA,QACAsB,EAAA1O,IACAiF,EAAAjF,IACA0O,EAAAjB,kBAAAxI,EAAAjF,GAAAyN,kBAEAjJ,EAAA+C,EAAAvH,GACAuH,EAAA2E,KAAAlM,KAEAiF,EAAAjF,GAAA0O,EACAnH,EAAA2E,KAAAlM,GAEA4H,KAAAoJ,KAAAzJ,EAAAnD,OAAA6pB,SAAArmB,KAAAoJ,MACA6Z,GAAA5lB,EAAAsC,EAAA,GAAAA,EAAAK,KAAAyd,SAIA3W,EAAA3B,KAAAsX,WAAA,EAEA,OAAA3V,GAAAyL,KAAA,OAUA,SAAAsP,GAEA,IAAAyE,GACA5uB,IAAA,WAA+B,OAAA0I,IAQ/B7I,OAAAC,eAAAqqB,EAAA,SAAAyE,GAKAzE,EAAA0E,MACAxiB,QACAtF,SACAoM,gBACAjC,mBAGAiZ,EAAAle,OACAke,EAAA2E,OAAAnd,GACAwY,EAAA/S,YAEA+S,EAAA/W,QAAAvT,OAAAY,OAAA,MACA+H,EAAAgH,QAAA,SAAA/N,GACA0oB,EAAA/W,QAAA3R,EAAA,KAAA5B,OAAAY,OAAA,QAKA0pB,EAAA/W,QAAA0T,MAAAqD,EAEApjB,EAAAojB,EAAA/W,QAAA8W,WAAAgE,IArUA,SAAA/D,GACAA,EAAAa,IAAA,SAAA+D,GACA,IAAAC,EAAA1mB,KAAA2mB,oBAAA3mB,KAAA2mB,sBACA,GAAAD,EAAA1pB,QAAAypB,IAAA,EACA,OAAAzmB,KAIA,IAAAqH,EAAAhJ,EAAAH,UAAA,GAQA,OAPAmJ,EAAAuf,QAAA5mB,MACA,mBAAAymB,EAAAI,QACAJ,EAAAI,QAAA1oB,MAAAsoB,EAAApf,GACK,mBAAAof,GACLA,EAAAtoB,MAAA,KAAAkJ,GAEAqf,EAAApiB,KAAAmiB,GACAzmB,MAuTA8mB,CAAAjF,GAjTA,SAAAA,GACAA,EAAAY,MAAA,SAAAA,GAEA,OADAziB,KAAA8K,QAAAD,GAAA7K,KAAA8K,QAAA2X,GACAziB,MA+SA+mB,CAAAlF,GACAE,GAAAF,GA9MA,SAAAA,GAIA3hB,EAAAgH,QAAA,SAAA/N,GACA0oB,EAAA1oB,GAAA,SACA+K,EACA8iB,GAEA,OAAAA,GAOA,cAAA7tB,GAAAkC,EAAA2rB,KACAA,EAAA5vB,KAAA4vB,EAAA5vB,MAAA8M,EACA8iB,EAAAhnB,KAAA8K,QAAA0T,MAAA/f,OAAAuoB,IAEA,cAAA7tB,GAAA,mBAAA6tB,IACAA,GAAwB3uB,KAAA2uB,EAAAriB,OAAAqiB,IAExBhnB,KAAA8K,QAAA3R,EAAA,KAAA+K,GAAA8iB,EACAA,GAdAhnB,KAAA8K,QAAA3R,EAAA,KAAA+K,MAqMA+iB,CAAApF,GAGAqF,CAAArF,IAEAtqB,OAAAC,eAAAqqB,GAAAppB,UAAA,aACAf,IAAAsL,KAGAzL,OAAAC,eAAAqqB,GAAAppB,UAAA,eACAf,IAAA,WAEA,OAAAsI,KAAAwd,QAAAxd,KAAAwd,OAAA2J,cAKA5vB,OAAAC,eAAAqqB,GAAA,2BACA/pB,MAAAujB,KAGAwG,GAAAuF,QAAA,SAMA,IAAArmB,GAAA7E,EAAA,eAGAmrB,GAAAnrB,EAAA,yCACAiF,GAAA,SAAA+D,EAAA/L,EAAAmuB,GACA,MACA,UAAAA,GAAAD,GAAAniB,IAAA,WAAA/L,GACA,aAAAmuB,GAAA,WAAApiB,GACA,YAAAoiB,GAAA,UAAApiB,GACA,UAAAoiB,GAAA,UAAApiB,GAIAqiB,GAAArrB,EAAA,wCAEAsrB,GAAAtrB,EACA,wYAQAurB,GAAA,+BAEAC,GAAA,SAAAtwB,GACA,YAAAA,EAAAwG,OAAA,cAAAxG,EAAAyG,MAAA,MAGA8pB,GAAA,SAAAvwB,GACA,OAAAswB,GAAAtwB,KAAAyG,MAAA,EAAAzG,EAAAoF,QAAA,IAGAorB,GAAA,SAAApsB,GACA,aAAAA,IAAA,IAAAA,GAKA,SAAAqsB,GAAA/gB,GAIA,IAHA,IAAA3B,EAAA2B,EAAA3B,KACA2iB,EAAAhhB,EACAihB,EAAAjhB,EACAhM,EAAAitB,EAAAliB,qBACAkiB,IAAAliB,kBAAA4X,SACAsK,EAAA5iB,OACAA,EAAA6iB,GAAAD,EAAA5iB,SAGA,KAAArK,EAAAgtB,IAAAhiB,SACAgiB,KAAA3iB,OACAA,EAAA6iB,GAAA7iB,EAAA2iB,EAAA3iB,OAGA,OAYA,SACA8iB,EACAC,GAEA,GAAAptB,EAAAmtB,IAAAntB,EAAAotB,GACA,OAAA/d,GAAA8d,EAAAE,GAAAD,IAGA,SApBAE,CAAAjjB,EAAA8iB,YAAA9iB,EAAA0b,OAGA,SAAAmH,GAAAxhB,EAAAV,GACA,OACAmiB,YAAA9d,GAAA3D,EAAAyhB,YAAAniB,EAAAmiB,aACApH,MAAA/lB,EAAA0L,EAAAqa,QACAra,EAAAqa,MAAA/a,EAAA+a,OACA/a,EAAA+a,OAeA,SAAA1W,GAAAlM,EAAAc,GACA,OAAAd,EAAAc,EAAAd,EAAA,IAAAc,EAAAd,EAAAc,GAAA,GAGA,SAAAopB,GAAArwB,GACA,OAAA0G,MAAAc,QAAAxH,GAaA,SAAAA,GAGA,IAFA,IACAuwB,EADAxpB,EAAA,GAEAhI,EAAA,EAAAC,EAAAgB,EAAA0E,OAAmC3F,EAAAC,EAAOD,IAC1CiE,EAAAutB,EAAAF,GAAArwB,EAAAjB,MAAA,KAAAwxB,IACAxpB,IAAgBA,GAAA,KAChBA,GAAAwpB,GAGA,OAAAxpB,EArBAypB,CAAAxwB,GAEAmD,EAAAnD,GAsBA,SAAAA,GACA,IAAA+G,EAAA,GACA,QAAAzG,KAAAN,EACAA,EAAAM,KACAyG,IAAgBA,GAAA,KAChBA,GAAAzG,GAGA,OAAAyG,EA7BA0pB,CAAAzwB,GAEA,iBAAAA,EACAA,EAGA,GA4BA,IAAA0wB,IACAC,IAAA,6BACAC,KAAA,sCAGAC,GAAAzsB,EACA,snBAeA0sB,GAAA1sB,EACA,kNAGA,GAKA4E,GAAA,SAAAoE,GACA,OAAAyjB,GAAAzjB,IAAA0jB,GAAA1jB,IAGA,SAAAjE,GAAAiE,GACA,OAAA0jB,GAAA1jB,GACA,MAIA,SAAAA,EACA,YADA,EAKA,IAAA2jB,GAAAtxB,OAAAY,OAAA,MA0BA,IAAA2wB,GAAA5sB,EAAA,6CAOA,SAAA6sB,GAAA7E,GACA,oBAAAA,EAAA,CACA,IAAA8E,EAAAC,SAAAC,cAAAhF,GACA,OAAA8E,GAIAC,SAAAlN,cAAA,OAIA,OAAAmI,EA+DA,IAAAiF,GAAA5xB,OAAAoD,QACAohB,cA1DA,SAAAqN,EAAAtiB,GACA,IAAAxB,EAAA2jB,SAAAlN,cAAAqN,GACA,iBAAAA,EACA9jB,GAGAwB,EAAA3B,MAAA2B,EAAA3B,KAAAmN,YAAAlY,IAAA0M,EAAA3B,KAAAmN,MAAA+W,UACA/jB,EAAAgkB,aAAA,uBAEAhkB,IAkDAikB,gBA/CA,SAAAC,EAAAJ,GACA,OAAAH,SAAAM,gBAAAf,GAAAgB,GAAAJ,IA+CAK,eA5CA,SAAApkB,GACA,OAAA4jB,SAAAQ,eAAApkB,IA4CAqkB,cAzCA,SAAArkB,GACA,OAAA4jB,SAAAS,cAAArkB,IAyCAskB,aAtCA,SAAA7B,EAAA8B,EAAAC,GACA/B,EAAA6B,aAAAC,EAAAC,IAsCAC,YAnCA,SAAAnjB,EAAAH,GACAG,EAAAmjB,YAAAtjB,IAmCAujB,YAhCA,SAAApjB,EAAAH,GACAG,EAAAojB,YAAAvjB,IAgCAshB,WA7BA,SAAAnhB,GACA,OAAAA,EAAAmhB,YA6BAkC,YA1BA,SAAArjB,GACA,OAAAA,EAAAqjB,aA0BAZ,QAvBA,SAAAziB,GACA,OAAAA,EAAAyiB,SAuBAa,eApBA,SAAAtjB,EAAAtB,GACAsB,EAAAujB,YAAA7kB,GAoBA8kB,cAjBA,SAAAxjB,EAAAyjB,GACAzjB,EAAA2iB,aAAAc,EAAA,OAqBA5E,IACArtB,OAAA,SAAAsF,EAAAqJ,GACAujB,GAAAvjB,IAEAnC,OAAA,SAAAwY,EAAArW,GACAqW,EAAAhY,KAAAqgB,MAAA1e,EAAA3B,KAAAqgB,MACA6E,GAAAlN,GAAA,GACAkN,GAAAvjB,KAGAoX,QAAA,SAAApX,GACAujB,GAAAvjB,GAAA,KAIA,SAAAujB,GAAAvjB,EAAAwjB,GACA,IAAAlyB,EAAA0O,EAAA3B,KAAAqgB,IACA,GAAA1qB,EAAA1C,GAAA,CAEA,IAAA2R,EAAAjD,EAAAvB,QACAigB,EAAA1e,EAAAjB,mBAAAiB,EAAAxB,IACAilB,EAAAxgB,EAAA2Z,MACA4G,EACA9rB,MAAAc,QAAAirB,EAAAnyB,IACAwE,EAAA2tB,EAAAnyB,GAAAotB,GACK+E,EAAAnyB,KAAAotB,IACL+E,EAAAnyB,QAAAgC,GAGA0M,EAAA3B,KAAAqlB,SACAhsB,MAAAc,QAAAirB,EAAAnyB,IAEOmyB,EAAAnyB,GAAA4E,QAAAwoB,GAAA,GAEP+E,EAAAnyB,GAAAkM,KAAAkhB,GAHA+E,EAAAnyB,IAAAotB,GAMA+E,EAAAnyB,GAAAotB,GAiBA,IAAAiF,GAAA,IAAAxlB,GAAA,UAEAqI,IAAA,iDAEA,SAAAod,GAAAzsB,EAAAc,GACA,OACAd,EAAA7F,MAAA2G,EAAA3G,MAEA6F,EAAAiH,MAAAnG,EAAAmG,KACAjH,EAAAiI,YAAAnH,EAAAmH,WACApL,EAAAmD,EAAAkH,QAAArK,EAAAiE,EAAAoG,OAWA,SAAAlH,EAAAc,GACA,aAAAd,EAAAiH,IAA0B,SAC1B,IAAArO,EACA8zB,EAAA7vB,EAAAjE,EAAAoH,EAAAkH,OAAArK,EAAAjE,IAAAyb,QAAAzb,EAAAsC,KACAyxB,EAAA9vB,EAAAjE,EAAAkI,EAAAoG,OAAArK,EAAAjE,IAAAyb,QAAAzb,EAAAsC,KACA,OAAAwxB,IAAAC,GAAA9B,GAAA6B,IAAA7B,GAAA8B,GAfAC,CAAA5sB,EAAAc,IAEAhE,EAAAkD,EAAAqI,qBACArI,EAAAwH,eAAA1G,EAAA0G,cACA7K,EAAAmE,EAAA0G,aAAAkI,QAcA,SAAAmd,GAAA1lB,EAAA2lB,EAAAC,GACA,IAAAn0B,EAAAuB,EACAiE,KACA,IAAAxF,EAAAk0B,EAAoBl0B,GAAAm0B,IAAan0B,EAEjCiE,EADA1C,EAAAgN,EAAAvO,GAAAuB,OACqBiE,EAAAjE,GAAAvB,GAErB,OAAAwF,EAqsBA,IAAA8O,IACAhT,OAAA8yB,GACAtmB,OAAAsmB,GACA/M,QAAA,SAAApX,GACAmkB,GAAAnkB,EAAA2jB,MAIA,SAAAQ,GAAA9N,EAAArW,IACAqW,EAAAhY,KAAAgG,YAAArE,EAAA3B,KAAAgG,aAKA,SAAAgS,EAAArW,GACA,IAQA1O,EAAA8yB,EAAAC,EARAC,EAAAjO,IAAAsN,GACAY,EAAAvkB,IAAA2jB,GACAa,EAAAC,GAAApO,EAAAhY,KAAAgG,WAAAgS,EAAA5X,SACAimB,EAAAD,GAAAzkB,EAAA3B,KAAAgG,WAAArE,EAAAvB,SAEAkmB,KACAC,KAGA,IAAAtzB,KAAAozB,EACAN,EAAAI,EAAAlzB,GACA+yB,EAAAK,EAAApzB,GACA8yB,GAQAC,EAAAvV,SAAAsV,EAAApzB,MACA6zB,GAAAR,EAAA,SAAArkB,EAAAqW,GACAgO,EAAA5pB,KAAA4pB,EAAA5pB,IAAAqqB,kBACAF,EAAApnB,KAAA6mB,KATAQ,GAAAR,EAAA,OAAArkB,EAAAqW,GACAgO,EAAA5pB,KAAA4pB,EAAA5pB,IAAAgG,UACAkkB,EAAAnnB,KAAA6mB,IAYA,GAAAM,EAAAjvB,OAAA,CACA,IAAAqvB,EAAA,WACA,QAAAh1B,EAAA,EAAqBA,EAAA40B,EAAAjvB,OAA2B3F,IAChD80B,GAAAF,EAAA50B,GAAA,WAAAiQ,EAAAqW,IAGAiO,EACA7a,GAAAzJ,EAAA,SAAA+kB,GAEAA,IAIAH,EAAAlvB,QACA+T,GAAAzJ,EAAA,uBACA,QAAAjQ,EAAA,EAAqBA,EAAA60B,EAAAlvB,OAA8B3F,IACnD80B,GAAAD,EAAA70B,GAAA,mBAAAiQ,EAAAqW,KAKA,IAAAiO,EACA,IAAAhzB,KAAAkzB,EACAE,EAAApzB,IAEAuzB,GAAAL,EAAAlzB,GAAA,SAAA+kB,IAAAkO,GA1DAvG,CAAA3H,EAAArW,GAgEA,IAAAglB,GAAAv0B,OAAAY,OAAA,MAEA,SAAAozB,GACArgB,EACAnB,GAEA,IAKAlT,EAAAs0B,EALAtsB,EAAAtH,OAAAY,OAAA,MACA,IAAA+S,EAEA,OAAArM,EAGA,IAAAhI,EAAA,EAAaA,EAAAqU,EAAA1O,OAAiB3F,KAC9Bs0B,EAAAjgB,EAAArU,IACAk1B,YAEAZ,EAAAY,UAAAD,IAEAjtB,EAAAmtB,GAAAb,MACAA,EAAA5pB,IAAAmK,GAAA3B,EAAA0C,SAAA,aAAA0e,EAAA/zB,MAGA,OAAAyH,EAGA,SAAAmtB,GAAAb,GACA,OAAAA,EAAAc,SAAAd,EAAA,SAAA5zB,OAAAoI,KAAAwrB,EAAAY,eAA4EG,KAAA,KAG5E,SAAAP,GAAAR,EAAA9gB,EAAAvD,EAAAqW,EAAAkO,GACA,IAAAjuB,EAAA+tB,EAAA5pB,KAAA4pB,EAAA5pB,IAAA8I,GACA,GAAAjN,EACA,IACAA,EAAA0J,EAAAxB,IAAA6lB,EAAArkB,EAAAqW,EAAAkO,GACK,MAAA5rB,GACLwN,GAAAxN,EAAAqH,EAAAvB,QAAA,aAAA4lB,EAAA,SAAA9gB,EAAA,UAKA,IAAA8hB,IACA3G,GACAra,IAKA,SAAAihB,GAAAjP,EAAArW,GACA,IAAAhE,EAAAgE,EAAAtB,iBACA,KAAA1K,EAAAgI,KAAA,IAAAA,EAAAO,KAAAyH,QAAAuhB,cAGAzxB,EAAAuiB,EAAAhY,KAAAmN,QAAA1X,EAAAkM,EAAA3B,KAAAmN,QAAA,CAGA,IAAAla,EAAAgV,EACA9H,EAAAwB,EAAAxB,IACAgnB,EAAAnP,EAAAhY,KAAAmN,UACAA,EAAAxL,EAAA3B,KAAAmN,UAMA,IAAAla,KAJA0C,EAAAwX,EAAA5K,UACA4K,EAAAxL,EAAA3B,KAAAmN,MAAA7T,KAAwC6T,IAGxCA,EACAlF,EAAAkF,EAAAla,GACAk0B,EAAAl0B,KACAgV,GACAmf,GAAAjnB,EAAAlN,EAAAgV,GASA,IAAAhV,KAHAkK,GAAAG,IAAA6P,EAAAxa,QAAAw0B,EAAAx0B,OACAy0B,GAAAjnB,EAAA,QAAAgN,EAAAxa,OAEAw0B,EACA1xB,EAAA0X,EAAAla,MACAsvB,GAAAtvB,GACAkN,EAAAknB,kBAAA/E,GAAAE,GAAAvvB,IACOmvB,GAAAnvB,IACPkN,EAAAmnB,gBAAAr0B,KAMA,SAAAm0B,GAAArI,EAAA9rB,EAAAN,GACAosB,EAAAkF,QAAApsB,QAAA,QACA0vB,GAAAxI,EAAA9rB,EAAAN,GACG0vB,GAAApvB,GAGHwvB,GAAA9vB,GACAosB,EAAAuI,gBAAAr0B,IAIAN,EAAA,oBAAAM,GAAA,UAAA8rB,EAAAkF,QACA,OACAhxB,EACA8rB,EAAAoF,aAAAlxB,EAAAN,IAEGyvB,GAAAnvB,GACH8rB,EAAAoF,aAAAlxB,EAAAwvB,GAAA9vB,IAAA,UAAAA,EAAA,gBACG4vB,GAAAtvB,GACHwvB,GAAA9vB,GACAosB,EAAAsI,kBAAA/E,GAAAE,GAAAvvB,IAEA8rB,EAAAyI,eAAAlF,GAAArvB,EAAAN,GAGA40B,GAAAxI,EAAA9rB,EAAAN,GAIA,SAAA40B,GAAAxI,EAAA9rB,EAAAN,GACA,GAAA8vB,GAAA9vB,GACAosB,EAAAuI,gBAAAr0B,OACG,CAKH,GACAkK,IAAAE,GACA,aAAA0hB,EAAAkF,SACA,gBAAAhxB,IAAA8rB,EAAA0I,OACA,CACA,IAAAC,EAAA,SAAAptB,GACAA,EAAAqtB,2BACA5I,EAAA6I,oBAAA,QAAAF,IAEA3I,EAAAnhB,iBAAA,QAAA8pB,GAEA3I,EAAA0I,QAAA,EAEA1I,EAAAoF,aAAAlxB,EAAAN,IAIA,IAAAwa,IACAna,OAAAi0B,GACAznB,OAAAynB,IAKA,SAAAY,GAAA7P,EAAArW,GACA,IAAAod,EAAApd,EAAAxB,IACAH,EAAA2B,EAAA3B,KACA8nB,EAAA9P,EAAAhY,KACA,KACAvK,EAAAuK,EAAA8iB,cACArtB,EAAAuK,EAAA0b,SACAjmB,EAAAqyB,IACAryB,EAAAqyB,EAAAhF,cACArtB,EAAAqyB,EAAApM,SALA,CAYA,IAAAqM,EAAArF,GAAA/gB,GAGAqmB,EAAAjJ,EAAAkJ,mBACAtyB,EAAAqyB,KACAD,EAAA/iB,GAAA+iB,EAAA/E,GAAAgF,KAIAD,IAAAhJ,EAAAmJ,aACAnJ,EAAAoF,aAAA,QAAA4D,GACAhJ,EAAAmJ,WAAAH,IAIA,IAyUA5lB,GACAnL,GACAmxB,GACAC,GACAC,GACAC,GA9UAC,IACAv1B,OAAA60B,GACAroB,OAAAqoB,IAKAW,GAAA,gBAEA,SAAAC,GAAAr0B,GACA,IAQArC,EAAA22B,EAAAh3B,EAAAwe,EAAAyY,EARAC,GAAA,EACAC,GAAA,EACAC,GAAA,EACAC,GAAA,EACAC,EAAA,EACAC,EAAA,EACAC,EAAA,EACAC,EAAA,EAGA,IAAAz3B,EAAA,EAAaA,EAAA0C,EAAAiD,OAAgB3F,IAG7B,GAFAg3B,EAAA32B,EACAA,EAAAqC,EAAA+H,WAAAzK,GACAk3B,EACA,KAAA72B,GAAA,KAAA22B,IAAwCE,GAAA,QACnC,GAAAC,EACL,KAAA92B,GAAA,KAAA22B,IAAwCG,GAAA,QACnC,GAAAC,EACL,KAAA/2B,GAAA,KAAA22B,IAAwCI,GAAA,QACnC,GAAAC,EACL,KAAAh3B,GAAA,KAAA22B,IAAwCK,GAAA,QACnC,GACL,MAAAh3B,GACA,MAAAqC,EAAA+H,WAAAzK,EAAA,IACA,MAAA0C,EAAA+H,WAAAzK,EAAA,IACAs3B,GAAAC,GAAAC,EASK,CACL,OAAAn3B,GACA,QAAA82B,GAAA,EAAmC,MACnC,QAAAD,GAAA,EAAmC,MACnC,QAAAE,GAAA,EAA2C,MAC3C,QAAAI,IAA2B,MAC3B,QAAAA,IAA2B,MAC3B,QAAAD,IAA4B,MAC5B,QAAAA,IAA4B,MAC5B,SAAAD,IAA2B,MAC3B,SAAAA,IAEA,QAAAj3B,EAAA,CAIA,IAHA,IAAAkc,EAAAvc,EAAA,EACA8B,OAAA,EAEcya,GAAA,GAEd,OADAza,EAAAY,EAAAqE,OAAAwV,IADsBA,KAItBza,GAAAg1B,GAAAprB,KAAA5J,KACAu1B,GAAA,cA5BA9zB,IAAAib,GAEAiZ,EAAAz3B,EAAA,EACAwe,EAAA9b,EAAAsE,MAAA,EAAAhH,GAAA03B,QAEAC,IAmCA,SAAAA,KACAV,WAAAxpB,KAAA/K,EAAAsE,MAAAywB,EAAAz3B,GAAA03B,QACAD,EAAAz3B,EAAA,EAGA,QAXAuD,IAAAib,EACAA,EAAA9b,EAAAsE,MAAA,EAAAhH,GAAA03B,OACG,IAAAD,GACHE,IAQAV,EACA,IAAAj3B,EAAA,EAAeA,EAAAi3B,EAAAtxB,OAAoB3F,IACnCwe,EAAAoZ,GAAApZ,EAAAyY,EAAAj3B,IAIA,OAAAwe,EAGA,SAAAoZ,GAAAl1B,EAAAme,GACA,IAAA7gB,EAAA6gB,EAAA1a,QAAA,KACA,GAAAnG,EAAA,EAEA,aAAA6gB,EAAA,MAAAne,EAAA,IAEA,IAAAnC,EAAAsgB,EAAA7Z,MAAA,EAAAhH,GACAwQ,EAAAqQ,EAAA7Z,MAAAhH,EAAA,GACA,aAAAO,EAAA,MAAAmC,GAAA,MAAA8N,EAAA,IAAAA,KAMA,SAAAqnB,GAAAC,GACAjhB,QAAAC,MAAA,mBAAAghB,GAGA,SAAAC,GACA73B,EACAqB,GAEA,OAAArB,EACAA,EAAAsF,IAAA,SAAApF,GAAgC,OAAAA,EAAAmB,KAAiBsf,OAAA,SAAAja,GAAuB,OAAAA,OAIxE,SAAAoxB,GAAA3K,EAAA9sB,EAAAU,IACAosB,EAAA3Z,QAAA2Z,EAAA3Z,WAAAjG,MAAsClN,OAAAU,UACtCosB,EAAA4K,OAAA,EAGA,SAAAC,GAAA7K,EAAA9sB,EAAAU,IACAosB,EAAA5R,QAAA4R,EAAA5R,WAAAhO,MAAsClN,OAAAU,UACtCosB,EAAA4K,OAAA,EAIA,SAAAE,GAAA9K,EAAA9sB,EAAAU,GACAosB,EAAA+K,SAAA73B,GAAAU,EACAosB,EAAAgL,UAAA5qB,MAAqBlN,OAAAU,UAGrB,SAAAq3B,GACAjL,EACA9sB,EACA60B,EACAn0B,EACAs3B,EACArD,IAEA7H,EAAA/Y,aAAA+Y,EAAA/Y,gBAAA7G,MAAgDlN,OAAA60B,UAAAn0B,QAAAs3B,MAAArD,cAChD7H,EAAA4K,OAAA,EAGA,SAAAO,GACAnL,EACA9sB,EACAU,EACAi0B,EACAuD,EACAvrB,GA0CA,IAAAwrB,GAxCAxD,KAAArxB,GAcAiV,iBACAoc,EAAApc,QACAvY,EAAA,IAAAA,GAEA20B,EAAAjsB,cACAisB,EAAAjsB,KACA1I,EAAA,IAAAA,GAGA20B,EAAAtc,iBACAsc,EAAAtc,QACArY,EAAA,IAAAA,GAMA,UAAAA,IACA20B,EAAAyD,OACAp4B,EAAA,qBACA20B,EAAAyD,OACKzD,EAAA0D,SACLr4B,EAAA,YAKA20B,EAAA2D,eACA3D,EAAA2D,OACAH,EAAArL,EAAAyL,eAAAzL,EAAAyL,kBAEAJ,EAAArL,EAAAqL,SAAArL,EAAAqL,WAGA,IAAAK,GACA93B,QAAAy2B,QAEAxC,IAAArxB,IACAk1B,EAAA7D,aAGA,IAAA5Y,EAAAoc,EAAAn4B,GAEAoH,MAAAc,QAAA6T,GACAmc,EAAAnc,EAAAyT,QAAAgJ,GAAAzc,EAAA7O,KAAAsrB,GAEAL,EAAAn4B,GADG+b,EACHmc,GAAAM,EAAAzc,MAAAyc,GAEAA,EAGA1L,EAAA4K,OAAA,EAGA,SAAAe,GACA3L,EACA9sB,EACA04B,GAEA,IAAAC,EACAC,GAAA9L,EAAA,IAAA9sB,IACA44B,GAAA9L,EAAA,UAAA9sB,GACA,SAAA24B,EACA,OAAAnC,GAAAmC,GACG,QAAAD,EAAA,CACH,IAAAG,EAAAD,GAAA9L,EAAA9sB,GACA,SAAA64B,EACA,OAAAn0B,KAAAC,UAAAk0B,IASA,SAAAD,GACA9L,EACA9sB,EACA84B,GAEA,IAAA10B,EACA,UAAAA,EAAA0oB,EAAA+K,SAAA73B,IAEA,IADA,IAAAkF,EAAA4nB,EAAAgL,UACAr4B,EAAA,EAAAC,EAAAwF,EAAAE,OAAoC3F,EAAAC,EAAOD,IAC3C,GAAAyF,EAAAzF,GAAAO,SAAA,CACAkF,EAAAW,OAAApG,EAAA,GACA,MAOA,OAHAq5B,UACAhM,EAAA+K,SAAA73B,GAEAoE,EAQA,SAAA20B,GACAjM,EACApsB,EACAi0B,GAEA,IAAAvG,EAAAuG,MACAqE,EAAA5K,EAAA4K,OAIAC,EADA,MAFA7K,EAAA+I,OAKA8B,EACA,8CAIAD,IACAC,EAAA,MAAAA,EAAA,KAEA,IAAAC,EAAAC,GAAAz4B,EAAAu4B,GAEAnM,EAAAzE,OACA3nB,MAAA,IAAAA,EAAA,IACAud,WAAA,IAAAvd,EAAA,IACA4nB,SAAA,mBAAwD4Q,EAAA,KAOxD,SAAAC,GACAz4B,EACAw4B,GAEA,IAAAzxB,EAgCA,SAAArD,GAMA,GAHAA,IAAA+yB,OACAjnB,GAAA9L,EAAAgB,OAEAhB,EAAAwB,QAAA,QAAAxB,EAAAg1B,YAAA,KAAAlpB,GAAA,EAEA,OADAimB,GAAA/xB,EAAAg1B,YAAA,OACA,GAEAj3B,IAAAiC,EAAAqC,MAAA,EAAA0vB,IACAn1B,IAAA,IAAAoD,EAAAqC,MAAA0vB,GAAA,SAIAh0B,IAAAiC,EACApD,IAAA,MAKA+D,GAAAX,EACA+xB,GAAAC,GAAAC,GAAA,EAEA,MAAAgD,MAGAC,GAFApD,GAAAqD,MAGAC,GAAAtD,IACK,KAAAA,IACLuD,GAAAvD,IAIA,OACA/zB,IAAAiC,EAAAqC,MAAA,EAAA2vB,IACAp1B,IAAAoD,EAAAqC,MAAA2vB,GAAA,EAAAC,KApEAqD,CAAAh5B,GACA,cAAA+G,EAAAzG,IACAN,EAAA,IAAAw4B,EAEA,QAAAzxB,EAAA,SAAAA,EAAA,SAAAyxB,EAAA,IAoEA,SAAAK,KACA,OAAAx0B,GAAAmF,aAAAisB,IAGA,SAAAkD,KACA,OAAAlD,IAAAjmB,GAGA,SAAAopB,GAAApD,GACA,YAAAA,GAAA,KAAAA,EAGA,SAAAuD,GAAAvD,GACA,IAAAyD,EAAA,EAEA,IADAvD,GAAAD,IACAkD,MAEA,GAAAC,GADApD,EAAAqD,MAEAC,GAAAtD,QAKA,GAFA,KAAAA,GAAuByD,IACvB,KAAAzD,GAAuByD,IACvB,IAAAA,EAAA,CACAtD,GAAAF,GACA,OAKA,SAAAqD,GAAAtD,GAEA,IADA,IAAA0D,EAAA1D,GACAmD,OACAnD,EAAAqD,QACAK,KAYA,IA6LAC,GA7LAC,GAAA,MACAC,GAAA,MAwMA,SAAAC,GACA/gB,EACA8G,EACAzH,EACAC,EACAF,GAEA0H,EAjoKA,SAAA/Z,GACA,OAAAA,EAAAi0B,YAAAj0B,EAAAi0B,UAAA,WACAnjB,IAAA,EACA,IAAArP,EAAAzB,EAAAe,MAAA,KAAAD,WAEA,OADAgQ,IAAA,EACArP,IA4nKAyyB,CAAAna,GACAzH,IAAgByH,EAlBhB,SAAAA,EAAA9G,EAAAV,GACA,IAAA7K,EAAAmsB,GACA,gBAAAM,IAEA,OADApa,EAAAhZ,MAAA,KAAAD,YAEAszB,GAAAnhB,EAAAkhB,EAAA5hB,EAAA7K,IAagB2sB,CAAAta,EAAA9G,EAAAV,IAChBshB,GAAAluB,iBACAsN,EACA8G,EACAtU,IACS8M,UAAAF,WACTE,GAIA,SAAA6hB,GACAnhB,EACA8G,EACAxH,EACA7K,IAEAA,GAAAmsB,IAAAlE,oBACA1c,EACA8G,EAAAka,WAAAla,EACAxH,GAIA,SAAA+hB,GAAAvU,EAAArW,GACA,IAAAlM,EAAAuiB,EAAAhY,KAAA8K,MAAArV,EAAAkM,EAAA3B,KAAA8K,IAAA,CAGA,IAAAA,EAAAnJ,EAAA3B,KAAA8K,OACAC,EAAAiN,EAAAhY,KAAA8K,OACAghB,GAAAnqB,EAAAxB,IAlEA,SAAA2K,GAEA,GAAAnV,EAAAmV,EAAAihB,KAAA,CAEA,IAAA7gB,EAAA/N,EAAA,iBACA2N,EAAAI,MAAAlG,OAAA8F,EAAAihB,IAAAjhB,EAAAI,eACAJ,EAAAihB,IAKAp2B,EAAAmV,EAAAkhB,OACAlhB,EAAA0hB,UAAAxnB,OAAA8F,EAAAkhB,IAAAlhB,EAAA0hB,mBACA1hB,EAAAkhB,KAsDAS,CAAA3hB,GACAD,GAAAC,EAAAC,EAAAkhB,GAAAI,GAAA1qB,EAAAvB,SACA0rB,QAAA72B,GAGA,IAAAm1B,IACAp3B,OAAAu5B,GACA/sB,OAAA+sB,IAKA,SAAAG,GAAA1U,EAAArW,GACA,IAAAlM,EAAAuiB,EAAAhY,KAAAoU,YAAA3e,EAAAkM,EAAA3B,KAAAoU,UAAA,CAGA,IAAAnhB,EAAAgV,EACA9H,EAAAwB,EAAAxB,IACAwsB,EAAA3U,EAAAhY,KAAAoU,aACAhP,EAAAzD,EAAA3B,KAAAoU,aAMA,IAAAnhB,KAJA0C,EAAAyP,EAAA7C,UACA6C,EAAAzD,EAAA3B,KAAAoU,SAAA9a,KAA2C8L,IAG3CunB,EACAl3B,EAAA2P,EAAAnS,MACAkN,EAAAlN,GAAA,IAGA,IAAAA,KAAAmS,EAAA,CAKA,GAJA6C,EAAA7C,EAAAnS,GAIA,gBAAAA,GAAA,cAAAA,EAAA,CAEA,GADA0O,EAAA1B,WAA2B0B,EAAA1B,SAAA5I,OAAA,GAC3B4Q,IAAA0kB,EAAA15B,GAAkC,SAGlC,IAAAkN,EAAAysB,WAAAv1B,QACA8I,EAAAwkB,YAAAxkB,EAAAysB,WAAA,IAIA,aAAA35B,EAAA,CAGAkN,EAAA0sB,OAAA5kB,EAEA,IAAA6kB,EAAAr3B,EAAAwS,GAAA,GAAA1R,OAAA0R,GACA8kB,GAAA5sB,EAAA2sB,KACA3sB,EAAAxN,MAAAm6B,QAGA3sB,EAAAlN,GAAAgV,IAQA,SAAA8kB,GAAA5sB,EAAA6sB,GACA,OAAA7sB,EAAA8sB,YACA,WAAA9sB,EAAA8jB,SAMA,SAAA9jB,EAAA6sB,GAGA,IAAAE,GAAA,EAGA,IAAOA,EAAApJ,SAAAqJ,gBAAAhtB,EAA+C,MAAA7F,IACtD,OAAA4yB,GAAA/sB,EAAAxN,QAAAq6B,EAZAI,CAAAjtB,EAAA6sB,IAeA,SAAA7sB,EAAA6D,GACA,IAAArR,EAAAwN,EAAAxN,MACAi0B,EAAAzmB,EAAAktB,YACA,GAAA13B,EAAAixB,GAAA,CACA,GAAAA,EAAAlX,KAEA,SAEA,GAAAkX,EAAAqE,OACA,OAAAp0B,EAAAlE,KAAAkE,EAAAmN,GAEA,GAAA4iB,EAAAwC,KACA,OAAAz2B,EAAAy2B,SAAAplB,EAAAolB,OAGA,OAAAz2B,IAAAqR,EA7BAspB,CAAAntB,EAAA6sB,IAgCA,IAAA5Y,IACAphB,OAAA05B,GACAltB,OAAAktB,IAKAa,GAAAv1B,EAAA,SAAAw1B,GACA,IAAA9zB,KAEA+zB,EAAA,QAOA,OANAD,EAAAp2B,MAFA,iBAEA2K,QAAA,SAAApK,GACA,GAAAA,EAAA,CACA,IAAA4Y,EAAA5Y,EAAAP,MAAAq2B,GACAld,EAAAlZ,OAAA,IAAAqC,EAAA6W,EAAA,GAAA6Y,QAAA7Y,EAAA,GAAA6Y,WAGA1vB,IAIA,SAAAg0B,GAAA1tB,GACA,IAAAyb,EAAAkS,GAAA3tB,EAAAyb,OAGA,OAAAzb,EAAA4tB,YACAt0B,EAAA0G,EAAA4tB,YAAAnS,GACAA,EAIA,SAAAkS,GAAAE,GACA,OAAAx0B,MAAAc,QAAA0zB,GACAp0B,EAAAo0B,GAEA,iBAAAA,EACAN,GAAAM,GAEAA,EAuCA,IAyBAC,GAzBAC,GAAA,MACAC,GAAA,iBACAC,GAAA,SAAAlP,EAAA9sB,EAAAoE,GAEA,GAAA03B,GAAA3wB,KAAAnL,GACA8sB,EAAAtD,MAAAyS,YAAAj8B,EAAAoE,QACG,GAAA23B,GAAA5wB,KAAA/G,GACH0oB,EAAAtD,MAAAyS,YAAAj8B,EAAAoE,EAAAgC,QAAA21B,GAAA,qBACG,CACH,IAAAG,EAAAC,GAAAn8B,GACA,GAAAoH,MAAAc,QAAA9D,GAIA,QAAA3E,EAAA,EAAAyQ,EAAA9L,EAAAgB,OAAuC3F,EAAAyQ,EAASzQ,IAChDqtB,EAAAtD,MAAA0S,GAAA93B,EAAA3E,QAGAqtB,EAAAtD,MAAA0S,GAAA93B,IAKAg4B,IAAA,qBAGAD,GAAAp2B,EAAA,SAAA+O,GAGA,GAFA+mB,OAAAhK,SAAAlN,cAAA,OAAA6E,MAEA,YADA1U,EAAA3O,EAAA2O,KACAA,KAAA+mB,GACA,OAAA/mB,EAGA,IADA,IAAAunB,EAAAvnB,EAAAtO,OAAA,GAAAF,cAAAwO,EAAArO,MAAA,GACAhH,EAAA,EAAiBA,EAAA28B,GAAAh3B,OAAwB3F,IAAA,CACzC,IAAAO,EAAAo8B,GAAA38B,GAAA48B,EACA,GAAAr8B,KAAA67B,GACA,OAAA77B,KAKA,SAAAs8B,GAAAvW,EAAArW,GACA,IAAA3B,EAAA2B,EAAA3B,KACA8nB,EAAA9P,EAAAhY,KAEA,KAAAvK,EAAAuK,EAAA4tB,cAAAn4B,EAAAuK,EAAAyb,QACAhmB,EAAAqyB,EAAA8F,cAAAn4B,EAAAqyB,EAAArM,QADA,CAMA,IAAAxT,EAAAhW,EACA8sB,EAAApd,EAAAxB,IACAquB,EAAA1G,EAAA8F,YACAa,EAAA3G,EAAA4G,iBAAA5G,EAAArM,UAGAkT,EAAAH,GAAAC,EAEAhT,EAAAkS,GAAAhsB,EAAA3B,KAAAyb,WAKA9Z,EAAA3B,KAAA0uB,gBAAA/4B,EAAA8lB,EAAAlZ,QACAjJ,KAAemiB,GACfA,EAEA,IAAAmT,EApGA,SAAAjtB,EAAAktB,GACA,IACAC,EADAp1B,KAGA,GAAAm1B,EAEA,IADA,IAAAjM,EAAAjhB,EACAihB,EAAAliB,oBACAkiB,IAAAliB,kBAAA4X,SAEAsK,EAAA5iB,OACA8uB,EAAApB,GAAA9K,EAAA5iB,QAEA1G,EAAAI,EAAAo1B,IAKAA,EAAApB,GAAA/rB,EAAA3B,QACA1G,EAAAI,EAAAo1B,GAIA,IADA,IAAAnM,EAAAhhB,EACAghB,IAAAhiB,QACAgiB,EAAA3iB,OAAA8uB,EAAApB,GAAA/K,EAAA3iB,QACA1G,EAAAI,EAAAo1B,GAGA,OAAAp1B,EAyEAq1B,CAAAptB,GAAA,GAEA,IAAA1P,KAAA08B,EACAl5B,EAAAm5B,EAAA38B,KACAg8B,GAAAlP,EAAA9sB,EAAA,IAGA,IAAAA,KAAA28B,GACA3mB,EAAA2mB,EAAA38B,MACA08B,EAAA18B,IAEAg8B,GAAAlP,EAAA9sB,EAAA,MAAAgW,EAAA,GAAAA,IAKA,IAAAwT,IACAzoB,OAAAu7B,GACA/uB,OAAA+uB,IASA,SAAAS,GAAAjQ,EAAAgJ,GAEA,GAAAA,QAAAqB,QAKA,GAAArK,EAAAkQ,UACAlH,EAAAlwB,QAAA,QACAkwB,EAAA3wB,MAAA,OAAA2K,QAAA,SAAAhQ,GAA6C,OAAAgtB,EAAAkQ,UAAAvwB,IAAA3M,KAE7CgtB,EAAAkQ,UAAAvwB,IAAAqpB,OAEG,CACH,IAAA9f,EAAA,KAAA8W,EAAAmQ,aAAA,kBACAjnB,EAAApQ,QAAA,IAAAkwB,EAAA,QACAhJ,EAAAoF,aAAA,SAAAlc,EAAA8f,GAAAqB,SASA,SAAA+F,GAAApQ,EAAAgJ,GAEA,GAAAA,QAAAqB,QAKA,GAAArK,EAAAkQ,UACAlH,EAAAlwB,QAAA,QACAkwB,EAAA3wB,MAAA,OAAA2K,QAAA,SAAAhQ,GAA6C,OAAAgtB,EAAAkQ,UAAAx3B,OAAA1F,KAE7CgtB,EAAAkQ,UAAAx3B,OAAAswB,GAEAhJ,EAAAkQ,UAAA53B,QACA0nB,EAAAuI,gBAAA,aAEG,CAGH,IAFA,IAAArf,EAAA,KAAA8W,EAAAmQ,aAAA,kBACAE,EAAA,IAAArH,EAAA,IACA9f,EAAApQ,QAAAu3B,IAAA,GACAnnB,IAAA5P,QAAA+2B,EAAA,MAEAnnB,IAAAmhB,QAEArK,EAAAoF,aAAA,QAAAlc,GAEA8W,EAAAuI,gBAAA,UAOA,SAAA+H,GAAAjzB,GACA,GAAAA,EAAA,CAIA,oBAAAA,EAAA,CACA,IAAA1C,KAKA,OAJA,IAAA0C,EAAAkzB,KACAh2B,EAAAI,EAAA61B,GAAAnzB,EAAAnK,MAAA,MAEAqH,EAAAI,EAAA0C,GACA1C,EACG,uBAAA0C,EACHmzB,GAAAnzB,QADG,GAKH,IAAAmzB,GAAAv3B,EAAA,SAAA/F,GACA,OACAu9B,WAAAv9B,EAAA,SACAw9B,aAAAx9B,EAAA,YACAy9B,iBAAAz9B,EAAA,gBACA09B,WAAA19B,EAAA,SACA29B,aAAA39B,EAAA,YACA49B,iBAAA59B,EAAA,mBAIA69B,GAAApzB,IAAAW,EACA0yB,GAAA,aACAC,GAAA,YAGAC,GAAA,aACAC,GAAA,gBACAC,GAAA,YACAC,GAAA,eACAN,UAEA76B,IAAA0H,OAAA0zB,sBACAp7B,IAAA0H,OAAA2zB,wBAEAL,GAAA,mBACAC,GAAA,4BAEAj7B,IAAA0H,OAAA4zB,qBACAt7B,IAAA0H,OAAA6zB,uBAEAL,GAAA,kBACAC,GAAA,uBAKA,IAAAK,GAAA/zB,EACAC,OAAA+zB,sBACA/zB,OAAA+zB,sBAAAx9B,KAAAyJ,QACAsM,WACA,SAAAhR,GAA8C,OAAAA,KAE9C,SAAA04B,GAAA14B,GACAw4B,GAAA,WACAA,GAAAx4B,KAIA,SAAA24B,GAAA7R,EAAAgJ,GACA,IAAA8I,EAAA9R,EAAAkJ,qBAAAlJ,EAAAkJ,uBACA4I,EAAAh5B,QAAAkwB,GAAA,IACA8I,EAAA1xB,KAAA4oB,GACAiH,GAAAjQ,EAAAgJ,IAIA,SAAA+I,GAAA/R,EAAAgJ,GACAhJ,EAAAkJ,oBACAxwB,EAAAsnB,EAAAkJ,mBAAAF,GAEAoH,GAAApQ,EAAAgJ,GAGA,SAAAgJ,GACAhS,EACAiS,EACApnB,GAEA,IAAAyW,EAAA4Q,GAAAlS,EAAAiS,GACAh9B,EAAAqsB,EAAArsB,KACAkmB,EAAAmG,EAAAnG,QACAgX,EAAA7Q,EAAA6Q,UACA,IAAAl9B,EAAc,OAAA4V,IACd,IAAAsB,EAAAlX,IAAA+7B,GAAAG,GAAAE,GACAe,EAAA,EACAC,EAAA,WACArS,EAAA6I,oBAAA1c,EAAAmmB,GACAznB,KAEAynB,EAAA,SAAA/2B,GACAA,EAAAvF,SAAAgqB,KACAoS,GAAAD,GACAE,KAIAnoB,WAAA,WACAkoB,EAAAD,GACAE,KAEGlX,EAAA,GACH6E,EAAAnhB,iBAAAsN,EAAAmmB,GAGA,IAAAC,GAAA,yBAEA,SAAAL,GAAAlS,EAAAiS,GACA,IAQAh9B,EARAu9B,EAAA50B,OAAA60B,iBAAAzS,GACA0S,EAAAF,EAAAtB,GAAA,SAAA74B,MAAA,MACAs6B,EAAAH,EAAAtB,GAAA,YAAA74B,MAAA,MACAu6B,EAAAC,GAAAH,EAAAC,GACAG,EAAAN,EAAApB,GAAA,SAAA/4B,MAAA,MACA06B,EAAAP,EAAApB,GAAA,YAAA/4B,MAAA,MACA26B,EAAAH,GAAAC,EAAAC,GAGA5X,EAAA,EACAgX,EAAA,EA8BA,OA5BAF,IAAAjB,GACA4B,EAAA,IACA39B,EAAA+7B,GACA7V,EAAAyX,EACAT,EAAAQ,EAAAr6B,QAEG25B,IAAAhB,GACH+B,EAAA,IACA/9B,EAAAg8B,GACA9V,EAAA6X,EACAb,EAAAY,EAAAz6B,QASA65B,GALAl9B,GADAkmB,EAAA1jB,KAAAyN,IAAA0tB,EAAAI,IACA,EACAJ,EAAAI,EACAhC,GACAC,GACA,MAEAh8B,IAAA+7B,GACA2B,EAAAr6B,OACAy6B,EAAAz6B,OACA,GAMArD,OACAkmB,UACAgX,YACAc,aANAh+B,IAAA+7B,IACAuB,GAAAl0B,KAAAm0B,EAAAtB,GAAA,cASA,SAAA2B,GAAAK,EAAAC,GAEA,KAAAD,EAAA56B,OAAA66B,EAAA76B,QACA46B,IAAAjtB,OAAAitB,GAGA,OAAAz7B,KAAAyN,IAAAjL,MAAA,KAAAk5B,EAAAh7B,IAAA,SAAAlF,EAAAN,GACA,OAAAygC,GAAAngC,GAAAmgC,GAAAF,EAAAvgC,OAIA,SAAAygC,GAAA1+B,GACA,WAAAotB,OAAAptB,EAAAiF,MAAA,OAKA,SAAA05B,GAAAzwB,EAAA0wB,GACA,IAAAtT,EAAApd,EAAAxB,IAGAxK,EAAAopB,EAAAuT,YACAvT,EAAAuT,SAAAC,WAAA,EACAxT,EAAAuT,YAGA,IAAAtyB,EAAAqvB,GAAA1tB,EAAA3B,KAAAwyB,YACA,IAAA/8B,EAAAuK,KAKArK,EAAAopB,EAAA0T,WAAA,IAAA1T,EAAA2T,SAAA,CA4BA,IAxBA,IAAApD,EAAAtvB,EAAAsvB,IACAt7B,EAAAgM,EAAAhM,KACAw7B,EAAAxvB,EAAAwvB,WACAC,EAAAzvB,EAAAyvB,aACAC,EAAA1vB,EAAA0vB,iBACAiD,EAAA3yB,EAAA2yB,YACAC,EAAA5yB,EAAA4yB,cACAC,EAAA7yB,EAAA6yB,kBACAC,EAAA9yB,EAAA8yB,YACAV,EAAApyB,EAAAoyB,MACAW,EAAA/yB,EAAA+yB,WACAC,EAAAhzB,EAAAgzB,eACAC,EAAAjzB,EAAAizB,aACAC,EAAAlzB,EAAAkzB,OACAC,EAAAnzB,EAAAmzB,YACAC,EAAApzB,EAAAozB,gBACAC,EAAArzB,EAAAqzB,SAMAjzB,EAAAoN,GACA8lB,EAAA9lB,GAAA6K,OACAib,KAAA3yB,QAEAP,GADAkzB,IAAA3yB,QACAP,QAGA,IAAAmzB,GAAAnzB,EAAA4O,aAAArN,EAAAb,aAEA,IAAAyyB,GAAAL,GAAA,KAAAA,EAAA,CAIA,IAAAM,EAAAD,GAAAZ,EACAA,EACAnD,EACAiE,EAAAF,GAAAV,EACAA,EACAnD,EACAgE,EAAAH,GAAAX,EACAA,EACAnD,EAEAkE,EAAAJ,GACAN,GACAH,EACAc,EAAAL,GACA,mBAAAL,IACAd,EACAyB,EAAAN,GACAJ,GACAJ,EACAe,EAAAP,GACAH,GACAJ,EAEAe,EAAAl9B,EACAf,EAAAu9B,GACAA,EAAAjB,MACAiB,GAGA,EAIA,IAAAW,GAAA,IAAA1E,IAAAjyB,EACA42B,EAAAC,GAAAN,GAEAhqB,EAAAmV,EAAA0T,SAAA93B,EAAA,WACAq5B,IACAlD,GAAA/R,EAAA2U,GACA5C,GAAA/R,EAAA0U,IAEA7pB,EAAA2oB,WACAyB,GACAlD,GAAA/R,EAAAyU,GAEAM,KAAA/U,IAEA8U,KAAA9U,GAEAA,EAAA0T,SAAA,OAGA9wB,EAAA3B,KAAAm0B,MAEA/oB,GAAAzJ,EAAA,oBACA,IAAAhB,EAAAoe,EAAA4D,WACAyR,EAAAzzB,KAAA0zB,UAAA1zB,EAAA0zB,SAAA1yB,EAAA1O,KACAmhC,GACAA,EAAAr0B,MAAA4B,EAAA5B,KACAq0B,EAAAj0B,IAAAmyB,UAEA8B,EAAAj0B,IAAAmyB,WAEAsB,KAAA7U,EAAAnV,KAKA+pB,KAAA5U,GACAiV,IACApD,GAAA7R,EAAAyU,GACA5C,GAAA7R,EAAA0U,GACA9C,GAAA,WACAG,GAAA/R,EAAAyU,GACA5pB,EAAA2oB,YACA3B,GAAA7R,EAAA2U,GACAO,IACAK,GAAAP,GACA9qB,WAAAW,EAAAmqB,GAEAhD,GAAAhS,EAAA/qB,EAAA4V,QAOAjI,EAAA3B,KAAAm0B,OACA9B,OACAuB,KAAA7U,EAAAnV,IAGAoqB,GAAAC,GACArqB,MAIA,SAAA2qB,GAAA5yB,EAAA6yB,GACA,IAAAzV,EAAApd,EAAAxB,IAGAxK,EAAAopB,EAAA0T,YACA1T,EAAA0T,SAAAF,WAAA,EACAxT,EAAA0T,YAGA,IAAAzyB,EAAAqvB,GAAA1tB,EAAA3B,KAAAwyB,YACA,GAAA/8B,EAAAuK,IAAA,IAAA+e,EAAA2T,SACA,OAAA8B,IAIA,IAAA7+B,EAAAopB,EAAAuT,UAAA,CAIA,IAAAhD,EAAAtvB,EAAAsvB,IACAt7B,EAAAgM,EAAAhM,KACA27B,EAAA3vB,EAAA2vB,WACAC,EAAA5vB,EAAA4vB,aACAC,EAAA7vB,EAAA6vB,iBACA4E,EAAAz0B,EAAAy0B,YACAF,EAAAv0B,EAAAu0B,MACAG,EAAA10B,EAAA00B,WACAC,EAAA30B,EAAA20B,eACAC,EAAA50B,EAAA40B,WACAvB,EAAArzB,EAAAqzB,SAEAW,GAAA,IAAA1E,IAAAjyB,EACA42B,EAAAC,GAAAK,GAEAM,EAAAh+B,EACAf,EAAAu9B,GACAA,EAAAkB,MACAlB,GAGA,EAIA,IAAAzpB,EAAAmV,EAAAuT,SAAA33B,EAAA,WACAokB,EAAA4D,YAAA5D,EAAA4D,WAAA0R,WACAtV,EAAA4D,WAAA0R,SAAA1yB,EAAA1O,KAAA,MAEA+gC,IACAlD,GAAA/R,EAAA6Q,GACAkB,GAAA/R,EAAA8Q,IAEAjmB,EAAA2oB,WACAyB,GACAlD,GAAA/R,EAAA4Q,GAEAgF,KAAA5V,KAEAyV,IACAE,KAAA3V,IAEAA,EAAAuT,SAAA,OAGAsC,EACAA,EAAAE,GAEAA,IAGA,SAAAA,IAEAlrB,EAAA2oB,YAIA5wB,EAAA3B,KAAAm0B,QACApV,EAAA4D,WAAA0R,WAAAtV,EAAA4D,WAAA0R,cAA6D1yB,EAAA,KAAAA,GAE7D8yB,KAAA1V,GACAiV,IACApD,GAAA7R,EAAA4Q,GACAiB,GAAA7R,EAAA8Q,GACAc,GAAA,WACAG,GAAA/R,EAAA4Q,GACA/lB,EAAA2oB,YACA3B,GAAA7R,EAAA6Q,GACAqE,IACAK,GAAAO,GACA5rB,WAAAW,EAAAirB,GAEA9D,GAAAhS,EAAA/qB,EAAA4V,QAMA2qB,KAAAxV,EAAAnV,GACAoqB,GAAAC,GACArqB,MAsBA,SAAA0qB,GAAAj+B,GACA,uBAAAA,IAAAS,MAAAT,GASA,SAAA69B,GAAAj8B,GACA,GAAAxC,EAAAwC,GACA,SAEA,IAAA88B,EAAA98B,EAAAyS,IACA,OAAA/U,EAAAo/B,GAEAb,GACA76B,MAAAc,QAAA46B,GACAA,EAAA,GACAA,IAGA98B,EAAAgB,SAAAhB,EAAAZ,QAAA,EAIA,SAAA29B,GAAA18B,EAAAqJ,IACA,IAAAA,EAAA3B,KAAAm0B,MACA/B,GAAAzwB,GAIA,IA4BAszB,GAj6EA,SAAAC,GACA,IAAAxjC,EAAAuc,EACAuR,KAEA5tB,EAAAsjC,EAAAtjC,QACAoyB,EAAAkR,EAAAlR,QAEA,IAAAtyB,EAAA,EAAaA,EAAAyW,GAAA9Q,SAAkB3F,EAE/B,IADA8tB,EAAArX,GAAAzW,OACAuc,EAAA,EAAeA,EAAArc,EAAAyF,SAAoB4W,EACnCtY,EAAA/D,EAAAqc,GAAA9F,GAAAzW,MACA8tB,EAAArX,GAAAzW,IAAAyN,KAAAvN,EAAAqc,GAAA9F,GAAAzW,KAmBA,SAAAyjC,EAAApW,GACA,IAAApe,EAAAqjB,EAAArB,WAAA5D,GAEAppB,EAAAgL,IACAqjB,EAAAW,YAAAhkB,EAAAoe,GAsBA,SAAAqW,EACAzzB,EACA0zB,EACAle,EACAC,EACAke,EACAC,EACA39B,GAYA,GAVAjC,EAAAgM,EAAAxB,MAAAxK,EAAA4/B,KAMA5zB,EAAA4zB,EAAA39B,GAAA8J,GAAAC,IAGAA,EAAAb,cAAAw0B,GAiDA,SAAA3zB,EAAA0zB,EAAAle,EAAAC,GACA,IAAA1lB,EAAAiQ,EAAA3B,KACA,GAAArK,EAAAjE,GAAA,CACA,IAAA8jC,EAAA7/B,EAAAgM,EAAAjB,oBAAAhP,EAAA4lB,UAQA,GAPA3hB,EAAAjE,IAAAwT,OAAAvP,EAAAjE,IAAAulB,OACAvlB,EAAAiQ,GAAA,EAAAwV,EAAAC,GAMAzhB,EAAAgM,EAAAjB,mBAKA,OAJA+0B,EAAA9zB,EAAA0zB,GACAz/B,EAAA4/B,IA0BA,SAAA7zB,EAAA0zB,EAAAle,EAAAC,GAOA,IANA,IAAA1lB,EAKAgkC,EAAA/zB,EACA+zB,EAAAh1B,mBAEA,GADAg1B,IAAAh1B,kBAAA4X,OACA3iB,EAAAjE,EAAAgkC,EAAA11B,OAAArK,EAAAjE,IAAA8gC,YAAA,CACA,IAAA9gC,EAAA,EAAmBA,EAAA8tB,EAAAmW,SAAAt+B,SAAyB3F,EAC5C8tB,EAAAmW,SAAAjkC,GAAA4zB,GAAAoQ,GAEAL,EAAAl2B,KAAAu2B,GACA,MAKA7c,EAAA1B,EAAAxV,EAAAxB,IAAAiX,GA5CAwe,CAAAj0B,EAAA0zB,EAAAle,EAAAC,IAEA,GAhEA+B,CAAAxX,EAAA0zB,EAAAle,EAAAC,GAAA,CAIA,IAAApX,EAAA2B,EAAA3B,KACAC,EAAA0B,EAAA1B,SACAF,EAAA4B,EAAA5B,IACApK,EAAAoK,IAeA4B,EAAAxB,IAAAwB,EAAA5O,GACAixB,EAAAI,gBAAAziB,EAAA5O,GAAAgN,GACAikB,EAAApN,cAAA7W,EAAA4B,GACAk0B,EAAAl0B,GAIAm0B,EAAAn0B,EAAA1B,EAAAo1B,GACA1/B,EAAAqK,IACA+1B,EAAAp0B,EAAA0zB,GAEAxc,EAAA1B,EAAAxV,EAAAxB,IAAAiX,IAMKxhB,EAAA+L,EAAAZ,YACLY,EAAAxB,IAAA6jB,EAAAO,cAAA5iB,EAAAzB,MACA2Y,EAAA1B,EAAAxV,EAAAxB,IAAAiX,KAEAzV,EAAAxB,IAAA6jB,EAAAM,eAAA3iB,EAAAzB,MACA2Y,EAAA1B,EAAAxV,EAAAxB,IAAAiX,KAyBA,SAAAqe,EAAA9zB,EAAA0zB,GACA1/B,EAAAgM,EAAA3B,KAAAg2B,iBACAX,EAAAl2B,KAAAnG,MAAAq8B,EAAA1zB,EAAA3B,KAAAg2B,eACAr0B,EAAA3B,KAAAg2B,cAAA,MAEAr0B,EAAAxB,IAAAwB,EAAAjB,kBAAAmf,IACAoW,EAAAt0B,IACAo0B,EAAAp0B,EAAA0zB,GACAQ,EAAAl0B,KAIAujB,GAAAvjB,GAEA0zB,EAAAl2B,KAAAwC,IA0BA,SAAAkX,EAAAlY,EAAAR,EAAA+1B,GACAvgC,EAAAgL,KACAhL,EAAAugC,GACAA,EAAAvT,aAAAhiB,GACAqjB,EAAAQ,aAAA7jB,EAAAR,EAAA+1B,GAGAlS,EAAAY,YAAAjkB,EAAAR,IAKA,SAAA21B,EAAAn0B,EAAA1B,EAAAo1B,GACA,GAAAh8B,MAAAc,QAAA8F,GAIA,QAAAvO,EAAA,EAAqBA,EAAAuO,EAAA5I,SAAqB3F,EAC1C0jC,EAAAn1B,EAAAvO,GAAA2jC,EAAA1zB,EAAAxB,IAAA,QAAAF,EAAAvO,QAEKmE,EAAA8L,EAAAzB,OACL8jB,EAAAY,YAAAjjB,EAAAxB,IAAA6jB,EAAAM,eAAA/tB,OAAAoL,EAAAzB,QAIA,SAAA+1B,EAAAt0B,GACA,KAAAA,EAAAjB,mBACAiB,IAAAjB,kBAAA4X,OAEA,OAAA3iB,EAAAgM,EAAA5B,KAGA,SAAAg2B,EAAAp0B,EAAA0zB,GACA,QAAA5V,EAAA,EAAqBA,EAAAD,EAAAxsB,OAAAqE,SAAyBooB,EAC9CD,EAAAxsB,OAAAysB,GAAA6F,GAAA3jB,GAGAhM,EADAjE,EAAAiQ,EAAA3B,KAAAkF,QAEAvP,EAAAjE,EAAAsB,SAA4BtB,EAAAsB,OAAAsyB,GAAA3jB,GAC5BhM,EAAAjE,EAAAmnB,SAA4Bwc,EAAAl2B,KAAAwC,IAO5B,SAAAk0B,EAAAl0B,GACA,IAAAjQ,EACA,GAAAiE,EAAAjE,EAAAiQ,EAAAlB,WACAujB,EAAAgB,cAAArjB,EAAAxB,IAAAzO,QAGA,IADA,IAAAykC,EAAAx0B,EACAw0B,GACAxgC,EAAAjE,EAAAykC,EAAA/1B,UAAAzK,EAAAjE,IAAA4V,SAAAoP,WACAsN,EAAAgB,cAAArjB,EAAAxB,IAAAzO,GAEAykC,IAAAx1B,OAIAhL,EAAAjE,EAAA8b,KACA9b,IAAAiQ,EAAAvB,SACA1O,IAAAiQ,EAAApB,WACA5K,EAAAjE,IAAA4V,SAAAoP,WAEAsN,EAAAgB,cAAArjB,EAAAxB,IAAAzO,GAIA,SAAA0kC,EAAAjf,EAAAC,EAAAwD,EAAAyb,EAAAxQ,EAAAwP,GACA,KAAUgB,GAAAxQ,IAAoBwQ,EAC9BjB,EAAAxa,EAAAyb,GAAAhB,EAAAle,EAAAC,GAAA,EAAAwD,EAAAyb,GAIA,SAAAC,EAAA30B,GACA,IAAAjQ,EAAAuc,EACAjO,EAAA2B,EAAA3B,KACA,GAAArK,EAAAqK,GAEA,IADArK,EAAAjE,EAAAsO,EAAAkF,OAAAvP,EAAAjE,IAAAqnB,UAAyDrnB,EAAAiQ,GACzDjQ,EAAA,EAAiBA,EAAA8tB,EAAAzG,QAAA1hB,SAAwB3F,EAAO8tB,EAAAzG,QAAArnB,GAAAiQ,GAEhD,GAAAhM,EAAAjE,EAAAiQ,EAAA1B,UACA,IAAAgO,EAAA,EAAiBA,EAAAtM,EAAA1B,SAAA5I,SAA2B4W,EAC5CqoB,EAAA30B,EAAA1B,SAAAgO,IAKA,SAAAsoB,EAAApf,EAAAyD,EAAAyb,EAAAxQ,GACA,KAAUwQ,GAAAxQ,IAAoBwQ,EAAA,CAC9B,IAAAG,EAAA5b,EAAAyb,GACA1gC,EAAA6gC,KACA7gC,EAAA6gC,EAAAz2B,MACA02B,EAAAD,GACAF,EAAAE,IAEArB,EAAAqB,EAAAr2B,OAMA,SAAAs2B,EAAA90B,EAAA6yB,GACA,GAAA7+B,EAAA6+B,IAAA7+B,EAAAgM,EAAA3B,MAAA,CACA,IAAAtO,EACAqb,EAAAyS,EAAA/nB,OAAAJ,OAAA,EAaA,IAZA1B,EAAA6+B,GAGAA,EAAAznB,aAGAynB,EArRA,SAAAkC,EAAA3pB,GACA,SAAAtV,IACA,KAAAA,EAAAsV,WACAooB,EAAAuB,GAIA,OADAj/B,EAAAsV,YACAtV,EA8QAk/B,CAAAh1B,EAAAxB,IAAA4M,GAGApX,EAAAjE,EAAAiQ,EAAAjB,oBAAA/K,EAAAjE,IAAA4mB,SAAA3iB,EAAAjE,EAAAsO,OACAy2B,EAAA/kC,EAAA8iC,GAEA9iC,EAAA,EAAiBA,EAAA8tB,EAAA/nB,OAAAJ,SAAuB3F,EACxC8tB,EAAA/nB,OAAA/F,GAAAiQ,EAAA6yB,GAEA7+B,EAAAjE,EAAAiQ,EAAA3B,KAAAkF,OAAAvP,EAAAjE,IAAA+F,QACA/F,EAAAiQ,EAAA6yB,GAEAA,SAGAW,EAAAxzB,EAAAxB,KA8FA,SAAAy2B,EAAAp1B,EAAAq1B,EAAA19B,EAAAi4B,GACA,QAAA1/B,EAAAyH,EAAuBzH,EAAA0/B,EAAS1/B,IAAA,CAChC,IAAAK,EAAA8kC,EAAAnlC,GACA,GAAAiE,EAAA5D,IAAAwzB,GAAA/jB,EAAAzP,GAA2C,OAAAL,GAI3C,SAAAolC,EAAA9e,EAAArW,EAAA0zB,EAAA0B,GACA,GAAA/e,IAAArW,EAAA,CAIA,IAAAxB,EAAAwB,EAAAxB,IAAA6X,EAAA7X,IAEA,GAAAvK,EAAAoiB,EAAA7W,oBACAxL,EAAAgM,EAAArB,aAAAmZ,UACAud,EAAAhf,EAAA7X,IAAAwB,EAAA0zB,GAEA1zB,EAAAR,oBAAA,OASA,GAAAvL,EAAA+L,EAAAd,WACAjL,EAAAoiB,EAAAnX,WACAc,EAAA1O,MAAA+kB,EAAA/kB,MACA2C,EAAA+L,EAAAX,WAAApL,EAAA+L,EAAAV,SAEAU,EAAAjB,kBAAAsX,EAAAtX,sBALA,CASA,IAAAhP,EACAsO,EAAA2B,EAAA3B,KACArK,EAAAqK,IAAArK,EAAAjE,EAAAsO,EAAAkF,OAAAvP,EAAAjE,IAAA8lB,WACA9lB,EAAAsmB,EAAArW,GAGA,IAAAk1B,EAAA7e,EAAA/X,SACAu2B,EAAA70B,EAAA1B,SACA,GAAAtK,EAAAqK,IAAAi2B,EAAAt0B,GAAA,CACA,IAAAjQ,EAAA,EAAiBA,EAAA8tB,EAAAhgB,OAAAnI,SAAuB3F,EAAO8tB,EAAAhgB,OAAA9N,GAAAsmB,EAAArW,GAC/ChM,EAAAjE,EAAAsO,EAAAkF,OAAAvP,EAAAjE,IAAA8N,SAAwD9N,EAAAsmB,EAAArW,GAExDlM,EAAAkM,EAAAzB,MACAvK,EAAAkhC,IAAAlhC,EAAA6gC,GACAK,IAAAL,GA5IA,SAAArf,EAAA0f,EAAAI,EAAA5B,EAAA0B,GAoBA,IAnBA,IAQAG,EAAAC,EAAAC,EARAC,EAAA,EACAC,EAAA,EACAC,EAAAV,EAAAx/B,OAAA,EACAmgC,EAAAX,EAAA,GACAY,EAAAZ,EAAAU,GACAG,EAAAT,EAAA5/B,OAAA,EACAsgC,EAAAV,EAAA,GACAW,EAAAX,EAAAS,GAMAG,GAAAd,EAMAM,GAAAE,GAAAD,GAAAI,GACAjiC,EAAA+hC,GACAA,EAAAX,IAAAQ,GACO5hC,EAAAgiC,GACPA,EAAAZ,IAAAU,GACOhS,GAAAiS,EAAAG,IACPb,EAAAU,EAAAG,EAAAtC,GACAmC,EAAAX,IAAAQ,GACAM,EAAAV,IAAAK,IACO/R,GAAAkS,EAAAG,IACPd,EAAAW,EAAAG,EAAAvC,GACAoC,EAAAZ,IAAAU,GACAK,EAAAX,IAAAS,IACOnS,GAAAiS,EAAAI,IACPd,EAAAU,EAAAI,EAAAvC,GACAwC,GAAA7T,EAAAQ,aAAArN,EAAAqgB,EAAAr3B,IAAA6jB,EAAAa,YAAA4S,EAAAt3B,MACAq3B,EAAAX,IAAAQ,GACAO,EAAAX,IAAAS,IACOnS,GAAAkS,EAAAE,IACPb,EAAAW,EAAAE,EAAAtC,GACAwC,GAAA7T,EAAAQ,aAAArN,EAAAsgB,EAAAt3B,IAAAq3B,EAAAr3B,KACAs3B,EAAAZ,IAAAU,GACAI,EAAAV,IAAAK,KAEA7hC,EAAAyhC,KAAmCA,EAAAvR,GAAAkR,EAAAQ,EAAAE,IAInC9hC,EAHA0hC,EAAAxhC,EAAAgiC,EAAA1kC,KACAikC,EAAAS,EAAA1kC,KACA2jC,EAAAe,EAAAd,EAAAQ,EAAAE,IAEAnC,EAAAuC,EAAAtC,EAAAle,EAAAqgB,EAAAr3B,KAAA,EAAA82B,EAAAK,GAGA/R,GADA6R,EAAAP,EAAAM,GACAQ,IACAb,EAAAM,EAAAO,EAAAtC,GACAwB,EAAAM,QAAAliC,EACA4iC,GAAA7T,EAAAQ,aAAArN,EAAAigB,EAAAj3B,IAAAq3B,EAAAr3B,MAGAi1B,EAAAuC,EAAAtC,EAAAle,EAAAqgB,EAAAr3B,KAAA,EAAA82B,EAAAK,GAGAK,EAAAV,IAAAK,IAGAD,EAAAE,EAEAnB,EAAAjf,EADA1hB,EAAAwhC,EAAAS,EAAA,SAAAT,EAAAS,EAAA,GAAAv3B,IACA82B,EAAAK,EAAAI,EAAArC,GACKiC,EAAAI,GACLnB,EAAApf,EAAA0f,EAAAQ,EAAAE,GAwE2BO,CAAA33B,EAAA02B,EAAAL,EAAAnB,EAAA0B,GACpBphC,EAAA6gC,IACP7gC,EAAAqiB,EAAA9X,OAAmC8jB,EAAAc,eAAA3kB,EAAA,IACnCi2B,EAAAj2B,EAAA,KAAAq2B,EAAA,EAAAA,EAAAn/B,OAAA,EAAAg+B,IACO1/B,EAAAkhC,GACPN,EAAAp2B,EAAA02B,EAAA,EAAAA,EAAAx/B,OAAA,GACO1B,EAAAqiB,EAAA9X,OACP8jB,EAAAc,eAAA3kB,EAAA,IAEK6X,EAAA9X,OAAAyB,EAAAzB,MACL8jB,EAAAc,eAAA3kB,EAAAwB,EAAAzB,MAEAvK,EAAAqK,IACArK,EAAAjE,EAAAsO,EAAAkF,OAAAvP,EAAAjE,IAAAqmC,YAA2DrmC,EAAAsmB,EAAArW,KAI3D,SAAAq2B,EAAAr2B,EAAAyM,EAAA6pB,GAGA,GAAAriC,EAAAqiC,IAAAtiC,EAAAgM,EAAAhB,QACAgB,EAAAhB,OAAAX,KAAAg2B,cAAA5nB,OAEA,QAAA1c,EAAA,EAAqBA,EAAA0c,EAAA/W,SAAkB3F,EACvC0c,EAAA1c,GAAAsO,KAAAkF,KAAA2T,OAAAzK,EAAA1c,IAKA,IAKAwmC,EAAAnhC,EAAA,2CAGA,SAAAigC,EAAA72B,EAAAwB,EAAA0zB,EAAA8C,GACA,IAAAzmC,EACAqO,EAAA4B,EAAA5B,IACAC,EAAA2B,EAAA3B,KACAC,EAAA0B,EAAA1B,SAIA,GAHAk4B,KAAAn4B,KAAAo4B,IACAz2B,EAAAxB,MAEAvK,EAAA+L,EAAAZ,YAAApL,EAAAgM,EAAArB,cAEA,OADAqB,EAAAR,oBAAA,GACA,EAQA,GAAAxL,EAAAqK,KACArK,EAAAjE,EAAAsO,EAAAkF,OAAAvP,EAAAjE,IAAAulB,OAAsDvlB,EAAAiQ,GAAA,GACtDhM,EAAAjE,EAAAiQ,EAAAjB,oBAGA,OADA+0B,EAAA9zB,EAAA0zB,IACA,EAGA,GAAA1/B,EAAAoK,GAAA,CACA,GAAApK,EAAAsK,GAEA,GAAAE,EAAAk4B,gBAIA,GAAA1iC,EAAAjE,EAAAsO,IAAArK,EAAAjE,IAAA0iB,WAAAze,EAAAjE,IAAA4mC,YACA,GAAA5mC,IAAAyO,EAAAm4B,UAWA,aAEW,CAIX,IAFA,IAAAC,GAAA,EACA3V,EAAAziB,EAAAq4B,WACA/Y,EAAA,EAA6BA,EAAAxf,EAAA5I,OAAuBooB,IAAA,CACpD,IAAAmD,IAAAoU,EAAApU,EAAA3iB,EAAAwf,GAAA4V,EAAA8C,GAAA,CACAI,GAAA,EACA,MAEA3V,IAAAiC,YAIA,IAAA0T,GAAA3V,EAUA,cAxCAkT,EAAAn0B,EAAA1B,EAAAo1B,GA6CA,GAAA1/B,EAAAqK,GAAA,CACA,IAAAy4B,GAAA,EACA,QAAAxlC,KAAA+M,EACA,IAAAk4B,EAAAjlC,GAAA,CACAwlC,GAAA,EACA1C,EAAAp0B,EAAA0zB,GACA,OAGAoD,GAAAz4B,EAAA,OAEA+J,GAAA/J,EAAA,aAGKG,EAAAH,OAAA2B,EAAAzB,OACLC,EAAAH,KAAA2B,EAAAzB,MAEA,SAcA,gBAAA8X,EAAArW,EAAAuV,EAAA6f,EAAA5f,EAAAC,GACA,IAAA3hB,EAAAkM,GAAA,CAKA,IAAA+2B,GAAA,EACArD,KAEA,GAAA5/B,EAAAuiB,GAEA0gB,GAAA,EACAtD,EAAAzzB,EAAA0zB,EAAAle,EAAAC,OACK,CACL,IAAAuhB,EAAAhjC,EAAAqiB,EAAA0a,UACA,IAAAiG,GAAApT,GAAAvN,EAAArW,GAEAm1B,EAAA9e,EAAArW,EAAA0zB,EAAA0B,OACO,CACP,GAAA4B,EAAA,CAQA,GAJA,IAAA3gB,EAAA0a,UAAA1a,EAAA4gB,aAAA99B,KACAkd,EAAAsP,gBAAAxsB,GACAoc,GAAA,GAEAthB,EAAAshB,IACA8f,EAAAhf,EAAArW,EAAA0zB,GAEA,OADA2C,EAAAr2B,EAAA0zB,GAAA,GACArd,EAaAA,EAlnBA,SAAA7X,GACA,WAAAL,GAAAkkB,EAAAC,QAAA9jB,GAAA7I,yBAA2DrC,EAAAkL,GAinB3D04B,CAAA7gB,GAIA,IAAA8gB,EAAA9gB,EAAA7X,IACA44B,EAAA/U,EAAArB,WAAAmW,GAcA,GAXA1D,EACAzzB,EACA0zB,EAIAyD,EAAAxG,SAAA,KAAAyG,EACA/U,EAAAa,YAAAiU,IAIAnjC,EAAAgM,EAAAhB,QAGA,IAFA,IAAAw1B,EAAAx0B,EAAAhB,OACAq4B,EAAA/C,EAAAt0B,GACAw0B,GAAA,CACA,QAAAzkC,EAAA,EAA2BA,EAAA8tB,EAAAzG,QAAA1hB,SAAwB3F,EACnD8tB,EAAAzG,QAAArnB,GAAAykC,GAGA,GADAA,EAAAh2B,IAAAwB,EAAAxB,IACA64B,EAAA,CACA,QAAAvZ,EAAA,EAA+BA,EAAAD,EAAAxsB,OAAAqE,SAAyBooB,EACxDD,EAAAxsB,OAAAysB,GAAA6F,GAAA6Q,GAKA,IAAAtd,EAAAsd,EAAAn2B,KAAAkF,KAAA2T,OACA,GAAAA,EAAArN,OAEA,QAAAytB,EAAA,EAAiCA,EAAApgB,EAAAnO,IAAArT,OAAyB4hC,IAC1DpgB,EAAAnO,IAAAuuB,UAIA/T,GAAAiR,GAEAA,IAAAx1B,OAKAhL,EAAAojC,GACAxC,EAAAwC,GAAA/gB,GAAA,KACSriB,EAAAqiB,EAAAjY,MACTu2B,EAAAte,IAMA,OADAggB,EAAAr2B,EAAA0zB,EAAAqD,GACA/2B,EAAAxB,IAnGAxK,EAAAqiB,IAA4Bse,EAAAte,IAw0D5BkhB,EAAiClV,WAAApyB,SAdjCub,GACAob,GACA6B,GACAhW,GACAqH,GAlBA/e,GACA1J,OAAAgiC,GACAW,SAAAX,GACAv9B,OAAA,SAAAkK,EAAA6yB,IAEA,IAAA7yB,EAAA3B,KAAAm0B,KACAI,GAAA5yB,EAAA6yB,GAEAA,UAkBAxvB,OAAAgiB,MAUA3pB,GAEAymB,SAAAlmB,iBAAA,6BACA,IAAAmhB,EAAA+E,SAAAqJ,cACApO,KAAAoa,QACAC,GAAAra,EAAA,WAKA,IAAAsa,IACAj3B,SAAA,SAAA2c,EAAAua,EAAA33B,EAAAqW,GACA,WAAArW,EAAA5B,KAEAiY,EAAA7X,MAAA6X,EAAA7X,IAAAo5B,UACAnuB,GAAAzJ,EAAA,uBACA03B,GAAA5S,iBAAA1H,EAAAua,EAAA33B,KAGA63B,GAAAza,EAAAua,EAAA33B,EAAAvB,SAEA2e,EAAAwa,aAAAriC,IAAArF,KAAAktB,EAAApZ,QAAA8zB,MACK,aAAA93B,EAAA5B,KAAA4jB,GAAA5E,EAAA/qB,SACL+qB,EAAAsO,YAAAiM,EAAA1S,UACA0S,EAAA1S,UAAAlX,OACAqP,EAAAnhB,iBAAA,mBAAA87B,IACA3a,EAAAnhB,iBAAA,iBAAA+7B,IAKA5a,EAAAnhB,iBAAA,SAAA+7B,IAEAt8B,IACA0hB,EAAAoa,QAAA,MAMA1S,iBAAA,SAAA1H,EAAAua,EAAA33B,GACA,cAAAA,EAAA5B,IAAA,CACAy5B,GAAAza,EAAAua,EAAA33B,EAAAvB,SAKA,IAAAw5B,EAAA7a,EAAAwa,UACAM,EAAA9a,EAAAwa,aAAAriC,IAAArF,KAAAktB,EAAApZ,QAAA8zB,IACA,GAAAI,EAAAC,KAAA,SAAA3nC,EAAAT,GAA2C,OAAAqI,EAAA5H,EAAAynC,EAAAloC,OAG3CqtB,EAAAmF,SACAoV,EAAA3mC,MAAAmnC,KAAA,SAAApkC,GAA6C,OAAAqkC,GAAArkC,EAAAmkC,KAC7CP,EAAA3mC,QAAA2mC,EAAA7oB,UAAAspB,GAAAT,EAAA3mC,MAAAknC,KAEAT,GAAAra,EAAA,aAOA,SAAAya,GAAAza,EAAAua,EAAA10B,GACAo1B,GAAAjb,EAAAua,EAAA10B,IAEAzH,GAAAG,IACA2L,WAAA,WACA+wB,GAAAjb,EAAAua,EAAA10B,IACK,GAIL,SAAAo1B,GAAAjb,EAAAua,EAAA10B,GACA,IAAAjS,EAAA2mC,EAAA3mC,MACAsnC,EAAAlb,EAAAmF,SACA,IAAA+V,GAAA5gC,MAAAc,QAAAxH,GAAA,CASA,IADA,IAAAkxB,EAAAqW,EACAxoC,EAAA,EAAAC,EAAAotB,EAAApZ,QAAAtO,OAAwC3F,EAAAC,EAAOD,IAE/C,GADAwoC,EAAAnb,EAAApZ,QAAAjU,GACAuoC,EACApW,EAAAnpB,EAAA/H,EAAA8mC,GAAAS,KAAA,EACAA,EAAArW,eACAqW,EAAArW,iBAGA,GAAA9pB,EAAA0/B,GAAAS,GAAAvnC,GAIA,YAHAosB,EAAAob,gBAAAzoC,IACAqtB,EAAAob,cAAAzoC,IAMAuoC,IACAlb,EAAAob,eAAA,IAIA,SAAAJ,GAAApnC,EAAAgT,GACA,OAAAA,EAAAtL,MAAA,SAAAlI,GAAqC,OAAA4H,EAAA5H,EAAAQ,KAGrC,SAAA8mC,GAAAS,GACA,iBAAAA,EACAA,EAAArN,OACAqN,EAAAvnC,MAGA,SAAA+mC,GAAAp/B,GACAA,EAAAvF,OAAAk4B,WAAA,EAGA,SAAA0M,GAAAr/B,GAEAA,EAAAvF,OAAAk4B,YACA3yB,EAAAvF,OAAAk4B,WAAA,EACAmM,GAAA9+B,EAAAvF,OAAA,UAGA,SAAAqkC,GAAAra,EAAA/qB,GACA,IAAAsG,EAAAwpB,SAAAsW,YAAA,cACA9/B,EAAA+/B,UAAArmC,GAAA,MACA+qB,EAAAub,cAAAhgC,GAMA,SAAAigC,GAAA54B,GACA,OAAAA,EAAAjB,mBAAAiB,EAAA3B,MAAA2B,EAAA3B,KAAAwyB,WAEA7wB,EADA44B,GAAA54B,EAAAjB,kBAAA4X,QAIA,IAuDAkiB,IACAlgB,MAAA+e,GACAlF,MAxDAjhC,KAAA,SAAA6rB,EAAAsB,EAAA1e,GACA,IAAAhP,EAAA0tB,EAAA1tB,MAGA8nC,GADA94B,EAAA44B,GAAA54B,IACA3B,MAAA2B,EAAA3B,KAAAwyB,WACAkI,EAAA3b,EAAA4b,mBACA,SAAA5b,EAAAtD,MAAAmf,QAAA,GAAA7b,EAAAtD,MAAAmf,QACAjoC,GAAA8nC,GACA94B,EAAA3B,KAAAm0B,MAAA,EACA/B,GAAAzwB,EAAA,WACAod,EAAAtD,MAAAmf,QAAAF,KAGA3b,EAAAtD,MAAAmf,QAAAjoC,EAAA+nC,EAAA,QAIAl7B,OAAA,SAAAuf,EAAAsB,EAAA1e,GACA,IAAAhP,EAAA0tB,EAAA1tB,OAIAA,IAHA0tB,EAAA5P,YAIA9O,EAAA44B,GAAA54B,IACA3B,MAAA2B,EAAA3B,KAAAwyB,YAEA7wB,EAAA3B,KAAAm0B,MAAA,EACAxhC,EACAy/B,GAAAzwB,EAAA,WACAod,EAAAtD,MAAAmf,QAAA7b,EAAA4b,qBAGApG,GAAA5yB,EAAA,WACAod,EAAAtD,MAAAmf,QAAA,UAIA7b,EAAAtD,MAAAmf,QAAAjoC,EAAAosB,EAAA4b,mBAAA,SAIAE,OAAA,SACA9b,EACAua,EACA33B,EACAqW,EACAkO,GAEAA,IACAnH,EAAAtD,MAAAmf,QAAA7b,EAAA4b,uBAeAG,IACA7oC,KAAAsE,OACA28B,OAAA/rB,QACAmoB,IAAAnoB,QACAtU,KAAA0D,OACAvC,KAAAuC,OACAi5B,WAAAj5B,OACAo5B,WAAAp5B,OACAk5B,aAAAl5B,OACAq5B,aAAAr5B,OACAm5B,iBAAAn5B,OACAs5B,iBAAAt5B,OACAo8B,YAAAp8B,OACAs8B,kBAAAt8B,OACAq8B,cAAAr8B,OACA88B,UAAAxS,OAAAtqB,OAAAnE,SAKA,SAAA2oC,GAAAp5B,GACA,IAAAq5B,EAAAr5B,KAAAtB,iBACA,OAAA26B,KAAA98B,KAAAyH,QAAAoV,SACAggB,GAAAtuB,GAAAuuB,EAAA/6B,WAEA0B,EAIA,SAAAs5B,GAAA1uB,GACA,IAAAvM,KACA2F,EAAA4G,EAAAjF,SAEA,QAAArU,KAAA0S,EAAAmB,UACA9G,EAAA/M,GAAAsZ,EAAAtZ,GAIA,IAAA8Z,EAAApH,EAAA+S,iBACA,QAAAvT,KAAA4H,EACA/M,EAAA5H,EAAA+M,IAAA4H,EAAA5H,GAEA,OAAAnF,EAGA,SAAAk7B,GAAAC,EAAAC,GACA,oBAAAh+B,KAAAg+B,EAAAr7B,KACA,OAAAo7B,EAAA,cACA/1B,MAAAg2B,EAAA/6B,iBAAAyG,YAiBA,IAAAu0B,IACAppC,KAAA,aACAmT,MAAA01B,GACA/f,UAAA,EAEAnI,OAAA,SAAAuoB,GACA,IAAAla,EAAApmB,KAEAoF,EAAApF,KAAAuY,OAAA/L,QACA,GAAApH,IAKAA,IAAAsS,OAAA,SAAAxgB,GAA6C,OAAAA,EAAAgO,KAAAoB,GAAApP,MAE7CsF,OAAA,CAKA,EAQA,IAAAxE,EAAAgI,KAAAhI,KAGA,EASA,IAAAuoC,EAAAn7B,EAAA,GAIA,GAzDA,SAAA0B,GACA,KAAAA,IAAAhB,QACA,GAAAgB,EAAA3B,KAAAwyB,WACA,SAsDA8I,CAAAzgC,KAAAwd,QACA,OAAA+iB,EAKA,IAAA/5B,EAAA05B,GAAAK,GAEA,IAAA/5B,EACA,OAAA+5B,EAGA,GAAAvgC,KAAA0gC,SACA,OAAAL,GAAAC,EAAAC,GAMA,IAAAr8B,EAAA,gBAAAlE,KAAA,SACAwG,EAAApO,IAAA,MAAAoO,EAAApO,IACAoO,EAAAN,UACAhC,EAAA,UACAA,EAAAsC,EAAAtB,IACAlK,EAAAwL,EAAApO,KACA,IAAAsD,OAAA8K,EAAApO,KAAA4E,QAAAkH,GAAAsC,EAAApO,IAAA8L,EAAAsC,EAAApO,IACAoO,EAAApO,IAEA,IAAA+M,GAAAqB,EAAArB,OAAAqB,EAAArB,UAA8CwyB,WAAAyI,GAAApgC,MAC9C2gC,EAAA3gC,KAAAyd,OACAmjB,EAAAV,GAAAS,GAQA,GAJAn6B,EAAArB,KAAAgG,YAAA3E,EAAArB,KAAAgG,WAAA8zB,KAAA,SAAA9nC,GAA0E,eAAAA,EAAAC,SAC1EoP,EAAArB,KAAAm0B,MAAA,GAIAsH,GACAA,EAAAz7B,OAzFA,SAAAqB,EAAAo6B,GACA,OAAAA,EAAAxoC,MAAAoO,EAAApO,KAAAwoC,EAAA17B,MAAAsB,EAAAtB,IAyFA27B,CAAAr6B,EAAAo6B,KACAt6B,GAAAs6B,MAEAA,EAAA/6B,oBAAA+6B,EAAA/6B,kBAAA4X,OAAAvX,WACA,CAGA,IAAA+mB,EAAA2T,EAAAz7B,KAAAwyB,WAAAl5B,KAAwD0G,GAExD,cAAAnN,EAOA,OALAgI,KAAA0gC,UAAA,EACAnwB,GAAA0c,EAAA,wBACA7G,EAAAsa,UAAA,EACAta,EAAAtI,iBAEAuiB,GAAAC,EAAAC,GACO,cAAAvoC,EAAA,CACP,GAAAsO,GAAAE,GACA,OAAAm6B,EAEA,IAAAG,EACA7G,EAAA,WAAwC6G,KACxCvwB,GAAApL,EAAA,aAAA80B,GACA1pB,GAAApL,EAAA,iBAAA80B,GACA1pB,GAAA0c,EAAA,sBAAAyM,GAAgEoH,EAAApH,KAIhE,OAAA6G,KAiBAh2B,GAAA9L,GACAyG,IAAAxJ,OACAqlC,UAAArlC,QACCukC,IA6HD,SAAAe,GAAA9pC,GAEAA,EAAAoO,IAAA27B,SACA/pC,EAAAoO,IAAA27B,UAGA/pC,EAAAoO,IAAAsyB,UACA1gC,EAAAoO,IAAAsyB,WAIA,SAAAsJ,GAAAhqC,GACAA,EAAAiO,KAAAg8B,OAAAjqC,EAAAoO,IAAA87B,wBAGA,SAAAC,GAAAnqC,GACA,IAAAoqC,EAAApqC,EAAAiO,KAAAo8B,IACAJ,EAAAjqC,EAAAiO,KAAAg8B,OACAK,EAAAF,EAAAG,KAAAN,EAAAM,KACAC,EAAAJ,EAAAK,IAAAR,EAAAQ,IACA,GAAAH,GAAAE,EAAA,CACAxqC,EAAAiO,KAAAy8B,OAAA,EACA,IAAAhpC,EAAA1B,EAAAoO,IAAAsb,MACAhoB,EAAAipC,UAAAjpC,EAAAkpC,gBAAA,aAAAN,EAAA,MAAAE,EAAA,MACA9oC,EAAAmpC,mBAAA,aAnJAx3B,GAAAvS,KAuJA,IAAAgqC,IACAxB,cACAyB,iBAtJA13B,SAEAwN,OAAA,SAAAuoB,GAQA,IAPA,IAAAp7B,EAAAlF,KAAAkF,KAAAlF,KAAAwd,OAAArY,KAAAD,KAAA,OACA7I,EAAA9E,OAAAY,OAAA,MACA+pC,EAAAliC,KAAAkiC,aAAAliC,KAAAoF,SACA+8B,EAAAniC,KAAAuY,OAAA/L,YACApH,EAAApF,KAAAoF,YACAg9B,EAAAhC,GAAApgC,MAEAnJ,EAAA,EAAmBA,EAAAsrC,EAAA3lC,OAAwB3F,IAAA,CAC3C,IAAAK,EAAAirC,EAAAtrC,GACA,GAAAK,EAAAgO,IACA,SAAAhO,EAAAkB,KAAA,IAAAsD,OAAAxE,EAAAkB,KAAA4E,QAAA,WACAoI,EAAAd,KAAApN,GACAmF,EAAAnF,EAAAkB,KAAAlB,GACWA,EAAAiO,OAAAjO,EAAAiO,UAAuBwyB,WAAAyK,QASlC,GAAAF,EAAA,CAGA,IAFA,IAAAG,KACAC,KACA1d,EAAA,EAAuBA,EAAAsd,EAAA1lC,OAA2BooB,IAAA,CAClD,IAAA2d,EAAAL,EAAAtd,GACA2d,EAAAp9B,KAAAwyB,WAAAyK,EACAG,EAAAp9B,KAAAo8B,IAAAgB,EAAAj9B,IAAA87B,wBACA/kC,EAAAkmC,EAAAnqC,KACAiqC,EAAA/9B,KAAAi+B,GAEAD,EAAAh+B,KAAAi+B,GAGAviC,KAAAqiC,KAAA/B,EAAAp7B,EAAA,KAAAm9B,GACAriC,KAAAsiC,UAGA,OAAAhC,EAAAp7B,EAAA,KAAAE,IAGAo9B,aAAA,WAEAxiC,KAAAmlB,UACAnlB,KAAAyd,OACAzd,KAAAqiC,MACA,GACA,GAEAriC,KAAAyd,OAAAzd,KAAAqiC,MAGAI,QAAA,WACA,IAAAr9B,EAAApF,KAAAkiC,aACAnB,EAAA/gC,KAAA+gC,YAAA/gC,KAAA5I,MAAA,aACAgO,EAAA5I,QAAAwD,KAAA0iC,QAAAt9B,EAAA,GAAAE,IAAAy7B,KAMA37B,EAAA8B,QAAA85B,IACA57B,EAAA8B,QAAAg6B,IACA97B,EAAA8B,QAAAm6B,IAKArhC,KAAA2iC,QAAA1Z,SAAA2Z,KAAAC,aAEAz9B,EAAA8B,QAAA,SAAAhQ,GACA,GAAAA,EAAAiO,KAAAy8B,MAAA,CACA,IAAA1d,EAAAhtB,EAAAoO,IACA1M,EAAAsrB,EAAAtD,MACAmV,GAAA7R,EAAA6c,GACAnoC,EAAAipC,UAAAjpC,EAAAkpC,gBAAAlpC,EAAAmpC,mBAAA,GACA7d,EAAAnhB,iBAAAsyB,GAAAnR,EAAA+c,QAAA,SAAAlyB,EAAAtP,GACAA,IAAA,aAAA8C,KAAA9C,EAAAqjC,gBACA5e,EAAA6I,oBAAAsI,GAAAtmB,GACAmV,EAAA+c,QAAA,KACAhL,GAAA/R,EAAA6c,WAOAv2B,SACAk4B,QAAA,SAAAxe,EAAA6c,GAEA,IAAA9L,GACA,SAGA,GAAAj1B,KAAA+iC,SACA,OAAA/iC,KAAA+iC,SAOA,IAAA9mB,EAAAiI,EAAA8e,YACA9e,EAAAkJ,oBACAlJ,EAAAkJ,mBAAAlmB,QAAA,SAAAgmB,GAAsDoH,GAAArY,EAAAiR,KAEtDiH,GAAAlY,EAAA8kB,GACA9kB,EAAA2E,MAAAmf,QAAA,OACA//B,KAAAglB,IAAA+E,YAAA9N,GACA,IAAA9O,EAAAipB,GAAAna,GAEA,OADAjc,KAAAglB,IAAA8E,YAAA7N,GACAjc,KAAA+iC,SAAA51B,EAAAgqB,iBAyCAtV,GAAAzhB,OAAAe,eACA0gB,GAAAzhB,OAAAU,iBACA+gB,GAAAzhB,OAAAW,kBACA8gB,GAAAzhB,OAAAa,mBACA4gB,GAAAzhB,OAAAY,iBA7rGA,SAAAkE,GAEA,IAAArD,EACA,SAEA,GAAAf,GAAAoE,GACA,SAIA,GAFAA,IAAAzI,cAEA,MAAAosB,GAAA3jB,GACA,OAAA2jB,GAAA3jB,GAEA,IAAAgf,EAAA+E,SAAAlN,cAAA7W,GACA,OAAAA,EAAAlI,QAAA,QAEA6rB,GAAA3jB,GACAgf,EAAA7B,cAAAvgB,OAAAmhC,oBACA/e,EAAA7B,cAAAvgB,OAAAohC,YAGAra,GAAA3jB,GAAA,qBAAA3C,KAAA2hB,EAAA9oB,aA2qGAqD,EAAAojB,GAAA/W,QAAAK,WAAAw0B,IACAlhC,EAAAojB,GAAA/W,QAAA8W,WAAAogB,IAGAngB,GAAAppB,UAAA0sB,UAAAtjB,EAAAu4B,GAAAt7B,EAGA+iB,GAAAppB,UAAAykB,OAAA,SACAgH,EACA7H,GAGA,OAzqLA,SACAtS,EACAma,EACA7H,GA8DA,OA5DAtS,EAAAib,IAAAd,EACAna,EAAA0C,SAAAsL,SACAhO,EAAA0C,SAAAsL,OAAArR,IAmBAwM,GAAAnJ,EAAA,eA8BA,IAAAwK,GAAAxK,EARA,WACAA,EAAA+a,QAAA/a,EAAAwb,UAAAlJ,IAOAvd,EAAA,SACAud,GAAA,EAIA,MAAAtS,EAAAyT,SACAzT,EAAAoK,YAAA,EACAjB,GAAAnJ,EAAA,YAEAA,EAwmLAo5B,CAAAnjC,KADAkkB,KAAAriB,EAAAknB,GAAA7E,QAAA9pB,EACAiiB,IAKAxa,GACAuM,WAAA,WACAhO,EAAAI,UACAA,IACAA,GAAA6T,KAAA,OAAAwN,KAuBG,GAKH,IAAAuhB,GAAA,wBACAC,GAAA,yBAEAC,GAAAnmC,EAAA,SAAAomC,GACA,IAAAC,EAAAD,EAAA,GAAA/lC,QAAA6lC,GAAA,QACAI,EAAAF,EAAA,GAAA/lC,QAAA6lC,GAAA,QACA,WAAA1d,OAAA6d,EAAA,gBAAAC,EAAA,OA4EA,IAAAC,IACAC,YAAA,eACAC,cApCA,SAAA1f,EAAApZ,GACAA,EAAA/G,KAAA,IACAkkB,EAAA+H,GAAA9L,EAAA,SAYA+D,IACA/D,EAAA+D,YAAAnsB,KAAAC,UAAAksB,IAEA,IAAA4b,EAAAhU,GAAA3L,EAAA,YACA2f,IACA3f,EAAA2f,iBAkBAC,QAdA,SAAA5f,GACA,IAAA/e,EAAA,GAOA,OANA+e,EAAA+D,cACA9iB,GAAA,eAAA+e,EAAA,iBAEAA,EAAA2f,eACA1+B,GAAA,SAAA+e,EAAA,kBAEA/e,IA+CA,IAQA4+B,GARAC,IACAL,YAAA,eACAC,cAtCA,SAAA1f,EAAApZ,GACAA,EAAA/G,KAAA,IACAgvB,EAAA/C,GAAA9L,EAAA,SACA6O,IAaA7O,EAAA6O,YAAAj3B,KAAAC,UAAA22B,GAAAK,KAGA,IAAAkR,EAAApU,GAAA3L,EAAA,YACA+f,IACA/f,EAAA+f,iBAkBAH,QAdA,SAAA5f,GACA,IAAA/e,EAAA,GAOA,OANA+e,EAAA6O,cACA5tB,GAAA,eAAA+e,EAAA,iBAEAA,EAAA+f,eACA9+B,GAAA,UAAA+e,EAAA,mBAEA/e,IAaA++B,GACA,SAAAC,GAGA,OAFAJ,OAAA9a,SAAAlN,cAAA,QACA0hB,UAAA0G,EACAJ,GAAA7Z,aAMAka,GAAAloC,EACA,6FAMAmoC,GAAAnoC,EACA,2DAKAooC,GAAApoC,EACA,mSAmBAqoC,GAAA,4EAGAC,GAAA,wBACAC,GAAA,OAAAD,GAAA,QAAAA,GAAA,IACAE,GAAA,IAAA/e,OAAA,KAAA8e,IACAE,GAAA,aACAC,GAAA,IAAAjf,OAAA,QAAA8e,GAAA,UACAI,GAAA,qBAEAC,GAAA,SACAC,GAAA,QAEAC,IAAA,EACA,IAAAxnC,QAAA,kBAAAvG,EAAAguC,GACAD,GAAA,KAAAC,IAIA,IAAAC,GAAAhpC,EAAA,4BACAipC,MAEAC,IACAC,OAAO,IACPC,OAAO,IACPC,SAAS,IACTC,QAAQ,IACRC,QAAQ,KACRC,OAAO,MAEPC,GAAA,wBACAC,GAAA,+BAGAC,GAAA3pC,EAAA,mBACA4pC,GAAA,SAAA5gC,EAAAi/B,GAAqD,OAAAj/B,GAAA2gC,GAAA3gC,IAAA,OAAAi/B,EAAA,IAErD,SAAA4B,GAAAjuC,EAAAkuC,GACA,IAAAC,EAAAD,EAAAJ,GAAAD,GACA,OAAA7tC,EAAA0F,QAAAyoC,EAAA,SAAAn5B,GAA6C,OAAAs4B,GAAAt4B,KAmQ7C,IAaAo5B,GACA3C,GACA4C,GACAC,GACAC,GACAC,GACAC,GACAC,GApBAC,GAAA,YACAC,GAAA,YACAC,GAAA,+BACAC,GAAA,iCACAC,GAAA,WAEAC,GAAA,SACAC,GAAA,cACAC,GAAA,WAEAC,GAAA9pC,EAAA+mC,IAcA,SAAAgD,GACAhiC,EACAoN,EACAxM,GAEA,OACA3M,KAAA,EACA+L,MACAgqB,UAAA5c,EACA2c,SA2iBA,SAAA3c,GAEA,IADA,IAAAjW,KACAxF,EAAA,EAAAC,EAAAwb,EAAA9V,OAAmC3F,EAAAC,EAAOD,IAO1CwF,EAAAiW,EAAAzb,GAAAO,MAAAkb,EAAAzb,GAAAiB,MAEA,OAAAuE,EAtjBA8qC,CAAA70B,GACAxM,SACAV,aAOA,SAAAgiC,GACAC,EACAv8B,GAEAo7B,GAAAp7B,EAAA/G,MAAA2qB,GAEA4X,GAAAx7B,EAAAw8B,UAAAtoC,EACAunC,GAAAz7B,EAAA3J,aAAAnC,EACAwnC,GAAA17B,EAAA7J,iBAAAjC,EAEAmnC,GAAAvX,GAAA9jB,EAAA/T,QAAA,iBACAqvC,GAAAxX,GAAA9jB,EAAA/T,QAAA,oBACAsvC,GAAAzX,GAAA9jB,EAAA/T,QAAA,qBAEAwsC,GAAAz4B,EAAAy4B,WAEA,IAEAgE,EACAC,EAHAC,KACAC,GAAA,IAAA58B,EAAA48B,mBAGApK,GAAA,EACAqK,GAAA,EAUA,SAAAC,EAAAC,GAEAA,EAAAtK,MACAD,GAAA,GAEAgJ,GAAAuB,EAAA3iC,OACAyiC,GAAA,GAGA,QAAA9wC,EAAA,EAAmBA,EAAAwvC,GAAA7pC,OAA2B3F,IAC9CwvC,GAAAxvC,GAAAgxC,EAAA/8B,GAwLA,OA3gBA,SAAAq5B,EAAAr5B,GAOA,IANA,IAKAsG,EAAA02B,EALAL,KACAM,EAAAj9B,EAAAi9B,WACAC,EAAAl9B,EAAAs5B,YAAAplC,EACAipC,EAAAn9B,EAAAu5B,kBAAArlC,EACAjC,EAAA,EAEAonC,GAAA,CAGA,GAFA/yB,EAAA+yB,EAEA2D,GAAA5C,GAAA4C,GAgFK,CACL,IAAAI,EAAA,EACAC,EAAAL,EAAArrC,cACA2rC,EAAAjD,GAAAgD,KAAAhD,GAAAgD,GAAA,IAAAxiB,OAAA,kBAAAwiB,EAAA,gBACAE,EAAAlE,EAAA3mC,QAAA4qC,EAAA,SAAAE,EAAAjjC,EAAAu/B,GAaA,OAZAsD,EAAAtD,EAAApoC,OACA0oC,GAAAiD,IAAA,aAAAA,IACA9iC,IACA7H,QAAA,4BACAA,QAAA,mCAEAsoC,GAAAqC,EAAA9iC,KACAA,IAAAxH,MAAA,IAEAiN,EAAAy9B,OACAz9B,EAAAy9B,MAAAljC,GAEA,KAEAtI,GAAAonC,EAAA3nC,OAAA6rC,EAAA7rC,OACA2nC,EAAAkE,EACAG,EAAAL,EAAAprC,EAAAmrC,EAAAnrC,OArGA,CACA,IAAA0rC,EAAAtE,EAAAnnC,QAAA,KACA,OAAAyrC,EAAA,CAEA,GAAA3D,GAAAviC,KAAA4hC,GAAA,CACA,IAAAuE,EAAAvE,EAAAnnC,QAAA,UAEA,GAAA0rC,GAAA,GACA59B,EAAA69B,mBACA79B,EAAAg6B,QAAAX,EAAAyE,UAAA,EAAAF,IAEAG,EAAAH,EAAA,GACA,UAKA,GAAA3D,GAAAxiC,KAAA4hC,GAAA,CACA,IAAA2E,EAAA3E,EAAAnnC,QAAA,MAEA,GAAA8rC,GAAA,GACAD,EAAAC,EAAA,GACA,UAKA,IAAAC,EAAA5E,EAAAr3B,MAAA+3B,IACA,GAAAkE,EAAA,CACAF,EAAAE,EAAA,GAAAvsC,QACA,SAIA,IAAAwsC,EAAA7E,EAAAr3B,MAAA83B,IACA,GAAAoE,EAAA,CACA,IAAAC,EAAAlsC,EACA8rC,EAAAG,EAAA,GAAAxsC,QACAgsC,EAAAQ,EAAA,GAAAC,EAAAlsC,GACA,SAIA,IAAAmsC,EAAAC,IACA,GAAAD,EAAA,CACAE,EAAAF,GACApD,GAAAgC,EAAA3D,IACA0E,EAAA,GAEA,UAIA,IAAAxjC,OAAA,EAAAgkC,OAAA,EAAA1Y,OAAA,EACA,GAAA8X,GAAA,GAEA,IADAY,EAAAlF,EAAAtmC,MAAA4qC,KAEA7D,GAAAriC,KAAA8mC,IACA3E,GAAAniC,KAAA8mC,IACAvE,GAAAviC,KAAA8mC,IACAtE,GAAAxiC,KAAA8mC,KAGA1Y,EAAA0Y,EAAArsC,QAAA,QACA,IACAyrC,GAAA9X,EACA0Y,EAAAlF,EAAAtmC,MAAA4qC,GAEApjC,EAAA8+B,EAAAyE,UAAA,EAAAH,GACAI,EAAAJ,GAGAA,EAAA,IACApjC,EAAA8+B,EACAA,EAAA,IAGAr5B,EAAAy9B,OAAAljC,GACAyF,EAAAy9B,MAAAljC,GA0BA,GAAA8+B,IAAA/yB,EAAA,CACAtG,EAAAy9B,OAAAz9B,EAAAy9B,MAAApE,GAIA,OAOA,SAAA0E,EAAAvwC,GACAyE,GAAAzE,EACA6rC,IAAAyE,UAAAtwC,GAGA,SAAA6wC,IACA,IAAA7qC,EAAA6lC,EAAAr3B,MAAA43B,IACA,GAAApmC,EAAA,CACA,IAMAi4B,EAAAjP,EANAxa,GACAsc,QAAA9qB,EAAA,GACAgU,SACAhU,MAAAvB,GAIA,IAFA8rC,EAAAvqC,EAAA,GAAA9B,UAEA+5B,EAAA4N,EAAAr3B,MAAA63B,OAAArd,EAAA6c,EAAAr3B,MAAAy3B,MACAsE,EAAAvhB,EAAA,GAAA9qB,QACAsQ,EAAAwF,MAAAhO,KAAAgjB,GAEA,GAAAiP,EAIA,OAHAzpB,EAAAw8B,WAAA/S,EAAA,GACAsS,EAAAtS,EAAA,GAAA/5B,QACAsQ,EAAAypB,IAAAx5B,EACA+P,GAKA,SAAAs8B,EAAAt8B,GACA,IAAAsc,EAAAtc,EAAAsc,QACAkgB,EAAAx8B,EAAAw8B,WAEAvB,IACA,MAAAD,GAAAxD,GAAAlb,IACAof,EAAAV,GAEAG,EAAA7e,IAAA0e,IAAA1e,GACAof,EAAApf,IAQA,IAJA,IAAAmgB,EAAAvB,EAAA5e,MAAAkgB,EAEAxyC,EAAAgW,EAAAwF,MAAA9V,OACA8V,EAAA,IAAA9T,MAAA1H,GACAD,EAAA,EAAmBA,EAAAC,EAAOD,IAAA,CAC1B,IAAAwQ,EAAAyF,EAAAwF,MAAAzb,GAEAmuC,KAAA,IAAA39B,EAAA,GAAArK,QAAA,QACA,KAAAqK,EAAA,WAA6BA,EAAA,GAC7B,KAAAA,EAAA,WAA6BA,EAAA,GAC7B,KAAAA,EAAA,WAA6BA,EAAA,IAE7B,IAAAvP,EAAAuP,EAAA,IAAAA,EAAA,IAAAA,EAAA,OACA2+B,EAAA,MAAA5c,GAAA,SAAA/hB,EAAA,GACAyD,EAAA0+B,4BACA1+B,EAAAk7B,qBACA1zB,EAAAzb,IACAO,KAAAiQ,EAAA,GACAvP,MAAAiuC,GAAAjuC,EAAAkuC,IAIAuD,IACA9B,EAAAnjC,MAAkBY,IAAAkkB,EAAAqgB,cAAArgB,EAAA3sB,cAAA6V,UAClBw1B,EAAA1e,GAGAte,EAAAxM,OACAwM,EAAAxM,MAAA8qB,EAAA9W,EAAAi3B,EAAAz8B,EAAAxO,MAAAwO,EAAAypB,KAIA,SAAAiS,EAAApf,EAAA9qB,EAAAi4B,GACA,IAAAgL,EAAAmI,EASA,GARA,MAAAprC,IAAwBA,EAAAvB,GACxB,MAAAw5B,IAAsBA,EAAAx5B,GAEtBqsB,IACAsgB,EAAAtgB,EAAA3sB,eAIA2sB,EACA,IAAAmY,EAAAkG,EAAAjrC,OAAA,EAAkC+kC,GAAA,GAClCkG,EAAAlG,GAAAkI,gBAAAC,EAD4CnI,UAO5CA,EAAA,EAGA,GAAAA,GAAA,GAEA,QAAA1qC,EAAA4wC,EAAAjrC,OAAA,EAAoC3F,GAAA0qC,EAAU1qC,IAS9CiU,EAAAyrB,KACAzrB,EAAAyrB,IAAAkR,EAAA5wC,GAAAqO,IAAA5G,EAAAi4B,GAKAkR,EAAAjrC,OAAA+kC,EACAuG,EAAAvG,GAAAkG,EAAAlG,EAAA,GAAAr8B,QACK,OAAAwkC,EACL5+B,EAAAxM,OACAwM,EAAAxM,MAAA8qB,MAAA,EAAA9qB,EAAAi4B,GAEK,MAAAmT,IACL5+B,EAAAxM,OACAwM,EAAAxM,MAAA8qB,MAAA,EAAA9qB,EAAAi4B,GAEAzrB,EAAAyrB,KACAzrB,EAAAyrB,IAAAnN,EAAA9qB,EAAAi4B,IA5HAiS,IA2NAmB,CAAAtC,GACAtjC,KAAAmiC,GACA6B,WAAAj9B,EAAAi9B,WACA3D,WAAAt5B,EAAAs5B,WACAC,iBAAAv5B,EAAAu5B,iBACA2B,qBAAAl7B,EAAAk7B,qBACAwD,4BAAA1+B,EAAA0+B,4BACAb,kBAAA79B,EAAA8+B,SACAtrC,MAAA,SAAA4G,EAAAoN,EAAAi3B,GAGA,IAAArxC,EAAAsvC,KAAAtvC,IAAAsuC,GAAAthC,GAIA5C,GAAA,QAAApK,IACAoa,EAsgBA,SAAAA,GAEA,IADA,IAAAzT,KACAhI,EAAA,EAAiBA,EAAAyb,EAAA9V,OAAkB3F,IAAA,CACnC,IAAAywB,EAAAhV,EAAAzb,GACAgzC,GAAAtnC,KAAA+kB,EAAAlwB,QACAkwB,EAAAlwB,KAAAkwB,EAAAlwB,KAAAoG,QAAAssC,GAAA,IACAjrC,EAAAyF,KAAAgjB,IAGA,OAAAzoB,EA/gBAkrC,CAAAz3B,IAGA,IAAAu1B,EAAAX,GAAAhiC,EAAAoN,EAAAk1B,GACAtvC,IACA2vC,EAAA3vC,MAmfA,SAAAgsB,GACA,MACA,UAAAA,EAAAhf,KACA,WAAAgf,EAAAhf,OACAgf,EAAA+K,SAAA91B,MACA,oBAAA+qB,EAAA+K,SAAA91B,MArfA6wC,CAAAnC,KAAA7kC,OACA6kC,EAAAoC,WAAA,GASA,QAAApzC,EAAA,EAAqBA,EAAAuvC,GAAA5pC,OAA0B3F,IAC/CgxC,EAAAzB,GAAAvvC,GAAAgxC,EAAA/8B,IAAA+8B,EAuBA,SAAAqC,EAAAhmB,GACA,EAoCA,GAzDAoZ,KAiJA,SAAApZ,GACA,MAAA8L,GAAA9L,EAAA,WACAA,EAAAqZ,KAAA,GAlJA4M,CAAAtC,GACAA,EAAAtK,MACAD,GAAA,IAGAgJ,GAAAuB,EAAA3iC,OACAyiC,GAAA,GAEArK,EA8IA,SAAApZ,GACA,IAAAptB,EAAAotB,EAAAgL,UAAA1yB,OACA,GAAA1F,EAEA,IADA,IAAAwb,EAAA4R,EAAA5R,MAAA,IAAA9T,MAAA1H,GACAD,EAAA,EAAmBA,EAAAC,EAAOD,IAC1Byb,EAAAzb,IACAO,KAAA8sB,EAAAgL,UAAAr4B,GAAAO,KACAU,MAAAgE,KAAAC,UAAAmoB,EAAAgL,UAAAr4B,GAAAiB,aAGGosB,EAAAqZ,MAEHrZ,EAAA4K,OAAA,GAzJAsb,CAAAvC,GACOA,EAAAwC,YAEPC,GAAAzC,GA+NA,SAAA3jB,GACA,IAAA3qB,EAAAy2B,GAAA9L,EAAA,QACA,GAAA3qB,EACA2qB,EAAAqmB,GAAAhxC,EACAixC,GAAAtmB,GACA3qB,MACAkxC,MAAAvmB,QAEG,CACH,MAAA8L,GAAA9L,EAAA,YACAA,EAAAwmB,MAAA,GAEA,IAAAC,EAAA3a,GAAA9L,EAAA,aACAymB,IACAzmB,EAAAymB,WA5OAC,CAAA/C,GAwRA,SAAA3jB,GAEA,MADA8L,GAAA9L,EAAA,YAEAA,EAAApkB,MAAA,GA1RA+qC,CAAAhD,GAEAiD,GAAAjD,EAAA/8B,IAqBAy8B,EAGOE,EAAAjrC,QAEP+qC,EAAAgD,KAAA1C,EAAA8C,QAAA9C,EAAA6C,QACAR,IACAM,GAAAjD,GACAhuC,IAAAsuC,EAAA8C,OACAF,MAAA5C,MARAN,EAAAM,EACAqC,KAiBA1C,IAAAK,EAAAoC,UACA,GAAApC,EAAA8C,QAAA9C,EAAA6C,MAqMA,SAAAxmB,EAAApe,GACA,IAAA+nB,EAcA,SAAAzoB,GACA,IAAAvO,EAAAuO,EAAA5I,OACA,KAAA3F,KAAA,CACA,OAAAuO,EAAAvO,GAAAsC,KACA,OAAAiM,EAAAvO,GAQAuO,EAAAJ,OA1BA+lC,CAAAjlC,EAAAV,UACAyoB,KAAA0c,IACAC,GAAA3c,GACAt0B,IAAA2qB,EAAAymB,OACAF,MAAAvmB,IAzMA8mB,CAAAnD,EAAAL,QACS,GAAAK,EAAAoD,UAAA,CACTzD,EAAA1Y,OAAA,EACA,IAAA13B,EAAAywC,EAAAqD,YAAA,aAAuD1D,EAAA5rB,cAAA4rB,EAAA5rB,iBAA6DxkB,GAAAywC,OAEpHL,EAAApiC,SAAAd,KAAAujC,GACAA,EAAA/hC,OAAA0hC,EAGA+B,EAIA3B,EAAAC,IAHAL,EAAAK,EACAJ,EAAAnjC,KAAAujC,KAMAtR,IAAA,WAEA,IAAAsR,EAAAJ,IAAAjrC,OAAA,GACA2uC,EAAAtD,EAAAziC,SAAAyiC,EAAAziC,SAAA5I,OAAA,GACA2uC,GAAA,IAAAA,EAAAhyC,MAAA,MAAAgyC,EAAA9lC,OAAAsiC,GACAE,EAAAziC,SAAAJ,MAGAyiC,EAAAjrC,QAAA,EACAgrC,EAAAC,IAAAjrC,OAAA,GACAorC,EAAAC,IAGAU,MAAA,SAAAljC,GACA,GAAAmiC,KAgBAllC,GACA,aAAAklC,EAAAtiC,KACAsiC,EAAAvY,SAAAoR,cAAAh7B,GAFA,CAMA,IAMAxG,EANAuG,EAAAoiC,EAAApiC,SAKA,GAJAC,EAAAsiC,GAAAtiC,EAAAkpB,OA6WA,SAAArK,GACA,iBAAAA,EAAAhf,KAAA,UAAAgf,EAAAhf,IA7WAkmC,CAAA5D,GAAAniC,EAAA4hC,GAAA5hC,GAEAqiC,GAAAtiC,EAAA5I,OAAA,QAGA8gC,GAAA,MAAAj4B,IAAAxG,EAtsBA,SACAwG,EACAk+B,GAEA,IAAA8H,EAAA9H,EAAAD,GAAAC,GAAAH,GACA,GAAAiI,EAAA9oC,KAAA8C,GAAA,CAOA,IAJA,IAGAyH,EAAA/P,EAAAuuC,EAHAC,KACAC,KACAr6B,EAAAk6B,EAAAl6B,UAAA,EAEArE,EAAAu+B,EAAAI,KAAApmC,IAAA,EACAtI,EAAA+P,EAAA/P,OAEAoU,IACAq6B,EAAAlnC,KAAAgnC,EAAAjmC,EAAAxH,MAAAsT,EAAApU,IACAwuC,EAAAjnC,KAAAxI,KAAAC,UAAAuvC,KAGA,IAAA/xC,EAAAq0B,GAAA9gB,EAAA,GAAAyhB,QACAgd,EAAAjnC,KAAA,MAAA/K,EAAA,KACAiyC,EAAAlnC,MAAoBonC,WAAAnyC,IACpB4X,EAAApU,EAAA+P,EAAA,GAAAtQ,OAMA,OAJA2U,EAAA9L,EAAA7I,SACAgvC,EAAAlnC,KAAAgnC,EAAAjmC,EAAAxH,MAAAsT,IACAo6B,EAAAjnC,KAAAxI,KAAAC,UAAAuvC,MAGAj2B,WAAAk2B,EAAArf,KAAA,KACAqf,OAAAC,IAuqBAG,CAAAtmC,EAAAk+B,KACAn+B,EAAAd,MACAnL,KAAA,EACAkc,WAAAxW,EAAAwW,WACAk2B,OAAA1sC,EAAA0sC,OACAlmC,SAES,MAAAA,GAAAD,EAAA5I,QAAA,MAAA4I,IAAA5I,OAAA,GAAA6I,MACTD,EAAAd,MACAnL,KAAA,EACAkM,WAKAy/B,QAAA,SAAAz/B,GACAmiC,EAAApiC,SAAAd,MACAnL,KAAA,EACAkM,OACAa,WAAA,OAIAqhC,EAyBA,SAAAuD,GAAAjD,EAAA/8B,IAgBA,SAAAoZ,GACA,IAAA3qB,EAAAs2B,GAAA3L,EAAA,OACA3qB,IAIA2qB,EAAA9rB,IAAAmB,GArBAqyC,CAAA/D,GAIAA,EAAA/Y,OAAA+Y,EAAAzvC,MAAAyvC,EAAA3Y,UAAA1yB,OAqBA,SAAA0nB,GACA,IAAAsB,EAAAqK,GAAA3L,EAAA,OACAsB,IACAtB,EAAAsB,MACAtB,EAAAsG,SAsPA,SAAAtG,GACA,IAAApe,EAAAoe,EACA,KAAApe,GAAA,CACA,QAAA1L,IAAA0L,EAAA+lC,IACA,SAEA/lC,WAEA,SA9PAgmC,CAAA5nB,IAvBA6nB,CAAAlE,GA+HA,SAAA3jB,GACA,YAAAA,EAAAhf,IACAgf,EAAA8nB,SAAAnc,GAAA3L,EAAA,YAQG,CACH,IAAA+mB,EACA,aAAA/mB,EAAAhf,KACA+lC,EAAAjb,GAAA9L,EAAA,SAWAA,EAAA+mB,aAAAjb,GAAA9L,EAAA,gBACK+mB,EAAAjb,GAAA9L,EAAA,iBAULA,EAAA+mB,aAEA,IAAAC,EAAArb,GAAA3L,EAAA,QACAgnB,IACAhnB,EAAAgnB,WAAA,OAAAA,EAAA,YAAAA,EAGA,aAAAhnB,EAAAhf,KAAAgf,EAAA+mB,WACAlc,GAAA7K,EAAA,OAAAgnB,KAzKAe,CAAApE,GA+KA,SAAA3jB,GACA,IAAAua,GACAA,EAAA5O,GAAA3L,EAAA,SACAA,EAAA/E,UAAAsf,GAEA,MAAAzO,GAAA9L,EAAA,qBACAA,EAAAlH,gBAAA,GApLAkvB,CAAArE,GACA,QAAAhxC,EAAA,EAAiBA,EAAAsvC,GAAA3pC,OAAuB3F,IACxCgxC,EAAA1B,GAAAtvC,GAAAgxC,EAAA/8B,IAAA+8B,GAsLA,SAAA3jB,GACA,IACArtB,EAAAC,EAAAM,EAAA60B,EAAAn0B,EAAAi0B,EAAAogB,EADA7vC,EAAA4nB,EAAAgL,UAEA,IAAAr4B,EAAA,EAAAC,EAAAwF,EAAAE,OAA8B3F,EAAAC,EAAOD,IAAA,CAGrC,GAFAO,EAAA60B,EAAA3vB,EAAAzF,GAAAO,KACAU,EAAAwE,EAAAzF,GAAAiB,MACA4uC,GAAAnkC,KAAAnL,GAQA,GANA8sB,EAAAkoB,aAAA,GAEArgB,EAAAsgB,GAAAj1C,MAEAA,IAAAoG,QAAAwpC,GAAA,KAEAD,GAAAxkC,KAAAnL,GACAA,IAAAoG,QAAAupC,GAAA,IACAjvC,EAAA81B,GAAA91B,GACAq0C,GAAA,EACApgB,IACAA,EAAA7f,OACAigC,GAAA,EAEA,eADA/0C,EAAAmG,EAAAnG,MACuCA,EAAA,cAEvC20B,EAAAugB,QACAl1C,EAAAmG,EAAAnG,IAEA20B,EAAAjX,MACAua,GACAnL,EACA,UAAA3mB,EAAAnG,GACAm5B,GAAAz4B,EAAA,YAIAq0C,IACAjoB,EAAA/E,WAAAonB,GAAAriB,EAAAhf,IAAAgf,EAAA+K,SAAA91B,KAAA/B,GAEAy3B,GAAA3K,EAAA9sB,EAAAU,GAEAi3B,GAAA7K,EAAA9sB,EAAAU,QAEO,GAAA2uC,GAAAlkC,KAAAnL,GACPA,IAAAoG,QAAAipC,GAAA,IACApX,GAAAnL,EAAA9sB,EAAAU,EAAAi0B,GAAA,OACO,CAGP,IAAAwgB,GAFAn1C,IAAAoG,QAAAkpC,GAAA,KAEA55B,MAAAg6B,IACA1X,EAAAmd,KAAA,GACAnd,IACAh4B,IAAAyG,MAAA,IAAAuxB,EAAA5yB,OAAA,KAEA2yB,GAAAjL,EAAA9sB,EAAA60B,EAAAn0B,EAAAs3B,EAAArD,QAkBAgD,GAAA7K,EAAA9sB,EAAA0E,KAAAC,UAAAjE,KAGAosB,EAAA/E,WACA,UAAA/nB,GACAmvC,GAAAriB,EAAAhf,IAAAgf,EAAA+K,SAAA91B,KAAA/B,IACAy3B,GAAA3K,EAAA9sB,EAAA,SAjQAo1C,CAAA3E,GAqBA,SAAAyC,GAAApmB,GACA,IAAA3qB,EACA,GAAAA,EAAAy2B,GAAA9L,EAAA,UACA,IAAArlB,EAaA,SAAAtF,GACA,IAAAkzC,EAAAlzC,EAAAuT,MAAA65B,IACA,IAAA8F,EAAiB,OACjB,IAAA5tC,KACAA,EAAAgtC,IAAAY,EAAA,GAAAle,OACA,IAAAme,EAAAD,EAAA,GAAAle,OAAA/wB,QAAAqpC,GAAA,IACA8F,EAAAD,EAAA5/B,MAAA85B,IACA+F,GACA9tC,EAAA6tC,QAAAlvC,QAAAopC,GAAA,IACA/nC,EAAA+tC,UAAAD,EAAA,GAAApe,OACAoe,EAAA,KACA9tC,EAAAguC,UAAAF,EAAA,GAAApe,SAGA1vB,EAAA6tC,QAEA,OAAA7tC,EA7BAiuC,CAAAvzC,GACAsF,GACAJ,EAAAylB,EAAArlB,IAiFA,SAAA2rC,GAAAtmB,EAAA6oB,GACA7oB,EAAA8oB,eACA9oB,EAAA8oB,iBAEA9oB,EAAA8oB,aAAA1oC,KAAAyoC,GAmKA,SAAAV,GAAAj1C,GACA,IAAA0V,EAAA1V,EAAA0V,MAAAk6B,IACA,GAAAl6B,EAAA,CACA,IAAAvO,KAEA,OADAuO,EAAA5F,QAAA,SAAAjQ,GAAgCsH,EAAAtH,EAAA4G,MAAA,SAChCU,GAiCA,IAAAsrC,GAAA,eACAC,GAAA,UAyGA,SAAAmD,GAAA/oB,GACA,OAAAgjB,GAAAhjB,EAAAhf,IAAAgf,EAAAgL,UAAArxB,QAAAqmB,EAAApe,QAGA,IAIAonC,IACAxJ,GACAM,IALAmJ,iBAnEA,SAAAjpB,EAAApZ,GACA,aAAAoZ,EAAAhf,IAAA,CACA,IAKAkoC,EALA/wC,EAAA6nB,EAAA+K,SACA,IAAA5yB,EAAA,WACA,OAWA,IAPAA,EAAA,UAAAA,EAAA,kBACA+wC,EAAAvd,GAAA3L,EAAA,SAEA7nB,EAAAlD,MAAAi0C,IAAA/wC,EAAA,YACA+wC,EAAA,IAAA/wC,EAAA,oBAGA+wC,EAAA,CACA,IAAAC,EAAArd,GAAA9L,EAAA,WACAopB,EAAAD,EAAA,MAAAA,EAAA,OACAE,EAAA,MAAAvd,GAAA9L,EAAA,aACAspB,EAAAxd,GAAA9L,EAAA,gBAEAupB,EAAAR,GAAA/oB,GAEAomB,GAAAmD,GACAze,GAAAye,EAAA,mBACA3C,GAAA2C,EAAA3iC,GACA2iC,EAAApD,WAAA,EACAoD,EAAAlD,GAAA,IAAA6C,EAAA,iBAAAE,EACA9C,GAAAiD,GACAl0C,IAAAk0C,EAAAlD,GACAE,MAAAgD,IAGA,IAAAC,EAAAT,GAAA/oB,GACA8L,GAAA0d,EAAA,YACA1e,GAAA0e,EAAA,gBACA5C,GAAA4C,EAAA5iC,GACA0/B,GAAAiD,GACAl0C,IAAA,IAAA6zC,EAAA,cAAAE,EACA7C,MAAAiD,IAGA,IAAAC,EAAAV,GAAA/oB,GAeA,OAdA8L,GAAA2d,EAAA,YACA3e,GAAA2e,EAAA,QAAAP,GACAtC,GAAA6C,EAAA7iC,GACA0/B,GAAAiD,GACAl0C,IAAA8zC,EACA5C,MAAAkD,IAGAJ,EACAE,EAAA/C,MAAA,EACO8C,IACPC,EAAA9C,OAAA6C,GAGAC,OAmCA,IAuBAG,GACAC,GAhBAC,IACA/F,YAAA,EACAhxC,QAAAm2C,GACA/hC,YAVAsU,MA73FA,SACAyE,EACAiH,EACA4iB,GAEAA,EACA,IAAAj2C,EAAAqzB,EAAArzB,MACAi0B,EAAAZ,EAAAY,UACA7mB,EAAAgf,EAAAhf,IACA/L,EAAA+qB,EAAA+K,SAAA91B,KAaA,GAAA+qB,EAAA/E,UAGA,OAFAgR,GAAAjM,EAAApsB,EAAAi0B,IAEA,EACG,cAAA7mB,GAoEH,SACAgf,EACApsB,EACAi0B,GAEA,IAOAiiB,EAAA,8KAPAjiB,KAAAqE,OAIA,uBAIA4d,IAAA,IAAAzd,GAAAz4B,EAFA,6DAGAu3B,GAAAnL,EAAA,SAAA8pB,EAAA,SAjFAC,CAAA/pB,EAAApsB,EAAAi0B,QACG,aAAA7mB,GAAA,aAAA/L,GAuBH,SACA+qB,EACApsB,EACAi0B,GAEA,IAAAqE,EAAArE,KAAAqE,OACA8d,EAAAre,GAAA3L,EAAA,iBACAiqB,EAAAte,GAAA3L,EAAA,sBACAkqB,EAAAve,GAAA3L,EAAA,wBACA2K,GAAA3K,EAAA,UACA,iBAAApsB,EAAA,QACAA,EAAA,IAAAo2C,EAAA,QACA,SAAAC,EACA,KAAAr2C,EAAA,IACA,OAAAA,EAAA,IAAAq2C,EAAA,MAGA9e,GAAAnL,EAAA,SACA,WAAApsB,EAAA,yCAEAq2C,EAAA,MAAAC,EAAA,qCAEAhe,EAAA,MAAA8d,EAAA,IAAAA,GAAA,6CAEwB3d,GAAAz4B,EAAA,wCACZy4B,GAAAz4B,EAAA,wDACDy4B,GAAAz4B,EAAA,WACX,SAjDAu2C,CAAAnqB,EAAApsB,EAAAi0B,QACG,aAAA7mB,GAAA,UAAA/L,GAoDH,SACA+qB,EACApsB,EACAi0B,GAEA,IAAAqE,EAAArE,KAAAqE,OACA8d,EAAAre,GAAA3L,EAAA,iBAEA2K,GAAA3K,EAAA,gBAAApsB,EAAA,KADAo2C,EAAA9d,EAAA,MAAA8d,EAAA,IAAAA,GACA,KACA7e,GAAAnL,EAAA,SAAAqM,GAAAz4B,EAAAo2C,GAAA,SA5DAI,CAAApqB,EAAApsB,EAAAi0B,QACG,aAAA7mB,GAAA,aAAAA,GA+EH,SACAgf,EACApsB,EACAi0B,GAEA,IAAA5yB,EAAA+qB,EAAA+K,SAAA91B,KAgBAqsB,EAAAuG,MACAlX,EAAA2Q,EAAA3Q,KACAub,EAAA5K,EAAA4K,OACA7B,EAAA/I,EAAA+I,KACAggB,GAAA15B,GAAA,UAAA1b,EACAkX,EAAAwE,EACA,SACA,UAAA1b,EACA+3B,GACA,QAEAb,EAAA,sBACA9B,IACA8B,EAAA,8BAEAD,IACAC,EAAA,MAAAA,EAAA,KAGA,IAAA2d,EAAAzd,GAAAz4B,EAAAu4B,GACAke,IACAP,EAAA,qCAA8CA,GAG9Cnf,GAAA3K,EAAA,YAAApsB,EAAA,KACAu3B,GAAAnL,EAAA7T,EAAA29B,EAAA,UACAzf,GAAA6B,IACAf,GAAAnL,EAAA,yBA9HAsqB,CAAAtqB,EAAApsB,EAAAi0B,QACG,IAAA3rB,EAAAU,cAAAoE,GAGH,OAFAirB,GAAAjM,EAAApsB,EAAAi0B,IAEA,EAWA,UA80FA1mB,KAhBA,SAAA6e,EAAAiH,GACAA,EAAArzB,OACA+2B,GAAA3K,EAAA,oBAAAiH,EAAA,YAeAgZ,KATA,SAAAjgB,EAAAiH,GACAA,EAAArzB,OACA+2B,GAAA3K,EAAA,kBAAAiH,EAAA,aAgBAmc,SA79IA,SAAApiC,GAA+B,cAAAA,GA89I/Bk/B,cACAjjC,eACAkjC,oBACAvjC,iBACAG,mBACA0iC,WAr1SA,SAAA5sC,GACA,OAAAA,EAAA03C,OAAA,SAAA9uC,EAAA1I,GACA,OAAA0I,EAAAwK,OAAAlT,EAAA0sC,qBACGzX,KAAA,KAk1SHwiB,CAAAxB,KAQAyB,GAAAxxC,EAuBA,SAAAwC,GACA,OAAAzD,EACA,2DACAyD,EAAA,IAAAA,EAAA,OAbA,SAAAivC,GAAArH,EAAAz8B,GACAy8B,IACAqG,GAAAe,GAAA7jC,EAAA64B,YAAA,IACAkK,GAAA/iC,EAAAhK,eAAA9B,EAcA,SAAA6vC,EAAAloC,GACAA,EAAAmoC,OA6DA,SAAAnoC,GACA,OAAAA,EAAAxN,KACA,SAEA,OAAAwN,EAAAxN,KACA,SAEA,SAAAwN,EAAA42B,MACA52B,EAAAylC,aACAzlC,EAAA4jC,IAAA5jC,EAAAklC,KACAnvC,EAAAiK,EAAAzB,OACA2oC,GAAAlnC,EAAAzB,MAMA,SAAAyB,GACA,KAAAA,EAAAb,QAAA,CAEA,iBADAa,IAAAb,QACAZ,IACA,SAEA,GAAAyB,EAAAklC,IACA,SAGA,SAfAkD,CAAApoC,KACApP,OAAAoI,KAAAgH,GAAAnH,MAAAouC,MA1EA5nC,CAAAW,GACA,OAAAA,EAAAxN,KAAA,CAIA,IACA00C,GAAAlnC,EAAAzB,MACA,SAAAyB,EAAAzB,KACA,MAAAyB,EAAAsoB,SAAA,mBAEA,OAEA,QAAAp4B,EAAA,EAAAC,EAAA6P,EAAAvB,SAAA5I,OAA6C3F,EAAAC,EAAOD,IAAA,CACpD,IAAA2P,EAAAG,EAAAvB,SAAAvO,GACAg4C,EAAAroC,GACAA,EAAAsoC,SACAnoC,EAAAmoC,QAAA,GAGA,GAAAnoC,EAAAqmC,aACA,QAAApoB,EAAA,EAAAoqB,EAAAroC,EAAAqmC,aAAAxwC,OAAuDooB,EAAAoqB,EAAWpqB,IAAA,CAClE,IAAA6lB,EAAA9jC,EAAAqmC,aAAApoB,GAAA6lB,MACAoE,EAAApE,GACAA,EAAAqE,SACAnoC,EAAAmoC,QAAA,KArCAD,CAAAtH,GA4CA,SAAA0H,EAAAtoC,EAAA+S,GACA,OAAA/S,EAAAxN,KAAA,CAOA,IANAwN,EAAAmoC,QAAAnoC,EAAA7G,QACA6G,EAAAuoC,YAAAx1B,GAKA/S,EAAAmoC,QAAAnoC,EAAAvB,SAAA5I,SACA,IAAAmK,EAAAvB,SAAA5I,QACA,IAAAmK,EAAAvB,SAAA,GAAAjM,MAGA,YADAwN,EAAAwoC,YAAA,GAKA,GAFAxoC,EAAAwoC,YAAA,EAEAxoC,EAAAvB,SACA,QAAAvO,EAAA,EAAAC,EAAA6P,EAAAvB,SAAA5I,OAA+C3F,EAAAC,EAAOD,IACtDo4C,EAAAtoC,EAAAvB,SAAAvO,GAAA6iB,KAAA/S,EAAAklC,KAGA,GAAAllC,EAAAqmC,aACA,QAAApoB,EAAA,EAAAoqB,EAAAroC,EAAAqmC,aAAAxwC,OAAuDooB,EAAAoqB,EAAWpqB,IAClEqqB,EAAAtoC,EAAAqmC,aAAApoB,GAAA6lB,MAAA/wB,IAlEAu1B,CAAA1H,GAAA,IAwGA,IAAA6H,GAAA,4CACAC,GAAA,+FAGAxuC,IACAyuC,IAAA,GACAC,IAAA,EACAhY,MAAA,GACAiY,MAAA,GACAC,GAAA,GACAhO,KAAA,GACAjS,MAAA,GACAkgB,KAAA,GACAlpB,QAAA,OAIAmpB,IACAL,IAAA,SACAC,IAAA,MACAhY,MAAA,QACAiY,MAAA,IAEAC,IAAA,gBACAhO,MAAA,oBACAjS,OAAA,sBACAkgB,MAAA,oBACAlpB,QAAA,uBAMAopB,GAAA,SAAA7C,GAAqC,YAAAA,EAAA,iBAErC8C,IACAC,KAAA,4BACAC,QAAA,2BACAC,KAAAJ,GAAA,0CACAK,KAAAL,GAAA,mBACAt+B,MAAAs+B,GAAA,oBACAM,IAAAN,GAAA,kBACAO,KAAAP,GAAA,mBACAnO,KAAAmO,GAAA,6CACAngB,OAAAmgB,GAAA,6CACApgB,MAAAogB,GAAA,8CAGA,SAAAQ,GACA7gB,EACAnsB,EACAW,GAEA,IAAAlF,EAAAuE,EAAA,aAAkC,OAClC,QAAAhM,KAAAm4B,EACA1wB,GAAA,IAAAzH,EAAA,KAAAi5C,GAAAj5C,EAAAm4B,EAAAn4B,IAAA,IAEA,OAAAyH,EAAAhB,MAAA,UAGA,SAAAwyC,GACAj5C,EACA+f,GAEA,IAAAA,EACA,qBAGA,GAAA3Y,MAAAc,QAAA6X,GACA,UAAAA,EAAA9a,IAAA,SAAA8a,GAAmD,OAAAk5B,GAAAj5C,EAAA+f,KAAoC+U,KAAA,SAGvF,IAAAokB,EAAAjB,GAAA9sC,KAAA4U,EAAArf,OACAy4C,EAAAnB,GAAA7sC,KAAA4U,EAAArf,OAEA,GAAAqf,EAAA4U,UAMG,CACH,IAAAiiB,EAAA,GACAwC,EAAA,GACA7wC,KACA,QAAAvH,KAAA+e,EAAA4U,UACA,GAAA8jB,GAAAz3C,GACAo4C,GAAAX,GAAAz3C,GAEAyI,GAAAzI,IACAuH,EAAA2E,KAAAlM,QAEO,aAAAA,EAAA,CACP,IAAA2zB,EAAA5U,EAAA,UACAq5B,GAAAZ,IACA,6BACAl4B,OAAA,SAAA+4B,GAA4C,OAAA1kB,EAAA0kB,KAC5Cp0C,IAAA,SAAAo0C,GAAyC,gBAAAA,EAAA,QACzCvkB,KAAA,YAGAvsB,EAAA2E,KAAAlM,GAgBA,OAbAuH,EAAAnD,SACAwxC,GAgBA,SAAAruC,GACA,mCAAAA,EAAAtD,IAAAq0C,IAAAxkB,KAAA,sBAjBAykB,CAAAhxC,IAGA6wC,IACAxC,GAAAwC,GAQA,oBAA8BxC,GAN9BsC,EACA,UAAAn5B,EAAA,iBACAo5B,EACA,WAAAp5B,EAAA,kBACAA,EAAArf,OAE8B,IAzC9B,OAAAw4C,GAAAC,EACAp5B,EAAArf,MAGA,oBAA8Bqf,EAAA,UA6C9B,SAAAu5B,GAAAt4C,GACA,IAAAw4C,EAAAvqB,SAAAjuB,EAAA,IACA,GAAAw4C,EACA,0BAAAA,EAEA,IAAAC,EAAAhwC,GAAAzI,GACA04C,EAAAnB,GAAAv3C,GACA,MACA,qBACA0D,KAAAC,UAAA3D,GAAA,IACA0D,KAAAC,UAAA80C,GAAA,eAEA/0C,KAAAC,UAAA+0C,GACA,IAuBA,IAAAC,IACA9gC,GAlBA,SAAAiU,EAAAiH,GAIAjH,EAAA8sB,cAAA,SAAAhD,GAAsC,YAAAA,EAAA,IAAA7iB,EAAA,YAetC9yB,KAVA,SAAA6rB,EAAAiH,GACAjH,EAAA+sB,SAAA,SAAAjD,GACA,YAAAA,EAAA,KAAA9pB,EAAA,SAAAiH,EAAA,WAAAA,EAAAY,WAAAZ,EAAAY,UAAA7f,KAAA,iBAAAif,EAAAY,WAAAZ,EAAAY,UAAAjX,KAAA,kBASAo8B,MAAApyC,GAKAqyC,GAAA,SAAArmC,GACA9K,KAAA8K,UACA9K,KAAA+D,KAAA+G,EAAA/G,MAAA2qB,GACA1uB,KAAAmmC,WAAAvX,GAAA9jB,EAAA/T,QAAA,iBACAiJ,KAAAoxC,WAAAxiB,GAAA9jB,EAAA/T,QAAA,WACAiJ,KAAAmL,WAAA1M,OAAoCsyC,IAAAjmC,EAAAK,YACpC,IAAArK,EAAAgK,EAAAhK,eAAA9B,EACAgB,KAAAqxC,eAAA,SAAAntB,GAAuC,OAAApjB,EAAAojB,EAAAhf,MACvClF,KAAAsxC,OAAA,EACAtxC,KAAA8Z,oBAKA,SAAAy3B,GACAC,EACA1mC,GAEA,IAAA2mC,EAAA,IAAAN,GAAArmC,GAEA,OACAiN,OAAA,sBAFAy5B,EAAAE,GAAAF,EAAAC,GAAA,aAEyB,IACzB33B,gBAAA23B,EAAA33B,iBAIA,SAAA43B,GAAAxtB,EAAAutB,GACA,GAAAvtB,EAAAirB,aAAAjrB,EAAAytB,gBACA,OAAAC,GAAA1tB,EAAAutB,GACG,GAAAvtB,EAAApkB,OAAAokB,EAAA2tB,cACH,OAAAC,GAAA5tB,EAAAutB,GACG,GAAAvtB,EAAA2nB,MAAA3nB,EAAA6tB,aACH,OAiGA,SACA7tB,EACAutB,EACAO,EACAC,GAEA,IAAA14C,EAAA2qB,EAAA2nB,IACAa,EAAAxoB,EAAAwoB,MACAE,EAAA1oB,EAAA0oB,UAAA,IAAA1oB,EAAA,aACA2oB,EAAA3oB,EAAA2oB,UAAA,IAAA3oB,EAAA,aAEA,EAeA,OADAA,EAAA6tB,cAAA,GACAE,GAAA,WAAA14C,EAAA,cACAmzC,EAAAE,EAAAC,EAAA,aACAmF,GAAAN,IAAAxtB,EAAAutB,GACA,KA9HAS,CAAAhuB,EAAAutB,GACG,GAAAvtB,EAAAqmB,KAAArmB,EAAAiuB,YACH,OAAAC,GAAAluB,EAAAutB,GACG,gBAAAvtB,EAAAhf,KAAAgf,EAAAgnB,WAEA,aAAAhnB,EAAAhf,IACH,OAsWA,SAAAgf,EAAAutB,GACA,IAAAzF,EAAA9nB,EAAA8nB,UAAA,YACA5mC,EAAAitC,GAAAnuB,EAAAutB,GACA5yC,EAAA,MAAAmtC,GAAA5mC,EAAA,IAAAA,EAAA,IACAkN,EAAA4R,EAAA5R,OAAA,IAA6B4R,EAAA5R,MAAAjW,IAAA,SAAA4B,GAAgC,OAAAV,EAAAU,EAAA7G,MAAA,IAAA6G,EAAA,QAAiDiuB,KAAA,SAC9GomB,EAAApuB,EAAA+K,SAAA,WACA3c,IAAAggC,GAAAltC,IACAvG,GAAA,SAEAyT,IACAzT,GAAA,IAAAyT,GAEAggC,IACAzzC,IAAAyT,EAAA,gBAAAggC,GAEA,OAAAzzC,EAAA,IArXA0zC,CAAAruB,EAAAutB,GAGA,IAAAzD,EACA,GAAA9pB,EAAA/E,UACA6uB,EAoXA,SACAwE,EACAtuB,EACAutB,GAEA,IAAArsC,EAAA8e,EAAAlH,eAAA,KAAAq1B,GAAAnuB,EAAAutB,GAAA,GACA,YAAAe,EAAA,IAAAC,GAAAvuB,EAAAutB,IAAArsC,EAAA,IAAAA,EAAA,QA1XAstC,CAAAxuB,EAAA/E,UAAA+E,EAAAutB,OACK,CACL,IAAAtsC,EAAA+e,EAAA4K,WAAA10B,EAAAq4C,GAAAvuB,EAAAutB,GAEArsC,EAAA8e,EAAAlH,eAAA,KAAAq1B,GAAAnuB,EAAAutB,GAAA,GACAzD,EAAA,OAAA9pB,EAAA,SAAA/e,EAAA,IAAAA,EAAA,KAAAC,EAAA,IAAAA,EAAA,QAGA,QAAAvO,EAAA,EAAmBA,EAAA46C,EAAAtL,WAAA3pC,OAA6B3F,IAChDm3C,EAAAyD,EAAAtL,WAAAtvC,GAAAqtB,EAAA8pB,GAEA,OAAAA,EAlBA,OAAAqE,GAAAnuB,EAAAutB,IAAA,SAuBA,SAAAG,GAAA1tB,EAAAutB,GAGA,OAFAvtB,EAAAytB,iBAAA,EACAF,EAAA33B,gBAAAxV,KAAA,qBAA0CotC,GAAAxtB,EAAAutB,GAAA,KAC1C,OAAAA,EAAA33B,gBAAAtd,OAAA,IAAA0nB,EAAAgrB,YAAA,gBAIA,SAAA4C,GAAA5tB,EAAAutB,GAEA,GADAvtB,EAAA2tB,eAAA,EACA3tB,EAAAqmB,KAAArmB,EAAAiuB,YACA,OAAAC,GAAAluB,EAAAutB,GACG,GAAAvtB,EAAAgrB,YAAA,CAGH,IAFA,IAAA92C,EAAA,GACA0N,EAAAoe,EAAApe,OACAA,GAAA,CACA,GAAAA,EAAA+lC,IAAA,CACAzzC,EAAA0N,EAAA1N,IACA,MAEA0N,WAEA,OAAA1N,EAMA,MAAAs5C,GAAAxtB,EAAAutB,GAAA,IAAAA,EAAAH,SAAA,IAAAl5C,EAAA,IAFAs5C,GAAAxtB,EAAAutB,GAIA,OAAAG,GAAA1tB,EAAAutB,GAIA,SAAAW,GACAluB,EACAutB,EACAO,EACAW,GAGA,OADAzuB,EAAAiuB,aAAA,EAIA,SAAAS,EACAC,EACApB,EACAO,EACAW,GAEA,IAAAE,EAAAr2C,OACA,OAAAm2C,GAAA,OAGA,IAAA5F,EAAA8F,EAAAvhC,QACA,OAAAy7B,EAAAxzC,IACA,IAAAwzC,EAAA,SAAA+F,EAAA/F,EAAAtC,OAAA,IAAAmI,EAAAC,EAAApB,EAAAO,EAAAW,GAEA,GAAAG,EAAA/F,EAAAtC,OAIA,SAAAqI,EAAA5uB,GACA,OAAA8tB,EACAA,EAAA9tB,EAAAutB,GACAvtB,EAAApkB,KACAgyC,GAAA5tB,EAAAutB,GACAC,GAAAxtB,EAAAutB,IA1BAmB,CAAA1uB,EAAA8oB,aAAAnvC,QAAA4zC,EAAAO,EAAAW,GA8DA,SAAAF,GAAAvuB,EAAAutB,GACA,IAAAtsC,EAAA,IAIA+F,EAyEA,SAAAgZ,EAAAutB,GACA,IAAAvmC,EAAAgZ,EAAA/Y,WACA,IAAAD,EAAc,OACd,IAEArU,EAAAC,EAAAq0B,EAAA4nB,EAFAl0C,EAAA,eACAm0C,GAAA,EAEA,IAAAn8C,EAAA,EAAAC,EAAAoU,EAAA1O,OAA8B3F,EAAAC,EAAOD,IAAA,CACrCs0B,EAAAjgB,EAAArU,GACAk8C,GAAA,EACA,IAAAE,EAAAxB,EAAAtmC,WAAAggB,EAAA/zB,MACA67C,IAGAF,IAAAE,EAAA/uB,EAAAiH,EAAAsmB,EAAA1tC,OAEAgvC,IACAC,GAAA,EACAn0C,GAAA,UAAessB,EAAA,mBAAAA,EAAA,aAAAA,EAAArzB,MAAA,WAAAqzB,EAAA,sBAAArvB,KAAAC,UAAAovB,EAAArzB,OAAA,KAAAqzB,EAAAiE,IAAA,SAAAjE,EAAA,aAAAA,EAAAY,UAAA,cAAAjwB,KAAAC,UAAAovB,EAAAY,WAAA,UAGf,GAAAinB,EACA,OAAAn0C,EAAAhB,MAAA,UA9FAq1C,CAAAhvB,EAAAutB,GACAvmC,IAAa/F,GAAA+F,EAAA,KAGbgZ,EAAA9rB,MACA+M,GAAA,OAAA+e,EAAA,SAGAA,EAAAsB,MACArgB,GAAA,OAAA+e,EAAA,SAEAA,EAAAsG,WACArlB,GAAA,kBAGA+e,EAAAqZ,MACAp4B,GAAA,aAGA+e,EAAA/E,YACAha,GAAA,QAAA+e,EAAA,UAGA,QAAArtB,EAAA,EAAiBA,EAAA46C,EAAAL,WAAA50C,OAA6B3F,IAC9CsO,GAAAssC,EAAAL,WAAAv6C,GAAAqtB,GA+BA,GA5BAA,EAAA5R,QACAnN,GAAA,UAAoBguC,GAAAjvB,EAAA5R,OAAA,MAGpB4R,EAAA3Z,QACApF,GAAA,aAAuBguC,GAAAjvB,EAAA3Z,OAAA,MAGvB2Z,EAAAqL,SACApqB,GAAAirC,GAAAlsB,EAAAqL,QAAA,EAAAkiB,EAAA1tC,MAAA,KAEAmgB,EAAAyL,eACAxqB,GAAAirC,GAAAlsB,EAAAyL,cAAA,EAAA8hB,EAAA1tC,MAAA,KAIAmgB,EAAAgnB,aAAAhnB,EAAA+mB,YACA9lC,GAAA,QAAA+e,EAAA,gBAGAA,EAAAtI,cACAzW,GA+DA,SACAkN,EACAo/B,GAEA,yBAAAl6C,OAAAoI,KAAA0S,GAAAhW,IAAA,SAAAjE,GACA,OAAAg7C,GAAAh7C,EAAAia,EAAAja,GAAAq5C,KACKvlB,KAAA,UArEL,CAAAhI,EAAAtI,YAAA61B,GAAA,KAGAvtB,EAAAzE,QACAta,GAAA,gBAAoB+e,EAAAzE,MAAA,mBAAAyE,EAAAzE,MAAA,wBAAAyE,EAAAzE,MAAA,iBAGpByE,EAAAlH,eAAA,CACA,IAAAA,EA0CA,SAAAkH,EAAAutB,GACA,IAAAD,EAAAttB,EAAA9e,SAAA,GACA,EAKA,OAAAosC,EAAAr4C,KAAA,CACA,IAAAk6C,EAAA9B,GAAAC,EAAAC,EAAA3mC,SACA,2CAA+CuoC,EAAA,6BAAiCA,EAAAv5B,gBAAAzd,IAAA,SAAA2xC,GAA4E,oBAAqBA,EAAA,MAAkB9hB,KAAA,WAnDnMonB,CAAApvB,EAAAutB,GACAz0B,IACA7X,GAAA6X,EAAA,KAYA,OATA7X,IAAA3H,QAAA,aAEA0mB,EAAA+sB,WACA9rC,EAAA+e,EAAA+sB,SAAA9rC,IAGA+e,EAAA8sB,gBACA7rC,EAAA+e,EAAA8sB,cAAA7rC,IAEAA,EAkDA,SAAAiuC,GACAh7C,EACA8rB,EACAutB,GAEA,OAAAvtB,EAAA2nB,MAAA3nB,EAAA6tB,aAYA,SACA35C,EACA8rB,EACAutB,GAEA,IAAAl4C,EAAA2qB,EAAA2nB,IACAa,EAAAxoB,EAAAwoB,MACAE,EAAA1oB,EAAA0oB,UAAA,IAAA1oB,EAAA,aACA2oB,EAAA3oB,EAAA2oB,UAAA,IAAA3oB,EAAA,aAEA,OADAA,EAAA6tB,cAAA,EACA,OAAAx4C,EAAA,cACAmzC,EAAAE,EAAAC,EAAA,YACAuG,GAAAh7C,EAAA8rB,EAAAutB,GACA,KAxBA8B,CAAAn7C,EAAA8rB,EAAAutB,GAQA,QAAYr5C,EAAA,QANZ,YAAAsD,OAAAwoB,EAAA+mB,WAAA,aACA,aAAA/mB,EAAAhf,IACAgf,EAAAqmB,GACArmB,EAAA,QAAAmuB,GAAAnuB,EAAAutB,IAAA,0BACAY,GAAAnuB,EAAAutB,IAAA,YACAC,GAAAxtB,EAAAutB,IAAA,KACY,IAmBZ,SAAAY,GACAnuB,EACAutB,EACA+B,EACAC,EACAC,GAEA,IAAAtuC,EAAA8e,EAAA9e,SACA,GAAAA,EAAA5I,OAAA,CACA,IAAAm3C,EAAAvuC,EAAA,GAEA,OAAAA,EAAA5I,QACAm3C,EAAA9H,KACA,aAAA8H,EAAAzuC,KACA,SAAAyuC,EAAAzuC,IAEA,OAAAuuC,GAAA/B,IAAAiC,EAAAlC,GAEA,IAAAnxB,EAAAkzB,EAYA,SACApuC,EACAisC,GAGA,IADA,IAAAxyC,EAAA,EACAhI,EAAA,EAAiBA,EAAAuO,EAAA5I,OAAqB3F,IAAA,CACtC,IAAAqtB,EAAA9e,EAAAvO,GACA,OAAAqtB,EAAA/qB,KAAA,CAGA,GAAAy6C,GAAA1vB,IACAA,EAAA8oB,cAAA9oB,EAAA8oB,aAAA/N,KAAA,SAAA/nC,GAA+D,OAAA08C,GAAA18C,EAAAuzC,SAAsC,CACrG5rC,EAAA,EACA,OAEAwyC,EAAAntB,IACAA,EAAA8oB,cAAA9oB,EAAA8oB,aAAA/N,KAAA,SAAA/nC,GAA+D,OAAAm6C,EAAAn6C,EAAAuzC,YAC/D5rC,EAAA,IAGA,OAAAA,EA/BAg1C,CAAAzuC,EAAAqsC,EAAAJ,gBACA,EACA4B,EAAAS,GAAAI,GACA,UAAA1uC,EAAA/I,IAAA,SAAAnF,GAA8C,OAAA+7C,EAAA/7C,EAAAu6C,KAAwBvlB,KAAA,UAAA5L,EAAA,IAAAA,EAAA,KA+BtE,SAAAszB,GAAA1vB,GACA,YAAA9pB,IAAA8pB,EAAA2nB,KAAA,aAAA3nB,EAAAhf,KAAA,SAAAgf,EAAAhf,IAGA,SAAA4uC,GAAAntC,EAAA8qC,GACA,WAAA9qC,EAAAxN,KACAu4C,GAAA/qC,EAAA8qC,GACG,IAAA9qC,EAAAxN,MAAAwN,EAAAT,UAaH,SAAA4+B,GACA,YAAAhpC,KAAAC,UAAA+oC,EAAAz/B,MAAA,IAbA0uC,CAAAptC,GAMA,SAAAtB,GACA,iBAAAA,EAAAlM,KACAkM,EAAAgQ,WACA2+B,GAAAl4C,KAAAC,UAAAsJ,UAAA,IAPA4uC,CAAAttC,GA0CA,SAAAwsC,GAAA5oC,GAEA,IADA,IAAA1L,EAAA,GACAhI,EAAA,EAAiBA,EAAA0T,EAAA/N,OAAkB3F,IAAA,CACnC,IAAAqV,EAAA3B,EAAA1T,GAGAgI,GAAA,IAAAqN,EAAA,UAAA8nC,GAAA9nC,EAAApU,OAAA,IAGA,OAAA+G,EAAAhB,MAAA,MAIA,SAAAm2C,GAAA3uC,GACA,OAAAA,EACA7H,QAAA,qBACAA,QAAA,qBAOA,IAAAmoB,OAAA,uMAIAppB,MAAA,KAAA2vB,KAAA,kBAGA,IAAAvG,OAAA,2BAEAppB,MAAA,KAAA2vB,KAAA,8CAgGA,SAAAgoB,GAAAlG,EAAAmG,GACA,IACA,WAAA95C,SAAA2zC,GACG,MAAA9gC,GAEH,OADAinC,EAAA7vC,MAAiB4I,MAAA8gC,SACjBlvC,GAmJA,IAwBAs1C,GALAC,GA1EA,SAAAC,GACA,gBAAAxG,GACA,SAAAyG,EACAlN,EACAv8B,GAEA,IAAA0pC,EAAAj9C,OAAAY,OAAA21C,GACAqG,KACAM,KAKA,GAJAD,EAAAzwC,KAAA,SAAA4qB,EAAA+lB,IACAA,EAAAD,EAAAN,GAAA7vC,KAAAqqB,IAGA7jB,EAcA,QAAA1S,KAZA0S,EAAA/T,UACAy9C,EAAAz9C,SACA+2C,EAAA/2C,aAAAoT,OAAAW,EAAA/T,UAGA+T,EAAAK,aACAqpC,EAAArpC,WAAA1M,EACAlH,OAAAY,OAAA21C,EAAA3iC,YAAA,MACAL,EAAAK,aAIAL,EACA,YAAA1S,GAAA,eAAAA,IACAo8C,EAAAp8C,GAAA0S,EAAA1S,IAKA,IAAAu8C,EAAAL,EAAAjN,EAAAmN,GAMA,OAFAG,EAAAR,SACAQ,EAAAF,OACAE,EAGA,OACAJ,UACAF,mBArIA,SAAAE,GACA,IAAAl3C,EAAA9F,OAAAY,OAAA,MAEA,gBACAkvC,EACAv8B,EACAf,IAEAe,EAAArM,KAAuBqM,IACvB/G,YACA+G,EAAA/G,KAqBA,IAAA3L,EAAA0S,EAAAy4B,WACA7nC,OAAAoP,EAAAy4B,YAAA8D,EACAA,EACA,GAAAhqC,EAAAjF,GACA,OAAAiF,EAAAjF,GAIA,IAAAu8C,EAAAJ,EAAAlN,EAAAv8B,GAiBAjM,KACA+1C,KAyBA,OAxBA/1C,EAAAkZ,OAAAm8B,GAAAS,EAAA58B,OAAA68B,GACA/1C,EAAAib,gBAAA66B,EAAA76B,gBAAAzd,IAAA,SAAA2xC,GACA,OAAAkG,GAAAlG,EAAA4G,KAsBAv3C,EAAAjF,GAAAyG,GAmDAg2C,CAAAN,KAUAO,CAAA,SACAzN,EACAv8B,GAEA,IAAA0mC,EAAApK,GAAAC,EAAA9Y,OAAAzjB,IACA,IAAAA,EAAA8jC,UACAA,GAAA4C,EAAA1mC,GAEA,IAAAkjC,EAAAuD,GAAAC,EAAA1mC,GACA,OACA0mC,MACAz5B,OAAAi2B,EAAAj2B,OACA+B,gBAAAk0B,EAAAl0B,kBAMAi7B,CAAAjH,IACAuG,mBAMA,SAAAW,GAAAC,GAGA,OAFAb,OAAAnrB,SAAAlN,cAAA,QACA0hB,UAAAwX,EAAA,iCACAb,GAAA3W,UAAAzgC,QAAA,SAAqC,EAIrC,IAAAgpC,KAAAnkC,GAAAmzC,IAAA,GAEAxL,KAAA3nC,GAAAmzC,IAAA,GAIAE,GAAA/3C,EAAA,SAAA+G,GACA,IAAAggB,EAAA6E,GAAA7kB,GACA,OAAAggB,KAAAuZ,YAGA0X,GAAAtzB,GAAAppB,UAAAykB,OACA2E,GAAAppB,UAAAykB,OAAA,SACAgH,EACA7H,GAKA,IAHA6H,KAAA6E,GAAA7E,MAGA+E,SAAA2Z,MAAA1e,IAAA+E,SAAAmsB,gBAIA,OAAAp1C,KAGA,IAAA8K,EAAA9K,KAAAyM,SAEA,IAAA3B,EAAAiN,OAAA,CACA,IAAAsvB,EAAAv8B,EAAAu8B,SACA,GAAAA,EACA,oBAAAA,EACA,MAAAA,EAAAzpC,OAAA,KACAypC,EAAA6N,GAAA7N,QASO,KAAAA,EAAAxP,SAMP,OAAA73B,KALAqnC,IAAA5J,eAOKvZ,IACLmjB,EAiCA,SAAAnjB,GACA,GAAAA,EAAAmxB,UACA,OAAAnxB,EAAAmxB,UAEA,IAAAC,EAAArsB,SAAAlN,cAAA,OAEA,OADAu5B,EAAAvrB,YAAA7F,EAAA8e,WAAA,IACAsS,EAAA7X,UAvCA8X,CAAArxB,IAEA,GAAAmjB,EAAA,CAEA,EAIA,IAAA7hB,EAAA6uB,GAAAhN,GACArB,wBACAwD,+BACAjG,WAAAz4B,EAAAy4B,WACAqG,SAAA9+B,EAAA8+B,UACO5pC,MACP+X,EAAAyN,EAAAzN,OACA+B,EAAA0L,EAAA1L,gBACAhP,EAAAiN,SACAjN,EAAAgP,mBASA,OAAAq7B,GAAAn+C,KAAAgJ,KAAAkkB,EAAA7H,IAiBAwF,GAAA0yB,QAAAF,GAEAmB,EAAA,2DC7sVA5+C,EAAAD,QAAA,SAAA8+C,GACA,uBAAAA,EAAA,OAAAA,EAAA,mBAAAA,kBCAA,IAAA58C,EAAAjC,EAAAD,QAAA,oBAAAmL,eAAAnG,WACAmG,OAAA,oBAAAkuC,WAAAr0C,WAAAq0C,KAEA31C,SAAA,cAAAA,GACA,iBAAAq7C,UAAA78C,oBCLA,IAAAoC,EAAAxE,EAAA,GACAG,EAAAD,QAAA,SAAA8+C,GACA,IAAAx6C,EAAAw6C,GAAA,MAAAE,UAAAF,EAAA,sBACA,OAAAA,oBCHA,IAAAG,EAAAn/C,EAAA,GAAAA,CAAA,OACAuN,EAAAvN,EAAA,IACAmB,EAAAnB,EAAA,GAAAmB,OACAi+C,EAAA,mBAAAj+C,GAEAhB,EAAAD,QAAA,SAAAS,GACA,OAAAw+C,EAAAx+C,KAAAw+C,EAAAx+C,GACAy+C,GAAAj+C,EAAAR,KAAAy+C,EAAAj+C,EAAAoM,GAAA,UAAA5M,MAGAw+C,uBCVAh/C,EAAAD,QAAA,SAAA80C,GACA,IACA,QAAAA,IACG,MAAAhsC,GACH,4BCJA,IAAAq2C,EAAAr/C,EAAA,GACAs/C,EAAAt/C,EAAA,IACAu/C,EAAAv/C,EAAA,IACAw/C,EAAA1+C,OAAAC,eAEAb,EAAAu/C,EAAAz/C,EAAA,IAAAc,OAAAC,eAAA,SAAA2+C,EAAAp8C,EAAAq8C,GAIA,GAHAN,EAAAK,GACAp8C,EAAAi8C,EAAAj8C,GAAA,GACA+7C,EAAAM,GACAL,EAAA,IACA,OAAAE,EAAAE,EAAAp8C,EAAAq8C,GACG,MAAA32C,IACH,WAAA22C,GAAA,QAAAA,EAAA,MAAAT,UAAA,4BAEA,MADA,UAAAS,IAAAD,EAAAp8C,GAAAq8C,EAAAt+C,OACAq+C,oBCbA,IAAAE,EAAA5/C,EAAA,IACA6/C,EAAA36C,KAAA26C,IACA1/C,EAAAD,QAAA,SAAA8+C,GACA,OAAAA,EAAA,EAAAa,EAAAD,EAAAZ,GAAA,sCCJe7+C,EAAAD,QAAkN,SAAAoB,GAAmB,SAAA0H,EAAA5I,GAAc,GAAAyB,EAAAzB,GAAA,OAAAyB,EAAAzB,GAAAF,QAA4B,IAAAgB,EAAAW,EAAAzB,IAAYA,IAAAC,GAAA,EAAAH,YAAqB,OAAAoB,EAAAlB,GAAAG,KAAAW,EAAAhB,QAAAgB,IAAAhB,QAAA8I,GAAA9H,EAAAb,GAAA,EAAAa,EAAAhB,QAA2D,IAAA2B,KAAS,OAAAmH,EAAAxI,EAAAc,EAAA0H,EAAAvI,EAAAoB,EAAAmH,EAAA5I,EAAA,SAAAkB,GAAmC,OAAAA,GAAS0H,EAAAtI,EAAA,SAAAY,EAAAO,EAAAzB,GAAqB4I,EAAAnI,EAAAS,EAAAO,IAAAf,OAAAC,eAAAO,EAAAO,GAAqCmJ,cAAA,EAAAhK,YAAA,EAAAC,IAAAb,KAAsC4I,EAAAnH,EAAA,SAAAP,GAAiB,IAAAO,EAAAP,KAAAE,WAAA,WAAiC,OAAAF,EAAAyU,SAAiB,WAAY,OAAAzU,GAAU,OAAA0H,EAAAtI,EAAAmB,EAAA,IAAAA,MAAsBmH,EAAAnI,EAAA,SAAAS,EAAA0H,GAAmB,OAAAlI,OAAAkB,UAAAC,eAAA1B,KAAAe,EAAA0H,IAAiDA,EAAA9G,EAAA,IAAA8G,IAAA7G,EAAA,IAAje,EAAof,SAAAb,EAAA0H,GAAgB,IAAAnH,EAAAP,EAAApB,QAAA,oBAAAmL,eAAAnG,WAAAmG,OAAA,oBAAAkuC,WAAAr0C,WAAAq0C,KAAA31C,SAAA,cAAAA,GAA8I,iBAAAq7C,UAAAp9C,IAA8B,SAAAP,EAAA0H,EAAAnH,GAAiBP,EAAApB,SAAA2B,EAAA,GAAAA,CAAA,WAA4B,UAAAf,OAAAC,kBAAkC,KAAME,IAAA,WAAe,YAAUuG,KAAM,SAAAlG,EAAA0H,GAAe,IAAAnH,KAAQI,eAAgBX,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAAnH,EAAAtB,KAAAe,EAAA0H,KAAoB,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAArB,OAAAC,eAAoDiI,EAAAy2C,EAAA59C,EAAA,GAAAf,OAAAC,eAAA,SAAAO,EAAA0H,EAAAnH,GAA+C,GAAAzB,EAAAkB,GAAA0H,EAAAnI,EAAAmI,GAAA,GAAA5I,EAAAyB,GAAAX,EAAA,IAA6B,OAAAiB,EAAAb,EAAA0H,EAAAnH,GAAgB,MAAAP,IAAU,WAAAO,GAAA,QAAAA,EAAA,MAAAq9C,UAAA,4BAAoE,gBAAAr9C,IAAAP,EAAA0H,GAAAnH,EAAAR,OAAAC,IAAqC,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAoBP,EAAApB,QAAA,SAAAoB,GAAsB,OAAAlB,EAAAc,EAAAI,MAAgB,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,IAAAi+C,EAAAj+C,EAAA,IAAA2F,EAAA,SAAAlG,EAAA0H,EAAAnH,GAA6D,IAAAxB,EAAAI,EAAAg/C,EAAAv9C,EAAA2nC,EAAAvoC,EAAAkG,EAAAxE,EAAAtC,EAAAY,EAAAkG,EAAAtE,EAAAkB,EAAA9C,EAAAkG,EAAApE,EAAA28C,EAAAz+C,EAAAkG,EAAAlE,EAAAkrC,EAAAltC,EAAAkG,EAAAhE,EAAA8E,EAAA5H,EAAAN,EAAAgE,EAAAhE,EAAA4I,KAAA5I,EAAA4I,QAA0E5I,EAAA4I,QAAWhH,UAAAxB,EAAAE,EAAAQ,IAAA8H,KAAA9H,EAAA8H,OAAgChC,EAAAxG,EAAAwB,YAAAxB,EAAAwB,cAA2C,IAAA3B,KAATK,IAAAmB,EAAAmH,GAASnH,EAAApB,GAAAopC,GAAAvhC,QAAA,IAAAA,EAAAjI,GAAAo/C,GAAAh/C,EAAA6H,EAAAzG,GAAAxB,GAAA6B,EAAAssC,GAAA/tC,EAAAq/C,EAAAL,EAAAr/C,GAAA2/C,GAAA,mBAAAN,EAAAK,EAAAl8C,SAAArD,KAAAk/C,KAAAn3C,GAAAnG,EAAAmG,EAAAjI,EAAAo/C,EAAAn+C,EAAAkG,EAAA3D,GAAArD,EAAAH,IAAAo/C,GAAA5+C,EAAAL,EAAAH,EAAA6B,GAAA69C,GAAA/4C,EAAA3G,IAAAo/C,IAAAz4C,EAAA3G,GAAAo/C,IAAoKr/C,EAAAiC,KAAAnB,EAAAsG,EAAAxE,EAAA,EAAAwE,EAAAtE,EAAA,EAAAsE,EAAApE,EAAA,EAAAoE,EAAAlE,EAAA,EAAAkE,EAAAhE,EAAA,GAAAgE,EAAA1D,EAAA,GAAA0D,EAAA3D,EAAA,GAAA2D,EAAAzD,EAAA,IAAAzC,EAAApB,QAAAsH,GAA0E,SAAAlG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAmBP,EAAApB,QAAA2B,EAAA,YAAAP,EAAA0H,EAAAnH,GAA+B,OAAAzB,EAAAq/C,EAAAn+C,EAAA0H,EAAA9H,EAAA,EAAAW,KAAuB,SAAAP,EAAA0H,EAAAnH,GAAiB,OAAAP,EAAA0H,GAAAnH,EAAAP,IAAiB,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAA,CAAA,OAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAV,OAAAgB,EAAA,mBAAAtB,GAAgES,EAAApB,QAAA,SAAAoB,GAAuB,OAAAlB,EAAAkB,KAAAlB,EAAAkB,GAAAa,GAAAtB,EAAAS,KAAAa,EAAAtB,EAAAK,GAAA,UAAAI,MAAkD69C,MAAA/+C,GAAU,SAAAkB,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,IAAI,QAAAA,IAAY,MAAAA,GAAS,YAAW,SAAAA,EAAA0H,GAAe,IAAAnH,EAAAP,EAAApB,QAAA,oBAAAmL,eAAAnG,WAAAmG,OAAA,oBAAAkuC,WAAAr0C,WAAAq0C,KAAA31C,SAAA,cAAAA,GAA8I,iBAAAq7C,UAAAp9C,IAA8B,SAAAP,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,GAAsB,IAAAlB,EAAAkB,GAAA,MAAA49C,UAAA59C,EAAA,sBAAiD,OAAAA,IAAU,SAAAA,EAAA0H,GAAe,IAAAnH,EAAAP,EAAApB,SAAiBywB,QAAA,SAAiB,iBAAAqvB,UAAAn+C,IAA8B,SAAAP,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,IAAI,QAAAA,IAAY,MAAAA,GAAS,YAAW,SAAAA,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,uBAAAA,EAAA,OAAAA,EAAA,mBAAAA,IAAwD,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAoBP,EAAApB,QAAAY,OAAAoI,MAAA,SAAA5H,GAAmC,OAAAlB,EAAAkB,EAAAJ,KAAe,SAAAI,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAOhI,aAAA,EAAAM,GAAA0J,eAAA,EAAA1J,GAAAyJ,WAAA,EAAAzJ,GAAAD,MAAA2H,KAAgE,SAAA1H,EAAA0H,GAAe,IAAAnH,EAAA,EAAAzB,EAAA8E,KAAA+6C,SAAwB3+C,EAAApB,QAAA,SAAAoB,GAAsB,gBAAAoS,YAAA,IAAApS,EAAA,GAAAA,EAAA,QAAAO,EAAAzB,GAAAuE,SAAA,OAAmE,SAAArD,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,WAAAA,EAAA,MAAA49C,UAAA,yBAAA59C,GAAyD,OAAAA,IAAU,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,KAAAX,EAAAW,EAAA,KAAsBP,EAAApB,QAAA2B,EAAA,aAAAP,EAAA0H,EAAAnH,GAAgC,OAAAzB,EAAAq/C,EAAAn+C,EAAA0H,EAAA9H,EAAA,EAAAW,KAAuB,SAAAP,EAAA0H,EAAAnH,GAAiB,OAAAP,EAAA0H,GAAAnH,EAAAP,IAAiB,SAAAA,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,uBAAAA,EAAA,OAAAA,EAAA,mBAAAA,IAAwD,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAWP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,QAAA1H,GAAAlB,EAAA,WAAwB4I,EAAA1H,EAAAf,KAAA,kBAA0B,GAAAe,EAAAf,KAAA,UAAoB,SAAAe,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,WAAAA,EAAA,MAAA49C,UAAA,yBAAA59C,GAAyD,OAAAA,IAAU,SAAAA,EAAA0H,GAAe1H,EAAApB,QAAA,gGAAA4F,MAAA,MAAqH,SAAAxE,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,GAAAi+C,EAAA,SAAAx+C,EAAA0H,EAAAnH,GAAoD,IAAA2F,EAAAnH,EAAAI,EAAAg/C,EAAAn+C,EAAAw+C,EAAA98C,EAAAd,EAAAZ,EAAAw+C,EAAA58C,EAAA2mC,EAAAvoC,EAAAw+C,EAAA18C,EAAA1C,EAAAY,EAAAw+C,EAAAx8C,EAAAc,EAAA9C,EAAAw+C,EAAAt8C,EAAAu8C,EAAAz+C,EAAAw+C,EAAAh8C,EAAA0qC,EAAAtsC,EAAAhB,IAAA8H,KAAA9H,EAAA8H,OAA8EV,EAAAkmC,EAAAxsC,UAAAxB,EAAA0B,EAAA9B,EAAAypC,EAAAzpC,EAAA4I,IAAA5I,EAAA4I,QAAsChH,UAAqB,IAAAwF,KAATtF,IAAAL,EAAAmH,GAASnH,GAAAxB,GAAAo/C,GAAAj/C,QAAA,IAAAA,EAAAgH,UAAAgnC,IAAA/tC,EAAAJ,EAAAG,EAAAgH,GAAA3F,EAAA2F,GAAAgnC,EAAAhnC,GAAAtF,GAAA,mBAAA1B,EAAAgH,GAAA3F,EAAA2F,GAAApD,GAAA/D,EAAAQ,EAAAJ,EAAAL,GAAA2/C,GAAAv/C,EAAAgH,IAAA/G,EAAA,SAAAa,GAAoI,IAAA0H,EAAA,SAAAA,EAAAnH,EAAAzB,GAAsB,GAAAmJ,gBAAAjI,EAAA,CAAsB,OAAAmG,UAAA1B,QAAyB,kBAAAzE,EAAoB,kBAAAA,EAAA0H,GAAuB,kBAAA1H,EAAA0H,EAAAnH,GAAyB,WAAAP,EAAA0H,EAAAnH,EAAAzB,GAAoB,OAAAkB,EAAAoG,MAAA6B,KAAA9B,YAAgC,OAAAuB,EAAAhH,UAAAV,EAAAU,UAAAgH,EAAjU,CAAkWvI,GAAAC,GAAA,mBAAAD,EAAAI,EAAA+C,SAAArD,KAAAE,KAAAC,KAAA8tC,EAAA0R,UAAA1R,EAAA0R,aAA8E14C,GAAA/G,EAAAa,EAAAw+C,EAAA/7C,GAAAuE,MAAAd,IAAArF,EAAAmG,EAAAd,EAAA/G,MAAqCq/C,EAAA98C,EAAA,EAAA88C,EAAA58C,EAAA,EAAA48C,EAAA18C,EAAA,EAAA08C,EAAAx8C,EAAA,EAAAw8C,EAAAt8C,EAAA,GAAAs8C,EAAAh8C,EAAA,GAAAg8C,EAAAj8C,EAAA,GAAAi8C,EAAA/7C,EAAA,IAAAzC,EAAApB,QAAA4/C,GAAiE,SAAAx+C,EAAA0H,GAAe1H,EAAApB,YAAa,SAAAoB,EAAA0H,GAAe1H,EAAApB,SAAA,GAAa,SAAAoB,EAAA0H,GAAeA,EAAAy2C,KAAMU,sBAAsB,SAAA7+C,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAA49C,EAAAv+C,EAAAW,EAAA,GAAAhB,EAAAgB,EAAA,EAAAA,CAAA,eAA0CP,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,GAA0BP,IAAAJ,EAAAI,EAAAO,EAAAP,IAAAU,UAAAnB,IAAAT,EAAAkB,EAAAT,GAAmCmK,cAAA,EAAA3J,MAAA2H,MAA2B,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAA,CAAA,QAAAX,EAAAW,EAAA,IAA4BP,EAAApB,QAAA,SAAAoB,GAAsB,OAAAlB,EAAAkB,KAAAlB,EAAAkB,GAAAJ,EAAAI,MAA0B,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAd,EAAA,wBAAAA,EAAA,0BAAmEkB,EAAApB,QAAA,SAAAoB,GAAsB,OAAAJ,EAAAI,KAAAJ,EAAAI,SAAwB,SAAAA,EAAA0H,GAAe,IAAAnH,EAAAqD,KAAAk7C,KAAAhgD,EAAA8E,KAAAC,MAA6B7D,EAAApB,QAAA,SAAAoB,GAAsB,OAAAkE,MAAAlE,MAAA,GAAAA,EAAA,EAAAlB,EAAAyB,GAAAP,KAAmC,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,IAAA5I,EAAAkB,GAAA,OAAAA,EAAkB,IAAAO,EAAAX,EAAQ,GAAA8H,GAAA,mBAAAnH,EAAAP,EAAAqD,YAAAvE,EAAAc,EAAAW,EAAAtB,KAAAe,IAAA,OAAAJ,EAAiE,sBAAAW,EAAAP,EAAA++C,WAAAjgD,EAAAc,EAAAW,EAAAtB,KAAAe,IAAA,OAAAJ,EAA6D,IAAA8H,GAAA,mBAAAnH,EAAAP,EAAAqD,YAAAvE,EAAAc,EAAAW,EAAAtB,KAAAe,IAAA,OAAAJ,EAAkE,MAAAg+C,UAAA,6CAA4D,SAAA59C,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,IAAAi+C,EAAAj+C,EAAA,GAAA49C,EAA4Cn+C,EAAApB,QAAA,SAAAoB,GAAsB,IAAA0H,EAAA9H,EAAAC,SAAAD,EAAAC,OAAAN,KAA8BT,EAAAe,YAAe,KAAAG,EAAA6F,OAAA,IAAA7F,KAAA0H,GAAA82C,EAAA92C,EAAA1H,GAAiCD,MAAAc,EAAAs9C,EAAAn+C,OAAgB,SAAAA,EAAA0H,EAAAnH,GAAiBmH,EAAAy2C,EAAA59C,EAAA,IAAS,SAAAP,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,IAAAi+C,EAAAj+C,EAAA,KAA6CP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,IAAAnH,EAAA,GAAAP,EAAAkG,EAAA,GAAAlG,EAAAjB,EAAA,GAAAiB,EAAAb,EAAA,GAAAa,EAAAm+C,EAAA,GAAAn+C,EAAAY,EAAA,GAAAZ,GAAAm+C,EAAA5V,EAAA7gC,GAAA82C,EAAwD,gBAAA92C,EAAA82C,EAAAp/C,GAAuB,QAAA0D,EAAA27C,EAAAvR,EAAA3tC,EAAAmI,GAAAV,EAAApH,EAAAstC,GAAAhuC,EAAAJ,EAAA0/C,EAAAp/C,EAAA,GAAAsG,EAAA7E,EAAAmG,EAAAvC,QAAAu6C,EAAA,EAAAC,EAAA1+C,EAAAgoC,EAAA7gC,EAAAhC,GAAAQ,EAAAqiC,EAAA7gC,EAAA,UAAkFhC,EAAAs5C,EAAIA,IAAA,IAAAp+C,GAAAo+C,KAAAh4C,KAAAlE,EAAAkE,EAAAg4C,GAAAP,EAAAv/C,EAAA4D,EAAAk8C,EAAA9R,GAAAltC,GAAA,GAAAO,EAAA0+C,EAAAD,GAAAP,OAAsD,GAAAA,EAAA,OAAAz+C,GAAoB,gBAAgB,cAAA8C,EAAgB,cAAAk8C,EAAgB,OAAAC,EAAA1yC,KAAAzJ,QAAiB,GAAA3D,EAAA,SAAmB,OAAAg/C,GAAA,EAAAp/C,GAAAI,IAAA8/C,KAAuB,SAAAj/C,EAAA0H,EAAAnH,GAAiBP,EAAApB,SAAA2B,EAAA,EAAAA,CAAA,WAA2B,UAAAf,OAAAC,kBAAkC,KAAME,IAAA,WAAe,YAAUuG,KAAM,SAAAlG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAAY,OAAA,KAAAq/C,qBAAA,GAAAr/C,OAAA,SAAAQ,GAAiE,gBAAAlB,EAAAkB,KAAAwE,MAAA,IAAAhF,OAAAQ,KAA4C,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAgE,KAAA26C,IAAuBv+C,EAAApB,QAAA,SAAAoB,GAAsB,OAAAA,EAAA,EAAAJ,EAAAd,EAAAkB,GAAA,sBAAuC,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAA,CAAA,OAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAV,OAAAgB,EAAA,mBAAAtB,GAAiES,EAAApB,QAAA,SAAAoB,GAAuB,OAAAlB,EAAAkB,KAAAlB,EAAAkB,GAAAa,GAAAtB,EAAAS,KAAAa,EAAAtB,EAAAK,GAAA,UAAAI,MAAkD69C,MAAA/+C,GAAU,SAAAkB,EAAA0H,EAAAnH,GAAiB,aAAa,SAAAzB,EAAAkB,GAAc,YAAAA,KAAAyG,MAAAc,QAAAvH,IAAA,IAAAA,EAAAyE,SAAAzE,GAAuD,SAAAJ,EAAAI,GAAc,kBAAkB,OAAAA,EAAAoG,WAAA,EAAAD,YAAgL,SAAAtF,EAAAb,EAAA0H,EAAAnH,EAAAzB,GAAoB,OAAAkB,EAAA2f,OAAA,SAAA3f,GAA4B,OAA9L,SAAAA,EAAA0H,GAAgB,gBAAA1H,MAAA,oBAAAA,MAAA,aAAAA,MAAA,cAAAA,EAAAqD,WAAAqB,cAAAO,QAAAyC,EAAA8uB,QAA8Kj3B,CAAAT,EAAAkB,EAAAO,GAAAmH,KAAqB,SAAA82C,EAAAx+C,GAAc,OAAAA,EAAA2f,OAAA,SAAA3f,GAA4B,OAAAA,EAAAk/C,WAAoB,SAAAh5C,EAAAlG,EAAA0H,GAAgB,gBAAAnH,GAAmB,OAAAA,EAAAm2C,OAAA,SAAAn2C,EAAAzB,GAA8B,OAAAA,EAAAkB,IAAAlB,EAAAkB,GAAAyE,QAAAlE,EAAAgM,MAAkC4yC,YAAArgD,EAAA4I,GAAAw3C,UAAA,IAA6B3+C,EAAA6R,OAAAtT,EAAAkB,KAAAO,QAA8R,IAAApB,EAAAoB,EAAA,IAAA49C,EAAA59C,IAAApB,GAAAyB,EAAAL,EAAA,IAAAgoC,GAAAhoC,IAAAK,GAAAL,EAAA,MAAAnB,GAAAmB,IAAAgoC,GAAAhoC,EAAA,KAAAuC,EAAAvC,IAAAnB,GAAAq/C,EAAAl+C,EAAA,KAAA2sC,GAAA3sC,IAAAk+C,GAAAl+C,EAAA,MAAAyG,GAAAzG,IAAA2sC,GAAA3sC,EAAA,MAAArB,GAAAqB,IAAAyG,GAAAzG,EAAA,MAAAmF,GAAAnF,IAAArB,GAAAqB,EAAA,MAAAy+C,GAAAz+C,IAAAmF,GAAAnF,EAAA,MAAA0+C,GAAA1+C,IAAAy+C,GAAA,WAAiM,QAAAh/C,EAAAmG,UAAA1B,OAAAiD,EAAA,IAAAjB,MAAAzG,GAAAO,EAAA,EAA8CA,EAAAP,EAAIO,IAAAmH,EAAAnH,GAAA4F,UAAA5F,GAAsB,gBAAAP,GAAmB,OAAA0H,EAAAgvC,OAAA,SAAA12C,EAAA0H,GAA8B,OAAAA,EAAA1H,IAAYA,MAAO0H,EAAAxB,GAAKkH,KAAA,WAAgB,OAAOgyC,OAAA,GAAAC,QAAA,EAAAC,uBAAA,QAAAC,gBAAAt3C,KAAAu3C,YAAmFhtC,OAAQitC,gBAAgBr+C,KAAAmT,QAAAE,SAAA,GAAwB1B,SAAU3R,KAAAqF,MAAAi5C,UAAA,GAAuBpuB,UAAWlwB,KAAAmT,QAAAE,SAAA,GAAwB1U,OAAQqB,KAAA,KAAAqT,QAAA,WAA6B,WAAUkrC,SAAUv+C,KAAAuC,QAAYi8C,OAAQx+C,KAAAuC,QAAYk8C,YAAaz+C,KAAAmT,QAAAE,SAAA,GAAwBqrC,eAAgB1+C,KAAAmT,QAAAE,SAAA,GAAwBsrC,cAAe3+C,KAAAmT,QAAAE,SAAA,GAAwB6zB,aAAclnC,KAAAuC,OAAA8Q,QAAA,iBAAoCurC,YAAa5+C,KAAAmT,QAAAE,SAAA,GAAwBwrC,YAAa7+C,KAAAmT,QAAAE,SAAA,GAAwByrC,eAAgB9+C,KAAAmT,QAAAE,SAAA,GAAwB0rC,aAAc/+C,KAAAkB,SAAAmS,QAAA,SAAAzU,EAAA0H,GAAoC,OAAA5I,EAAAkB,GAAA,GAAA0H,EAAA1H,EAAA0H,GAAA1H,IAAyBogD,UAAWh/C,KAAAmT,QAAAE,SAAA,GAAwB4rC,gBAAiBj/C,KAAAuC,OAAA8Q,QAAA,+BAAkD6rC,aAAcl/C,KAAAuC,OAAA8Q,QAAA,OAA0BpD,KAAMjQ,MAAA6sB,OAAA1Z,SAAAE,SAAA,GAAiCtI,IAAKsI,QAAA,MAAa8rC,cAAen/C,KAAA6sB,OAAAxZ,QAAA,KAAwB+rC,aAAcp/C,KAAAuC,QAAY88C,YAAar/C,KAAAuC,QAAY+8C,aAAct/C,KAAAmT,QAAAE,SAAA,GAAwBksC,WAAYv/C,KAAAqF,MAAAgO,QAAA,WAA8B,WAAUmsC,gBAAiBx/C,KAAAmT,QAAAE,SAAA,GAAwBosC,gBAAiBz/C,KAAAmT,QAAAE,SAAA,IAAyB2Z,QAAA,WAAoBnmB,KAAAqpB,UAAArpB,KAAA63C,eAAAnqC,QAAA3J,KAAA,yFAAA/D,KAAAqpB,UAAArpB,KAAAoJ,KAAAsE,QAAA3J,KAAA,wFAAA/D,KAAA44C,iBAAA54C,KAAA64C,cAAAr8C,QAAAwD,KAAA8K,QAAAtO,QAAAwD,KAAA84C,OAAA94C,KAAA+4C,gBAAA,KAAkXruC,UAAWmuC,cAAA,WAAyB,OAAA74C,KAAAlI,OAAA,IAAAkI,KAAAlI,MAAA0G,MAAAc,QAAAU,KAAAlI,OAAAkI,KAAAlI,OAAAkI,KAAAlI,WAAuFihD,gBAAA,WAA4B,IAAAhhD,EAAAiI,KAAAm3C,QAAA,GAAA13C,EAAA1H,EAAA0E,cAAA8xB,OAAAj2B,EAAA0H,KAAA8K,QAAAX,SAAuE,OAAA7R,EAAA0H,KAAAw3C,eAAAx3C,KAAAu4C,YAAAv4C,KAAAg5C,cAAA1gD,EAAAmH,EAAAO,KAAA23C,OAAA/+C,EAAAN,EAAAmH,EAAAO,KAAA23C,MAAA33C,KAAAk4C,aAAAl4C,KAAAu4C,YAAAt6C,EAAA+B,KAAAu4C,YAAAv4C,KAAAw4C,WAAAv6C,CAAA3F,OAAA0H,KAAA83C,aAAAx/C,EAAAof,OAAA/f,EAAAqI,KAAAi5C,aAAA3gD,EAAA0H,KAAAm4C,UAAA14C,EAAAjD,SAAAwD,KAAAk5C,iBAAAz5C,KAAA,WAAAO,KAAAq4C,YAAA//C,EAAAgM,MAA0T60C,OAAA,EAAAxB,MAAA5/C,IAAiBO,EAAAsuB,SAAauyB,OAAA,EAAAxB,MAAA5/C,KAAiBO,EAAAuF,MAAA,EAAAmC,KAAAs4C,eAAgCc,UAAA,WAAsB,IAAArhD,EAAAiI,KAAW,OAAAA,KAAA03C,QAAA13C,KAAA64C,cAAAx8C,IAAA,SAAAoD,GAAuD,OAAAA,EAAA1H,EAAA2/C,WAAoB13C,KAAA64C,eAAqBQ,WAAA,WAAuB,IAAAthD,EAAAiI,KAAW,OAAAA,KAAAu4C,YAAAv4C,KAAAs5C,aAAAt5C,KAAA8K,SAAA9K,KAAA8K,SAAAzO,IAAA,SAAAoD,GAAsF,OAAA1H,EAAAmgD,YAAAz4C,EAAA1H,EAAA4/C,OAAAv8C,WAAAqB,iBAA2D88C,mBAAA,WAA+B,OAAAv5C,KAAAqpB,SAAArpB,KAAA43C,WAAA,GAAA53C,KAAAqgC,YAAArgC,KAAA64C,cAAAr8C,OAAAwD,KAAAw5C,eAAAx5C,KAAA64C,cAAA,IAAA74C,KAAA43C,WAAA,GAAA53C,KAAAqgC,cAAmKz9B,OAAQi2C,cAAA,WAAyB74C,KAAAg4C,YAAAh4C,KAAA64C,cAAAr8C,SAAAwD,KAAAm3C,OAAA,GAAAn3C,KAAAsT,MAAA,QAAAtT,KAAAqpB,YAAA,QAAuG8tB,OAAA,WAAmBn3C,KAAAsT,MAAA,gBAAAtT,KAAAm3C,OAAAn3C,KAAAkE,MAAiDsG,SAAUo0B,SAAA,WAAoB,OAAA5+B,KAAAqpB,SAAArpB,KAAA64C,cAAA,IAAA74C,KAAA64C,cAAAr8C,OAAA,KAAAwD,KAAA64C,cAAA,IAAiGG,cAAA,SAAAjhD,EAAA0H,EAAAnH,GAA+B,OAAA0+C,EAA3gH,SAAAj/C,EAAA0H,EAAAnH,EAAAzB,EAAAc,GAAsB,gBAAAL,GAAmB,OAAAA,EAAA+E,IAAA,SAAA/E,GAAyB,IAAAi/C,EAAM,IAAAj/C,EAAAgB,GAAA,OAAAoV,QAAA3J,KAAA,mFAAgH,IAAA9F,EAAArF,EAAAtB,EAAAgB,GAAAP,EAAA0H,EAAA9H,GAAoB,OAAAsG,EAAAzB,QAAA+5C,KAAqB17C,IAAA07C,EAAA1/C,EAAAS,EAAAT,IAAAgE,IAAA07C,EAAAj+C,EAAA2F,GAAAs4C,SAA0yGz/C,CAAA2I,EAAAnH,EAAA0H,KAAAu4C,YAAAv4C,KAAAw4C,WAAAx4C,KAAAk4C,aAAAj6C,EAAA+B,KAAAu4C,YAAAv4C,KAAAw4C,YAAAxB,CAAAj/C,IAA0GuhD,aAAA,SAAAvhD,GAA0B,OAAAi/C,EAAA/4C,EAAA+B,KAAAu4C,YAAAv4C,KAAAw4C,YAAAjC,EAAAS,CAAAj/C,IAAmD0hD,aAAA,SAAA1hD,GAA0BiI,KAAAm3C,OAAAp/C,GAAcmhD,iBAAA,SAAAnhD,GAA8B,QAAAiI,KAAA8K,SAAA9K,KAAAq5C,WAAAr8C,QAAAjF,IAAA,GAAoDkhD,WAAA,SAAAlhD,GAAwB,IAAA0H,EAAAO,KAAA03C,QAAA3/C,EAAAiI,KAAA03C,SAAA3/C,EAAqC,OAAAiI,KAAAo5C,UAAAp8C,QAAAyC,IAAA,GAAoC+5C,eAAA,SAAAzhD,GAA4B,GAAAlB,EAAAkB,GAAA,SAAiB,GAAAA,EAAAohD,MAAA,OAAAphD,EAAA4/C,MAA0B,GAAA5/C,EAAAk/C,SAAA,OAAAl/C,EAAAm/C,YAAmC,IAAAz3C,EAAAO,KAAAk4C,YAAAngD,EAAAiI,KAAA23C,OAAqC,OAAA9gD,EAAA4I,GAAA,GAAAA,GAAiBq5C,OAAA,SAAA/gD,EAAA0H,GAAsB,GAAA1H,EAAAk/C,UAAAj3C,KAAAy4C,YAAAz4C,KAAA05C,YAAA3hD,QAAgE,UAAAiI,KAAA04C,UAAA17C,QAAAyC,IAAAO,KAAA25C,UAAA5hD,EAAA6hD,aAAA7hD,EAAAk/C,aAAAj3C,KAAAoJ,MAAApJ,KAAAqpB,UAAArpB,KAAA64C,cAAAr8C,SAAAwD,KAAAoJ,OAAA,QAAA3J,GAAAO,KAAA65C,cAAA,CAAmL,GAAA9hD,EAAAohD,MAAAn5C,KAAAsT,MAAA,MAAAvb,EAAA4/C,MAAA33C,KAAAkE,IAAAlE,KAAAm3C,OAAA,GAAAn3C,KAAAi4C,gBAAAj4C,KAAAqpB,UAAArpB,KAAA85C,iBAAkH,CAAK,GAAA95C,KAAAi5C,WAAAlhD,GAAA,oBAAA0H,GAAAO,KAAA+5C,cAAAhiD,IAAoEiI,KAAAsT,MAAA,SAAAvb,EAAAiI,KAAAkE,IAAAlE,KAAAqpB,SAAArpB,KAAAsT,MAAA,QAAAtT,KAAA64C,cAAA1uC,QAAApS,IAAAiI,KAAAkE,IAAAlE,KAAAsT,MAAA,QAAAvb,EAAAiI,KAAAkE,IAAAlE,KAAA63C,gBAAA73C,KAAAm3C,OAAA,IAA2Kn3C,KAAAi4C,eAAAj4C,KAAA85C,eAAuCJ,YAAA,SAAA3hD,GAAyB,IAAA0H,EAAAO,KAAA1H,EAAA0H,KAAA8K,QAAAkvC,KAAA,SAAA1hD,GAA2C,OAAAA,EAAAmH,EAAA+4C,cAAAzgD,EAAAm/C,cAAyC,GAAA5+C,EAAA,GAAA0H,KAAAi6C,mBAAA3hD,GAAA,CAAoC0H,KAAAsT,MAAA,SAAAhb,EAAA0H,KAAAu4C,aAAAv4C,KAAAkE,IAAiD,IAAArN,EAAAmJ,KAAA64C,cAAAnhC,OAAA,SAAA3f,GAA4C,WAAAO,EAAAmH,EAAA84C,aAAAv7C,QAAAjF,KAAyCiI,KAAAsT,MAAA,QAAAzc,EAAAmJ,KAAAkE,QAA8B,CAAK,IAAA5M,EAAAgB,EAAA0H,KAAAu4C,aAAA7gC,OAAA/f,EAAAqI,KAAAi5C,aAAqDj5C,KAAAsT,MAAA,SAAAhc,EAAA0I,KAAAkE,IAAAlE,KAAAsT,MAAA,QAAAtT,KAAA64C,cAAA1uC,OAAA7S,GAAA0I,KAAAkE,MAAyF+1C,mBAAA,SAAAliD,GAAgC,OAAAA,EAAAiI,KAAAu4C,aAAA/4C,MAAAQ,KAAAi5C,aAAkDc,cAAA,SAAAhiD,GAA2B,IAAA0H,IAAAvB,UAAA1B,OAAA,YAAA0B,UAAA,KAAAA,UAAA,GAAiE,IAAA8B,KAAA25C,SAAA,CAAmB,IAAA35C,KAAA+3C,YAAA/3C,KAAA64C,cAAAr8C,QAAA,cAAAwD,KAAA85C,aAAgF,IAAAxhD,EAAA,WAAA49C,IAAAn+C,GAAAiI,KAAAo5C,UAAAp8C,QAAAjF,EAAAiI,KAAA03C,UAAA13C,KAAAo5C,UAAAp8C,QAAAjF,GAA0F,GAAAiI,KAAAsT,MAAA,SAAAvb,EAAAiI,KAAAkE,IAAAlE,KAAAqpB,SAAA,CAAiD,IAAAxyB,EAAAmJ,KAAA64C,cAAAh7C,MAAA,EAAAvF,GAAA6R,OAAAnK,KAAA64C,cAAAh7C,MAAAvF,EAAA,IAA0E0H,KAAAsT,MAAA,QAAAzc,EAAAmJ,KAAAkE,SAA8BlE,KAAAsT,MAAA,aAAAtT,KAAAkE,IAAsClE,KAAAi4C,eAAAx4C,GAAAO,KAAA85C,eAA0CI,kBAAA,YAA8B,IAAAl6C,KAAA04C,UAAA17C,QAAA,eAAAgD,KAAAm3C,OAAA36C,QAAAgC,MAAAc,QAAAU,KAAA64C,gBAAA74C,KAAA+5C,cAAA/5C,KAAA64C,cAAA74C,KAAA64C,cAAAr8C,OAAA,QAAyKs+B,SAAA,WAAqB,IAAA/iC,EAAAiI,KAAWA,KAAAo3C,QAAAp3C,KAAA25C,WAAA35C,KAAAm6C,iBAAAn6C,KAAAu4C,aAAA,IAAAv4C,KAAAo6C,SAAAp6C,KAAA+4C,gBAAAv8C,SAAAwD,KAAAo6C,QAAA,GAAAp6C,KAAAo3C,QAAA,EAAAp3C,KAAA43C,YAAA53C,KAAA24C,iBAAA34C,KAAAm3C,OAAA,IAAAn3C,KAAAslB,UAAA,WAAqO,OAAAvtB,EAAA2rB,MAAAyzB,OAAAkD,WAA8Br6C,KAAAglB,IAAAq1B,QAAAr6C,KAAAsT,MAAA,OAAAtT,KAAAkE,MAAgD41C,WAAA,WAAuB95C,KAAAo3C,SAAAp3C,KAAAo3C,QAAA,EAAAp3C,KAAA43C,WAAA53C,KAAA0jB,MAAAyzB,OAAAmD,OAAAt6C,KAAAglB,IAAAs1B,OAAAt6C,KAAA24C,iBAAA34C,KAAAm3C,OAAA,IAAAn3C,KAAAsT,MAAA,QAAAtT,KAAA4+B,WAAA5+B,KAAAkE,MAAyKq2C,OAAA,WAAmBv6C,KAAAo3C,OAAAp3C,KAAA85C,aAAA95C,KAAA86B,YAA8Cqf,eAAA,WAA2B,uBAAAr4C,OAAA,CAA+B,IAAA/J,EAAAiI,KAAAglB,IAAAoc,wBAAAO,IAAAliC,EAAAqC,OAAA04C,YAAAx6C,KAAAglB,IAAAoc,wBAAAqZ,OAAwGh7C,EAAAO,KAAAu3C,WAAA93C,EAAA1H,GAAA,UAAAiI,KAAA06C,eAAA,WAAA16C,KAAA06C,eAAA16C,KAAAq3C,uBAAA,QAAAr3C,KAAAs3C,gBAAA37C,KAAA26C,IAAA72C,EAAA,GAAAO,KAAAu3C,aAAAv3C,KAAAq3C,uBAAA,QAAAr3C,KAAAs3C,gBAAA37C,KAAA26C,IAAAv+C,EAAA,GAAAiI,KAAAu3C,iBAAyQ,SAAAx/C,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,IAAYA,IAAAzB,GAAO4I,EAAAxB,GAAKkH,KAAA,WAAgB,OAAOi1C,QAAA,EAAAP,cAAA,IAA2BtvC,OAAQowC,aAAaxhD,KAAAmT,QAAAE,SAAA,GAAwBouC,cAAezhD,KAAA6sB,OAAAxZ,QAAA,KAAwB9B,UAAWmwC,gBAAA,WAA2B,OAAA76C,KAAAo6C,QAAAp6C,KAAA46C,cAAsCE,gBAAA,WAA4B,OAAA96C,KAAAs3C,gBAAAt3C,KAAA46C,eAA+Ch4C,OAAQm2C,gBAAA,WAA2B/4C,KAAA+6C,iBAAqB3D,OAAA,WAAmBp3C,KAAA65C,cAAA,IAAsBrvC,SAAUwwC,gBAAA,SAAAjjD,EAAA0H,GAA8B,OAAOw7C,iCAAAljD,IAAAiI,KAAAo6C,SAAAp6C,KAAA26C,YAAAO,gCAAAl7C,KAAAi5C,WAAAx5C,KAAwH07C,eAAA,SAAApjD,EAAA0H,GAA8B,IAAAnH,EAAA0H,KAAW,IAAAA,KAAAy4C,YAAA,wCAA6D,IAAA5hD,EAAAmJ,KAAA8K,QAAAkvC,KAAA,SAAAjiD,GAAoC,OAAAA,EAAAO,EAAAkgD,cAAA/4C,EAAAy3C,cAAyC,OAAAl3C,KAAAy4C,YAAA,8DAAsFwC,iCAAAljD,IAAAiI,KAAAo6C,SAAAp6C,KAAA26C,cAAsES,sCAAAp7C,KAAAi6C,mBAAApjD,MAAmEwkD,kBAAA,WAA8B,IAAAtjD,EAAAmG,UAAA1B,OAAA,YAAA0B,UAAA,GAAAA,UAAA,WAAAuB,EAAA1H,EAAAK,IAA6E4H,KAAA+4C,gBAAAv8C,OAAA,GAAAwD,KAAA84C,OAAA94C,KAAA+4C,gBAAA/4C,KAAAo6C,SAAA36C,GAAAO,KAAAs7C,gBAAqGC,eAAA,WAA2Bv7C,KAAAo6C,QAAAp6C,KAAA+4C,gBAAAv8C,OAAA,IAAAwD,KAAAo6C,UAAAp6C,KAAA0jB,MAAApnB,KAAAk/C,WAAAx7C,KAAA66C,iBAAA76C,KAAA86C,gBAAA,GAAA96C,KAAA46C,eAAA56C,KAAA0jB,MAAApnB,KAAAk/C,UAAAx7C,KAAA66C,iBAAA76C,KAAA86C,gBAAA,GAAA96C,KAAA46C,cAAA56C,KAAA+4C,gBAAA/4C,KAAAo6C,UAAAp6C,KAAA+4C,gBAAA/4C,KAAAo6C,SAAAnD,WAAAj3C,KAAAy4C,aAAAz4C,KAAAu7C,kBAAAv7C,KAAA65C,cAAA,GAAoY4B,gBAAA,WAA4Bz7C,KAAAo6C,QAAA,GAAAp6C,KAAAo6C,UAAAp6C,KAAA0jB,MAAApnB,KAAAk/C,WAAAx7C,KAAA66C,kBAAA76C,KAAA0jB,MAAApnB,KAAAk/C,UAAAx7C,KAAA66C,iBAAA76C,KAAA+4C,gBAAA/4C,KAAAo6C,UAAAp6C,KAAA+4C,gBAAA/4C,KAAAo6C,SAAAnD,WAAAj3C,KAAAy4C,aAAAz4C,KAAAy7C,mBAAAz7C,KAAA+4C,gBAAA/4C,KAAAo6C,UAAAp6C,KAAA+4C,gBAAA,GAAA9B,WAAAj3C,KAAAy4C,aAAAz4C,KAAAu7C,iBAAAv7C,KAAA65C,cAAA,GAAiYyB,aAAA,WAAyBt7C,KAAAi4C,gBAAAj4C,KAAAo6C,QAAA,EAAAp6C,KAAA0jB,MAAApnB,OAAA0D,KAAA0jB,MAAApnB,KAAAk/C,UAAA,KAAoFT,cAAA,WAA0B/6C,KAAAo6C,SAAAp6C,KAAA+4C,gBAAAv8C,OAAA,IAAAwD,KAAAo6C,QAAAp6C,KAAA+4C,gBAAAv8C,OAAAwD,KAAA+4C,gBAAAv8C,OAAA,KAAAwD,KAAA+4C,gBAAAv8C,OAAA,GAAAwD,KAAA+4C,gBAAA/4C,KAAAo6C,SAAAnD,WAAAj3C,KAAAy4C,aAAAz4C,KAAAu7C,kBAA6OG,WAAA,SAAA3jD,GAAwBiI,KAAAo6C,QAAAriD,EAAAiI,KAAA65C,cAAA,MAAuC,SAAA9hD,EAAA0H,GAAe,IAAAnH,KAAQ8C,SAAUrD,EAAApB,QAAA,SAAAoB,GAAsB,OAAAO,EAAAtB,KAAAe,GAAA8F,MAAA,QAA8B,SAAA9F,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,GAAA2wB,SAAA3xB,EAAAT,EAAAc,IAAAd,EAAAc,EAAAokB,eAAuDhkB,EAAApB,QAAA,SAAAoB,GAAsB,OAAAT,EAAAK,EAAAokB,cAAAhkB,QAAgC,SAAAA,EAAA0H,EAAAnH,GAAiBP,EAAApB,SAAA2B,EAAA,KAAAA,EAAA,GAAAA,CAAA,WAAmC,UAAAf,OAAAC,eAAAc,EAAA,GAAAA,CAAA,YAAkDZ,IAAA,WAAe,YAAUuG,KAAM,SAAAlG,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,GAAAi+C,EAAAj+C,EAAA,GAAA2F,EAAA3F,EAAA,IAAAxB,EAAAwB,EAAA,IAAApB,EAAAoB,EAAA,IAAA49C,EAAA59C,EAAA,IAAAK,EAAAL,EAAA,EAAAA,CAAA,YAAAgoC,OAAA3gC,MAAA,WAAAA,QAAAxI,EAAA,WAA0I,OAAA6I,MAAajI,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,EAAAuC,EAAA27C,EAAAvR,EAAAlmC,GAAkCjI,EAAAwB,EAAAmH,EAAA5E,GAAS,IAAA5D,EAAAwG,EAAAs5C,EAAAC,EAAA,SAAAj/C,GAAwB,IAAAuoC,GAAAvoC,KAAAgC,EAAA,OAAAA,EAAAhC,GAA0B,OAAAA,GAAU,0CAA0C,WAAAO,EAAA0H,KAAAjI,IAAsB,kBAAkB,WAAAO,EAAA0H,KAAAjI,KAAsB8B,EAAA4F,EAAA,YAAA02C,EAAA,UAAAK,EAAAmF,GAAA,EAAA5hD,EAAAhC,EAAAU,UAAAmjD,EAAA7hD,EAAApB,IAAAoB,EAAA,eAAAy8C,GAAAz8C,EAAAy8C,GAAAqF,EAAAD,GAAA5E,EAAAR,GAAApjC,EAAAojC,EAAAL,EAAAa,EAAA,WAAA6E,OAAA,EAAAC,EAAA,SAAAr8C,GAAA1F,EAAAgiD,SAAAH,EAAqJ,GAAAE,IAAA/E,EAAAb,EAAA4F,EAAA9kD,KAAA,IAAAe,OAAAR,OAAAkB,YAAAvB,EAAA6/C,EAAAl9C,GAAA,GAAAhD,GAAA0/C,EAAAQ,EAAAp+C,IAAAC,EAAAm+C,EAAAp+C,EAAAxB,IAAAg/C,GAAAyF,GAAA,WAAAA,EAAAxkD,OAAAukD,GAAA,EAAAE,EAAA,WAA2H,OAAAD,EAAA5kD,KAAAgJ,QAAoBnJ,IAAAkI,IAAAuhC,IAAAqb,GAAA5hD,EAAApB,IAAAC,EAAAmB,EAAApB,EAAAkjD,GAAA59C,EAAAwB,GAAAo8C,EAAA59C,EAAApE,GAAA1C,EAAAq/C,EAAA,GAAAv/C,GAAsD+kD,OAAA7F,EAAA0F,EAAA7E,EAAA,UAAAr3C,KAAAslC,EAAA4W,EAAA7E,EAAA,QAAA+E,QAAA3oC,GAAoDrU,EAAA,IAAAtB,KAAAxG,EAAAwG,KAAA1D,GAAAzC,EAAAyC,EAAA0D,EAAAxG,EAAAwG,SAAkC9F,IAAAoC,EAAApC,EAAA8B,GAAA6mC,GAAAqb,GAAAl8C,EAAAxI,GAA2B,OAAAA,IAAU,SAAAc,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,GAAAA,CAAA,YAAAi+C,EAAA,aAA8Dt4C,EAAA,WAAc,IAAAlG,EAAA0H,EAAAnH,EAAA,GAAAA,CAAA,UAAAzB,EAAAS,EAAAkF,OAAmC,IAAAiD,EAAAmhB,MAAAmf,QAAA,OAAAznC,EAAA,IAAAyxB,YAAAtqB,KAAA6I,IAAA,eAAAvQ,EAAA0H,EAAAw8C,cAAAhzB,UAAAua,OAAAzrC,EAAAmkD,MAAA,uCAAAnkD,EAAA0rC,QAAAxlC,EAAAlG,EAAA0B,EAAuK5C,YAAIoH,EAAAxF,UAAAnB,EAAAT,IAA0B,OAAAoH,KAAYlG,EAAApB,QAAAY,OAAAY,QAAA,SAAAJ,EAAA0H,GAAuC,IAAAnH,EAAM,cAAAP,GAAAw+C,EAAA99C,UAAA5B,EAAAkB,GAAAO,EAAA,IAAAi+C,IAAA99C,UAAA,KAAAH,EAAAM,GAAAb,GAAAO,EAAA2F,SAAA,IAAAwB,EAAAnH,EAAAX,EAAAW,EAAAmH,KAA8F,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAA6R,OAAA,sBAAiD1K,EAAAy2C,EAAA3+C,OAAAuQ,qBAAA,SAAA/P,GAA4C,OAAAlB,EAAAkB,EAAAJ,KAAe,SAAAI,EAAA0H,GAAeA,EAAAy2C,EAAA3+C,OAAA4kD,uBAAiC,SAAApkD,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,GAAAhB,EAAAgB,EAAA,GAAAA,EAAA,GAAAM,EAAAN,EAAA,GAAAA,CAAA,YAAkDP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,IAAAnH,EAAAi+C,EAAA5+C,EAAAI,GAAAkG,EAAA,EAAAnH,KAAsB,IAAAwB,KAAAi+C,EAAAj+C,GAAAM,GAAA/B,EAAA0/C,EAAAj+C,IAAAxB,EAAAwN,KAAAhM,GAAmC,KAAKmH,EAAAjD,OAAAyB,GAAWpH,EAAA0/C,EAAAj+C,EAAAmH,EAAAxB,SAAA3G,EAAAR,EAAAwB,IAAAxB,EAAAwN,KAAAhM,IAAqC,OAAAxB,IAAU,SAAAiB,EAAA0H,EAAAnH,GAAiBP,EAAApB,QAAA2B,EAAA,IAAe,SAAAP,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,sBAAAA,EAAA,MAAA49C,UAAA59C,EAAA,uBAAiE,OAAAA,IAAU,SAAAA,EAAA0H,GAAe,IAAAnH,KAAQ8C,SAAUrD,EAAApB,QAAA,SAAAoB,GAAsB,OAAAO,EAAAtB,KAAAe,GAAA8F,MAAA,QAA8B,SAAA9F,EAAA0H,GAAe,IAAAnH,EAAAP,EAAApB,SAAiBywB,QAAA,SAAiB,iBAAAqvB,UAAAn+C,IAA8B,SAAAP,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,GAA0B,GAAAzB,EAAAkB,QAAA,IAAA0H,EAAA,OAAA1H,EAA4B,OAAAO,GAAU,uBAAAA,GAA0B,OAAAP,EAAAf,KAAAyI,EAAAnH,IAAoB,uBAAAA,EAAAzB,GAA4B,OAAAkB,EAAAf,KAAAyI,EAAAnH,EAAAzB,IAAsB,uBAAAyB,EAAAzB,EAAAc,GAA8B,OAAAI,EAAAf,KAAAyI,EAAAnH,EAAAzB,EAAAc,IAAwB,kBAAkB,OAAAI,EAAAoG,MAAAsB,EAAAvB,cAA8B,SAAAnG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA6H,MAAAc,SAAA,SAAAvH,GAAqC,eAAAlB,EAAAkB,KAAqB,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,KAAAM,EAAAN,EAAA,GAAAA,CAAA,OAAAi+C,EAAAl8C,SAAAe,SAAA6C,GAAA,GAAAs4C,GAAAh6C,MAAA,YAA0FjE,EAAA,IAAA8jD,cAAA,SAAArkD,GAAgC,OAAAw+C,EAAAv/C,KAAAe,KAAiBA,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,EAAAi+C,GAA8B,IAAAz/C,EAAA,mBAAAwB,EAA2BxB,IAAAQ,EAAAgB,EAAA,SAAAX,EAAAW,EAAA,OAAAmH,IAAA1H,EAAA0H,KAAAnH,IAAAxB,IAAAQ,EAAAgB,EAAAM,IAAAjB,EAAAW,EAAAM,EAAAb,EAAA0H,GAAA,GAAA1H,EAAA0H,GAAAxB,EAAAiuB,KAAAxwB,OAAA+D,MAAA1H,IAAAlB,EAAAkB,EAAA0H,GAAAnH,EAAAi+C,EAAAx+C,EAAA0H,GAAA1H,EAAA0H,GAAAnH,EAAAX,EAAAI,EAAA0H,EAAAnH,WAAAP,EAAA0H,GAAA9H,EAAAI,EAAA0H,EAAAnH,OAA0J+B,SAAA5B,UAAA,sBAA2C,yBAAAuH,WAAApH,IAAA29C,EAAAv/C,KAAAgJ,SAAuD,SAAAjI,EAAA0H,GAAe,IAAAnH,EAAAqD,KAAAk7C,KAAAhgD,EAAA8E,KAAAC,MAA6B7D,EAAApB,QAAA,SAAAoB,GAAsB,OAAAkE,MAAAlE,MAAA,GAAAA,EAAA,EAAAlB,EAAAyB,GAAAP,KAAmC,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,GAAsB,OAAAR,OAAAV,EAAAkB,MAAqB,SAAAA,EAAA0H,GAAe,IAAAnH,EAAA,EAAAzB,EAAA8E,KAAA+6C,SAAwB3+C,EAAApB,QAAA,SAAAoB,GAAsB,gBAAAoS,YAAA,IAAApS,EAAA,GAAAA,EAAA,QAAAO,EAAAzB,GAAAuE,SAAA,OAAmE,SAAArD,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,GAAAA,CAAA,GAAAhB,GAAA,EAA2B,YAAAkH,MAAA,GAAAw7C,KAAA,WAAqC1iD,GAAA,IAAKT,IAAAkD,EAAAlD,EAAA4C,EAAAnC,EAAA,SAAuB0iD,KAAA,SAAAjiD,GAAiB,OAAAJ,EAAAqI,KAAAjI,EAAAmG,UAAA1B,OAAA,EAAA0B,UAAA,cAAyD5F,EAAA,GAAAA,CAAA,SAAgB,SAAAP,EAAA0H,EAAAnH,GAAiB,aAAkC,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,KAAAM,EAAAN,EAAA,KAAAi+C,EAArB,SAAAx+C,GAAcO,EAAA,MAAO2F,EAAArF,EAAAjB,EAAAsG,EAAA3G,EAAA2G,GAAA,EAAAs4C,EAAA,WAA8D92C,EAAAxB,IAAAtH,SAAc,SAAAoB,EAAA0H,EAAAnH,GAAiBP,EAAApB,QAAA2B,EAAA,KAAgB,SAAAP,EAAA0H,EAAAnH,GAAiBP,EAAApB,QAAA2B,EAAA,KAAgB,SAAAP,EAAA0H,EAAAnH,GAAiBP,EAAApB,QAAA2B,EAAA,KAAgB,SAAAP,EAAA0H,EAAAnH,GAAqH,IAAAX,EAAAW,EAAA,IAAYP,EAAApB,QAAhH,SAAAoB,EAAA0H,EAAAnH,GAAkB,OAAAmH,KAAA1H,EAAAJ,EAAAI,EAAA0H,GAAqB3H,MAAAQ,EAAAb,YAAA,EAAAgK,cAAA,EAAAD,UAAA,IAAkDzJ,EAAA0H,GAAAnH,EAAAP,IAAmC,SAAAA,EAAA0H,EAAAnH,GAAiB,SAAAzB,EAAAkB,GAAc,OAAAlB,EAAA,mBAAA+B,GAAA,iBAAAtB,EAAA,SAAAS,GAA8D,cAAAA,GAAgB,SAAAA,GAAa,OAAAA,GAAA,mBAAAa,GAAAb,EAAAsqB,cAAAzpB,GAAAb,IAAAa,EAAAH,UAAA,gBAAAV,IAAqFA,GAAK,SAAAJ,EAAA8H,GAAc,yBAAA7G,GAAA,WAAA/B,EAAAS,GAAAS,EAAApB,QAAAgB,EAAA,SAAAI,GAAoE,OAAAlB,EAAAkB,IAAYA,EAAApB,QAAAgB,EAAA,SAAAI,GAAyB,OAAAA,GAAA,mBAAAa,GAAAb,EAAAsqB,cAAAzpB,GAAAb,IAAAa,EAAAH,UAAA,SAAA5B,EAAAkB,IAAiFJ,EAAA8H,GAAM,IAAAnI,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,IAAoBP,EAAApB,QAAAgB,GAAY,SAAAI,EAAA0H,EAAAnH,GAAiB,aAAaf,OAAAC,eAAAiI,EAAA,cAAsC3H,OAAA,IAAW,IAAAjB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAA4BA,EAAAnB,EAAAsI,EAAA,yBAA+B,OAAA5I,EAAAoH,IAAW3F,EAAAnB,EAAAsI,EAAA,8BAAsC,OAAA9H,EAAAsG,IAAW3F,EAAAnB,EAAAsI,EAAA,0BAAkC,OAAAnI,EAAA2G,IAAWwB,EAAA+M,QAAA3V,EAAAoH,GAAgB,SAAAlG,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAoBmH,EAAAxB,GAAK7G,KAAA,kBAAAmU,QAAA1U,EAAAoH,EAAAtG,EAAAsG,GAAAsM,OAA+CnT,MAAM+B,KAAAuC,OAAA8Q,QAAA,IAAuB6vC,aAAcljD,KAAAuC,OAAA8Q,QAAA,yBAA4C8vC,kBAAmBnjD,KAAAuC,OAAA8Q,QAAA,+BAAkD+vC,eAAgBpjD,KAAAuC,OAAA8Q,QAAA,YAA+BgwC,eAAgBrjD,KAAAuC,OAAA8Q,QAAA,yBAA4CiwC,oBAAqBtjD,KAAAuC,OAAA8Q,QAAA,iCAAoDkwC,YAAavjD,KAAAmT,QAAAE,SAAA,GAAwBmwC,OAAQxjD,KAAA6sB,OAAAxZ,QAAA,OAA0B+qC,WAAYp+C,KAAA6sB,OAAAxZ,QAAA,KAAwBowC,WAAYzjD,KAAAkB,SAAAmS,QAAA,SAAAzU,GAAkC,aAAAoS,OAAApS,EAAA,WAAgC8mB,SAAU1lB,KAAAmT,QAAAE,SAAA,GAAwBmtC,UAAWxgD,KAAAmT,QAAAE,SAAA,GAAwBkuC,eAAgBvhD,KAAAuC,OAAA8Q,QAAA,IAAuBqwC,eAAgB1jD,KAAAmT,QAAAE,SAAA,GAAwBswC,UAAW3jD,KAAA6sB,OAAAxZ,QAAA,IAAuB9B,UAAWqyC,qBAAA,WAAgC,OAAA/8C,KAAAg9C,eAAAh9C,KAAAo3C,SAAAp3C,KAAA43C,cAAA53C,KAAAi9C,cAAAzgD,QAAsF0gD,qBAAA,WAAiC,QAAAl9C,KAAA64C,cAAAr8C,QAAAwD,KAAA43C,YAAA53C,KAAAo3C,SAAiE6F,cAAA,WAA0B,OAAAj9C,KAAAqpB,SAAArpB,KAAA64C,cAAAh7C,MAAA,EAAAmC,KAAA28C,WAA+DK,YAAA,WAAwB,OAAAh9C,KAAA64C,cAAA,IAA6BsE,kBAAA,WAA8B,OAAAn9C,KAAA08C,WAAA18C,KAAAw8C,cAAA,IAA6CY,uBAAA,WAAmC,OAAAp9C,KAAA08C,WAAA18C,KAAAy8C,mBAAA,IAAkDY,gBAAA,WAA4B,OAAAr9C,KAAA08C,WAAA18C,KAAAq8C,YAAA,IAA2CiB,qBAAA,WAAiC,OAAAt9C,KAAA08C,WAAA18C,KAAAs8C,iBAAA,IAAgDiB,kBAAA,WAA8B,OAAAv9C,KAAA08C,WAAA18C,KAAAu8C,cAAA,IAA6CiB,WAAA,WAAuB,GAAAx9C,KAAAqpB,UAAArpB,KAAAlI,OAAAkI,KAAAlI,MAAA0E,OAAA,OAAAwD,KAAAo3C,QAAoEqG,MAAA,SAAeA,MAAA,IAAAC,SAAA,WAAAC,QAAA,MAA2CC,aAAA,WAAyB,OAAA59C,KAAA8K,QAAAtO,QAA4BujC,QAAA,iBAAyBA,QAAA,UAAiB8d,QAAA,WAAoB,gBAAA79C,KAAA06C,eAAA,QAAA16C,KAAA06C,eAAA,UAAA16C,KAAA06C,eAAA,WAAA16C,KAAA06C,eAAA,UAAA16C,KAAAq3C,wBAAmKyG,gBAAA,WAA4B,OAAA99C,KAAA43C,cAAA53C,KAAA+9C,wBAAA/9C,KAAAg+C,oBAAA,IAAAh+C,KAAAg+C,oBAAAh+C,KAAAo3C,YAA6H,SAAAr/C,EAAA0H,EAAAnH,GAAiBA,EAAA,IAAM,IAAAzB,EAAAyB,EAAA,IAAAf,OAAmBQ,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,GAA0B,OAAAzB,EAAAW,eAAAO,EAAA0H,EAAAnH,KAAgC,SAAAP,EAAA0H,EAAAnH,GAAiBA,EAAA,IAAAA,EAAA,IAAAA,EAAA,IAAAA,EAAA,IAAAP,EAAApB,QAAA2B,EAAA,IAAAV,QAA+C,SAAAG,EAAA0H,EAAAnH,GAAiBA,EAAA,IAAAA,EAAA,IAAAP,EAAApB,QAAA2B,EAAA,IAAA49C,EAAA,aAA0C,SAAAn+C,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,GAAsB,sBAAAA,EAAA,MAAA49C,UAAA59C,EAAA,uBAAiE,OAAAA,IAAU,SAAAA,EAAA0H,GAAe1H,EAAApB,QAAA,cAAuB,SAAAoB,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAA2BP,EAAApB,QAAA,SAAAoB,GAAsB,gBAAA0H,EAAAnH,EAAAM,GAAuB,IAAA29C,EAAAt4C,EAAApH,EAAA4I,GAAA3I,EAAAa,EAAAsG,EAAAzB,QAAAtF,EAAAI,EAAAsB,EAAA9B,GAAoC,GAAAiB,GAAAO,MAAY,KAAKxB,EAAAI,GAAI,IAAAq/C,EAAAt4C,EAAA/G,OAAAq/C,EAAA,cAA2B,KAAUz/C,EAAAI,EAAIA,IAAA,IAAAa,GAAAb,KAAA+G,MAAA/G,KAAAoB,EAAA,OAAAP,GAAAb,GAAA,EAA4C,OAAAa,IAAA,KAAe,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,GAA0B,GAAAzB,EAAAkB,QAAA,IAAA0H,EAAA,OAAA1H,EAA4B,OAAAO,GAAU,uBAAAA,GAA0B,OAAAP,EAAAf,KAAAyI,EAAAnH,IAAoB,uBAAAA,EAAAzB,GAA4B,OAAAkB,EAAAf,KAAAyI,EAAAnH,EAAAzB,IAAsB,uBAAAyB,EAAAzB,EAAAc,GAA8B,OAAAI,EAAAf,KAAAyI,EAAAnH,EAAAzB,EAAAc,IAAwB,kBAAkB,OAAAI,EAAAoG,MAAAsB,EAAAvB,cAA8B,SAAAnG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAA4BP,EAAApB,QAAA,SAAAoB,GAAsB,IAAA0H,EAAA5I,EAAAkB,GAAAO,EAAAX,EAAAu+C,EAAiB,GAAA59C,EAAA,QAAAM,EAAA29C,EAAAj+C,EAAAP,GAAAkG,EAAA3G,EAAA4+C,EAAAp/C,EAAA,EAAgCy/C,EAAA/5C,OAAA1F,GAAWmH,EAAAjH,KAAAe,EAAAa,EAAA29C,EAAAz/C,OAAA2I,EAAA6E,KAAA1L,GAA+B,OAAA6G,IAAU,SAAA1H,EAAA0H,EAAAnH,GAAiBP,EAAApB,QAAA2B,EAAA,GAAA2wB,mBAAAmsB,iBAAkD,SAAAr9C,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAAY,OAAA,KAAAq/C,qBAAA,GAAAr/C,OAAA,SAAAQ,GAAiE,gBAAAlB,EAAAkB,KAAAwE,MAAA,IAAAhF,OAAAQ,KAA4C,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA6H,MAAAc,SAAA,SAAAvH,GAAqC,eAAAlB,EAAAkB,KAAqB,SAAAA,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,KAAiCN,EAAA,EAAAA,CAAAM,EAAAN,EAAA,EAAAA,CAAA,uBAAmC,OAAA0H,OAAYjI,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,GAA4BP,EAAAU,UAAA5B,EAAA+B,GAAiB+3B,KAAAh5B,EAAA,EAAAW,KAAYhB,EAAAS,EAAA0H,EAAA,eAAsB,SAAA1H,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAO3H,MAAA2H,EAAAw+C,OAAAlmD,KAAmB,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,GAAmBP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,QAAAnH,EAAAhB,EAAAK,EAAAI,GAAAa,EAAA/B,EAAAS,GAAAi/C,EAAA39C,EAAA4D,OAAAyB,EAAA,EAAuCs4C,EAAAt4C,GAAI,GAAA3G,EAAAgB,EAAAM,EAAAqF,QAAAwB,EAAA,OAAAnH,IAA8B,SAAAP,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAA,CAAA,QAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAM,EAAAN,EAAA,GAAA49C,EAAAK,EAAA,EAAAt4C,EAAA1G,OAAAmR,cAAA,WAAkF,UAAS5R,GAAAwB,EAAA,GAAAA,CAAA,WAAqB,OAAA2F,EAAA1G,OAAA2mD,yBAAuChnD,EAAA,SAAAa,GAAgBa,EAAAb,EAAAlB,GAAOiB,OAAOjB,EAAA,OAAA0/C,EAAAS,SAAiT7/C,EAAAY,EAAApB,SAAcwnD,IAAAtnD,EAAAunD,MAAA,EAAAC,QAA5S,SAAAtmD,EAAA0H,GAAiB,IAAA9H,EAAAI,GAAA,uBAAAA,KAAA,iBAAAA,EAAA,SAAAA,EAAmE,IAAAT,EAAAS,EAAAlB,GAAA,CAAY,IAAAoH,EAAAlG,GAAA,UAAmB,IAAA0H,EAAA,UAAgBvI,EAAAa,GAAK,OAAAA,EAAAlB,MAAoKynD,QAAtJ,SAAAvmD,EAAA0H,GAAiB,IAAAnI,EAAAS,EAAAlB,GAAA,CAAY,IAAAoH,EAAAlG,GAAA,SAAkB,IAAA0H,EAAA,SAAevI,EAAAa,GAAK,OAAAA,EAAAlB,GAAAmgD,GAAmFuH,SAArE,SAAAxmD,GAAe,OAAAjB,GAAAK,EAAAinD,MAAAngD,EAAAlG,KAAAT,EAAAS,EAAAlB,IAAAK,EAAAa,QAAoG,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAA2BP,EAAApB,QAAA2B,EAAA,GAAAf,OAAAkP,iBAAA,SAAA1O,EAAA0H,GAAqD9H,EAAAI,GAAK,QAAAO,EAAAM,EAAAtB,EAAAmI,GAAA82C,EAAA39C,EAAA4D,OAAAyB,EAAA,EAAgCs4C,EAAAt4C,GAAIpH,EAAAq/C,EAAAn+C,EAAAO,EAAAM,EAAAqF,KAAAwB,EAAAnH,IAAsB,OAAAP,IAAU,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAM,EAAAN,EAAA,IAAAi+C,EAAAj+C,EAAA,GAAA2F,EAAA3F,EAAA,IAAAxB,EAAAS,OAAAwR,yBAAoFtJ,EAAAy2C,EAAA59C,EAAA,GAAAxB,EAAA,SAAAiB,EAAA0H,GAAyB,GAAA1H,EAAAT,EAAAS,GAAA0H,EAAA7G,EAAA6G,GAAA,GAAAxB,EAAA,IAA0B,OAAAnH,EAAAiB,EAAA0H,GAAc,MAAA1H,IAAU,GAAAw+C,EAAAx+C,EAAA0H,GAAA,OAAA9H,GAAAd,EAAAq/C,EAAAl/C,KAAAe,EAAA0H,GAAA1H,EAAA0H,MAAyC,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAA49C,EAAA5+C,KAAyB8D,SAAAxC,EAAA,iBAAAkJ,gBAAAvK,OAAAuQ,oBAAAvQ,OAAAuQ,oBAAAhG,WAAwK/J,EAAApB,QAAAu/C,EAAA,SAAAn+C,GAAwB,OAAAa,GAAA,mBAAAtB,EAAAN,KAAAe,GAAhM,SAAAA,GAA4H,IAAI,OAAAJ,EAAAI,GAAY,MAAAA,GAAS,OAAAa,EAAAiF,SAA2C04C,CAAAx+C,GAAAJ,EAAAd,EAAAkB,MAAqD,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAA,CAAA,YAAAM,EAAArB,OAAAkB,UAA0DV,EAAApB,QAAAY,OAAAinD,gBAAA,SAAAzmD,GAA6C,OAAAA,EAAAJ,EAAAI,GAAAlB,EAAAkB,EAAAT,GAAAS,EAAAT,GAAA,mBAAAS,EAAAsqB,aAAAtqB,eAAAsqB,YAAAtqB,EAAAsqB,YAAA5pB,UAAAV,aAAAR,OAAAqB,EAAA,OAA2I,SAAAb,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAoBP,EAAApB,QAAA,SAAAoB,GAAsB,gBAAA0H,EAAAnH,GAAqB,IAAAhB,EAAAsB,EAAA29C,EAAA76C,OAAA/D,EAAA8H,IAAAxB,EAAApH,EAAAyB,GAAAxB,EAAAy/C,EAAA/5C,OAAyC,OAAAyB,EAAA,GAAAA,GAAAnH,EAAAiB,EAAA,WAAAT,EAAAi/C,EAAAj1C,WAAArD,IAAA,OAAA3G,EAAA,OAAA2G,EAAA,IAAAnH,IAAA8B,EAAA29C,EAAAj1C,WAAArD,EAAA,WAAArF,EAAA,MAAAb,EAAAw+C,EAAA34C,OAAAK,GAAA3G,EAAAS,EAAAw+C,EAAA14C,MAAAI,IAAA,GAAArF,EAAA,OAAAtB,EAAA,oBAAgL,SAAAS,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAgE,KAAAyN,IAAA9R,EAAAqE,KAAA26C,IAAkCv+C,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAA1H,EAAAlB,EAAAkB,IAAA,EAAAJ,EAAAI,EAAA0H,EAAA,GAAAnI,EAAAS,EAAA0H,KAAmC,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAgE,KAAA26C,IAAuBv+C,EAAApB,QAAA,SAAAoB,GAAsB,OAAAA,EAAA,EAAAJ,EAAAd,EAAAkB,GAAA,sBAAuC,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,GAAsB,OAAAR,OAAAV,EAAAkB,MAAqB,SAAAA,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,GAAmCP,EAAApB,QAAA2B,EAAA,GAAAA,CAAAkG,MAAA,iBAAAzG,EAAA0H,GAA4CO,KAAA0a,GAAA9hB,EAAAb,GAAAiI,KAAA4a,GAAA,EAAA5a,KAAA+a,GAAAtb,GAAiC,WAAY,IAAA1H,EAAAiI,KAAA0a,GAAAjb,EAAAO,KAAA+a,GAAAziB,EAAA0H,KAAA4a,KAAoC,OAAA7iB,GAAAO,GAAAP,EAAAyE,QAAAwD,KAAA0a,QAAA,EAAA/iB,EAAA,IAAAA,EAAA,UAAA8H,EAAAnH,EAAA,UAAAmH,EAAA1H,EAAAO,MAAAP,EAAAO,MAAiG,UAAAhB,EAAAmnD,UAAAnnD,EAAAkH,MAAA3H,EAAA,QAAAA,EAAA,UAAAA,EAAA,YAAkE,SAAAkB,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYzB,IAAAgD,EAAAhD,EAAA4C,GAAAnB,EAAA,aAA0Bd,eAAAc,EAAA,GAAA49C,KAAwB,SAAAn+C,EAAA0H,KAAgB,SAAA1H,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAA,EAAA,GAAgBA,EAAA,GAAAA,CAAAoD,OAAA,kBAAA3D,GAAkCiI,KAAA0a,GAAAhf,OAAA3D,GAAAiI,KAAA4a,GAAA,GAA4B,WAAY,IAAA7iB,EAAA0H,EAAAO,KAAA0a,GAAApiB,EAAA0H,KAAA4a,GAA0B,OAAAtiB,GAAAmH,EAAAjD,QAAoB1E,WAAA,EAAAmmD,MAAA,IAAqBlmD,EAAAlB,EAAA4I,EAAAnH,GAAA0H,KAAA4a,IAAA7iB,EAAAyE,QAA8B1E,MAAAC,EAAAkmD,MAAA,OAAoB,SAAAlmD,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,GAAAhB,EAAAgB,EAAA,GAAAM,EAAAN,EAAA,IAAAi+C,EAAAj+C,EAAA,IAAA2F,EAAA3F,EAAA,IAAA6lD,IAAArnD,EAAAwB,EAAA,IAAApB,EAAAoB,EAAA,IAAA49C,EAAA59C,EAAA,IAAAK,EAAAL,EAAA,IAAAgoC,EAAAhoC,EAAA,GAAAnB,EAAAmB,EAAA,IAAAuC,EAAAvC,EAAA,IAAAk+C,EAAAl+C,EAAA,IAAA2sC,EAAA3sC,EAAA,IAAAyG,EAAAzG,EAAA,IAAArB,EAAAqB,EAAA,IAAAmF,EAAAnF,EAAA,GAAAy+C,EAAAz+C,EAAA,IAAA0+C,EAAA1+C,EAAA,IAAAuB,EAAAvB,EAAA,IAAA69C,EAAA79C,EAAA,IAAAqjD,EAAArjD,EAAA,IAAAyB,EAAAzB,EAAA,GAAAsjD,EAAAtjD,EAAA,IAAAujD,EAAAF,EAAAzF,EAAA9iC,EAAArZ,EAAAm8C,EAAA4F,EAAA3F,EAAAD,EAAAwI,EAAA7nD,EAAAe,OAAA+mD,EAAA9nD,EAAAiF,KAAA8iD,EAAAD,KAAA5iD,UAAA8iD,EAAAve,EAAA,WAAAwe,EAAAxe,EAAA,eAAA7mC,KAAuSm9C,qBAAAmI,EAAA7nD,EAAA,mBAAA+C,EAAA/C,EAAA,WAAA8nD,EAAA9nD,EAAA,cAAAsD,EAAAjD,OAAAkB,UAAAwmD,EAAA,mBAAAP,EAAA/kD,EAAA9C,EAAAqoD,QAAAC,GAAAxlD,MAAAlB,YAAAkB,EAAAlB,UAAA2mD,UAAAC,EAAA/nD,GAAAR,EAAA,WAAiM,UAAA+C,EAAAuZ,KAAgB,KAAM1b,IAAA,WAAe,OAAA0b,EAAApT,KAAA,KAAmBlI,MAAA,IAAQmG,MAAKA,IAAK,SAAAlG,EAAA0H,EAAAnH,GAAkB,IAAAzB,EAAAglD,EAAArhD,EAAAiF,GAAa5I,UAAA2D,EAAAiF,GAAA2T,EAAArb,EAAA0H,EAAAnH,GAAAzB,GAAAkB,IAAAyC,GAAA4Y,EAAA5Y,EAAAiF,EAAA5I,IAA2Cuc,EAAAksC,EAAA,SAAAvnD,GAAiB,IAAA0H,EAAAxF,EAAAlC,GAAA8B,EAAA6kD,EAAAjmD,WAA0B,OAAAgH,EAAAsb,GAAAhjB,EAAA0H,GAAgBnF,EAAA2kD,GAAA,iBAAAP,EAAAa,SAAA,SAAAxnD,GAA8C,uBAAAA,GAAyB,SAAAA,GAAa,OAAAA,aAAA2mD,GAAsBnkD,EAAA,SAAAxC,EAAA0H,EAAAnH,GAAmB,OAAAP,IAAAyC,GAAAD,EAAAykD,EAAAv/C,EAAAnH,GAAArB,EAAAc,GAAA0H,EAAAs3C,EAAAt3C,GAAA,GAAAxI,EAAAqB,GAAAX,EAAAsC,EAAAwF,IAAAnH,EAAAb,YAAAE,EAAAI,EAAA8mD,IAAA9mD,EAAA8mD,GAAAp/C,KAAA1H,EAAA8mD,GAAAp/C,IAAA,GAAAnH,EAAAuB,EAAAvB,GAAsGb,WAAAu/C,EAAA,UAAmBr/C,EAAAI,EAAA8mD,IAAAzrC,EAAArb,EAAA8mD,EAAA7H,EAAA,OAAwBj/C,EAAA8mD,GAAAp/C,IAAA,GAAA4/C,EAAAtnD,EAAA0H,EAAAnH,IAAA8a,EAAArb,EAAA0H,EAAAnH,IAAkCknD,EAAA,SAAAznD,EAAA0H,GAAiBxI,EAAAc,GAAK,QAAAO,EAAAzB,EAAAouC,EAAAxlC,EAAAhC,EAAAgC,IAAA9H,EAAA,EAAAL,EAAAT,EAAA2F,OAAqClF,EAAAK,GAAI4C,EAAAxC,EAAAO,EAAAzB,EAAAc,KAAA8H,EAAAnH,IAAoB,OAAAP,GAA2D0nD,EAAA,SAAA1nD,GAAe,IAAA0H,EAAAhG,EAAAzC,KAAAgJ,KAAAjI,EAAAg/C,EAAAh/C,GAAA,IAA6B,QAAAiI,OAAAxF,GAAA7C,EAAAsC,EAAAlC,KAAAJ,EAAAqnD,EAAAjnD,QAAA0H,IAAA9H,EAAAqI,KAAAjI,KAAAJ,EAAAsC,EAAAlC,IAAAJ,EAAAqI,KAAA6+C,IAAA7+C,KAAA6+C,GAAA9mD,KAAA0H,IAA0FigD,EAAA,SAAA3nD,EAAA0H,GAAiB,GAAA1H,EAAA0F,EAAA1F,GAAA0H,EAAAs3C,EAAAt3C,GAAA,GAAA1H,IAAAyC,IAAA7C,EAAAsC,EAAAwF,IAAA9H,EAAAqnD,EAAAv/C,GAAA,CAA4C,IAAAnH,EAAAujD,EAAA9jD,EAAA0H,GAAa,OAAAnH,IAAAX,EAAAsC,EAAAwF,IAAA9H,EAAAI,EAAA8mD,IAAA9mD,EAAA8mD,GAAAp/C,KAAAnH,EAAAb,YAAA,GAAAa,IAAyDqnD,EAAA,SAAA5nD,GAAe,QAAA0H,EAAAnH,EAAAwjD,EAAAr+C,EAAA1F,IAAAlB,KAAAS,EAAA,EAA6BgB,EAAAkE,OAAAlF,GAAWK,EAAAsC,EAAAwF,EAAAnH,EAAAhB,OAAAmI,GAAAo/C,GAAAp/C,GAAAxB,GAAApH,EAAAyN,KAAA7E,GAAsC,OAAA5I,GAAS+oD,EAAA,SAAA7nD,GAAe,QAAA0H,EAAAnH,EAAAP,IAAAyC,EAAA3D,EAAAilD,EAAAxjD,EAAA0mD,EAAAvhD,EAAA1F,IAAAT,KAAAsB,EAAA,EAAyC/B,EAAA2F,OAAA5D,IAAWjB,EAAAsC,EAAAwF,EAAA5I,EAAA+B,OAAAN,IAAAX,EAAA6C,EAAAiF,IAAAnI,EAAAgN,KAAArK,EAAAwF,IAA0C,OAAAnI,GAAU2nD,IAAsR1I,GAAtRmI,EAAA,WAAiB,GAAA1+C,gBAAA0+C,EAAA,MAAA/I,UAAA,gCAAqE,IAAA59C,EAAAY,EAAAuF,UAAA1B,OAAA,EAAA0B,UAAA,WAAAuB,EAAA,SAAAnH,GAA8D0H,OAAAxF,GAAAiF,EAAAzI,KAAAgoD,EAAA1mD,GAAAX,EAAAqI,KAAA6+C,IAAAlnD,EAAAqI,KAAA6+C,GAAA9mD,KAAAiI,KAAA6+C,GAAA9mD,IAAA,GAAAsnD,EAAAr/C,KAAAjI,EAAAi/C,EAAA,EAAA1+C,KAAiF,OAAAhB,GAAA6nD,GAAAE,EAAA7kD,EAAAzC,GAAoB0J,cAAA,EAAAkC,IAAAlE,IAAsB6/C,EAAAvnD,KAAOU,UAAA,sBAAqC,OAAAuH,KAAA+a,KAAe4gC,EAAAzF,EAAAwJ,EAAA3lD,EAAAm8C,EAAA37C,EAAAjC,EAAA,IAAA49C,EAAAC,EAAAD,EAAAyJ,EAAArnD,EAAA,IAAA49C,EAAAuJ,EAAAnnD,EAAA,IAAA49C,EAAA0J,EAAAtoD,IAAAgB,EAAA,KAAAi+C,EAAA/7C,EAAA,uBAAAilD,GAAA,GAAAtoD,EAAA++C,EAAA,SAAAn+C,GAA4G,OAAAunD,EAAAhf,EAAAvoC,MAAea,IAAAe,EAAAf,EAAA2B,EAAA3B,EAAAa,GAAAwlD,GAAoBrnD,OAAA8mD,IAAW,QAAAmB,EAAA,iHAAAtjD,MAAA,KAAAujD,GAAA,EAA4ID,EAAArjD,OAAAsjD,IAAaxf,EAAAuf,EAAAC,OAAa,QAAAD,EAAAjE,EAAAtb,EAAAsV,OAAAkK,GAAA,EAA2BD,EAAArjD,OAAAsjD,IAAajlD,EAAAglD,EAAAC,OAAalnD,IAAAiB,EAAAjB,EAAAa,GAAAwlD,EAAA,UAAuBpT,IAAA,SAAA9zC,GAAgB,OAAAJ,EAAAonD,EAAAhnD,GAAA,IAAAgnD,EAAAhnD,GAAAgnD,EAAAhnD,GAAA2mD,EAAA3mD,IAAiCgoD,OAAA,SAAAhoD,GAAoB,GAAAuC,EAAAvC,GAAA,OAAAy+C,EAAAuI,EAAAhnD,GAAsB,MAAA49C,UAAA59C,EAAA,sBAAuCioD,UAAA,WAAsBb,GAAA,GAAKc,UAAA,WAAsBd,GAAA,KAAMvmD,IAAAiB,EAAAjB,EAAAa,GAAAwlD,EAAA,UAAyB9mD,OAAh8C,SAAAJ,EAAA0H,GAAiB,gBAAAA,EAAA5F,EAAA9B,GAAAynD,EAAA3lD,EAAA9B,GAAA0H,IAA+6CjI,eAAA+C,EAAAkM,iBAAA+4C,EAAAz2C,yBAAA22C,EAAA53C,oBAAA63C,EAAAxD,sBAAAyD,IAAsHjB,GAAA/lD,IAAAiB,EAAAjB,EAAAa,IAAAwlD,GAAAnoD,EAAA,WAAiC,IAAAiB,EAAA2mD,IAAU,gBAAAE,GAAA7mD,KAAA,MAA2B6mD,GAAM3gD,EAAAlG,KAAI,MAAM6mD,EAAArnD,OAAAQ,OAAgB,QAAWgE,UAAA,SAAAhE,GAAsB,YAAAA,IAAAuC,EAAAvC,GAAA,CAAsB,QAAA0H,EAAAnH,EAAAzB,GAAAkB,GAAAJ,EAAA,EAAsBuG,UAAA1B,OAAA7E,GAAmBd,EAAAyN,KAAApG,UAAAvG,MAAwB,yBAAA8H,EAAA5I,EAAA,MAAAyB,EAAAmH,IAAAnH,GAAAyG,EAAAU,OAAA,SAAA1H,EAAA0H,GAAqE,GAAAnH,IAAAmH,EAAAnH,EAAAtB,KAAAgJ,KAAAjI,EAAA0H,KAAAnF,EAAAmF,GAAA,OAAAA,IAA0C5I,EAAA,GAAA4I,EAAAm/C,EAAAzgD,MAAAwgD,EAAA9nD,OAAwB6nD,EAAAjmD,UAAAqmD,IAAAxmD,EAAA,EAAAA,CAAAomD,EAAAjmD,UAAAqmD,EAAAJ,EAAAjmD,UAAAq+C,SAAAZ,EAAAwI,EAAA,UAAAxI,EAAAv6C,KAAA,WAAAu6C,EAAAr/C,EAAAiF,KAAA,YAA8G,SAAA/D,EAAA0H,EAAAnH,GAAiBA,EAAA,GAAAA,CAAA,kBAAuB,SAAAP,EAAA0H,EAAAnH,GAAiBA,EAAA,GAAAA,CAAA,eAAoB,SAAAP,EAAA0H,EAAAnH,GAAiBA,EAAA,IAAM,QAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,GAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,EAAAA,CAAA,eAAAi+C,GAAA,sEAAAt4C,EAAA,EAAiIA,EAAA,EAAIA,IAAA,CAAK,IAAAnH,EAAAy/C,EAAAt4C,GAAA/G,EAAAL,EAAAC,GAAAo/C,EAAAh/C,KAAAuB,UAAmCy9C,MAAAt9C,IAAAjB,EAAAu+C,EAAAt9C,EAAA9B,GAAAQ,EAAAR,GAAAQ,EAAAkH,QAAiC,SAAAzG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAA,CAAA,eAAAX,EAAA6G,MAAA/F,eAA6C,GAAAd,EAAAd,IAAAyB,EAAA,GAAAA,CAAAX,EAAAd,MAA0BkB,EAAApB,QAAA,SAAAoB,GAAwBJ,EAAAd,GAAAkB,IAAA,IAAY,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,GAAsB,IAAAlB,EAAAkB,GAAA,MAAA49C,UAAA59C,EAAA,sBAAiD,OAAAA,IAAU,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,KAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,KAA8BP,EAAApB,QAAA,SAAAoB,GAAsB,gBAAA0H,EAAAnH,EAAAM,GAAuB,IAAA29C,EAAAt4C,EAAApH,EAAA4I,GAAA3I,EAAAa,EAAAsG,EAAAzB,QAAAtF,EAAAI,EAAAsB,EAAA9B,GAAoC,GAAAiB,GAAAO,MAAY,KAAKxB,EAAAI,GAAI,IAAAq/C,EAAAt4C,EAAA/G,OAAAq/C,EAAA,cAA2B,KAAUz/C,EAAAI,EAAIA,IAAA,IAAAa,GAAAb,KAAA+G,MAAA/G,KAAAoB,EAAA,OAAAP,GAAAb,GAAA,EAA4C,OAAAa,IAAA,KAAe,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,IAAAM,EAAAN,EAAA,IAAoCP,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,EAAAi+C,EAAAt4C,GAA8BpH,EAAA4I,GAAK,IAAA3I,EAAAa,EAAAI,GAAAb,EAAAI,EAAAR,GAAAo/C,EAAAt9C,EAAA9B,EAAA0F,QAAA7D,EAAAsF,EAAAi4C,EAAA,IAAA5V,EAAAriC,GAAA,IAAmD,GAAA3F,EAAA,SAAa,CAAE,GAAAK,KAAAzB,EAAA,CAAWq/C,EAAAr/C,EAAAyB,MAAA2nC,EAAY,MAAM,GAAA3nC,GAAA2nC,EAAAriC,EAAAtF,EAAA,EAAAu9C,GAAAv9C,EAAA,MAAAg9C,UAAA,+CAAkF,KAAK13C,EAAAtF,GAAA,EAAAu9C,EAAAv9C,EAAWA,GAAA2nC,EAAA3nC,KAAAzB,IAAAq/C,EAAA92C,EAAA82C,EAAAr/C,EAAAyB,KAAA7B,IAA+B,OAAAy/C,IAAU,SAAAx+C,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAA,CAAA,WAAuCP,EAAApB,QAAA,SAAAoB,GAAsB,IAAA0H,EAAM,OAAA9H,EAAAI,KAAA,mBAAA0H,EAAA1H,EAAAsqB,cAAA5iB,IAAAjB,QAAA7G,EAAA8H,EAAAhH,aAAAgH,OAAA,GAAA5I,EAAA4I,IAAA,QAAAA,IAAAnI,MAAAmI,OAAA,aAAAA,EAAAjB,MAAAiB,IAAkJ,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,KAAaP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,WAAA5I,EAAAkB,GAAA,CAAA0H,KAAqB,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,GAAA2wB,SAAA3xB,EAAAT,EAAAc,IAAAd,EAAAc,EAAAokB,eAAuDhkB,EAAApB,QAAA,SAAAoB,GAAsB,OAAAT,EAAAK,EAAAokB,cAAAhkB,QAAgC,SAAAA,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAM,EAAAN,EAAA,IAAAi+C,EAAAj+C,EAAA,IAA2CP,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,GAA0B,IAAA2F,EAAAs4C,EAAAx+C,GAAAjB,EAAAwB,EAAAM,EAAAqF,EAAA,GAAAlG,IAAAb,EAAAJ,EAAA,GAAAo/C,EAAAp/C,EAAA,GAAwCQ,EAAA,WAAa,IAAAmI,KAAS,OAAAA,EAAAxB,GAAA,WAAuB,UAAS,MAAAlG,GAAA0H,OAAa9H,EAAA+D,OAAAjD,UAAAV,EAAAb,GAAAL,EAAA8uB,OAAAltB,UAAAwF,EAAA,GAAAwB,EAAA,SAAA1H,EAAA0H,GAAoE,OAAAy2C,EAAAl/C,KAAAe,EAAAiI,KAAAP,IAAwB,SAAA1H,GAAa,OAAAm+C,EAAAl/C,KAAAe,EAAAiI,WAA0B,SAAAjI,EAAA0H,GAAe,IAAAnH,KAAQI,eAAgBX,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAAnH,EAAAtB,KAAAe,EAAA0H,KAAoB,SAAA1H,EAAA0H,EAAAnH,GAAiBP,EAAApB,SAAA2B,EAAA,MAAAA,EAAA,EAAAA,CAAA,WAAmC,UAAAf,OAAAC,eAAAc,EAAA,IAAAA,CAAA,YAAmDZ,IAAA,WAAe,YAAUuG,KAAM,SAAAlG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,KAAAX,EAAAW,EAAA,KAAAhB,EAAAgB,EAAA,KAAAM,EAAArB,OAAAC,eAAuDiI,EAAAy2C,EAAA59C,EAAA,IAAAf,OAAAC,eAAA,SAAAO,EAAA0H,EAAAnH,GAAgD,GAAAzB,EAAAkB,GAAA0H,EAAAnI,EAAAmI,GAAA,GAAA5I,EAAAyB,GAAAX,EAAA,IAA6B,OAAAiB,EAAAb,EAAA0H,EAAAnH,GAAgB,MAAAP,IAAU,WAAAO,GAAA,QAAAA,EAAA,MAAAq9C,UAAA,4BAAoE,gBAAAr9C,IAAAP,EAAA0H,GAAAnH,EAAAR,OAAAC,IAAqC,SAAAA,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAOhI,aAAA,EAAAM,GAAA0J,eAAA,EAAA1J,GAAAyJ,WAAA,EAAAzJ,GAAAD,MAAA2H,KAAgE,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAd,EAAA,wBAAAA,EAAA,0BAAmEkB,EAAApB,QAAA,SAAAoB,GAAsB,OAAAJ,EAAAI,KAAAJ,EAAAI,SAAwB,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAhB,EAAAgB,EAAA,GAAAM,EAAAN,EAAA,KAAAi+C,EAAA,IAAA39C,EAAA,IAAA9B,EAAA6uB,OAAA,IAAA4wB,IAAA,KAAAr/C,EAAAyuB,OAAA4wB,IAAA,MAAAL,EAAA,SAAAn+C,EAAA0H,EAAAnH,GAAiH,IAAAX,KAAQ4+C,EAAAj/C,EAAA,WAAgB,QAAAsB,EAAAb,MAAzI,WAAyIA,OAA0BjB,EAAAa,EAAAI,GAAAw+C,EAAA92C,EAAA9G,GAAAC,EAAAb,GAAqBO,IAAAX,EAAAW,GAAAxB,GAAAD,IAAAkD,EAAAlD,EAAA4C,EAAA88C,EAAA,SAAA5+C,IAAoCgB,EAAAu9C,EAAA3nB,KAAA,SAAAx2B,EAAA0H,GAAwB,OAAA1H,EAAA2D,OAAA/D,EAAAI,IAAA,EAAA0H,IAAA1H,IAAAyF,QAAA1G,EAAA,OAAA2I,IAAA1H,IAAAyF,QAAAtG,EAAA,KAAAa,GAA2EA,EAAApB,QAAAu/C,GAAY,SAAAn+C,EAAA0H,GAAe1H,EAAApB,QAAA,kDAA2D,SAAAoB,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAgE,KAAAyN,IAAA9R,EAAAqE,KAAA26C,IAAkCv+C,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,OAAA1H,EAAAlB,EAAAkB,IAAA,EAAAJ,EAAAI,EAAA0H,EAAA,GAAAnI,EAAAS,EAAA0H,KAAmC,SAAA1H,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAAX,EAAAW,EAAA,IAAoBP,EAAApB,QAAA,SAAAoB,GAAsB,OAAAlB,EAAAc,EAAAI,MAAgB,SAAAA,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,IAAYP,EAAApB,QAAA,SAAAoB,EAAA0H,GAAwB,IAAA5I,EAAAkB,GAAA,OAAAA,EAAkB,IAAAO,EAAAX,EAAQ,GAAA8H,GAAA,mBAAAnH,EAAAP,EAAAqD,YAAAvE,EAAAc,EAAAW,EAAAtB,KAAAe,IAAA,OAAAJ,EAAiE,sBAAAW,EAAAP,EAAA++C,WAAAjgD,EAAAc,EAAAW,EAAAtB,KAAAe,IAAA,OAAAJ,EAA6D,IAAA8H,GAAA,mBAAAnH,EAAAP,EAAAqD,YAAAvE,EAAAc,EAAAW,EAAAtB,KAAAe,IAAA,OAAAJ,EAAkE,MAAAg+C,UAAA,6CAA4D,SAAA59C,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,GAAAA,CAAA,GAAsBzB,IAAAkD,EAAAlD,EAAA4C,GAAAnB,EAAA,GAAAA,IAAAof,QAAA,YAAwCA,OAAA,SAAA3f,GAAmB,OAAAJ,EAAAqI,KAAAjI,EAAAmG,UAAA,QAAiC,SAAAnG,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,IAAAA,EAAA,GAAAhB,KAAA0F,QAAApE,IAAAtB,GAAA,MAAA0F,QAAA,QAAkEnG,IAAAkD,EAAAlD,EAAA4C,GAAAb,IAAAN,EAAA,GAAAA,CAAAhB,IAAA,SAAkC0F,QAAA,SAAAjF,GAAoB,OAAAa,EAAAtB,EAAA6G,MAAA6B,KAAA9B,YAAA,EAAAvG,EAAAqI,KAAAjI,EAAAmG,UAAA,QAA8D,SAAAnG,EAAA0H,EAAAnH,GAAiB,IAAAzB,EAAAyB,EAAA,GAAWzB,IAAAgD,EAAA,SAAeyF,QAAAhH,EAAA,OAAgB,SAAAP,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,GAAAA,CAAA,GAAsBzB,IAAAkD,EAAAlD,EAAA4C,GAAAnB,EAAA,GAAAA,IAAA+D,KAAA,YAAqCA,IAAA,SAAAtE,GAAgB,OAAAJ,EAAAqI,KAAAjI,EAAAmG,UAAA,QAAiC,SAAAnG,EAAA0H,EAAAnH,GAAiB,aAAa,IAAAzB,EAAAyB,EAAA,GAAAX,EAAAW,EAAA,KAAoBzB,IAAAkD,EAAAlD,EAAA4C,GAAAnB,EAAA,GAAAA,IAAAm2C,QAAA,YAAwCA,OAAA,SAAA12C,GAAmB,OAAAJ,EAAAqI,KAAAjI,EAAAmG,UAAA1B,OAAA0B,UAAA,WAAqD,SAAAnG,EAAA0H,EAAAnH,GAAiBA,EAAA,IAAAA,CAAA,oBAAAP,EAAA0H,EAAAnH,GAAkC,gBAAAA,GAAmB,aAAa,IAAAzB,EAAAkB,EAAAiI,MAAArI,OAAA,GAAAW,OAAA,EAAAA,EAAAmH,GAAsC,gBAAA9H,IAAAX,KAAAsB,EAAAzB,GAAA,IAAA8uB,OAAArtB,GAAAmH,GAAA/D,OAAA7E,KAA0DyB,MAAM,SAAAP,EAAA0H,EAAAnH,GAAiB,aAAaA,EAAA,IAAAA,CAAA,gBAAAP,GAA0B,kBAAkB,OAAAA,EAAAiI,KAAA,OAAoB,SAAAjI,EAAA0H,KAAgB,SAAA1H,EAAA0H,GAAe1H,EAAApB,QAAA,SAAAoB,EAAA0H,EAAAnH,EAAAzB,EAAAc,EAAAL,GAAgC,IAAAsB,EAAA29C,EAAAx+C,QAAekG,SAAAlG,EAAAyU,QAAoB,WAAAvO,GAAA,aAAAA,IAAArF,EAAAb,EAAAw+C,EAAAx+C,EAAAyU,SAAgD,IAAwJtV,EAAxJJ,EAAA,mBAAAy/C,IAAAzrC,QAAAyrC,EAA8J,GAAvH92C,IAAA3I,EAAAihB,OAAAtY,EAAAsY,OAAAjhB,EAAAgjB,gBAAAra,EAAAqa,gBAAAhjB,EAAA2kB,WAAA,GAAAnjB,IAAAxB,EAAA+oB,YAAA,GAAAloB,IAAAb,EAAA+kB,SAAAlkB,GAAuHL,GAAAJ,EAAA,SAAAa,IAAoBA,KAAAiI,KAAAwd,QAAAxd,KAAAwd,OAAA2J,YAAAnnB,KAAA8F,QAAA9F,KAAA8F,OAAA0X,QAAAxd,KAAA8F,OAAA0X,OAAA2J,aAAA,oBAAA+4B,sBAAAnoD,EAAAmoD,qBAAArpD,KAAAG,KAAAgJ,KAAAjI,QAAAooD,uBAAApoD,EAAAooD,sBAAAt8C,IAAAvM,IAA0PR,EAAAspD,aAAAlpD,GAAAL,IAAAK,EAAAL,GAAAK,EAAA,CAA+B,IAAAg/C,EAAAp/C,EAAA+oB,WAAAlnB,EAAAu9C,EAAAp/C,EAAAihB,OAAAjhB,EAAAupD,aAA+CnK,GAAAp/C,EAAAwpD,cAAAppD,EAAAJ,EAAAihB,OAAA,SAAAhgB,EAAA0H,GAA4C,OAAAvI,EAAAF,KAAAyI,GAAA9G,EAAAZ,EAAA0H,KAAwB3I,EAAAupD,aAAA1nD,KAAAwR,OAAAxR,EAAAzB,OAAsC,OAAOqpD,SAAA3nD,EAAAjC,QAAA4/C,EAAAzrC,QAAAhU,KAAiC,SAAAiB,EAAA0H,EAAAnH,GAAiB,aAAa,IAAkiMhB,GAASygB,OAA3iM,WAAiB,IAAAhgB,EAAAiI,KAAAP,EAAA1H,EAAA0gB,eAAAngB,EAAAP,EAAAyrB,MAAA1H,IAAArc,EAA8C,OAAAnH,EAAA,OAAgB2vB,YAAA,cAAApH,OAAiC2/B,sBAAAzoD,EAAAq/C,OAAAqJ,wBAAA1oD,EAAA4hD,SAAA+G,qBAAA3oD,EAAA8lD,SAAiGvrC,OAAQwqC,SAAA/kD,EAAA6/C,YAAA,EAAA7/C,EAAA+kD,UAAoC7sC,IAAKoqC,MAAA,SAAA56C,GAAkB1H,EAAA+iC,YAAawf,KAAA,SAAA76C,IAAkB1H,EAAA6/C,YAAA7/C,EAAA+hD,cAA8B6G,SAAA,SAAAlhD,GAAsB,iBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,UAAApxC,EAAArH,IAAA,aAAAqH,EAAAvF,SAAAuF,EAAAmhD,cAAA,MAAAnhD,EAAAohD,sBAAA9oD,EAAAwjD,kBAAA,MAAmJ,SAAA97C,GAAa,iBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,QAAApxC,EAAArH,IAAA,WAAAqH,EAAAvF,SAAAuF,EAAAmhD,cAAA,MAAAnhD,EAAAohD,sBAAA9oD,EAAA0jD,mBAAA,MAAgJ,SAAAh8C,GAAa,iBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,WAAApxC,EAAArH,IAAA,WAAAL,EAAAgjB,GAAAtb,EAAAoxC,QAAA,QAAApxC,EAAArH,IAAA,QAAAqH,EAAAqhD,kBAAArhD,EAAAvF,SAAAuF,EAAAmhD,cAAA,UAAA7oD,EAAAsjD,kBAAA57C,IAAA,OAA2LshD,MAAA,SAAAthD,GAAoB,gBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,SAAApxC,EAAArH,IAAA,sBAAwEL,EAAA+hD,iBAAiB/hD,EAAA2iB,GAAA,SAAApiB,EAAA,OAAyB2vB,YAAA,sBAAAhY,IAAsC+wC,UAAA,SAAAvhD,GAAsBA,EAAAohD,iBAAAphD,EAAAqhD,kBAAA/oD,EAAAwiD,eAAwDA,OAAAxiD,EAAAwiD,SAAgBxiD,EAAAkjB,GAAA,KAAAljB,EAAA2iB,GAAA,cAA+By8B,OAAAp/C,EAAAo/C,SAAgBp/C,EAAAkjB,GAAA,KAAA3iB,EAAA,OAAqBktB,IAAA,OAAAyC,YAAA,sBAA2C3vB,EAAA,OAAW6S,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAAC,EAAAklD,cAAAzgD,OAAA,EAAA6Y,WAAA,6BAAkG4S,YAAA,2BAAuClwB,EAAA0iB,GAAA1iB,EAAAklD,cAAA,SAAAx9C,GAAmC,OAAA1H,EAAA2iB,GAAA,OAAApiB,EAAA,QAA6B2vB,YAAA,qBAA+B3vB,EAAA,QAAYihB,UAAU2Q,YAAAnyB,EAAAyiB,GAAAziB,EAAAyhD,eAAA/5C,OAAuC1H,EAAAkjB,GAAA,KAAA3iB,EAAA,KAAmB2vB,YAAA,wBAAA3V,OAA2C2uC,cAAA,OAAAnE,SAAA,KAAkC7sC,IAAK0wC,QAAA,SAAAroD,GAAoB,gBAAAA,IAAAP,EAAAgjB,GAAAziB,EAAAu4C,QAAA,WAAAv4C,EAAAF,IAAA,qBAAyEE,EAAAuoD,iBAAA9oD,EAAAgiD,cAAAt6C,IAAsCuhD,UAAA,SAAA1oD,GAAuBA,EAAAuoD,iBAAA9oD,EAAAgiD,cAAAt6C,WAA8C4/B,OAAA5/B,EAAA03C,OAAAp/C,EAAAo/C,OAAAv6C,OAAA7E,EAAAgiD,oBAAmD,GAAAhiD,EAAAkjB,GAAA,KAAAljB,EAAA8gD,eAAA9gD,EAAA8gD,cAAAr8C,OAAAzE,EAAA4kD,OAAA5kD,EAAA2iB,GAAA,SAAApiB,EAAA,UAA2F2vB,YAAA,sBAAA1O,UAA4C2Q,YAAAnyB,EAAAyiB,GAAAziB,EAAA6kD,UAAA7kD,EAAA8gD,cAAAr8C,OAAAzE,EAAA4kD,cAA+D5kD,EAAAmjB,KAAAnjB,EAAAkjB,GAAA,KAAA3iB,EAAA,cAAsCga,OAAOlb,KAAA,0BAA6BW,EAAA2iB,GAAA,WAAApiB,EAAA,OAA2B6S,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAAC,EAAA8mB,QAAAxJ,WAAA,YAAkE4S,YAAA,4BAAqC,GAAAlwB,EAAAkjB,GAAA,KAAA3iB,EAAA,SAA6B6S,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAAC,EAAAq/C,QAAAr/C,EAAA6/C,WAAAviC,WAAA,yBAA4FmQ,IAAA,SAAAyC,YAAA,qBAAArH,MAAA7oB,EAAAylD,WAAAlrC,OAA0Elb,KAAAW,EAAAX,KAAA8M,GAAAnM,EAAAmM,GAAA/K,KAAA,OAAA+nD,aAAA,MAAA7gB,YAAAtoC,EAAAsoC,YAAAsZ,SAAA5hD,EAAA4hD,SAAAmD,SAAA/kD,EAAA+kD,UAAqHvjC,UAAWzhB,MAAAC,EAAAo/C,QAAelnC,IAAKkxC,MAAA,SAAA1hD,GAAkB1H,EAAA0hD,aAAAh6C,EAAAvF,OAAApC,QAA+BuiD,MAAA,SAAA56C,GAAmBA,EAAAohD,iBAAA9oD,EAAA+iC,YAAgCwf,KAAA,SAAA76C,GAAkBA,EAAAohD,iBAAA9oD,EAAA+hD,cAAkCiH,MAAA,SAAAthD,GAAmB,gBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,SAAApxC,EAAArH,IAAA,sBAAwEL,EAAA+hD,cAAe6G,SAAA,SAAAlhD,GAAsB,gBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,UAAApxC,EAAArH,IAAA,yBAA4EqH,EAAAohD,iBAAA9oD,EAAAwjD,kBAAsC,SAAA97C,GAAa,gBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,QAAApxC,EAAArH,IAAA,uBAAwEqH,EAAAohD,iBAAA9oD,EAAA0jD,mBAAuC,SAAAh8C,GAAa,iBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,WAAApxC,EAAArH,IAAA,UAAAqH,EAAAohD,iBAAAphD,EAAAqhD,kBAAArhD,EAAAvF,SAAAuF,EAAAmhD,cAAA,UAAA7oD,EAAAsjD,kBAAA57C,IAAA,MAAwK,SAAAA,GAAa,gBAAAA,IAAA1H,EAAAgjB,GAAAtb,EAAAoxC,QAAA,gBAAApxC,EAAArH,KAAA,mCAA6FqH,EAAAqhD,kBAAA/oD,EAAAmiD,yBAA6CniD,EAAAkjB,GAAA,KAAAljB,EAAAglD,qBAAAzkD,EAAA,QAA6C2vB,YAAA,sBAAAhY,IAAsC+wC,UAAA,SAAAvhD,GAAsB,OAAAA,EAAAohD,iBAAA9oD,EAAAwiD,OAAA96C,OAAwC1H,EAAA2iB,GAAA,gBAAA3iB,EAAAkjB,GAAAljB,EAAAyiB,GAAAziB,EAAAwhD,wBAA2Dla,OAAAtnC,EAAAilD,eAAqB,GAAAjlD,EAAAmjB,KAAAnjB,EAAAkjB,GAAA,KAAAljB,EAAAmlD,qBAAA5kD,EAAA,QAAwD2X,IAAI+wC,UAAA,SAAAvhD,GAAsB,OAAAA,EAAAohD,iBAAA9oD,EAAAwiD,OAAA96C,OAAwC1H,EAAA2iB,GAAA,eAAApiB,EAAA,QAAgC2vB,YAAA,wBAAkClwB,EAAAkjB,GAAA,iBAAAljB,EAAAyiB,GAAAziB,EAAAsoC,aAAA,wBAAAtoC,EAAAmjB,MAAA,GAAAnjB,EAAAkjB,GAAA,KAAA3iB,EAAA,cAAyGga,OAAOlb,KAAA,iBAAoBkB,EAAA,OAAW6S,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAAC,EAAAq/C,OAAA/hC,WAAA,WAAgEmQ,IAAA,OAAAyC,YAAA,+BAAArH,OAA+D22B,UAAAx/C,EAAAu/C,gBAAA,MAAiCrnC,IAAKoqC,MAAAtiD,EAAA+iC,SAAAkmB,UAAA,SAAAjpD,GAAuCA,EAAA8oD,qBAAqBvoD,EAAA,MAAU2vB,YAAA,uBAAArH,MAAA7oB,EAAA6lD,eAAwD7lD,EAAA2iB,GAAA,cAAA3iB,EAAAkjB,GAAA,KAAAljB,EAAAsxB,UAAAtxB,EAAAqR,MAAArR,EAAA8gD,cAAAr8C,OAAAlE,EAAA,MAAAA,EAAA,QAA4F2vB,YAAA,wBAAkClwB,EAAA2iB,GAAA,eAAA3iB,EAAAkjB,GAAA,cAAAljB,EAAAyiB,GAAAziB,EAAAqR,KAAA,gFAAArR,EAAAmjB,KAAAnjB,EAAAkjB,GAAA,MAAAljB,EAAAqR,KAAArR,EAAA8gD,cAAAr8C,OAAAzE,EAAAqR,IAAArR,EAAA0iB,GAAA1iB,EAAAghD,gBAAA,SAAAt5C,EAAA5I,GAAgO,OAAAyB,EAAA,MAAeF,IAAAvB,EAAAoxB,YAAA,yBAAyCxoB,MAAAw3C,UAAAx3C,EAAAm6C,aAAA7hD,EAAAmjB,KAAA5iB,EAAA,QAAkD2vB,YAAA,sBAAApH,MAAA9oB,EAAAijD,gBAAAnkD,EAAA4I,GAAA6S,OAAsE8uC,cAAA3hD,KAAA05C,MAAAphD,EAAAqgD,eAAArgD,EAAAslD,gBAAAgE,gBAAAtpD,EAAAwlD,kBAAA+D,gBAAAvpD,EAAAolD,mBAAoIltC,IAAKsxC,MAAA,SAAAjpD,GAAkBA,EAAAwoD,kBAAA/oD,EAAA+gD,OAAAr5C,IAAgC+hD,WAAA,SAAA/hD,GAAwB,GAAAA,EAAAvF,SAAAuF,EAAAmhD,cAAA,YAA0C7oD,EAAA2jD,WAAA7kD,OAAkBkB,EAAA2iB,GAAA,UAAApiB,EAAA,QAAAP,EAAAkjB,GAAAljB,EAAAyiB,GAAAziB,EAAAyhD,eAAA/5C,SAA+D4/B,OAAA5/B,EAAA03C,OAAAp/C,EAAAo/C,UAAyB,GAAAp/C,EAAAkjB,GAAA,KAAAxb,MAAAw3C,UAAAx3C,EAAAm6C,aAAAthD,EAAA,QAAyD2vB,YAAA,sBAAApH,MAAA9oB,EAAAojD,eAAAtkD,EAAA4I,GAAA6S,OAAqE8uC,cAAArpD,EAAA0gD,aAAA1gD,EAAAulD,qBAAAgE,gBAAAvpD,EAAA0gD,aAAA1gD,EAAAqlD,wBAA4GntC,IAAKuxC,WAAA,SAAA/hD,GAAuB,GAAAA,EAAAvF,SAAAuF,EAAAmhD,cAAA,YAA0C7oD,EAAA0gD,aAAA1gD,EAAA2jD,WAAA7kD,IAA+BmqD,UAAA,SAAA1oD,GAAuBA,EAAAuoD,iBAAA9oD,EAAA2hD,YAAAj6C,OAAsC1H,EAAA2iB,GAAA,UAAApiB,EAAA,QAAAP,EAAAkjB,GAAAljB,EAAAyiB,GAAAziB,EAAAyhD,eAAA/5C,SAA+D4/B,OAAA5/B,EAAA03C,OAAAp/C,EAAAo/C,UAAyB,GAAAp/C,EAAAmjB,SAAenjB,EAAAmjB,KAAAnjB,EAAAkjB,GAAA,KAAA3iB,EAAA,MAA2B6S,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAAC,EAAA8kD,eAAA,IAAA9kD,EAAAghD,gBAAAv8C,QAAAzE,EAAAo/C,SAAAp/C,EAAA8mB,QAAAxJ,WAAA,4EAA4L/c,EAAA,QAAY2vB,YAAA,wBAAkClwB,EAAA2iB,GAAA,YAAA3iB,EAAAkjB,GAAA,kEAAAljB,EAAAkjB,GAAA,KAAAljB,EAAA2iB,GAAA,0BAA2IZ,oBAA4Bra,EAAAxB,EAAA3G,mCCE3h0C,IAAAe,EAAA5B,EAAA,IACAgrD,EAAAhrD,EAAA,KAMA2E,EAAA7D,OAAAkB,UAAA2C,SAQA,SAAAkE,EAAA9D,GACA,yBAAAJ,EAAApE,KAAAwE,GA2EA,SAAAP,EAAAO,GACA,cAAAA,GAAA,iBAAAA,EAuCA,SAAAkmD,EAAAlmD,GACA,4BAAAJ,EAAApE,KAAAwE,GAoEA,SAAA0L,EAAAhM,EAAAkC,GAEA,UAAAlC,QAAA,IAAAA,EAUA,GALA,iBAAAA,IAEAA,OAGAoE,EAAApE,GAEA,QAAArE,EAAA,EAAAC,EAAAoE,EAAAsB,OAAmC3F,EAAAC,EAAOD,IAC1CuG,EAAApG,KAAA,KAAAkE,EAAArE,KAAAqE,QAIA,QAAA9C,KAAA8C,EACA3D,OAAAkB,UAAAC,eAAA1B,KAAAkE,EAAA9C,IACAgF,EAAApG,KAAA,KAAAkE,EAAA9C,KAAA8C,GA0DAtE,EAAAD,SACA2I,UACAqiD,cAhQA,SAAAnmD,GACA,+BAAAJ,EAAApE,KAAAwE,IAgQAimD,WACAG,WAxPA,SAAApmD,GACA,0BAAAqmD,UAAArmD,aAAAqmD,UAwPAC,kBA/OA,SAAAtmD,GAOA,MALA,oBAAAumD,yBAAA,OACAA,YAAAC,OAAAxmD,GAEA,GAAAA,EAAA,QAAAA,EAAAymD,kBAAAF,aA2OAG,SAhOA,SAAA1mD,GACA,uBAAAA,GAgOA2mD,SAvNA,SAAA3mD,GACA,uBAAAA,GAuNAP,WACAmnD,YA/MA,SAAA5mD,GACA,gBAAAA,GA+MA6mD,OA5LA,SAAA7mD,GACA,wBAAAJ,EAAApE,KAAAwE,IA4LA8mD,OAnLA,SAAA9mD,GACA,wBAAAJ,EAAApE,KAAAwE,IAmLA+mD,OA1KA,SAAA/mD,GACA,wBAAAJ,EAAApE,KAAAwE,IA0KAkmD,aACAc,SAxJA,SAAAhnD,GACA,OAAAP,EAAAO,IAAAkmD,EAAAlmD,EAAAinD,OAwJAC,kBA/IA,SAAAlnD,GACA,0BAAAmnD,iBAAAnnD,aAAAmnD,iBA+IAC,qBArHA,WACA,2BAAAxgD,WAAA,gBAAAA,UAAAygD,UAIA,oBAAA/gD,QACA,oBAAAmnB,UAgHA/hB,UACA47C,MArDA,SAAAA,IACA,IAAAt7C,KACA,SAAAu7C,EAAAvnD,EAAApD,GACA,iBAAAoP,EAAApP,IAAA,iBAAAoD,EACAgM,EAAApP,GAAA0qD,EAAAt7C,EAAApP,GAAAoD,GAEAgM,EAAApP,GAAAoD,EAIA,QAAA3E,EAAA,EAAAC,EAAAoH,UAAA1B,OAAuC3F,EAAAC,EAAOD,IAC9CqQ,EAAAhJ,UAAArH,GAAAksD,GAEA,OAAAv7C,GAyCA/I,OA9BA,SAAAR,EAAAc,EAAAikD,GAQA,OAPA97C,EAAAnI,EAAA,SAAAvD,EAAApD,GAEA6F,EAAA7F,GADA4qD,GAAA,mBAAAxnD,EACAnD,EAAAmD,EAAAwnD,GAEAxnD,IAGAyC,GAuBAswB,KA1IA,SAAApyB,GACA,OAAAA,EAAAqB,QAAA,WAAAA,QAAA,8BCnKA5G,EAAAD,SAAAF,EAAA,EAAAA,CAAA,WACA,OAA0E,GAA1Ec,OAAAC,kBAAiC,KAAQE,IAAA,WAAmB,YAAcuG,qBCF1E,IAAAg4C,EAAAx/C,EAAA,GACAwsD,EAAAxsD,EAAA,IACAG,EAAAD,QAAAF,EAAA,aAAA8B,EAAAH,EAAAN,GACA,OAAAm+C,EAAAC,EAAA39C,EAAAH,EAAA6qD,EAAA,EAAAnrD,KACC,SAAAS,EAAAH,EAAAN,GAED,OADAS,EAAAH,GAAAN,EACAS,kBCNA,IAAAG,KAAuBA,eACvB9B,EAAAD,QAAA,SAAA8+C,EAAAr9C,GACA,OAAAM,EAAA1B,KAAAy+C,EAAAr9C,qBCDA,IAAA8qD,EAAAzsD,EAAA,IACA0sD,EAAA1sD,EAAA,IACAG,EAAAD,QAAA,SAAA8+C,GACA,OAAAyN,EAAAC,EAAA1N,sBCHA,IAAAv8C,EAAAzC,EAAA,GACAqC,EAAArC,EAAA,IACA2sD,EAAA3sD,EAAA,GACAG,EAAAD,QAAA,SAAAwnD,EAAA1S,GACA,IAAAruC,GAAAtE,EAAAvB,YAA6B4mD,IAAA5mD,OAAA4mD,GAC7B5kD,KACAA,EAAA4kD,GAAA1S,EAAAruC,GACAlE,IAAAW,EAAAX,EAAAO,EAAA2pD,EAAA,WAAqDhmD,EAAA,KAAS,SAAA7D,qBCP9D,IAAA8pD,EAAA5sD,EAAA,IACAG,EAAAD,QAAA,SAAAyG,EAAAkmD,EAAA9mD,GAEA,GADA6mD,EAAAjmD,QACAhD,IAAAkpD,EAAA,OAAAlmD,EACA,OAAAZ,GACA,uBAAAyB,GACA,OAAAb,EAAApG,KAAAssD,EAAArlD,IAEA,uBAAAA,EAAAc,GACA,OAAA3B,EAAApG,KAAAssD,EAAArlD,EAAAc,IAEA,uBAAAd,EAAAc,EAAA7H,GACA,OAAAkG,EAAApG,KAAAssD,EAAArlD,EAAAc,EAAA7H,IAGA,kBACA,OAAAkG,EAAAe,MAAAmlD,EAAAplD,8BChBA,IAAAilD,EAAA1sD,EAAA,IACAG,EAAAD,QAAA,SAAA8+C,GACA,OAAAl+C,OAAA4rD,EAAA1N,mCCFA,GAAAh/C,EAAA,KACA,IAAA8sD,EAAA9sD,EAAA,IACAoC,EAAApC,EAAA,GACA2sD,EAAA3sD,EAAA,GACAyC,EAAAzC,EAAA,GACA+sD,EAAA/sD,EAAA,IACAgtD,EAAAhtD,EAAA,IACAwC,EAAAxC,EAAA,IACAitD,EAAAjtD,EAAA,IACAktD,EAAAltD,EAAA,IACAsC,EAAAtC,EAAA,IACAmtD,EAAAntD,EAAA,IACA4/C,EAAA5/C,EAAA,IACAotD,EAAAptD,EAAA,GACAqtD,EAAArtD,EAAA,IACAstD,EAAAttD,EAAA,IACAu/C,EAAAv/C,EAAA,IACAmN,EAAAnN,EAAA,IACAutD,EAAAvtD,EAAA,IACAwE,EAAAxE,EAAA,GACAmI,EAAAnI,EAAA,IACAwtD,EAAAxtD,EAAA,IACA0B,EAAA1B,EAAA,IACA+nD,EAAA/nD,EAAA,IACAytD,EAAAztD,EAAA,IAAAy/C,EACAiO,EAAA1tD,EAAA,IACAuN,EAAAvN,EAAA,IACA2tD,EAAA3tD,EAAA,GACA4tD,EAAA5tD,EAAA,IACA6tD,EAAA7tD,EAAA,IACA8tD,EAAA9tD,EAAA,IACA+tD,EAAA/tD,EAAA,IACAguD,EAAAhuD,EAAA,IACAiuD,EAAAjuD,EAAA,IACAkuD,EAAAluD,EAAA,IACAmuD,EAAAnuD,EAAA,IACAouD,EAAApuD,EAAA,IACAquD,EAAAruD,EAAA,GACAsuD,EAAAtuD,EAAA,IACAw/C,EAAA6O,EAAA5O,EACA8O,EAAAD,EAAA7O,EACA+O,EAAApsD,EAAAosD,WACAtP,EAAA98C,EAAA88C,UACAuP,EAAArsD,EAAAqsD,WAKAC,EAAA3mD,MAAA,UACA4mD,EAAA3B,EAAA1B,YACAsD,EAAA5B,EAAA6B,SACAC,EAAAlB,EAAA,GACAmB,EAAAnB,EAAA,GACAoB,EAAApB,EAAA,GACAqB,EAAArB,EAAA,GACAsB,EAAAtB,EAAA,GACAuB,GAAAvB,EAAA,GACAwB,GAAAvB,GAAA,GACAwB,GAAAxB,GAAA,GACAyB,GAAAvB,EAAAxI,OACAn0C,GAAA28C,EAAA7kD,KACAqmD,GAAAxB,EAAAzI,QACAkK,GAAAd,EAAA30B,YACA01B,GAAAf,EAAA1W,OACA0X,GAAAhB,EAAAiB,YACAC,GAAAlB,EAAAj5B,KACAo6B,GAAAnB,EAAAtxC,KACA0yC,GAAApB,EAAAtnD,MACA2oD,GAAArB,EAAA/pD,SACAqrD,GAAAtB,EAAAuB,eACAC,GAAAvC,EAAA,YACAwC,GAAAxC,EAAA,eACAyC,GAAA7iD,EAAA,qBACA8iD,GAAA9iD,EAAA,mBACA+iD,GAAAvD,EAAAwD,OACAC,GAAAzD,EAAA0D,MACAC,GAAA3D,EAAA2D,KAGAC,GAAA/C,EAAA,WAAAlO,EAAA35C,GACA,OAAA6qD,GAAA9C,EAAApO,IAAA2Q,KAAAtqD,KAGA8qD,GAAAlE,EAAA,WAEA,eAAA8B,EAAA,IAAAqC,aAAA,IAAAtF,QAAA,KAGAuF,KAAAtC,OAAA,UAAAvhD,KAAAy/C,EAAA,WACA,IAAA8B,EAAA,GAAAvhD,UAGA8jD,GAAA,SAAAhS,EAAAiS,GACA,IAAAC,EAAAtR,EAAAZ,GACA,GAAAkS,EAAA,GAAAA,EAAAD,EAAA,MAAAzC,EAAA,iBACA,OAAA0C,GAGAC,GAAA,SAAAnS,GACA,GAAAx6C,EAAAw6C,IAAAwR,MAAAxR,EAAA,OAAAA,EACA,MAAAE,EAAAF,EAAA,2BAGA4R,GAAA,SAAA3I,EAAAliD,GACA,KAAAvB,EAAAyjD,IAAAmI,MAAAnI,GACA,MAAA/I,EAAA,wCACK,WAAA+I,EAAAliD,IAGLqrD,GAAA,SAAA1R,EAAA75C,GACA,OAAAwrD,GAAAvD,EAAApO,IAAA2Q,KAAAxqD,IAGAwrD,GAAA,SAAApJ,EAAApiD,GAIA,IAHA,IAAAS,EAAA,EACAP,EAAAF,EAAAE,OACAgL,EAAA6/C,GAAA3I,EAAAliD,GACAA,EAAAO,GAAAyK,EAAAzK,GAAAT,EAAAS,KACA,OAAAyK,GAGAugD,GAAA,SAAAtS,EAAAr9C,EAAA4vD,GACA/R,EAAAR,EAAAr9C,GAAiBV,IAAA,WAAmB,OAAAsI,KAAAioD,GAAAD,OAGpCE,GAAA,SAAA9uD,GACA,IAKAvC,EAAA2F,EAAAw/C,EAAAx0C,EAAA2gD,EAAA5I,EALApJ,EAAAv3C,EAAAxF,GACAgvD,EAAAlqD,UAAA1B,OACA6rD,EAAAD,EAAA,EAAAlqD,UAAA,QAAA9D,EACAkuD,OAAAluD,IAAAiuD,EACAE,EAAApE,EAAAhO,GAEA,QAAA/7C,GAAAmuD,IAAAtE,EAAAsE,GAAA,CACA,IAAAhJ,EAAAgJ,EAAAvxD,KAAAm/C,GAAA6F,KAAAnlD,EAAA,IAAyDsxD,EAAA5I,EAAA5uB,QAAAstB,KAAgCpnD,IACzFmlD,EAAA13C,KAAA6jD,EAAArwD,OACOq+C,EAAA6F,EAGP,IADAsM,GAAAF,EAAA,IAAAC,EAAApvD,EAAAovD,EAAAnqD,UAAA,OACArH,EAAA,EAAA2F,EAAAqnD,EAAA1N,EAAA35C,QAAAgL,EAAA6/C,GAAArnD,KAAAxD,GAA6EA,EAAA3F,EAAYA,IACzF2Q,EAAA3Q,GAAAyxD,EAAAD,EAAAlS,EAAAt/C,MAAAs/C,EAAAt/C,GAEA,OAAA2Q,GAGAghD,GAAA,WAIA,IAHA,IAAAzrD,EAAA,EACAP,EAAA0B,UAAA1B,OACAgL,EAAA6/C,GAAArnD,KAAAxD,GACAA,EAAAO,GAAAyK,EAAAzK,GAAAmB,UAAAnB,KACA,OAAAyK,GAIAihD,KAAAvD,GAAA9B,EAAA,WAAyDqD,GAAAzvD,KAAA,IAAAkuD,EAAA,MAEzDwD,GAAA,WACA,OAAAjC,GAAAtoD,MAAAsqD,GAAAlC,GAAAvvD,KAAA4wD,GAAA5nD,OAAA4nD,GAAA5nD,MAAA9B,YAGAyqD,IACAC,WAAA,SAAA1uD,EAAAoE,GACA,OAAAumD,EAAA7tD,KAAA4wD,GAAA5nD,MAAA9F,EAAAoE,EAAAJ,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEAoF,MAAA,SAAAqpD,GACA,OAAAnD,EAAAkC,GAAA5nD,MAAA6oD,EAAA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEA0uD,KAAA,SAAAhxD,GACA,OAAA8sD,EAAAzmD,MAAAypD,GAAA5nD,MAAA9B,YAEAwZ,OAAA,SAAAmxC,GACA,OAAAhB,GAAA7nD,KAAAwlD,EAAAoC,GAAA5nD,MAAA6oD,EACA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,KAEA4/C,KAAA,SAAA+O,GACA,OAAApD,EAAAiC,GAAA5nD,MAAA+oD,EAAA7qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEA4uD,UAAA,SAAAD,GACA,OAAAnD,GAAAgC,GAAA5nD,MAAA+oD,EAAA7qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEA8M,QAAA,SAAA2hD,GACAtD,EAAAqC,GAAA5nD,MAAA6oD,EAAA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEA4C,QAAA,SAAAisD,GACA,OAAAnD,GAAA8B,GAAA5nD,MAAAipD,EAAA/qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEA8uD,SAAA,SAAAD,GACA,OAAApD,GAAA+B,GAAA5nD,MAAAipD,EAAA/qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEA8xB,KAAA,SAAAi9B,GACA,OAAA9C,GAAAloD,MAAAypD,GAAA5nD,MAAA9B,YAEAsyB,YAAA,SAAAy4B,GACA,OAAAhD,GAAA9nD,MAAAypD,GAAA5nD,MAAA9B,YAEA7B,IAAA,SAAAgsD,GACA,OAAAjB,GAAAQ,GAAA5nD,MAAAqoD,EAAAnqD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEAq0C,OAAA,SAAAoa,GACA,OAAA3C,GAAA/nD,MAAAypD,GAAA5nD,MAAA9B,YAEAkoD,YAAA,SAAAyC,GACA,OAAA1C,GAAAhoD,MAAAypD,GAAA5nD,MAAA9B,YAEAkrD,QAAA,WAMA,IALA,IAIAtxD,EAHA0E,EAAAorD,GADA5nD,MACAxD,OACAizB,EAAA9zB,KAAAC,MAAAY,EAAA,GACAO,EAAA,EAEAA,EAAA0yB,GACA33B,EANAkI,KAMAjD,GANAiD,KAOAjD,KAPAiD,OAOAxD,GAPAwD,KAQAxD,GAAA1E,EACO,OATPkI,MAWAi/B,KAAA,SAAA4pB,GACA,OAAApD,EAAAmC,GAAA5nD,MAAA6oD,EAAA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,IAEAyZ,KAAA,SAAAw1C,GACA,OAAA/C,GAAAtvD,KAAA4wD,GAAA5nD,MAAAqpD,IAEAC,SAAA,SAAAC,EAAAhzB,GACA,IAAA4f,EAAAyR,GAAA5nD,MACAxD,EAAA25C,EAAA35C,OACAgtD,EAAAzF,EAAAwF,EAAA/sD,GACA,WAAA+nD,EAAApO,IAAA2Q,KAAA,CACA3Q,EAAA8L,OACA9L,EAAAsT,WAAAD,EAAArT,EAAAuT,kBACA7F,QAAAzpD,IAAAm8B,EAAA/5B,EAAAunD,EAAAxtB,EAAA/5B,IAAAgtD,MAKAG,GAAA,SAAArrD,EAAAi4B,GACA,OAAAsxB,GAAA7nD,KAAAumD,GAAAvvD,KAAA4wD,GAAA5nD,MAAA1B,EAAAi4B,KAGAjS,GAAA,SAAAslC,GACAhC,GAAA5nD,MACA,IAAA2nD,EAAAF,GAAAvpD,UAAA,MACA1B,EAAAwD,KAAAxD,OACA8L,EAAA1J,EAAAgrD,GACAtiD,EAAAu8C,EAAAv7C,EAAA9L,QACAO,EAAA,EACA,GAAAuK,EAAAqgD,EAAAnrD,EAAA,MAAAyoD,EAvKA,iBAwKA,KAAAloD,EAAAuK,GAAAtH,KAAA2nD,EAAA5qD,GAAAuL,EAAAvL,MAGA8sD,IACA9N,QAAA,WACA,OAAAiK,GAAAhvD,KAAA4wD,GAAA5nD,QAEAL,KAAA,WACA,OAAAkI,GAAA7Q,KAAA4wD,GAAA5nD,QAEAg8C,OAAA,WACA,OAAA+J,GAAA/uD,KAAA4wD,GAAA5nD,SAIA8pD,GAAA,SAAA5vD,EAAA9B,GACA,OAAA6C,EAAAf,IACAA,EAAA+sD,KACA,iBAAA7uD,GACAA,KAAA8B,GACAwB,QAAAtD,IAAAsD,OAAAtD,IAEA2xD,GAAA,SAAA7vD,EAAA9B,GACA,OAAA0xD,GAAA5vD,EAAA9B,EAAA49C,EAAA59C,GAAA,IACAurD,EAAA,EAAAzpD,EAAA9B,IACA4sD,EAAA9qD,EAAA9B,IAEA4xD,GAAA,SAAA9vD,EAAA9B,EAAA6xD,GACA,QAAAH,GAAA5vD,EAAA9B,EAAA49C,EAAA59C,GAAA,KACA6C,EAAAgvD,IACArmD,EAAAqmD,EAAA,WACArmD,EAAAqmD,EAAA,QACArmD,EAAAqmD,EAAA,QAEAA,EAAAxoD,cACAmC,EAAAqmD,EAAA,cAAAA,EAAAzoD,UACAoC,EAAAqmD,EAAA,gBAAAA,EAAAxyD,WAIKw+C,EAAA/7C,EAAA9B,EAAA6xD,IAFL/vD,EAAA9B,GAAA6xD,EAAAnyD,MACAoC,IAIA6sD,KACAhC,EAAA7O,EAAA6T,GACAjF,EAAA5O,EAAA8T,IAGA9wD,IAAAW,EAAAX,EAAAO,GAAAstD,GAAA,UACAh+C,yBAAAghD,GACAvyD,eAAAwyD,KAGA5G,EAAA,WAAyBoD,GAAAxvD,aACzBwvD,GAAAC,GAAA,WACA,OAAAJ,GAAArvD,KAAAgJ,QAIA,IAAAkqD,GAAAtG,KAA4C+E,IAC5C/E,EAAAsG,GAAAL,IACA9wD,EAAAmxD,GAAAvD,GAAAkD,GAAA7N,QACA4H,EAAAsG,IACArsD,MAAA8rD,GACAhmD,IAAA2gB,GACAjC,YAAA,aACAjnB,SAAAorD,GACAE,eAAAgC,KAEAX,GAAAmC,GAAA,cACAnC,GAAAmC,GAAA,kBACAnC,GAAAmC,GAAA,kBACAnC,GAAAmC,GAAA,cACAjU,EAAAiU,GAAAtD,IACAlvD,IAAA,WAAsB,OAAAsI,KAAAinD,OAItBrwD,EAAAD,QAAA,SAAAwnD,EAAAuJ,EAAAyC,EAAAC,GAEA,IAAAC,EAAAlM,IADAiM,OACA,sBACAE,EAAA,MAAAnM,EACAoM,EAAA,MAAApM,EACAqM,EAAA3xD,EAAAwxD,GACAI,EAAAD,MACAE,EAAAF,GAAAhM,EAAAgM,GACAG,GAAAH,IAAAhH,EAAAoH,IACAzU,KACA0U,EAAAL,KAAA,UAUAM,EAAA,SAAAxH,EAAAvmD,GACAk5C,EAAAqN,EAAAvmD,GACArF,IAAA,WACA,OAZA,SAAA4rD,EAAAvmD,GACA,IAAAoI,EAAAm+C,EAAA2E,GACA,OAAA9iD,EAAAtK,EAAAyvD,GAAAvtD,EAAA2qD,EAAAviD,EAAA7N,EAAAgwD,IAUAjwD,CAAA2I,KAAAjD,IAEA4G,IAAA,SAAA7L,GACA,OAXA,SAAAwrD,EAAAvmD,EAAAjF,GACA,IAAAqN,EAAAm+C,EAAA2E,GACAmC,IAAAtyD,KAAA6D,KAAAovD,MAAAjzD,IAAA,IAAAA,EAAA,YAAAA,GACAqN,EAAAtK,EAAA0vD,GAAAxtD,EAAA2qD,EAAAviD,EAAA7N,EAAAQ,EAAAwvD,IAQAt+C,CAAAhJ,KAAAjD,EAAAjF,IAEAL,YAAA,KAGAkzD,GACAH,EAAAL,EAAA,SAAA7G,EAAAn+C,EAAA6lD,EAAAC,GACAvH,EAAAJ,EAAAkH,EAAAH,EAAA,MACA,IAEApI,EAAAiJ,EAAA1uD,EAAAkxB,EAFA3wB,EAAA,EACA4qD,EAAA,EAEA,GAAA1sD,EAAAkK,GAIS,MAAAA,aAAAigD,GAhUT,gBAgUS13B,EAAAs2B,EAAA7+C,KA/TT,qBA+TSuoB,GAaA,OAAAu5B,MAAA9hD,EACT2iD,GAAA0C,EAAArlD,GAEA+iD,GAAAlxD,KAAAwzD,EAAArlD,GAfA88C,EAAA98C,EACAwiD,EAAAF,GAAAuD,EAAAtD,GACA,IAAAyD,EAAAhmD,EAAA+lD,WACA,QAAA9wD,IAAA6wD,EAAA,CACA,GAAAE,EAAAzD,EAAA,MAAAzC,EApSA,iBAsSA,IADAiG,EAAAC,EAAAxD,GACA,QAAA1C,EAtSA,sBAySA,IADAiG,EAAArH,EAAAoH,GAAAvD,GACAC,EAAAwD,EAAA,MAAAlG,EAzSA,iBA2SAzoD,EAAA0uD,EAAAxD,OAfAlrD,EAAAsnD,EAAA3+C,GAEA88C,EAAA,IAAAmD,EADA8F,EAAA1uD,EAAAkrD,GA2BA,IAPA3uD,EAAAuqD,EAAA,MACAvkD,EAAAkjD,EACA3qD,EAAAqwD,EACA7wD,EAAAo0D,EACAzrD,EAAAjD,EACA3B,EAAA,IAAAwqD,EAAApD,KAEAllD,EAAAP,GAAAsuD,EAAAxH,EAAAvmD,OAEA8tD,EAAAL,EAAA,UAAAryD,EAAA+xD,IACAnxD,EAAA8xD,EAAA,cAAAL,IACKpH,EAAA,WACLoH,EAAA,MACKpH,EAAA,WACL,IAAAoH,GAAA,MACK9F,EAAA,SAAA0G,GACL,IAAAZ,EACA,IAAAA,EAAA,MACA,IAAAA,EAAA,KACA,IAAAA,EAAAY,KACK,KACLZ,EAAAL,EAAA,SAAA7G,EAAAn+C,EAAA6lD,EAAAC,GAEA,IAAAv9B,EAGA,OAJAg2B,EAAAJ,EAAAkH,EAAAH,GAIApvD,EAAAkK,GACAA,aAAAigD,GA7WA,gBA6WA13B,EAAAs2B,EAAA7+C,KA5WA,qBA4WAuoB,OACAtzB,IAAA6wD,EACA,IAAAR,EAAAtlD,EAAAsiD,GAAAuD,EAAAtD,GAAAuD,QACA7wD,IAAA4wD,EACA,IAAAP,EAAAtlD,EAAAsiD,GAAAuD,EAAAtD,IACA,IAAA+C,EAAAtlD,GAEA8hD,MAAA9hD,EAAA2iD,GAAA0C,EAAArlD,GACA+iD,GAAAlxD,KAAAwzD,EAAArlD,GATA,IAAAslD,EAAA3G,EAAA3+C,MAWAogD,EAAAmF,IAAArwD,SAAA5B,UAAAyrD,EAAAuG,GAAAtgD,OAAA+5C,EAAAwG,IAAAxG,EAAAuG,GAAA,SAAAryD,GACAA,KAAAoyD,GAAAzxD,EAAAyxD,EAAApyD,EAAAqyD,EAAAryD,MAEAoyD,EAAA,UAAAK,EACAtH,IAAAsH,EAAAxoC,YAAAmoC,IAEA,IAAAa,EAAAR,EAAAlE,IACA2E,IAAAD,IACA,UAAAA,EAAAj0D,WAAAgD,GAAAixD,EAAAj0D,MACAm0D,EAAA1B,GAAA7N,OACAjjD,EAAAyxD,EAAA3D,IAAA,GACA9tD,EAAA8xD,EAAA5D,GAAAoD,GACAtxD,EAAA8xD,EAAA1D,IAAA,GACApuD,EAAA8xD,EAAA/D,GAAA0D,IAEAJ,EAAA,IAAAI,EAAA,GAAA5D,KAAAyD,EAAAzD,MAAAiE,IACA5U,EAAA4U,EAAAjE,IACAlvD,IAAA,WAA0B,OAAA2yD,KAI1BlU,EAAAkU,GAAAG,EAEAtxD,IAAAS,EAAAT,EAAAqB,EAAArB,EAAAO,GAAA+wD,GAAAC,GAAAtU,GAEAj9C,IAAAW,EAAAwwD,GACAX,kBAAAhC,IAGAxuD,IAAAW,EAAAX,EAAAO,EAAA2pD,EAAA,WAAuDqH,EAAAe,GAAAx0D,KAAAwzD,EAAA,KAA+BH,GACtF5gD,KAAAy+C,GACAsD,GAAAhD,KApZA,sBAuZAqC,GAAA9xD,EAAA8xD,EAvZA,oBAuZAnD,GAEAxuD,IAAAa,EAAAswD,EAAA1B,IAEAhE,EAAA0F,GAEAnxD,IAAAa,EAAAb,EAAAO,EAAA+tD,GAAA6C,GAAuD1mD,IAAA2gB,KAEvDprB,IAAAa,EAAAb,EAAAO,GAAA6xD,EAAAjB,EAAAR,IAEAtG,GAAAsH,EAAAzvD,UAAAorD,KAAAqE,EAAAzvD,SAAAorD,IAEAttD,IAAAa,EAAAb,EAAAO,EAAA2pD,EAAA,WACA,IAAAoH,EAAA,GAAA3sD,UACKwsD,GAAUxsD,MAAA8rD,KAEfzwD,IAAAa,EAAAb,EAAAO,GAAA2pD,EAAA,WACA,YAAAsD,kBAAA,IAAA8D,GAAA,MAAA9D,qBACKtD,EAAA,WACLyH,EAAAnE,eAAA1vD,MAAA,SACKqzD,GAAW3D,eAAAgC,KAEhBjE,EAAA4F,GAAAiB,EAAAD,EAAAE,EACAhI,GAAA+H,GAAAvyD,EAAA8xD,EAAAlE,GAAA4E,SAEC30D,EAAAD,QAAA,8BC/dD,IAAA80D,EAAAh1D,EAAA,IACAwsD,EAAAxsD,EAAA,IACAi1D,EAAAj1D,EAAA,IACAu/C,EAAAv/C,EAAA,IACAmN,EAAAnN,EAAA,IACAs/C,EAAAt/C,EAAA,IACAuuD,EAAAztD,OAAAwR,yBAEApS,EAAAu/C,EAAAz/C,EAAA,IAAAuuD,EAAA,SAAA7O,EAAAp8C,GAGA,GAFAo8C,EAAAuV,EAAAvV,GACAp8C,EAAAi8C,EAAAj8C,GAAA,GACAg8C,EAAA,IACA,OAAAiP,EAAA7O,EAAAp8C,GACG,MAAA0F,IACH,GAAAmE,EAAAuyC,EAAAp8C,GAAA,OAAAkpD,GAAAwI,EAAAvV,EAAAl/C,KAAAm/C,EAAAp8C,GAAAo8C,EAAAp8C,sBCdA,IAAAlB,EAAApC,EAAA,GACAsC,EAAAtC,EAAA,IACAmN,EAAAnN,EAAA,IACAk1D,EAAAl1D,EAAA,GAAAA,CAAA,OAEAm1D,EAAAvxD,SAAA,SACAwxD,GAAA,GAAAD,GAAArvD,MAFA,YAIA9F,EAAA,IAAA2lD,cAAA,SAAA3G,GACA,OAAAmW,EAAA50D,KAAAy+C,KAGA7+C,EAAAD,QAAA,SAAAw/C,EAAA/9C,EAAAoD,EAAAswD,GACA,IAAApK,EAAA,mBAAAlmD,EACAkmD,IAAA99C,EAAApI,EAAA,SAAAzC,EAAAyC,EAAA,OAAApD,IACA+9C,EAAA/9C,KAAAoD,IACAkmD,IAAA99C,EAAApI,EAAAmwD,IAAA5yD,EAAAyC,EAAAmwD,EAAAxV,EAAA/9C,GAAA,GAAA+9C,EAAA/9C,GAAAyzD,EAAA3/B,KAAAxwB,OAAAtD,MACA+9C,IAAAt9C,EACAs9C,EAAA/9C,GAAAoD,EACGswD,EAGA3V,EAAA/9C,GACH+9C,EAAA/9C,GAAAoD,EAEAzC,EAAAo9C,EAAA/9C,EAAAoD,WALA26C,EAAA/9C,GACAW,EAAAo9C,EAAA/9C,EAAAoD,OAOCnB,SAAA5B,UAxBD,WAwBC,WACD,yBAAAuH,WAAA2rD,IAAAC,EAAA50D,KAAAgJ,yBC7BA,IAAA+rD,EAAAt1D,EAAA,GAAAA,CAAA,QACAwE,EAAAxE,EAAA,GACAmN,EAAAnN,EAAA,IACAu1D,EAAAv1D,EAAA,GAAAy/C,EACAhyC,EAAA,EACAwE,EAAAnR,OAAAmR,cAAA,WACA,UAEAujD,GAAAx1D,EAAA,EAAAA,CAAA,WACA,OAAAiS,EAAAnR,OAAA2mD,yBAEAgO,EAAA,SAAAzW,GACAuW,EAAAvW,EAAAsW,GAAqBj0D,OACrBjB,EAAA,OAAAqN,EACA8yC,SAgCA7G,EAAAv5C,EAAAD,SACAwnD,IAAA4N,EACA3N,MAAA,EACAC,QAhCA,SAAA5I,EAAAt9C,GAEA,IAAA8C,EAAAw6C,GAAA,uBAAAA,KAAA,iBAAAA,EAAA,SAAAA,EACA,IAAA7xC,EAAA6xC,EAAAsW,GAAA,CAEA,IAAArjD,EAAA+sC,GAAA,UAEA,IAAAt9C,EAAA,UAEA+zD,EAAAzW,GAEG,OAAAA,EAAAsW,GAAAl1D,GAsBHynD,QApBA,SAAA7I,EAAAt9C,GACA,IAAAyL,EAAA6xC,EAAAsW,GAAA,CAEA,IAAArjD,EAAA+sC,GAAA,SAEA,IAAAt9C,EAAA,SAEA+zD,EAAAzW,GAEG,OAAAA,EAAAsW,GAAA/U,GAYHuH,SATA,SAAA9I,GAEA,OADAwW,GAAA9b,EAAAiO,MAAA11C,EAAA+sC,KAAA7xC,EAAA6xC,EAAAsW,IAAAG,EAAAzW,GACAA,mBC5CA7+C,EAAAD,QAAA,SAAAw1D,EAAAr0D,GACA,OACAL,aAAA,EAAA00D,GACA1qD,eAAA,EAAA0qD,GACA3qD,WAAA,EAAA2qD,GACAr0D,yBCLA,IAAAoM,EAAA,EACAkoD,EAAAzwD,KAAA+6C,SACA9/C,EAAAD,QAAA,SAAAyB,GACA,gBAAA+R,YAAA/P,IAAAhC,EAAA,GAAAA,EAAA,QAAA8L,EAAAkoD,GAAAhxD,SAAA,qBCHAxE,EAAAD,QAAA,SAAA8+C,GACA,sBAAAA,EAAA,MAAAE,UAAAF,EAAA,uBACA,OAAAA,kBCDA,IAAAoB,EAAAl7C,KAAAk7C,KACAj7C,EAAAD,KAAAC,MACAhF,EAAAD,QAAA,SAAA8+C,GACA,OAAAx5C,MAAAw5C,MAAA,GAAAA,EAAA,EAAA75C,EAAAi7C,GAAApB,mBCHA7+C,EAAAD,QAAA,SAAA8+C,GACA,QAAAr7C,GAAAq7C,EAAA,MAAAE,UAAA,yBAAAF,GACA,OAAAA,oBCFA,IAAA4W,EAAA51D,EAAA,IACA61D,EAAA71D,EAAA,IAEAG,EAAAD,QAAAY,OAAAoI,MAAA,SAAAw2C,GACA,OAAAkW,EAAAlW,EAAAmW,qBCLA11D,EAAAD,QAAAF,EAAA,oBCAA,IAAAqC,EAAAlC,EAAAD,SAA6BywB,QAAA,SAC7B,iBAAAqvB,UAAA39C,kBCDAlC,EAAAD,SAAA,mBCAA,IAAAqC,EAAAvC,EAAA,IACAG,EAAAD,QAAA,SAAAuD,EAAAoO,EAAAwjD,GACA,QAAA1zD,KAAAkQ,EAAAtP,EAAAkB,EAAA9B,EAAAkQ,EAAAlQ,GAAA0zD,GACA,OAAA5xD,kBCHAtD,EAAAD,QAAA,SAAA8+C,EAAA8W,EAAAn1D,EAAAo1D,GACA,KAAA/W,aAAA8W,SAAAnyD,IAAAoyD,QAAA/W,EACA,MAAAE,UAAAv+C,EAAA,2BACG,OAAAq+C,kBCHH,IAAAr6C,KAAiBA,SAEjBxE,EAAAD,QAAA,SAAA8+C,GACA,OAAAr6C,EAAApE,KAAAy+C,GAAA53C,MAAA,wBCHA,IAAAw4C,EAAA5/C,EAAA,IACA2S,EAAAzN,KAAAyN,IACAktC,EAAA36C,KAAA26C,IACA1/C,EAAAD,QAAA,SAAAoG,EAAAP,GAEA,OADAO,EAAAs5C,EAAAt5C,IACA,EAAAqM,EAAArM,EAAAP,EAAA,GAAA85C,EAAAv5C,EAAAP,qBCLA,IAAA+E,EAAA9K,EAAA,GAAAy/C,EACAtyC,EAAAnN,EAAA,IACAmwD,EAAAnwD,EAAA,EAAAA,CAAA,eAEAG,EAAAD,QAAA,SAAA8+C,EAAAvwC,EAAAunD,GACAhX,IAAA7xC,EAAA6xC,EAAAgX,EAAAhX,IAAAh9C,UAAAmuD,IAAArlD,EAAAk0C,EAAAmR,GAAoEnlD,cAAA,EAAA3J,MAAAoN,oBCLpEtO,EAAAD,4BCCA,IAAAiN,EAAAnN,EAAA,IACAmI,EAAAnI,EAAA,IACAi2D,EAAAj2D,EAAA,GAAAA,CAAA,YACAk2D,EAAAp1D,OAAAkB,UAEA7B,EAAAD,QAAAY,OAAAinD,gBAAA,SAAArI,GAEA,OADAA,EAAAv3C,EAAAu3C,GACAvyC,EAAAuyC,EAAAuW,GAAAvW,EAAAuW,GACA,mBAAAvW,EAAA9zB,aAAA8zB,eAAA9zB,YACA8zB,EAAA9zB,YAAA5pB,UACG09C,aAAA5+C,OAAAo1D,EAAA,uBCVH,IAAAC,EAAAn2D,EAAA,EAAAA,CAAA,eACA0uD,EAAA3mD,MAAA/F,eACA2B,GAAA+qD,EAAAyH,IAAAn2D,EAAA,GAAAA,CAAA0uD,EAAAyH,MACAh2D,EAAAD,QAAA,SAAAyB,GACA+sD,EAAAyH,GAAAx0D,IAAA,oBCLA,IAAA6C,EAAAxE,EAAA,GACAG,EAAAD,QAAA,SAAA8+C,EAAAoX,GACA,IAAA5xD,EAAAw6C,MAAA/6B,KAAAmyC,EAAA,MAAAlX,UAAA,0BAAAkX,EAAA,cACA,OAAApX,qBCHA,SAAAqX;;;;;;AAMAl2D,EAAAD,QAGC,WAAqB,aAEtB,IAAAo2D,EAAA,WACA/sD,KAAAgtD,eACAhtD,KAAAitD,WAAA,GACAjtD,KAAAktD,cAAA,GAGA3mD,GAA0BijB,cAO1BjjB,EAAAijB,UAAA9xB,IAAA,WACA,OAAAsI,KAAAitD,YAQA1mD,EAAAijB,UAAA7lB,IAAA,SAAA7L,GACAkI,KAAAitD,WAAAn1D,IAAA,QAUAi1D,EAAAt0D,UAAA00D,UAAA,SAAAC,GACA,SAAAptD,KAAA,WAAAotD,GAWAL,EAAAt0D,UAAA40D,OAAA,SAAAD,EAAAE,EAAAn0D,GACA,IAAAf,EAAA4H,KAAAmtD,UAAAC,GACAt1D,EAAAqB,IAAAqF,MAAAjH,QAAA2xD,SAAA/vD,GACA2C,KAAAC,UAAAuxD,GACAA,EAEAxrD,OAAAyrD,aAAAC,QAAAp1D,EAAAN,IAUAi1D,EAAAt0D,UAAAg1D,OAAA,SAAAL,GACA,IAAAh1D,EAAA4H,KAAAmtD,UAAAC,GAEA,OAAAtrD,OAAAyrD,aAAAn1D,IAWA20D,EAAAt0D,UAAAf,IAAA,SAAA01D,EAAAM,EAAAC,GAKA,QAHA,IAAAD,MAAA,WACA,IAAAC,MAAAjyD,SAEAsE,KAAAktD,aACA,YAGA,GAAAltD,KAAAytD,OAAAL,GAAA,CACA,IAAAj0D,EAAAw0D,EAEA,QAAAv1D,KAXA4H,KAWAgtD,YACA,GAAA50D,IAAAg1D,EAAA,CACAj0D,EAbA6G,KAaAgtD,YAAA50D,GAAAe,KACA,MAIA,OAAA6G,KAAA4tD,SAAAz0D,EAAA6G,KAAAytD,OAAAL,IAGA,cAAAM,IAAA,MAUAX,EAAAt0D,UAAAkL,IAAA,SAAAypD,EAAAt1D,GAGA,IAAAkI,KAAAktD,aACA,YAGA,QAAA90D,KANA4H,KAMAgtD,YAAA,CACA,IAAA7zD,EAPA6G,KAOAgtD,YAAA50D,GAAAe,KAEA,GAAAf,IAAAg1D,EAGA,OAZAptD,KAUAqtD,OAAAD,EAAAt1D,EAAAqB,GAEArB,EAMA,OAFAkI,KAAAqtD,OAAAD,EAAAt1D,GAEAA,GAQAi1D,EAAAt0D,UAAAmE,OAAA,SAAAwwD,GACA,OAAAptD,KAAAktD,aAIAprD,OAAAyrD,aAAAM,WAAAT,GAHA,MAaAL,EAAAt0D,UAAAq1D,YAAA,SAAA11D,EAAAe,EAAAu0D,QACA,IAAAA,WAAAtzD,GAEAjB,KAAAuC,OAEAsE,KAAAgtD,YAAA50D,IAA2Be,QAE3B6G,KAAAytD,OAAAr1D,IAAA,OAAAs1D,GACA1tD,KAAAqtD,OAAAj1D,EAAAs1D,EAAAv0D,IAYA4zD,EAAAt0D,UAAAm1D,SAAA,SAAAz0D,EAAArB,GACA,OAAAqB,GACA,KAAAmT,QACA,eAAAxU,EACA,KAAAkuB,OACA,OAAAvqB,WAAA3D,GACA,KAAA0G,MACA,IACA,IAAAuvD,EAAAjyD,KAAAsrC,MAAAtvC,GAEA,OAAA0G,MAAAc,QAAAyuD,QACO,MAAAtuD,GACP,SAEA,KAAAlI,OACA,IACA,OAAAuE,KAAAsrC,MAAAtvC,GACO,MAAA2H,GACP,SAEA,QACA,OAAA3H,IAIAP,OAAAkP,iBAAAsmD,EAAAt0D,UAAA8N,GAEA,IAAAynD,EAAA,IAAAjB,EA+FA,OAtFAlmC,QAAA,SAAAhF,EAAA/W,GAGA,QAFA,IAAAA,eAEA,IAAAgiD,KAEAA,EAAAmB,QACAnB,EAAAoB,cACApB,EAAA7pD,KAAA,WAAA6pD,EAAA7pD,IAAAC,SAJA,CAUA,IAAAirD,GAAA,EAEA,IACA,IAAA5rD,EAAA,4BAEAT,OAAAyrD,aAAAC,QAAAjrD,KACAT,OAAAyrD,aAAAM,WAAAtrD,GACK,MAAA9C,GACL0uD,GAAA,EACAH,EAAAd,cAAA,EAEAx/C,QAAAC,MAAA,kCAGA,IAAAvW,EAAA0T,EAAA1T,MAAA,eACAiB,EAAAyS,EAAAzS,KAEAyS,EAAA0e,YACAwkC,EAAAxkC,UAAA1e,EAAA0e,WAGA3H,EAAAY,OACA49B,aAAA,WACA,IAAAj6B,EAAApmB,KAEAmuD,GAIAnuD,KAAAyM,SAAArV,IACAG,OAAAoI,KAAAK,KAAAyM,SAAArV,IAAA8P,QAAA,SAAA9O,GACA,IAAAgI,EAAAgmB,EAAA3Z,SAAArV,GAAAgB,GACAotB,GAAAplB,EAAAjH,KAAAiH,EAAAoM,SACArT,EAAAqsB,EAAA,GACAkoC,EAAAloC,EAAA,GAEAwoC,EAAAF,YAAA11D,EAAAe,EAAAu0D,GAEA,IAAAU,EAAA72D,OAAAwR,yBAAAilD,EAAA51D,GAEA,GAAAg2D,EASavsC,EAAAzhB,OAAAE,QACboN,QAAA2gD,IAAAj2D,EAAA,+CAVA,CACA,IAAA8T,GACAxU,IAAA,WAAkC,OAAAmqB,EAAA0rC,aAAA71D,IAAAU,EAAAs1D,IAClC/pD,IAAA,SAAAnI,GAAqC,OAAAqmB,EAAA0rC,aAAA5pD,IAAAvL,EAAAoD,IACrCiG,cAAA,GAGAlK,OAAAC,eAAAw2D,EAAA51D,EAAA8T,GACA2V,EAAA0E,KAAA3d,eAAAolD,EAAA51D,EAAAs1D,IAKAr1D,GAAA+H,EAAA/H,QAAA,IAAA+H,EAAA/H,OACA+tB,EAAA3Z,SAAA/B,SAAA0b,EAAA3Z,SAAA/B,aAEA0b,EAAA3Z,SAAA/B,SAAAtS,KACAguB,EAAA3Z,SAAA/B,SAAAtS,IACAV,IAAA,WAAoC,OAAAmqB,EAAA0rC,aAAAn1D,IACpCuL,IAAA,SAAAnI,GAAuCqmB,EAAA0rC,aAAAn1D,GAAAoD,WASvCqmB,EAAAzqB,GAAA42D,EACAnsC,EAAAppB,UAAA,IAAArB,GAAA42D,KApSAtvC,uCCLA,IAAAzjB,EAAAxE,EAAA,GAGAG,EAAAD,QAAA,SAAA8+C,EAAA57C,GACA,IAAAoB,EAAAw6C,GAAA,OAAAA,EACA,IAAAr4C,EAAA5B,EACA,GAAA3B,GAAA,mBAAAuD,EAAAq4C,EAAAr6C,YAAAH,EAAAO,EAAA4B,EAAApG,KAAAy+C,IAAA,OAAAj6C,EACA,sBAAA4B,EAAAq4C,EAAAqB,WAAA77C,EAAAO,EAAA4B,EAAApG,KAAAy+C,IAAA,OAAAj6C,EACA,IAAA3B,GAAA,mBAAAuD,EAAAq4C,EAAAr6C,YAAAH,EAAAO,EAAA4B,EAAApG,KAAAy+C,IAAA,OAAAj6C,EACA,MAAAm6C,UAAA,6DCTA,IAAA0W,EAAA51D,EAAA,IACA63D,EAAA73D,EAAA,IAAA0T,OAAA,sBAEAxT,EAAAu/C,EAAA3+C,OAAAuQ,qBAAA,SAAAquC,GACA,OAAAkW,EAAAlW,EAAAmY,qBCJA,IAAAxY,EAAAr/C,EAAA,GACA83D,EAAA93D,EAAA,KACA61D,EAAA71D,EAAA,IACAi2D,EAAAj2D,EAAA,GAAAA,CAAA,YACA+3D,EAAA,aAIAC,EAAA,WAEA,IAIAC,EAJAC,EAAAl4D,EAAA,GAAAA,CAAA,UACAI,EAAAy1D,EAAA9vD,OAcA,IAVAmyD,EAAA/tC,MAAAmf,QAAA,OACAtpC,EAAA,IAAAszB,YAAA4kC,GACAA,EAAArmD,IAAA,eAGAomD,EAAAC,EAAA1S,cAAAhzB,UACAua,OACAkrB,EAAAxS,MAAA0S,uCACAF,EAAAjrB,QACAgrB,EAAAC,EAAAj1D,EACA5C,YAAA43D,EAAA,UAAAnC,EAAAz1D,IACA,OAAA43D,KAGA73D,EAAAD,QAAAY,OAAAY,QAAA,SAAAg+C,EAAA0Y,GACA,IAAArnD,EAQA,OAPA,OAAA2uC,GACAqY,EAAA,UAAA1Y,EAAAK,GACA3uC,EAAA,IAAAgnD,EACAA,EAAA,eAEAhnD,EAAAklD,GAAAvW,GACG3uC,EAAAinD,SACHr0D,IAAAy0D,EAAArnD,EAAA+mD,EAAA/mD,EAAAqnD,qBChCA,IAAA51D,EAAAxC,EAAA,IACAysD,EAAAzsD,EAAA,IACAmI,EAAAnI,EAAA,IACAotD,EAAAptD,EAAA,GACAq4D,EAAAr4D,EAAA,KACAG,EAAAD,QAAA,SAAAk2D,EAAAkC,GACA,IAAAC,EAAA,GAAAnC,EACAoC,EAAA,GAAApC,EACAqC,EAAA,GAAArC,EACAsC,EAAA,GAAAtC,EACAuC,EAAA,GAAAvC,EACAwC,EAAA,GAAAxC,GAAAuC,EACAj3D,EAAA42D,GAAAD,EACA,gBAAAQ,EAAAzG,EAAAvF,GAQA,IAPA,IAMA9nD,EAAAqD,EANAs3C,EAAAv3C,EAAA0wD,GACAtf,EAAAkT,EAAA/M,GACAD,EAAAj9C,EAAA4vD,EAAAvF,EAAA,GACA9mD,EAAAqnD,EAAA7T,EAAAxzC,QACAO,EAAA,EACAyK,EAAAwnD,EAAA72D,EAAAm3D,EAAA9yD,GAAAyyD,EAAA92D,EAAAm3D,EAAA,QAAAl1D,EAEUoC,EAAAO,EAAeA,IAAA,IAAAsyD,GAAAtyD,KAAAizC,KAEzBnxC,EAAAq3C,EADA16C,EAAAw0C,EAAAjzC,GACAA,EAAAo5C,GACA0W,GACA,GAAAmC,EAAAxnD,EAAAzK,GAAA8B,OACA,GAAAA,EAAA,OAAAguD,GACA,gBACA,cAAArxD,EACA,cAAAuB,EACA,OAAAyK,EAAAlD,KAAA9I,QACS,GAAA2zD,EAAA,SAGT,OAAAC,GAAA,EAAAF,GAAAC,IAAA3nD,mBCzCA7Q,EAAAu/C,KAAcU,oCCAd,IAAA3R,EAGAA,EAAA,WACA,OAAAjlC,KADA,GAIA,IAEAilC,KAAA5qC,SAAA,cAAAA,KAAA,EAAAk1D,MAAA,QACC,MAAA9vD,GAED,iBAAAqC,SAAAmjC,EAAAnjC,QAOAlL,EAAAD,QAAAsuC,gCClBA,IAAApsC,EAAApC,EAAA,GACAw/C,EAAAx/C,EAAA,GACA+4D,EAAA/4D,EAAA,IACAg5D,EAAAh5D,EAAA,EAAAA,CAAA,WAEAG,EAAAD,QAAA,SAAAwnD,GACA,IAAAO,EAAA7lD,EAAAslD,GACAqR,GAAA9Q,MAAA+Q,IAAAxZ,EAAAC,EAAAwI,EAAA+Q,GACAhuD,cAAA,EACA/J,IAAA,WAAsB,OAAAsI,0BCVtB,IAAA2mD,EAAAlwD,EAAA,EAAAA,CAAA,YACAi5D,GAAA,EAEA,IACA,IAAAC,GAAA,GAAAhJ,KACAgJ,EAAA,kBAAiCD,GAAA,GAEjClxD,MAAAiL,KAAAkmD,EAAA,WAAiC,UAChC,MAAAlwD,IAED7I,EAAAD,QAAA,SAAA80C,EAAAmkB,GACA,IAAAA,IAAAF,EAAA,SACA,IAAA5D,GAAA,EACA,IACA,IAAAjvD,GAAA,GACAuuD,EAAAvuD,EAAA8pD,KACAyE,EAAAz6B,KAAA,WAA6B,OAASstB,KAAA6N,GAAA,IACtCjvD,EAAA8pD,GAAA,WAAiC,OAAAyE,GACjC3f,EAAA5uC,GACG,MAAA4C,IACH,OAAAqsD,oBCpBA,IAAA7yD,EAAAxC,EAAA,IACAO,EAAAP,EAAA,IACAwtD,EAAAxtD,EAAA,IACAq/C,EAAAr/C,EAAA,GACAotD,EAAAptD,EAAA,GACA0tD,EAAA1tD,EAAA,IACAo5D,KACAC,MACAn5D,EAAAC,EAAAD,QAAA,SAAAo5D,EAAAhU,EAAA3+C,EAAAkmD,EAAAqD,GACA,IAGAnqD,EAAA2rD,EAAA5I,EAAA/3C,EAHA+gD,EAAA5B,EAAA,WAAuC,OAAAoJ,GAAmB5L,EAAA4L,GAC1D7Z,EAAAj9C,EAAAmE,EAAAkmD,EAAAvH,EAAA,KACAh/C,EAAA,EAEA,sBAAAwrD,EAAA,MAAA5S,UAAAoa,EAAA,qBAEA,GAAA9L,EAAAsE,IAAA,IAAA/rD,EAAAqnD,EAAAkM,EAAAvzD,QAAmEA,EAAAO,EAAgBA,IAEnF,IADAyK,EAAAu0C,EAAA7F,EAAAJ,EAAAqS,EAAA4H,EAAAhzD,IAAA,GAAAorD,EAAA,IAAAjS,EAAA6Z,EAAAhzD,OACA8yD,GAAAroD,IAAAsoD,EAAA,OAAAtoD,OACG,IAAA+3C,EAAAgJ,EAAAvxD,KAAA+4D,KAA4C5H,EAAA5I,EAAA5uB,QAAAstB,MAE/C,IADAz2C,EAAAxQ,EAAAuoD,EAAArJ,EAAAiS,EAAArwD,MAAAikD,MACA8T,GAAAroD,IAAAsoD,EAAA,OAAAtoD,IAGAqoD,QACAl5D,EAAAm5D,uCCvBA,IAAAj3D,EAAApC,EAAA,GACAyC,EAAAzC,EAAA,GACAuC,EAAAvC,EAAA,IACAmtD,EAAAntD,EAAA,IACA05C,EAAA15C,EAAA,IACAu5D,EAAAv5D,EAAA,IACAitD,EAAAjtD,EAAA,IACAwE,EAAAxE,EAAA,GACA2sD,EAAA3sD,EAAA,GACAiuD,EAAAjuD,EAAA,IACAw5D,EAAAx5D,EAAA,IACAy5D,EAAAz5D,EAAA,KAEAG,EAAAD,QAAA,SAAA0zD,EAAAF,EAAA3/C,EAAA2lD,EAAAnB,EAAAoB,GACA,IAAA3F,EAAA5xD,EAAAwxD,GACA3L,EAAA+L,EACA4F,EAAArB,EAAA,YACArG,EAAAjK,KAAAjmD,UACA09C,KACAma,EAAA,SAAAnS,GACA,IAAA/gD,EAAAurD,EAAAxK,GACAnlD,EAAA2vD,EAAAxK,EACA,UAAAA,EAAA,SAAAlgD,GACA,QAAAmyD,IAAAn1D,EAAAgD,KAAAb,EAAApG,KAAAgJ,KAAA,IAAA/B,EAAA,EAAAA,IACO,OAAAkgD,EAAA,SAAAlgD,GACP,QAAAmyD,IAAAn1D,EAAAgD,KAAAb,EAAApG,KAAAgJ,KAAA,IAAA/B,EAAA,EAAAA,IACO,OAAAkgD,EAAA,SAAAlgD,GACP,OAAAmyD,IAAAn1D,EAAAgD,QAAA7D,EAAAgD,EAAApG,KAAAgJ,KAAA,IAAA/B,EAAA,EAAAA,IACO,OAAAkgD,EAAA,SAAAlgD,GAAmE,OAAhCb,EAAApG,KAAAgJ,KAAA,IAAA/B,EAAA,EAAAA,GAAgC+B,MAC1E,SAAA/B,EAAAc,GAAiE,OAAnC3B,EAAApG,KAAAgJ,KAAA,IAAA/B,EAAA,EAAAA,EAAAc,GAAmCiB,QAGjE,sBAAA0+C,IAAA0R,GAAAzH,EAAAzhD,UAAAk8C,EAAA,YACA,IAAA1E,GAAA3C,UAAAprB,UAMG,CACH,IAAA4/B,EAAA,IAAA7R,EAEA8R,EAAAD,EAAAF,GAAAD,MAAqD,MAAAG,EAErDE,EAAArN,EAAA,WAAkDmN,EAAA3sD,IAAA,KAElD8sD,EAAAhM,EAAA,SAAA0G,GAAwD,IAAA1M,EAAA0M,KAExDuF,GAAAP,GAAAhN,EAAA,WAIA,IAFA,IAAAwN,EAAA,IAAAlS,EACA3hD,EAAA,EACAA,KAAA6zD,EAAAP,GAAAtzD,KACA,OAAA6zD,EAAAhtD,KAAA,KAEA8sD,KACAhS,EAAAyL,EAAA,SAAAjwD,EAAA61D,GACArM,EAAAxpD,EAAAwkD,EAAA2L,GACA,IAAA/G,EAAA4M,EAAA,IAAAzF,EAAAvwD,EAAAwkD,GAEA,YADAtkD,GAAA21D,GAAAC,EAAAD,EAAAf,EAAA1L,EAAA+M,GAAA/M,GACAA,KAEA7qD,UAAAkwD,EACAA,EAAAtmC,YAAAq8B,IAEA+R,GAAAE,KACAL,EAAA,UACAA,EAAA,OACAtB,GAAAsB,EAAA,SAEAK,GAAAH,IAAAF,EAAAD,GAEAD,GAAAzH,EAAA7kD,cAAA6kD,EAAA7kD,WApCA46C,EAAAyR,EAAAU,eAAA1G,EAAAE,EAAA2E,EAAAqB,GACAzM,EAAAlF,EAAAjmD,UAAA+R,GACA2lC,EAAAiO,MAAA,EA4CA,OAPA6R,EAAAvR,EAAA2L,GAEAlU,EAAAkU,GAAA3L,EACAxlD,IAAAS,EAAAT,EAAAqB,EAAArB,EAAAO,GAAAilD,GAAA+L,GAAAtU,GAEAia,GAAAD,EAAAW,UAAApS,EAAA2L,EAAA2E,GAEAtQ,kBCnFA/nD,EAAAu/C,EAAA3+C,OAAA4kD,oDCCA,IAAApjD,EAAAtC,EAAA,IACAuC,EAAAvC,EAAA,IACA2sD,EAAA3sD,EAAA,GACA0sD,EAAA1sD,EAAA,IACA2tD,EAAA3tD,EAAA,GAEAG,EAAAD,QAAA,SAAAwnD,EAAA3hD,EAAAivC,GACA,IAAAslB,EAAA3M,EAAAjG,GACAtuC,EAAA47B,EAAA0X,EAAA4N,EAAA,GAAA5S,IACA6S,EAAAnhD,EAAA,GACAohD,EAAAphD,EAAA,GACAuzC,EAAA,WACA,IAAAjN,KAEA,OADAA,EAAA4a,GAAA,WAA6B,UAC7B,MAAA5S,GAAAhI,OAEAn9C,EAAA0C,OAAAjD,UAAA0lD,EAAA6S,GACAj4D,EAAA4sB,OAAAltB,UAAAs4D,EAAA,GAAAv0D,EAGA,SAAA00D,EAAA9hC,GAAgC,OAAA6hC,EAAAj6D,KAAAk6D,EAAAlxD,KAAAovB,IAGhC,SAAA8hC,GAA2B,OAAAD,EAAAj6D,KAAAk6D,EAAAlxD,yBCxB3B,SAAA4nD,EAAAnpB,GACA,yBAAAA,EAAA3mC,QACA4V,QAAA3J,KAAA,2CAAA06B,EAAAppB,WAAA,uBACA,GA0BA,SAAA87C,EAAAC,GACA,gBAAAA,EAAAvrD,mBAAAurD,EAAAvrD,kBAAAwrD,UAGAz6D,EAAAD,SACA0B,KAAA,SAAA6rB,EAAAua,EAAA2yB,GAIA,SAAAj6C,EAAA1X,GACA,GAAA2xD,EAAA7rD,QAAA,CAGA,IAAA+rD,EAAA7xD,EAAA6V,MAAA7V,EAAA8xD,cAAA9xD,EAAA8xD,eACAD,KAAA90D,OAAA,GAAA80D,EAAA1qC,QAAAnnB,EAAAvF,QAEAgqB,EAAAstC,SAAA/xD,EAAAvF,SApCA,SAAAu3D,EAAAH,GACA,IAAAG,IAAAH,EACA,SAEA,QAAAz6D,EAAA,EAAAyQ,EAAAgqD,EAAA90D,OAAwC3F,EAAAyQ,EAASzQ,IACjD,IACA,GAAA46D,EAAAD,SAAAF,EAAAz6D,IACA,SAEA,GAAAy6D,EAAAz6D,GAAA26D,SAAAC,GACA,SAEK,MAAAhyD,GACL,SAIA,SAmBAiyD,CAAAN,EAAA7rD,QAAAksD,UAAAH,IAEAptC,EAAAytC,oBAAAjyC,SAAAjgB,IAZAmoD,EAAAnpB,KAgBAva,EAAAytC,qBACAx6C,UACAuI,SAAA+e,EAAA3mC,QAEAq5D,EAAAC,IAAAnoC,SAAAlmB,iBAAA,QAAAoU,KAGAxS,OAAA,SAAAuf,EAAAua,GACAmpB,EAAAnpB,KAAAva,EAAAytC,oBAAAjyC,SAAA+e,EAAA3mC,QAGAkoC,OAAA,SAAA9b,EAAAua,EAAA2yB,IAEAD,EAAAC,IAAAnoC,SAAA8D,oBAAA,QAAA7I,EAAAytC,oBAAAx6C,gBACA+M,EAAAytC,qCChEA,IAOAC,EACAC,EARA/E,EAAAl2D,EAAAD,WAUA,SAAAm7D,IACA,UAAAC,MAAA,mCAEA,SAAAC,IACA,UAAAD,MAAA,qCAsBA,SAAAE,EAAAC,GACA,GAAAN,IAAAxjD,WAEA,OAAAA,WAAA8jD,EAAA,GAGA,IAAAN,IAAAE,IAAAF,IAAAxjD,WAEA,OADAwjD,EAAAxjD,WACAA,WAAA8jD,EAAA,GAEA,IAEA,OAAAN,EAAAM,EAAA,GACK,MAAAzyD,GACL,IAEA,OAAAmyD,EAAA56D,KAAA,KAAAk7D,EAAA,GACS,MAAAzyD,GAET,OAAAmyD,EAAA56D,KAAAgJ,KAAAkyD,EAAA,MAvCA,WACA,IAEAN,EADA,mBAAAxjD,WACAA,WAEA0jD,EAEK,MAAAryD,GACLmyD,EAAAE,EAEA,IAEAD,EADA,mBAAAM,aACAA,aAEAH,EAEK,MAAAvyD,GACLoyD,EAAAG,GAjBA,GAwEA,IAEAI,EAFA7+C,KACA8+C,GAAA,EAEAC,GAAA,EAEA,SAAAC,IACAF,GAAAD,IAGAC,GAAA,EACAD,EAAA51D,OACA+W,EAAA6+C,EAAAjoD,OAAAoJ,GAEA++C,GAAA,EAEA/+C,EAAA/W,QACAg2D,KAIA,SAAAA,IACA,IAAAH,EAAA,CAGA,IAAAhzC,EAAA4yC,EAAAM,GACAF,GAAA,EAGA,IADA,IAAA/qD,EAAAiM,EAAA/W,OACA8K,GAAA,CAGA,IAFA8qD,EAAA7+C,EACAA,OACA++C,EAAAhrD,GACA8qD,GACAA,EAAAE,GAAAx+C,MAGAw+C,GAAA,EACAhrD,EAAAiM,EAAA/W,OAEA41D,EAAA,KACAC,GAAA,EAnEA,SAAAI,GACA,GAAAZ,IAAAM,aAEA,OAAAA,aAAAM,GAGA,IAAAZ,IAAAG,IAAAH,IAAAM,aAEA,OADAN,EAAAM,aACAA,aAAAM,GAEA,IAEAZ,EAAAY,GACK,MAAAhzD,GACL,IAEA,OAAAoyD,EAAA76D,KAAA,KAAAy7D,GACS,MAAAhzD,GAGT,OAAAoyD,EAAA76D,KAAAgJ,KAAAyyD,KAgDAC,CAAArzC,IAiBA,SAAAszC,EAAAT,EAAAnE,GACA/tD,KAAAkyD,MACAlyD,KAAA+tD,QAYA,SAAAjvD,KA5BAguD,EAAAh+C,SAAA,SAAAojD,GACA,IAAA7qD,EAAA,IAAA7I,MAAAN,UAAA1B,OAAA,GACA,GAAA0B,UAAA1B,OAAA,EACA,QAAA3F,EAAA,EAAuBA,EAAAqH,UAAA1B,OAAsB3F,IAC7CwQ,EAAAxQ,EAAA,GAAAqH,UAAArH,GAGA0c,EAAAjP,KAAA,IAAAquD,EAAAT,EAAA7qD,IACA,IAAAkM,EAAA/W,QAAA61D,GACAJ,EAAAO,IASAG,EAAAl6D,UAAAqb,IAAA,WACA9T,KAAAkyD,IAAA/zD,MAAA,KAAA6B,KAAA+tD,QAEAjB,EAAA8F,MAAA,UACA9F,EAAA+F,SAAA,EACA/F,EAAA7pD,OACA6pD,EAAAgG,QACAhG,EAAA1lC,QAAA,GACA0lC,EAAAiG,YAIAjG,EAAA78C,GAAAnR,EACAguD,EAAAkG,YAAAl0D,EACAguD,EAAAhtD,KAAAhB,EACAguD,EAAAmG,IAAAn0D,EACAguD,EAAAoG,eAAAp0D,EACAguD,EAAAqG,mBAAAr0D,EACAguD,EAAAz4C,KAAAvV,EACAguD,EAAAsG,gBAAAt0D,EACAguD,EAAAuG,oBAAAv0D,EAEAguD,EAAA56C,UAAA,SAAA9a,GAAqC,UAErC01D,EAAAruB,QAAA,SAAArnC,GACA,UAAA26D,MAAA,qCAGAjF,EAAAwG,IAAA,WAA2B,WAC3BxG,EAAAyG,MAAA,SAAApoC,GACA,UAAA4mC,MAAA,mCAEAjF,EAAA0G,MAAA,WAA4B,qDCrL5B,IAAAC,EAAAh9D,EAAA,IACAi9D,EAAAj9D,EAAA,KAEAk9D,GACAC,eAAA,qCAGA,SAAAC,EAAAC,EAAAh8D,IACA27D,EAAArR,YAAA0R,IAAAL,EAAArR,YAAA0R,EAAA,mBACAA,EAAA,gBAAAh8D,GAgBA,IAAAi8D,GACAC,QAbA,WACA,IAAAA,EAQA,MAPA,oBAAAC,eAEAD,EAAAv9D,EAAA,SACG,IAAAq2D,IAEHkH,EAAAv9D,EAAA,KAEAu9D,EAIAE,GAEAC,kBAAA,SAAAhvD,EAAA2uD,GAEA,OADAJ,EAAAI,EAAA,gBACAL,EAAA7R,WAAAz8C,IACAsuD,EAAA9R,cAAAx8C,IACAsuD,EAAAhS,SAAAt8C,IACAsuD,EAAAjR,SAAAr9C,IACAsuD,EAAAnR,OAAAn9C,IACAsuD,EAAAlR,OAAAp9C,GAEAA,EAEAsuD,EAAA3R,kBAAA38C,GACAA,EAAA88C,OAEAwR,EAAA/Q,kBAAAv9C,IACA0uD,EAAAC,EAAA,mDACA3uD,EAAA/J,YAEAq4D,EAAAx4D,SAAAkK,IACA0uD,EAAAC,EAAA,kCACAh4D,KAAAC,UAAAoJ,IAEAA,IAGAivD,mBAAA,SAAAjvD,GAEA,oBAAAA,EACA,IACAA,EAAArJ,KAAAsrC,MAAAjiC,GACO,MAAA1F,IAEP,OAAA0F,IAOAka,QAAA,EAEAg1C,eAAA,aACAC,eAAA,eAEAC,kBAAA,EAEAC,eAAA,SAAAC,GACA,OAAAA,GAAA,KAAAA,EAAA,KAIAX,SACA3D,QACAuE,OAAA,uCAIAjB,EAAAvsD,SAAA,gCAAAC,GACA4sD,EAAAD,QAAA3sD,QAGAssD,EAAAvsD,SAAA,+BAAAC,GACA4sD,EAAAD,QAAA3sD,GAAAssD,EAAA3Q,MAAA6Q,KAGA/8D,EAAAD,QAAAo9D,sCC/FA,IAAA94D,EAAAxE,EAAA,GACAwyB,EAAAxyB,EAAA,GAAAwyB,SAEAzI,EAAAvlB,EAAAguB,IAAAhuB,EAAAguB,EAAAlN,eACAnlB,EAAAD,QAAA,SAAA8+C,GACA,OAAAj1B,EAAAyI,EAAAlN,cAAA05B,wBCUA,IAfA,IASAkf,EATA97D,EAAApC,EAAA,GACAsC,EAAAtC,EAAA,IACAuN,EAAAvN,EAAA,IACAywD,EAAAljD,EAAA,eACAmjD,EAAAnjD,EAAA,QACA4mD,KAAA/xD,EAAAkpD,cAAAlpD,EAAAysD,UACA0B,EAAA4D,EACA/zD,EAAA,EAIA+9D,EAAA,iHAEAr4D,MAAA,KAEA1F,EAPA,IAQA89D,EAAA97D,EAAA+7D,EAAA/9D,QACAkC,EAAA47D,EAAAl8D,UAAAyuD,GAAA,GACAnuD,EAAA47D,EAAAl8D,UAAA0uD,GAAA,IACGH,GAAA,EAGHpwD,EAAAD,SACAi0D,MACA5D,SACAE,QACAC,yBCzBA,IAAA0N,EAAAp+D,EAAA,IAEAG,EAAAD,QAAAY,OAAA,KAAAq/C,qBAAA,GAAAr/C,OAAA,SAAAk+C,GACA,gBAAAof,EAAApf,KAAAl5C,MAAA,IAAAhF,OAAAk+C,qBCFA,IAAAiW,EAAAj1D,EAAA,IACAotD,EAAAptD,EAAA,GACAstD,EAAAttD,EAAA,IACAG,EAAAD,QAAA,SAAAm+D,GACA,gBAAAxF,EAAAprC,EAAA6wC,GACA,IAGAj9D,EAHAq+C,EAAAuV,EAAA4D,GACA9yD,EAAAqnD,EAAA1N,EAAA35C,QACAO,EAAAgnD,EAAAgR,EAAAv4D,GAIA,GAAAs4D,GAAA5wC,MAAA,KAAA1nB,EAAAO,GAGA,IAFAjF,EAAAq+C,EAAAp5C,OAEAjF,EAAA,cAEK,KAAY0E,EAAAO,EAAeA,IAAA,IAAA+3D,GAAA/3D,KAAAo5C,IAChCA,EAAAp5C,KAAAmnB,EAAA,OAAA4wC,GAAA/3D,GAAA,EACK,OAAA+3D,IAAA,qBCpBL,IAAAE,EAAAv+D,EAAA,GAAAA,CAAA,QACAuN,EAAAvN,EAAA,IACAG,EAAAD,QAAA,SAAAyB,GACA,OAAA48D,EAAA58D,KAAA48D,EAAA58D,GAAA4L,EAAA5L,sBCHA,IAAAS,EAAApC,EAAA,GAEAm/C,EAAA/8C,EADA,wBACAA,EADA,0BAEAjC,EAAAD,QAAA,SAAAyB,GACA,OAAAw9C,EAAAx9C,KAAAw9C,EAAAx9C,uBCHAxB,EAAAD,QAAA,gGAEA4F,MAAA,mCCDA,IAAAqC,EAAAnI,EAAA,IACAstD,EAAAttD,EAAA,IACAotD,EAAAptD,EAAA,GACAG,EAAAD,QAAA,SAAAmB,GAOA,IANA,IAAAq+C,EAAAv3C,EAAAoB,MACAxD,EAAAqnD,EAAA1N,EAAA35C,QACA4rD,EAAAlqD,UAAA1B,OACAO,EAAAgnD,EAAAqE,EAAA,EAAAlqD,UAAA,QAAA9D,EAAAoC,GACA+5B,EAAA6xB,EAAA,EAAAlqD,UAAA,QAAA9D,EACA66D,OAAA76D,IAAAm8B,EAAA/5B,EAAAunD,EAAAxtB,EAAA/5B,GACAy4D,EAAAl4D,GAAAo5C,EAAAp5C,KAAAjF,EACA,OAAAq+C,oBCZA,IAAAL,EAAAr/C,EAAA,GACA4sD,EAAA5sD,EAAA,IACAg5D,EAAAh5D,EAAA,EAAAA,CAAA,WACAG,EAAAD,QAAA,SAAAw/C,EAAA2I,GACA,IACAjlD,EADA6kD,EAAA5I,EAAAK,GAAA9zB,YAEA,YAAAjoB,IAAAskD,QAAAtkD,IAAAP,EAAAi8C,EAAA4I,GAAA+Q,IAAA3Q,EAAAuE,EAAAxpD,qBCNA,IAAAg7D,EAAAp+D,EAAA,IACAmwD,EAAAnwD,EAAA,EAAAA,CAAA,eAEAy+D,EAA+C,aAA/CL,EAAA,WAA2B,OAAA32D,UAA3B,IASAtH,EAAAD,QAAA,SAAA8+C,GACA,IAAAU,EAAAwI,EAAA1kD,EACA,YAAAG,IAAAq7C,EAAA,mBAAAA,EAAA,OAEA,iBAAAkJ,EAVA,SAAAlJ,EAAAr9C,GACA,IACA,OAAAq9C,EAAAr9C,GACG,MAAAqH,KAOH01D,CAAAhf,EAAA5+C,OAAAk+C,GAAAmR,IAAAjI,EAEAuW,EAAAL,EAAA1e,GAEA,WAAAl8C,EAAA46D,EAAA1e,KAAA,mBAAAA,EAAAif,OAAA,YAAAn7D,oBCpBA,IAAAwqD,EAAAhuD,EAAA,IACAkwD,EAAAlwD,EAAA,EAAAA,CAAA,YACA0uD,EAAA3mD,MAAA/F,UAEA7B,EAAAD,QAAA,SAAA8+C,GACA,YAAAr7C,IAAAq7C,IAAAgP,EAAAjmD,QAAAi3C,GAAA0P,EAAAwB,KAAAlR,qBCNA,IAAAuO,EAAAvtD,EAAA,IACAkwD,EAAAlwD,EAAA,EAAAA,CAAA,YACAguD,EAAAhuD,EAAA,IACAG,EAAAD,QAAAF,EAAA,IAAA4+D,kBAAA,SAAA5f,GACA,QAAAr7C,GAAAq7C,EAAA,OAAAA,EAAAkR,IACAlR,EAAA,eACAgP,EAAAT,EAAAvO,mCCLA,IAAA6f,EAAA7+D,EAAA,IACA0xD,EAAA1xD,EAAA,IACAguD,EAAAhuD,EAAA,IACAi1D,EAAAj1D,EAAA,IAMAG,EAAAD,QAAAF,EAAA,GAAAA,CAAA+H,MAAA,iBAAA+2D,EAAAC,GACAx1D,KAAA0a,GAAAgxC,EAAA6J,GACAv1D,KAAA4a,GAAA,EACA5a,KAAA+a,GAAAy6C,GAEC,WACD,IAAArf,EAAAn2C,KAAA0a,GACA86C,EAAAx1D,KAAA+a,GACAhe,EAAAiD,KAAA4a,KACA,OAAAu7B,GAAAp5C,GAAAo5C,EAAA35C,QACAwD,KAAA0a,QAAAtgB,EACA+tD,EAAA,IAEAA,EAAA,UAAAqN,EAAAz4D,EACA,UAAAy4D,EAAArf,EAAAp5C,IACAA,EAAAo5C,EAAAp5C,MACC,UAGD0nD,EAAAhG,UAAAgG,EAAAjmD,MAEA82D,EAAA,QACAA,EAAA,UACAA,EAAA,4BC/BA,IAAAr6D,EAAAxE,EAAA,GACAq/C,EAAAr/C,EAAA,GACAg/D,EAAA,SAAAtf,EAAAwS,GAEA,GADA7S,EAAAK,IACAl7C,EAAA0tD,IAAA,OAAAA,EAAA,MAAAhT,UAAAgT,EAAA,8BAEA/xD,EAAAD,SACAgN,IAAApM,OAAAm+D,iBAAA,gBACA,SAAAnzD,EAAAozD,EAAAhyD,GACA,KACAA,EAAAlN,EAAA,GAAAA,CAAA4D,SAAArD,KAAAP,EAAA,IAAAy/C,EAAA3+C,OAAAkB,UAAA,aAAAkL,IAAA,IACApB,MACAozD,IAAApzD,aAAA/D,OACO,MAAAiB,GAAYk2D,GAAA,EACnB,gBAAAxf,EAAAwS,GAIA,OAHA8M,EAAAtf,EAAAwS,GACAgN,EAAAxf,EAAA5tC,UAAAogD,EACAhlD,EAAAwyC,EAAAwS,GACAxS,GAVA,KAYQ,QAAA/7C,GACRq7D,0BCvBA,IAaAG,EAAAvnD,EAAAC,EAbArV,EAAAxC,EAAA,IACAo/D,EAAAp/D,EAAA,IACA0tC,EAAA1tC,EAAA,IACAq/D,EAAAr/D,EAAA,IACAoC,EAAApC,EAAA,GACAq2D,EAAAj0D,EAAAi0D,QACAiJ,EAAAl9D,EAAA4B,aACAu7D,EAAAn9D,EAAAo9D,eACA9nD,EAAAtV,EAAAsV,eACA+nD,EAAAr9D,EAAAq9D,SACAC,EAAA,EACA5iD,KAGAO,EAAA,WACA,IAAA5P,GAAAlE,KAEA,GAAAuT,EAAA7a,eAAAwL,GAAA,CACA,IAAA9G,EAAAmW,EAAArP,UACAqP,EAAArP,GACA9G,MAGAg5D,EAAA,SAAA/lD,GACAyD,EAAA9c,KAAAqZ,EAAAlL,OAGA4wD,GAAAC,IACAD,EAAA,SAAA34D,GAGA,IAFA,IAAAiK,KACAxQ,EAAA,EACAqH,UAAA1B,OAAA3F,GAAAwQ,EAAA/C,KAAApG,UAAArH,MAMA,OALA0c,IAAA4iD,GAAA,WAEAN,EAAA,mBAAAz4D,IAAA/C,SAAA+C,GAAAiK,IAEAuuD,EAAAO,GACAA,GAEAH,EAAA,SAAA9xD,UACAqP,EAAArP,IAGA,WAAAzN,EAAA,GAAAA,CAAAq2D,GACA8I,EAAA,SAAA1xD,GACA4oD,EAAAh+C,SAAA7V,EAAA6a,EAAA5P,EAAA,KAGGgyD,KAAAG,IACHT,EAAA,SAAA1xD,GACAgyD,EAAAG,IAAAp9D,EAAA6a,EAAA5P,EAAA,KAGGiK,GAEHG,GADAD,EAAA,IAAAF,GACAI,MACAF,EAAAG,MAAAC,UAAA2nD,EACAR,EAAA38D,EAAAqV,EAAAI,YAAAJ,EAAA,IAGGzV,EAAAkK,kBAAA,mBAAA2L,cAAA7V,EAAAy9D,eACHV,EAAA,SAAA1xD,GACArL,EAAA6V,YAAAxK,EAAA,SAEArL,EAAAkK,iBAAA,UAAAqzD,GAAA,IAGAR,EAvDA,uBAsDGE,EAAA,UACH,SAAA5xD,GACAigC,EAAApa,YAAA+rC,EAAA,yCACA3xB,EAAAra,YAAA9pB,MACA8T,EAAA9c,KAAAkN,KAKA,SAAAA,GACAkK,WAAAnV,EAAA6a,EAAA5P,EAAA,QAIAtN,EAAAD,SACAgN,IAAAoyD,EACAjyD,MAAAkyD,oBCjFA,IAAA16D,EAAA7E,EAAA,KACA0sD,EAAA1sD,EAAA,IAEAG,EAAAD,QAAA,SAAA2sD,EAAAiT,EAAAlM,GACA,GAAA/uD,EAAAi7D,GAAA,MAAA5gB,UAAA,UAAA0U,EAAA,0BACA,OAAA3uD,OAAAynD,EAAAG,sBCNA,IAAAkT,EAAA//D,EAAA,EAAAA,CAAA,SACAG,EAAAD,QAAA,SAAAwnD,GACA,IAAAlY,EAAA,IACA,IACA,MAAAkY,GAAAlY,GACG,MAAAxmC,GACH,IAEA,OADAwmC,EAAAuwB,IAAA,GACA,MAAArY,GAAAlY,GACK,MAAAiQ,KACF,wCCTH,IAAAugB,EAAAhgE,EAAA,GACAwsD,EAAAxsD,EAAA,IAEAG,EAAAD,QAAA,SAAA4B,EAAAwE,EAAAjF,GACAiF,KAAAxE,EAAAk+D,EAAAvgB,EAAA39C,EAAAwE,EAAAkmD,EAAA,EAAAnrD,IACAS,EAAAwE,GAAAjF,kBCLAlB,EAAAD,QAAAgF,KAAA+6D,MAAA,SAAA3f,GAEA,WAAAA,gBAAA,uBCFA,IAAA4f,EAAAh7D,KAAAi7D,MACAhgE,EAAAD,SAAAggE,GAEAA,EAAA,wBAAAA,EAAA,yBAEA,OAAAA,GAAA,OACA,SAAA5f,GACA,WAAAA,WAAA,MAAAA,EAAA,KAAAA,MAAA,EAAAp7C,KAAApC,IAAAw9C,GAAA,GACC4f,mBCTD,IACAv0D,EADA3L,EAAA,GACA2L,UAEAxL,EAAAD,QAAAyL,KAAAC,WAAA,iCCDAzL,EAAAD,QAAA,SAAAyG,EAAA4lD,GACA,kBAEA,IADA,IAAA37C,EAAA,IAAA7I,MAAAN,UAAA1B,QACA3F,EAAA,EAAmBA,EAAAwQ,EAAA7K,OAAiB3F,IACpCwQ,EAAAxQ,GAAAqH,UAAArH,GAEA,OAAAuG,EAAAe,MAAA6kD,EAAA37C,mCCNA,IAAAosD,EAAAh9D,EAAA,IACAogE,EAAApgE,EAAA,KACAqgE,EAAArgE,EAAA,KACAsgE,EAAAtgE,EAAA,KACAugE,EAAAvgE,EAAA,KACAwgE,EAAAxgE,EAAA,IACAygE,EAAA,oBAAAp1D,eAAAo1D,MAAAp1D,OAAAo1D,KAAA7+D,KAAAyJ,SAAArL,EAAA,KAEAG,EAAAD,QAAA,SAAAyJ,GACA,WAAAuO,QAAA,SAAAC,EAAAqQ,GACA,IAAAk4C,EAAA/2D,EAAA+E,KACAiyD,EAAAh3D,EAAA0zD,QAEAL,EAAA7R,WAAAuV,WACAC,EAAA,gBAGA,IAAAC,EAAA,IAAApD,eACAqD,EAAA,qBACAC,GAAA,EAiBA,GAXA,oBAAAz1D,SACAA,OAAA01D,gBAAA,oBAAAH,GACAL,EAAA52D,EAAAq3D,OACAJ,EAAA,IAAAv1D,OAAA01D,eACAF,EAAA,SACAC,GAAA,EACAF,EAAAK,WAAA,aACAL,EAAAM,UAAA,cAIAv3D,EAAAw3D,KAAA,CACA,IAAAC,EAAAz3D,EAAAw3D,KAAAC,UAAA,GACAC,EAAA13D,EAAAw3D,KAAAE,UAAA,GACAV,EAAAW,cAAA,SAAAb,EAAAW,EAAA,IAAAC,GA+DA,GA5DAT,EAAA7zB,KAAApjC,EAAA+G,OAAAzJ,cAAAo5D,EAAA12D,EAAAq3D,IAAAr3D,EAAAkQ,OAAAlQ,EAAA43D,mBAAA,GAGAX,EAAAh4C,QAAAjf,EAAAif,QAGAg4C,EAAAC,GAAA,WACA,GAAAD,IAAA,IAAAA,EAAAY,YAAAV,KAQA,IAAAF,EAAA5C,QAAA4C,EAAAa,aAAA,IAAAb,EAAAa,YAAAl7D,QAAA,WAKA,IAAAm7D,EAAA,0BAAAd,EAAAN,EAAAM,EAAAe,yBAAA,KAEAC,GACAlzD,KAFA/E,EAAAk4D,cAAA,SAAAl4D,EAAAk4D,aAAAjB,EAAAgB,SAAAhB,EAAAkB,aAIA9D,OAAA,OAAA4C,EAAA5C,OAAA,IAAA4C,EAAA5C,OACA+D,WAAA,OAAAnB,EAAA5C,OAAA,aAAA4C,EAAAmB,WACA1E,QAAAqE,EACA/3D,SACAi3D,WAGAR,EAAAjoD,EAAAqQ,EAAAo5C,GAGAhB,EAAA,OAIAA,EAAAoB,QAAA,WAGAx5C,EAAAg4C,EAAA,gBAAA72D,EAAA,KAAAi3D,IAGAA,EAAA,MAIAA,EAAAM,UAAA,WACA14C,EAAAg4C,EAAA,cAAA72D,EAAAif,QAAA,cAAAjf,EAAA,eACAi3D,IAGAA,EAAA,MAMA5D,EAAA7Q,uBAAA,CACA,IAAA8V,EAAAjiE,EAAA,KAGAkiE,GAAAv4D,EAAAw4D,iBAAA5B,EAAA52D,EAAAq3D,OAAAr3D,EAAAi0D,eACAqE,EAAAG,KAAAz4D,EAAAi0D,qBACAj6D,EAEAu+D,IACAvB,EAAAh3D,EAAAk0D,gBAAAqE,GAuBA,GAlBA,qBAAAtB,GACA5D,EAAAvsD,QAAAkwD,EAAA,SAAA57D,EAAApD,QACA,IAAA++D,GAAA,iBAAA/+D,EAAAqE,qBAEA26D,EAAAh/D,GAGAi/D,EAAAyB,iBAAA1gE,EAAAoD,KAMA4E,EAAAw4D,kBACAvB,EAAAuB,iBAAA,GAIAx4D,EAAAk4D,aACA,IACAjB,EAAAiB,aAAAl4D,EAAAk4D,aACO,MAAA74D,GAGP,YAAAW,EAAAk4D,aACA,MAAA74D,EAMA,mBAAAW,EAAA24D,oBACA1B,EAAAt0D,iBAAA,WAAA3C,EAAA24D,oBAIA,mBAAA34D,EAAA44D,kBAAA3B,EAAA4B,QACA5B,EAAA4B,OAAAl2D,iBAAA,WAAA3C,EAAA44D,kBAGA54D,EAAA84D,aAEA94D,EAAA84D,YAAAC,QAAAtqD,KAAA,SAAAuqD,GACA/B,IAIAA,EAAAgC,QACAp6C,EAAAm6C,GAEA/B,EAAA,aAIAj9D,IAAA+8D,IACAA,EAAA,MAIAE,EAAAiC,KAAAnC,oCC/KA,IAAAoC,EAAA9iE,EAAA,KAYAG,EAAAD,QAAA,SAAA6iE,EAAAp5D,EAAA4tC,EAAAqpB,EAAAgB,GACA,IAAA1qD,EAAA,IAAAokD,MAAAyH,GACA,OAAAD,EAAA5rD,EAAAvN,EAAA4tC,EAAAqpB,EAAAgB,kCCdAzhE,EAAAD,QAAA,SAAAmB,GACA,SAAAA,MAAA2hE,2CCKA,SAAAC,EAAAF,GACAx5D,KAAAw5D,UAGAE,EAAAjhE,UAAA2C,SAAA,WACA,gBAAA4E,KAAAw5D,QAAA,KAAAx5D,KAAAw5D,QAAA,KAGAE,EAAAjhE,UAAAghE,YAAA,EAEA7iE,EAAAD,QAAA+iE,mBClBA9iE,EAAAD,SAAAF,EAAA,MAAAA,EAAA,EAAAA,CAAA,WACA,OAAuG,GAAvGc,OAAAC,eAAAf,EAAA,GAAAA,CAAA,YAAsEiB,IAAA,WAAmB,YAAcuG,kCCAvG,IAAApF,EAAApC,EAAA,GACA+4D,EAAA/4D,EAAA,IACA8sD,EAAA9sD,EAAA,IACA+sD,EAAA/sD,EAAA,IACAsC,EAAAtC,EAAA,IACAmtD,EAAAntD,EAAA,IACA2sD,EAAA3sD,EAAA,GACAitD,EAAAjtD,EAAA,IACA4/C,EAAA5/C,EAAA,IACAotD,EAAAptD,EAAA,GACAqtD,EAAArtD,EAAA,IACAytD,EAAAztD,EAAA,IAAAy/C,EACAD,EAAAx/C,EAAA,GAAAy/C,EACA0O,EAAAnuD,EAAA,IACAw5D,EAAAx5D,EAAA,IAGAkjE,EAAA,YAEAC,EAAA,eACAxU,EAAAvsD,EAAA,YACAwsD,EAAAxsD,EAAA,SACA8C,EAAA9C,EAAA8C,KACAspD,EAAApsD,EAAAosD,WAEA4U,EAAAhhE,EAAAghE,SACAC,EAAA1U,EACA2U,EAAAp+D,EAAAo+D,IACAC,EAAAr+D,EAAAq+D,IACAp+D,EAAAD,EAAAC,MACAyyD,EAAA1yD,EAAA0yD,IACA4L,EAAAt+D,EAAAs+D,IAIAC,EAAA1K,EAAA,KAHA,SAIA2K,EAAA3K,EAAA,KAHA,aAIA4K,EAAA5K,EAAA,KAHA,aAMA,SAAA6K,EAAAviE,EAAAwiE,EAAAC,GACA,IAOA96D,EAAAxI,EAAAC,EAPA+qD,EAAA,IAAAzjD,MAAA+7D,GACAC,EAAA,EAAAD,EAAAD,EAAA,EACAG,GAAA,GAAAD,GAAA,EACAE,EAAAD,GAAA,EACAE,EAAA,KAAAL,EAAAN,EAAA,OAAAA,EAAA,SACAnjE,EAAA,EACA+B,EAAAd,EAAA,OAAAA,GAAA,EAAAA,EAAA,MAkCA,KAhCAA,EAAAiiE,EAAAjiE,KAEAA,OAAA+hE,GAEA5iE,EAAAa,KAAA,IACA2H,EAAAg7D,IAEAh7D,EAAA7D,EAAAyyD,EAAAv2D,GAAAmiE,GACAniE,GAAAZ,EAAA8iE,EAAA,GAAAv6D,IAAA,IACAA,IACAvI,GAAA,IAGAY,GADA2H,EAAAi7D,GAAA,EACAC,EAAAzjE,EAEAyjE,EAAAX,EAAA,IAAAU,IAEAxjE,GAAA,IACAuI,IACAvI,GAAA,GAEAuI,EAAAi7D,GAAAD,GACAxjE,EAAA,EACAwI,EAAAg7D,GACKh7D,EAAAi7D,GAAA,GACLzjE,GAAAa,EAAAZ,EAAA,GAAA8iE,EAAA,EAAAM,GACA76D,GAAAi7D,IAEAzjE,EAAAa,EAAAkiE,EAAA,EAAAU,EAAA,GAAAV,EAAA,EAAAM,GACA76D,EAAA,IAGQ66D,GAAA,EAAWrY,EAAAprD,KAAA,IAAAI,KAAA,IAAAqjE,GAAA,GAGnB,IAFA76D,KAAA66D,EAAArjE,EACAujE,GAAAF,EACQE,EAAA,EAAUvY,EAAAprD,KAAA,IAAA4I,KAAA,IAAA+6D,GAAA,GAElB,OADAvY,IAAAprD,IAAA,IAAA+B,EACAqpD,EAEA,SAAA2Y,EAAA3Y,EAAAqY,EAAAC,GACA,IAOAtjE,EAPAujE,EAAA,EAAAD,EAAAD,EAAA,EACAG,GAAA,GAAAD,GAAA,EACAE,EAAAD,GAAA,EACAI,EAAAL,EAAA,EACA3jE,EAAA0jE,EAAA,EACA3hE,EAAAqpD,EAAAprD,KACA4I,EAAA,IAAA7G,EAGA,IADAA,IAAA,EACQiiE,EAAA,EAAWp7D,EAAA,IAAAA,EAAAwiD,EAAAprD,OAAAgkE,GAAA,GAInB,IAHA5jE,EAAAwI,GAAA,IAAAo7D,GAAA,EACAp7D,KAAAo7D,EACAA,GAAAP,EACQO,EAAA,EAAW5jE,EAAA,IAAAA,EAAAgrD,EAAAprD,OAAAgkE,GAAA,GACnB,OAAAp7D,EACAA,EAAA,EAAAi7D,MACG,IAAAj7D,IAAAg7D,EACH,OAAAxjE,EAAA6jE,IAAAliE,GAAAihE,IAEA5iE,GAAA+iE,EAAA,EAAAM,GACA76D,GAAAi7D,EACG,OAAA9hE,GAAA,KAAA3B,EAAA+iE,EAAA,EAAAv6D,EAAA66D,GAGH,SAAAS,EAAAC,GACA,OAAAA,EAAA,OAAAA,EAAA,OAAAA,EAAA,MAAAA,EAAA,GAEA,SAAAC,EAAAxlB,GACA,WAAAA,GAEA,SAAAylB,EAAAzlB,GACA,WAAAA,KAAA,OAEA,SAAA0lB,EAAA1lB,GACA,WAAAA,KAAA,MAAAA,GAAA,OAAAA,GAAA,QAEA,SAAA2lB,EAAA3lB,GACA,OAAA4kB,EAAA5kB,EAAA,MAEA,SAAA4lB,EAAA5lB,GACA,OAAA4kB,EAAA5kB,EAAA,MAGA,SAAAsS,EAAArJ,EAAAtmD,EAAA4vD,GACA/R,EAAAyI,EAAAib,GAAAvhE,GAAyBV,IAAA,WAAmB,OAAAsI,KAAAgoD,MAG5C,SAAAtwD,EAAA4jE,EAAAN,EAAAj+D,EAAAw+D,GACA,IACAC,EAAA1X,GADA/mD,GAEA,GAAAy+D,EAAAR,EAAAM,EAAAnB,GAAA,MAAAlV,EAAA2U,GACA,IAAAhkB,EAAA0lB,EAAApB,GAAAl/C,GACA1c,EAAAk9D,EAAAF,EAAAlB,GACAqB,EAAA7lB,EAAA/3C,MAAAS,IAAA08D,GACA,OAAAO,EAAAE,IAAArS,UAEA,SAAAzlD,EAAA23D,EAAAN,EAAAj+D,EAAA2+D,EAAA5jE,EAAAyjE,GACA,IACAC,EAAA1X,GADA/mD,GAEA,GAAAy+D,EAAAR,EAAAM,EAAAnB,GAAA,MAAAlV,EAAA2U,GAIA,IAHA,IAAAhkB,EAAA0lB,EAAApB,GAAAl/C,GACA1c,EAAAk9D,EAAAF,EAAAlB,GACAqB,EAAAC,GAAA5jE,GACAjB,EAAA,EAAiBA,EAAAmkE,EAAWnkE,IAAA++C,EAAAt3C,EAAAzH,GAAA4kE,EAAAF,EAAA1kE,EAAAmkE,EAAAnkE,EAAA,GAG5B,GAAA2sD,EAAAoH,IAgFC,CACD,IAAAxH,EAAA,WACAgC,EAAA,OACGhC,EAAA,WACH,IAAAgC,GAAA,MACGhC,EAAA,WAIH,OAHA,IAAAgC,EACA,IAAAA,EAAA,KACA,IAAAA,EAAA0V,KApOA,eAqOA1V,EAAAhuD,OACG,CAMH,IADA,IACAgB,EADAujE,GAJAvW,EAAA,SAAA5oD,GAEA,OADAknD,EAAA1jD,KAAAolD,GACA,IAAA0U,EAAAhW,EAAAtnD,MAEAm9D,GAAAG,EAAAH,GACAh6D,EAAAukD,EAAA4V,GAAA1mD,EAAA,EAAiDzT,EAAAnD,OAAA4W,IACjDhb,EAAAuH,EAAAyT,QAAAgyC,GAAArsD,EAAAqsD,EAAAhtD,EAAA0hE,EAAA1hE,IAEAmrD,IAAAoY,EAAAt5C,YAAA+iC,GAGA,IAAAkW,EAAA,IAAAjW,EAAA,IAAAD,EAAA,IACAwW,EAAAvW,EAAAsU,GAAAkC,QACAP,EAAAO,QAAA,cACAP,EAAAO,QAAA,eACAP,EAAAQ,QAAA,IAAAR,EAAAQ,QAAA,IAAAlY,EAAAyB,EAAAsU,IACAkC,QAAA,SAAApS,EAAA3xD,GACA8jE,EAAA5kE,KAAAgJ,KAAAypD,EAAA3xD,GAAA,SAEAikE,SAAA,SAAAtS,EAAA3xD,GACA8jE,EAAA5kE,KAAAgJ,KAAAypD,EAAA3xD,GAAA,WAEG,QAhHHstD,EAAA,SAAA5oD,GACAknD,EAAA1jD,KAAAolD,EA9IA,eA+IA,IAAA8F,EAAApH,EAAAtnD,GACAwD,KAAAgb,GAAA4pC,EAAA5tD,KAAA,IAAAwH,MAAA0sD,GAAA,GACAlrD,KAAAm6D,GAAAjP,GAGA7F,EAAA,SAAApD,EAAAwH,EAAAyB,GACAxH,EAAA1jD,KAAAqlD,EApJA,YAqJA3B,EAAAzB,EAAAmD,EArJA,YAsJA,IAAA4W,EAAA/Z,EAAAkY,GACAxS,EAAAtR,EAAAoT,GACA,GAAA9B,EAAA,GAAAA,EAAAqU,EAAA,MAAA/W,EAAA,iBAEA,GAAA0C,GADAuD,OAAA9wD,IAAA8wD,EAAA8Q,EAAArU,EAAA9D,EAAAqH,IACA8Q,EAAA,MAAA/W,EAxJA,iBAyJAjlD,KAAAk6D,GAAAjY,EACAjiD,KAAAo6D,GAAAzS,EACA3nD,KAAAm6D,GAAAjP,GAGAsE,IACAzH,EAAA3C,EAhJA,aAgJA,MACA2C,EAAA1C,EAlJA,SAkJA,MACA0C,EAAA1C,EAlJA,aAkJA,MACA0C,EAAA1C,EAlJA,aAkJA,OAGAzB,EAAAyB,EAAAsU,IACAmC,QAAA,SAAArS,GACA,OAAA/xD,EAAAsI,KAAA,EAAAypD,GAAA,YAEAwS,SAAA,SAAAxS,GACA,OAAA/xD,EAAAsI,KAAA,EAAAypD,GAAA,IAEAyS,SAAA,SAAAzS,GACA,IAAAuR,EAAAtjE,EAAAsI,KAAA,EAAAypD,EAAAvrD,UAAA,IACA,OAAA88D,EAAA,MAAAA,EAAA,aAEAmB,UAAA,SAAA1S,GACA,IAAAuR,EAAAtjE,EAAAsI,KAAA,EAAAypD,EAAAvrD,UAAA,IACA,OAAA88D,EAAA,MAAAA,EAAA,IAEAoB,SAAA,SAAA3S,GACA,OAAAsR,EAAArjE,EAAAsI,KAAA,EAAAypD,EAAAvrD,UAAA,MAEAm+D,UAAA,SAAA5S,GACA,OAAAsR,EAAArjE,EAAAsI,KAAA,EAAAypD,EAAAvrD,UAAA,UAEAo+D,WAAA,SAAA7S,GACA,OAAAmR,EAAAljE,EAAAsI,KAAA,EAAAypD,EAAAvrD,UAAA,WAEAq+D,WAAA,SAAA9S,GACA,OAAAmR,EAAAljE,EAAAsI,KAAA,EAAAypD,EAAAvrD,UAAA,WAEA29D,QAAA,SAAApS,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAAwR,EAAAnjE,IAEAikE,SAAA,SAAAtS,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAAwR,EAAAnjE,IAEA0kE,SAAA,SAAA/S,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAAyR,EAAApjE,EAAAoG,UAAA,KAEAu+D,UAAA,SAAAhT,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAAyR,EAAApjE,EAAAoG,UAAA,KAEAw+D,SAAA,SAAAjT,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAA0R,EAAArjE,EAAAoG,UAAA,KAEAy+D,UAAA,SAAAlT,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAA0R,EAAArjE,EAAAoG,UAAA,KAEA0+D,WAAA,SAAAnT,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAA4R,EAAAvjE,EAAAoG,UAAA,KAEA2+D,WAAA,SAAApT,EAAA3xD,GACA6L,EAAA3D,KAAA,EAAAypD,EAAA2R,EAAAtjE,EAAAoG,UAAA,OAsCA+xD,EAAA7K,EA/PA,eAgQA6K,EAAA5K,EA/PA,YAgQAtsD,EAAAssD,EAAAsU,GAAAnW,EAAA2D,MAAA,GACAxwD,EAAA,YAAAyuD,EACAzuD,EAAA,SAAA0uD,mBClRA,IAAAhP,EAAA5/C,EAAA,IACAotD,EAAAptD,EAAA,GACAG,EAAAD,QAAA,SAAA8+C,GACA,QAAAr7C,IAAAq7C,EAAA,SACA,IAAArlB,EAAAimB,EAAAZ,GACAj5C,EAAAqnD,EAAAzzB,GACA,GAAAA,IAAA5zB,EAAA,MAAAyoD,WAAA,iBACA,OAAAzoD,oBCRA,IAAAoH,EAAAnN,EAAA,IACAi1D,EAAAj1D,EAAA,IACAqvD,EAAArvD,EAAA,GAAAA,EAAA,GACAi2D,EAAAj2D,EAAA,GAAAA,CAAA,YAEAG,EAAAD,QAAA,SAAA4B,EAAAukE,GACA,IAGA1kE,EAHA+9C,EAAAuV,EAAAnzD,GACA1B,EAAA,EACA2Q,KAEA,IAAApP,KAAA+9C,EAAA/9C,GAAAs0D,GAAA9oD,EAAAuyC,EAAA/9C,IAAAoP,EAAAlD,KAAAlM,GAEA,KAAA0kE,EAAAtgE,OAAA3F,GAAA+M,EAAAuyC,EAAA/9C,EAAA0kE,EAAAjmE,SACAivD,EAAAt+C,EAAApP,IAAAoP,EAAAlD,KAAAlM,IAEA,OAAAoP,oBCfA,IAAAyhB,EAAAxyB,EAAA,GAAAwyB,SACAryB,EAAAD,QAAAsyB,KAAAmsB,iCCAA,IAAAyf,EAAAp+D,EAAA,IACAG,EAAAD,QAAA6H,MAAAc,SAAA,SAAA8vB,GACA,eAAAylC,EAAAzlC,mBCHAx4B,EAAAD,QAAA,SAAAsnD,EAAAnmD,GACA,OAAUA,QAAAmmD,yCCAV,IAAAsF,EAAA9sD,EAAA,IACAyC,EAAAzC,EAAA,GACAuC,EAAAvC,EAAA,IACAsC,EAAAtC,EAAA,IACAguD,EAAAhuD,EAAA,IACAsmE,EAAAtmE,EAAA,KACAw5D,EAAAx5D,EAAA,IACA+nD,EAAA/nD,EAAA,IACAkwD,EAAAlwD,EAAA,EAAAA,CAAA,YACAumE,OAAAr9D,MAAA,WAAAA,QAKAs9D,EAAA,WAA8B,OAAAj9D,MAE9BpJ,EAAAD,QAAA,SAAA8zD,EAAAJ,EAAAkC,EAAA57B,EAAAusC,EAAAC,EAAAxS,GACAoS,EAAAxQ,EAAAlC,EAAA15B,GACA,IAeAnmB,EAAApS,EAAAglE,EAfAC,EAAA,SAAA7H,GACA,IAAAwH,GAAAxH,KAAA7M,EAAA,OAAAA,EAAA6M,GACA,OAAAA,GACA,IAVA,OAWA,IAVA,SAUA,kBAA6C,WAAAjJ,EAAAvsD,KAAAw1D,IACxC,kBAA4B,WAAAjJ,EAAAvsD,KAAAw1D,KAEjC5O,EAAAyD,EAAA,YACAiT,EAdA,UAcAJ,EACAK,GAAA,EACA5U,EAAA8B,EAAAhyD,UACA+kE,EAAA7U,EAAAhC,IAAAgC,EAnBA,eAmBAuU,GAAAvU,EAAAuU,GACAO,EAAAD,GAAAH,EAAAH,GACAQ,EAAAR,EAAAI,EAAAD,EAAA,WAAAI,OAAArjE,EACAujE,EAAA,SAAAtT,GAAA1B,EAAA5M,SAAAyhB,EAwBA,GArBAG,IACAP,EAAA5e,EAAAmf,EAAA3mE,KAAA,IAAAyzD,OACAlzD,OAAAkB,WAAA2kE,EAAAzsC,OAEAs/B,EAAAmN,EAAAxW,GAAA,GAEArD,GAAA,mBAAA6Z,EAAAzW,IAAA5tD,EAAAqkE,EAAAzW,EAAAsW,IAIAK,GAAAE,GAjCA,WAiCAA,EAAApmE,OACAmmE,GAAA,EACAE,EAAA,WAAkC,OAAAD,EAAAxmE,KAAAgJ,QAGlCujD,IAAAoH,IAAAqS,IAAAO,GAAA5U,EAAAhC,IACA5tD,EAAA4vD,EAAAhC,EAAA8W,GAGAhZ,EAAA4F,GAAAoT,EACAhZ,EAAAmC,GAAAqW,EACAC,EAMA,GALA1yD,GACAwxC,OAAAshB,EAAAG,EAAAJ,EA9CA,UA+CA19D,KAAAw9D,EAAAM,EAAAJ,EAhDA,QAiDAthB,QAAA2hB,GAEA/S,EAAA,IAAAvyD,KAAAoS,EACApS,KAAAuwD,GAAA3vD,EAAA2vD,EAAAvwD,EAAAoS,EAAApS,SACKc,IAAAa,EAAAb,EAAAO,GAAAujE,GAAAO,GAAAlT,EAAA7/C,GAEL,OAAAA,iCCjEA,IAAA5L,EAAAnI,EAAA,IACAstD,EAAAttD,EAAA,IACAotD,EAAAptD,EAAA,GAEAG,EAAAD,WAAAiyD,YAAA,SAAA1uD,EAAAoE,GACA,IAAA63C,EAAAv3C,EAAAoB,MACAsH,EAAAu8C,EAAA1N,EAAA35C,QACAkC,EAAAqlD,EAAA7pD,EAAAoN,GACAmC,EAAAs6C,EAAAzlD,EAAAgJ,GACAivB,EAAAr4B,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,EACAwjE,EAAAjiE,KAAA26C,UAAAl8C,IAAAm8B,EAAAjvB,EAAAy8C,EAAAxtB,EAAAjvB,IAAAmC,EAAAnC,EAAA5I,GACAm/D,EAAA,EAMA,IALAp0D,EAAA/K,KAAA+K,EAAAm0D,IACAC,GAAA,EACAp0D,GAAAm0D,EAAA,EACAl/D,GAAAk/D,EAAA,GAEAA,KAAA,GACAn0D,KAAA0sC,IAAAz3C,GAAAy3C,EAAA1sC,UACA0sC,EAAAz3C,GACAA,GAAAm/D,EACAp0D,GAAAo0D,EACG,OAAA1nB,iCCvBH,IAAAF,EAAAx/C,EAAA,GAAAy/C,EACA/9C,EAAA1B,EAAA,IACAmtD,EAAAntD,EAAA,IACAwC,EAAAxC,EAAA,IACAitD,EAAAjtD,EAAA,IACAu5D,EAAAv5D,EAAA,IACAqnE,EAAArnE,EAAA,IACA0xD,EAAA1xD,EAAA,IACAkuD,EAAAluD,EAAA,IACA+4D,EAAA/4D,EAAA,IACA4nD,EAAA5nD,EAAA,IAAA4nD,QACAuJ,EAAAnxD,EAAA,IACAsnE,EAAAvO,EAAA,YAEAwO,EAAA,SAAA1a,EAAAlrD,GAEA,IACA6lE,EADAlhE,EAAAshD,EAAAjmD,GAEA,SAAA2E,EAAA,OAAAumD,EAAA1oC,GAAA7d,GAEA,IAAAkhE,EAAA3a,EAAAxoC,GAAuBmjD,EAAOA,IAAA3lE,EAC9B,GAAA2lE,EAAAriB,GAAAxjD,EAAA,OAAA6lE,GAIArnE,EAAAD,SACAk6D,eAAA,SAAA1G,EAAAE,EAAA2E,EAAAqB,GACA,IAAA3R,EAAAyL,EAAA,SAAA7G,EAAAyM,GACArM,EAAAJ,EAAA5E,EAAA2L,EAAA,MACA/G,EAAA5oC,GAAA2vC,EACA/G,EAAA1oC,GAAAziB,EAAA,MACAmrD,EAAAxoC,QAAA1gB,EACAkpD,EAAA7oC,QAAArgB,EACAkpD,EAAAya,GAAA,OACA3jE,GAAA21D,GAAAC,EAAAD,EAAAf,EAAA1L,EAAA+M,GAAA/M,KAsDA,OApDAM,EAAAlF,EAAAjmD,WAGAqL,MAAA,WACA,QAAAw/C,EAAAsE,EAAA5nD,KAAAqqD,GAAAllD,EAAAm+C,EAAA1oC,GAAAqjD,EAAA3a,EAAAxoC,GAA8EmjD,EAAOA,IAAA3lE,EACrF2lE,EAAAtmE,GAAA,EACAsmE,EAAAtlE,IAAAslE,EAAAtlE,EAAAslE,EAAAtlE,EAAAL,OAAA8B,UACA+K,EAAA84D,EAAApnE,GAEAysD,EAAAxoC,GAAAwoC,EAAA7oC,QAAArgB,EACAkpD,EAAAya,GAAA,GAIAv3C,OAAA,SAAApuB,GACA,IAAAkrD,EAAAsE,EAAA5nD,KAAAqqD,GACA4T,EAAAD,EAAA1a,EAAAlrD,GACA,GAAA6lE,EAAA,CACA,IAAAttC,EAAAstC,EAAA3lE,EACAu1B,EAAAowC,EAAAtlE,SACA2qD,EAAA1oC,GAAAqjD,EAAApnE,GACAonE,EAAAtmE,GAAA,EACAk2B,MAAAv1B,EAAAq4B,GACAA,MAAAh4B,EAAAk1B,GACAy1B,EAAAxoC,IAAAmjD,IAAA3a,EAAAxoC,GAAA6V,GACA2yB,EAAA7oC,IAAAwjD,IAAA3a,EAAA7oC,GAAAoT,GACAy1B,EAAAya,KACS,QAAAE,GAIT/2D,QAAA,SAAA2hD,GACAjB,EAAA5nD,KAAAqqD,GAGA,IAFA,IACA4T,EADA/nB,EAAAj9C,EAAA4vD,EAAA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,EAAA,GAEA6jE,MAAA3lE,EAAA0H,KAAA8a,IAGA,IAFAo7B,EAAA+nB,EAAApjE,EAAAojE,EAAAriB,EAAA57C,MAEAi+D,KAAAtmE,GAAAsmE,IAAAtlE,GAKAiL,IAAA,SAAAxL,GACA,QAAA4lE,EAAApW,EAAA5nD,KAAAqqD,GAAAjyD,MAGAo3D,GAAAvZ,EAAAyI,EAAAjmD,UAAA,QACAf,IAAA,WACA,OAAAkwD,EAAA5nD,KAAAqqD,GAAA0T,MAGArf,GAEAn9C,IAAA,SAAA+hD,EAAAlrD,EAAAN,GACA,IACA+1B,EAAA9wB,EADAkhE,EAAAD,EAAA1a,EAAAlrD,GAoBK,OAjBL6lE,EACAA,EAAApjE,EAAA/C,GAGAwrD,EAAA7oC,GAAAwjD,GACApnE,EAAAkG,EAAAshD,EAAAjmD,GAAA,GACAwjD,EAAAxjD,EACAyC,EAAA/C,EACAa,EAAAk1B,EAAAy1B,EAAA7oC,GACAniB,OAAA8B,EACAzC,GAAA,GAEA2rD,EAAAxoC,KAAAwoC,EAAAxoC,GAAAmjD,GACApwC,MAAAv1B,EAAA2lE,GACA3a,EAAAya,KAEA,MAAAhhE,IAAAumD,EAAA1oC,GAAA7d,GAAAkhE,IACK3a,GAEL0a,WACAlN,UAAA,SAAApS,EAAA2L,EAAA2E,GAGA8O,EAAApf,EAAA2L,EAAA,SAAAkL,EAAAC,GACAx1D,KAAA0a,GAAAktC,EAAA2N,EAAAlL,GACArqD,KAAA+a,GAAAy6C,EACAx1D,KAAAya,QAAArgB,GACK,WAKL,IAJA,IACAo7D,EADAx1D,KACA+a,GACAkjD,EAFAj+D,KAEAya,GAEAwjD,KAAAtmE,GAAAsmE,IAAAtlE,EAEA,OANAqH,KAMA0a,KANA1a,KAMAya,GAAAwjD,MAAA3lE,EANA0H,KAMA0a,GAAAI,IAMAqtC,EAAA,UAAAqN,EAAAyI,EAAAriB,EACA,UAAA4Z,EAAAyI,EAAApjE,GACAojE,EAAAriB,EAAAqiB,EAAApjE,KAdAmF,KAQA0a,QAAAtgB,EACA+tD,EAAA,KAMK6G,EAAA,oBAAAA,GAAA,GAGLrK,EAAA0F,sBC5IA,IAAAvU,EAAAr/C,EAAA,GACAG,EAAAD,QAAA,SAAA4oD,EAAAniD,EAAAtF,EAAAikD,GACA,IACA,OAAAA,EAAA3+C,EAAA04C,EAAAh+C,GAAA,GAAAA,EAAA,IAAAsF,EAAAtF,GAEG,MAAA2H,GACH,IAAAlB,EAAAghD,EAAA,OAEA,WADAnlD,IAAAmE,GAAAu3C,EAAAv3C,EAAAvH,KAAAuoD,IACA9/C,kCCPA,IAAAy+D,EAAAznE,EAAA,IACA0nE,EAAA1nE,EAAA,IACAg1D,EAAAh1D,EAAA,IACAmI,EAAAnI,EAAA,IACAysD,EAAAzsD,EAAA,IACA2nE,EAAA7mE,OAAA8mE,OAGAznE,EAAAD,SAAAynE,GAAA3nE,EAAA,EAAAA,CAAA,WACA,IAAAmoD,KACA3kD,KAEAJ,EAAAjC,SACAynD,EAAA,uBAGA,OAFAT,EAAA/kD,GAAA,EACAwlD,EAAA9iD,MAAA,IAAA2K,QAAA,SAAA00C,GAAoC3hD,EAAA2hD,OACjB,GAAnBwiB,KAAmBxf,GAAA/kD,IAAAtC,OAAAoI,KAAAy+D,KAAsCnkE,IAAAiyB,KAAA,KAAAmzB,IACxD,SAAAnlD,EAAAd,GAMD,IALA,IAAAulD,EAAA//C,EAAA1E,GACAkuD,EAAAlqD,UAAA1B,OACAO,EAAA,EACAuhE,EAAAH,EAAAjoB,EACAqoB,EAAA9S,EAAAvV,EACAkS,EAAArrD,GAMA,IALA,IAIA3E,EAJAyB,EAAAqpD,EAAAhlD,UAAAnB,MACA4C,EAAA2+D,EAAAJ,EAAArkE,GAAAsQ,OAAAm0D,EAAAzkE,IAAAqkE,EAAArkE,GACA2C,EAAAmD,EAAAnD,OACA4W,EAAA,EAEA5W,EAAA4W,GAAAmrD,EAAAvnE,KAAA6C,EAAAzB,EAAAuH,EAAAyT,QAAAurC,EAAAvmD,GAAAyB,EAAAzB,IACG,OAAAumD,GACFyf,gCChCD,IAAAxa,EAAAntD,EAAA,IACA6nD,EAAA7nD,EAAA,IAAA6nD,QACAxI,EAAAr/C,EAAA,GACAwE,EAAAxE,EAAA,GACAitD,EAAAjtD,EAAA,IACAu5D,EAAAv5D,EAAA,IACA4tD,EAAA5tD,EAAA,IACA+nE,EAAA/nE,EAAA,IACAmxD,EAAAnxD,EAAA,IACAkvD,EAAAtB,EAAA,GACAuB,EAAAvB,EAAA,GACAngD,EAAA,EAGAu6D,EAAA,SAAAnb,GACA,OAAAA,EAAA7oC,KAAA6oC,EAAA7oC,GAAA,IAAAikD,IAEAA,EAAA,WACA1+D,KAAA/B,MAEA0gE,EAAA,SAAA/oB,EAAAx9C,GACA,OAAAutD,EAAA/P,EAAA33C,EAAA,SAAAw3C,GACA,OAAAA,EAAA,KAAAr9C,KAGAsmE,EAAAjmE,WACAf,IAAA,SAAAU,GACA,IAAA6lE,EAAAU,EAAA3+D,KAAA5H,GACA,GAAA6lE,EAAA,OAAAA,EAAA,IAEAr6D,IAAA,SAAAxL,GACA,QAAAumE,EAAA3+D,KAAA5H,IAEAuL,IAAA,SAAAvL,EAAAN,GACA,IAAAmmE,EAAAU,EAAA3+D,KAAA5H,GACA6lE,IAAA,GAAAnmE,EACAkI,KAAA/B,EAAAqG,MAAAlM,EAAAN,KAEA0uB,OAAA,SAAApuB,GACA,IAAA2E,EAAA6oD,EAAA5lD,KAAA/B,EAAA,SAAAw3C,GACA,OAAAA,EAAA,KAAAr9C,IAGA,OADA2E,GAAAiD,KAAA/B,EAAAhB,OAAAF,EAAA,MACAA,IAIAnG,EAAAD,SACAk6D,eAAA,SAAA1G,EAAAE,EAAA2E,EAAAqB,GACA,IAAA3R,EAAAyL,EAAA,SAAA7G,EAAAyM,GACArM,EAAAJ,EAAA5E,EAAA2L,EAAA,MACA/G,EAAA5oC,GAAA2vC,EACA/G,EAAA1oC,GAAA1W,IACAo/C,EAAA7oC,QAAArgB,OACAA,GAAA21D,GAAAC,EAAAD,EAAAf,EAAA1L,EAAA+M,GAAA/M,KAoBA,OAlBAM,EAAAlF,EAAAjmD,WAGA+tB,OAAA,SAAApuB,GACA,IAAA6C,EAAA7C,GAAA,SACA,IAAA+M,EAAAm5C,EAAAlmD,GACA,WAAA+M,EAAAs5D,EAAA7W,EAAA5nD,KAAAqqD,IAAA,OAAAjyD,GACA+M,GAAAq5D,EAAAr5D,EAAAnF,KAAA4a,YAAAzV,EAAAnF,KAAA4a,KAIAhX,IAAA,SAAAxL,GACA,IAAA6C,EAAA7C,GAAA,SACA,IAAA+M,EAAAm5C,EAAAlmD,GACA,WAAA+M,EAAAs5D,EAAA7W,EAAA5nD,KAAAqqD,IAAAzmD,IAAAxL,GACA+M,GAAAq5D,EAAAr5D,EAAAnF,KAAA4a,OAGA8jC,GAEAn9C,IAAA,SAAA+hD,EAAAlrD,EAAAN,GACA,IAAAqN,EAAAm5C,EAAAxI,EAAA19C,IAAA,GAGA,OAFA,IAAA+M,EAAAs5D,EAAAnb,GAAA3/C,IAAAvL,EAAAN,GACAqN,EAAAm+C,EAAA1oC,IAAA9iB,EACAwrD,GAEAsb,QAAAH,kBClFA7nE,EAAAD,QAAA,SAAAyG,EAAAiK,EAAAi8C,GACA,IAAAub,OAAAzkE,IAAAkpD,EACA,OAAAj8C,EAAA7K,QACA,cAAAqiE,EAAAzhE,IACAA,EAAApG,KAAAssD,GACA,cAAAub,EAAAzhE,EAAAiK,EAAA,IACAjK,EAAApG,KAAAssD,EAAAj8C,EAAA,IACA,cAAAw3D,EAAAzhE,EAAAiK,EAAA,GAAAA,EAAA,IACAjK,EAAApG,KAAAssD,EAAAj8C,EAAA,GAAAA,EAAA,IACA,cAAAw3D,EAAAzhE,EAAAiK,EAAA,GAAAA,EAAA,GAAAA,EAAA,IACAjK,EAAApG,KAAAssD,EAAAj8C,EAAA,GAAAA,EAAA,GAAAA,EAAA,IACA,cAAAw3D,EAAAzhE,EAAAiK,EAAA,GAAAA,EAAA,GAAAA,EAAA,GAAAA,EAAA,IACAjK,EAAApG,KAAAssD,EAAAj8C,EAAA,GAAAA,EAAA,GAAAA,EAAA,GAAAA,EAAA,IACG,OAAAjK,EAAAe,MAAAmlD,EAAAj8C,qBCbH,IAAA68C,EAAAztD,EAAA,IACA0nE,EAAA1nE,EAAA,IACAq/C,EAAAr/C,EAAA,GACA+M,EAAA/M,EAAA,GAAA+M,QACA5M,EAAAD,QAAA6M,KAAAC,SAAA,SAAAgyC,GACA,IAAA91C,EAAAukD,EAAAhO,EAAAJ,EAAAL,IACA6oB,EAAAH,EAAAjoB,EACA,OAAAooB,EAAA3+D,EAAAwK,OAAAm0D,EAAA7oB,IAAA91C,iCCNA,IAAA0jD,EAAA5sD,EAAA,IAaAG,EAAAD,QAAAu/C,EAAA,SAAAwI,GACA,WAZA,SAAAA,GACA,IAAA9vC,EAAAqQ,EACAjf,KAAAm5D,QAAA,IAAAza,EAAA,SAAAogB,EAAAC,GACA,QAAA3kE,IAAAwU,QAAAxU,IAAA6kB,EAAA,MAAA02B,UAAA,2BACA/mC,EAAAkwD,EACA7/C,EAAA8/C,IAEA/+D,KAAA4O,QAAAy0C,EAAAz0C,GACA5O,KAAAif,OAAAokC,EAAApkC,GAIA,CAAAy/B,qBChBA/nD,EAAAu/C,EAAAz/C,EAAA,oBCCA,IAAAi1D,EAAAj1D,EAAA,IACAytD,EAAAztD,EAAA,IAAAy/C,EACA96C,KAAiBA,SAEjB4jE,EAAA,iBAAAl9D,gBAAAvK,OAAAuQ,oBACAvQ,OAAAuQ,oBAAAhG,WAUAlL,EAAAD,QAAAu/C,EAAA,SAAAT,GACA,OAAAupB,GAAA,mBAAA5jE,EAAApE,KAAAy+C,GATA,SAAAA,GACA,IACA,OAAAyO,EAAAzO,GACG,MAAAh2C,GACH,OAAAu/D,EAAAnhE,SAKAohE,CAAAxpB,GAAAyO,EAAAwH,EAAAjW,mCChBA,IAAAY,EAAA5/C,EAAA,IACA0sD,EAAA1sD,EAAA,IAEAG,EAAAD,QAAA,SAAAinE,GACA,IAAAzhE,EAAAT,OAAAynD,EAAAnjD,OACAnB,EAAA,GACAvG,EAAA+9C,EAAAunB,GACA,GAAAtlE,EAAA,GAAAA,GAAAuhE,IAAA,MAAA5U,WAAA,2BACA,KAAQ3sD,EAAA,GAAMA,KAAA,KAAA6D,MAAA,EAAA7D,IAAAuG,GAAA1C,GACd,OAAA0C,oBCTA,IAAA5D,EAAAxE,EAAA,GACAo+D,EAAAp+D,EAAA,IACA+/D,EAAA//D,EAAA,EAAAA,CAAA,SACAG,EAAAD,QAAA,SAAA8+C,GACA,IAAAn6C,EACA,OAAAL,EAAAw6C,UAAAr7C,KAAAkB,EAAAm6C,EAAA+gB,MAAAl7D,EAAA,UAAAu5D,EAAApf,sBCLA,IAAAx6C,EAAAxE,EAAA,GACAmF,EAAAD,KAAAC,MACAhF,EAAAD,QAAA,SAAA8+C,GACA,OAAAx6C,EAAAw6C,IAAA55C,SAAA45C,IAAA75C,EAAA65C,uBCHA7+C,EAAAD,QAAAgF,KAAAujE,OAAA,SAAAnoB,GACA,OAAAA,OAAA,MAAAA,EAAA,KAAAA,MAAA,EAAAp7C,KAAA0yD,IAAA,EAAAtX,qBCFA,IAAAmnB,EAAAznE,EAAA,IACAi1D,EAAAj1D,EAAA,IACA8nE,EAAA9nE,EAAA,IAAAy/C,EACAt/C,EAAAD,QAAA,SAAAwoE,GACA,gBAAA1pB,GAOA,IANA,IAKAr9C,EALA+9C,EAAAuV,EAAAjW,GACA91C,EAAAu+D,EAAA/nB,GACA35C,EAAAmD,EAAAnD,OACA3F,EAAA,EACA2Q,KAEAhL,EAAA3F,GAAA0nE,EAAAvnE,KAAAm/C,EAAA/9C,EAAAuH,EAAA9I,OACA2Q,EAAAlD,KAAA66D,GAAA/mE,EAAA+9C,EAAA/9C,IAAA+9C,EAAA/9C,IACK,OAAAoP,qBCZL,IAAAq8C,EAAAptD,EAAA,GACA2oE,EAAA3oE,EAAA,KACA0sD,EAAA1sD,EAAA,IAEAG,EAAAD,QAAA,SAAA2sD,EAAA+b,EAAAC,EAAA79B,GACA,IAAA5nC,EAAA6B,OAAAynD,EAAAG,IACAic,EAAA1lE,EAAA2C,OACAgjE,OAAAplE,IAAAklE,EAAA,IAAA5jE,OAAA4jE,GACAG,EAAA5b,EAAAwb,GACA,GAAAI,GAAAF,GAAA,IAAAC,EAAA,OAAA3lE,EACA,IAAA6lE,EAAAD,EAAAF,EACAI,EAAAP,EAAApoE,KAAAwoE,EAAA7jE,KAAAk7C,KAAA6oB,EAAAF,EAAAhjE,SAEA,OADAmjE,EAAAnjE,OAAAkjE,IAAAC,IAAA9hE,MAAA,EAAA6hE,IACAj+B,EAAAk+B,EAAA9lE,IAAA8lE,kBC6CA,SAAAC,EAAAlhE,EAAA+K,GACA,IAAAwS,GACA7kB,KAAAsH,EAAAtH,KACAke,KAAA5W,EAAA4W,KACAzE,KAAAnS,EAAAmS,KACAkY,MAAArqB,EAAAqqB,MACAzY,OAAA5R,EAAA4R,OACAuvD,SAAAnhE,EAAAmhE,SACA1vB,KAAAzxC,EAAAyxC,MAKA,OAHA1mC,IACAwS,EAAAxS,KAAAm2D,EAAAn2D,IAEAlS,OAAAoD,OAAAshB,GAxEAtlB,EAAAme,KAAA,SAAA8gC,EAAAkqB,EAAAh1D,GACA,IAAAi1D,GAAAj1D,OAAiCi1D,YAAA,QAEjCnqB,EAAAoqB,eAAAD,GACAE,YAAA,EACAxuB,MAAAmuB,EAAAE,EAAAI,cACAC,WACAC,cAAA,SAAA3uB,EAAA9Z,GACAie,EAAAnE,MAAAsuB,GAAAH,EAAAjoC,EAAAj5B,GAAAi5B,EAAAluB,UAKA,IACA42D,EADAC,GAAA,EAIAC,EAAA3qB,EAAAhzC,MACA,SAAA6uC,GAAsB,OAAAA,EAAAsuB,IACtB,SAAAS,GACA,IAAAX,EAAAW,EAAAX,SACAA,IAAAQ,IAGA,MAAAA,IACAC,GAAA,EACAR,EAAAx7D,KAAAk8D,IAEAH,EAAAR,KAEK/qD,MAAA,IAIL2rD,EAAAX,EAAAY,UAAA,SAAAhiE,EAAA+K,GACA62D,EACAA,GAAA,GAGAD,EAAA3hE,EAAAmhE,SACAjqB,EAAA+qB,OAAAZ,EAAA,kBAAiDrhE,KAAA+K,YAGjD,kBAEA,MAAAg3D,GACAA,IAIA,MAAAF,GACAA,IAIA3qB,EAAAgrB,iBAAAb,gDC3BA;;;;;;;;;;;;;;;;;;;;;;;;;AAJA,IAAAc,EAAA,oBAAA/+D,QAAA,oBAAAmnB,SAEA63C,GAAA,4BACAC,EAAA,EACAlqE,EAAA,EAAeA,EAAAiqE,EAAAtkE,OAAkC3F,GAAA,EACjD,GAAAgqE,GAAAz+D,UAAAC,UAAArF,QAAA8jE,EAAAjqE,KAAA,GACAkqE,EAAA,EACA,MA+BA,IAWAC,EAXAH,GAAA/+D,OAAA6M,QA3BA,SAAAvR,GACA,IAAA2C,GAAA,EACA,kBACAA,IAGAA,GAAA,EACA+B,OAAA6M,QAAAC,UAAAC,KAAA,WACA9O,GAAA,EACA3C,SAKA,SAAAA,GACA,IAAA6jE,GAAA,EACA,kBACAA,IACAA,GAAA,EACA7yD,WAAA,WACA6yD,GAAA,EACA7jE,KACO2jE,MAyBP,SAAArf,EAAAwf,GAEA,OAAAA,GAAA,yBAAA9lE,SAAApE,KAAAkqE,GAUA,SAAAC,EAAAt5B,EAAArvC,GACA,OAAAqvC,EAAAhQ,SACA,SAGA,IAAApD,EAAAkC,iBAAAkR,EAAA,MACA,OAAArvC,EAAAi8B,EAAAj8B,GAAAi8B,EAUA,SAAA2sC,EAAAv5B,GACA,eAAAA,EAAAw5B,SACAx5B,EAEAA,EAAA/f,YAAA+f,EAAAy5B,KAUA,SAAAC,EAAA15B,GAEA,IAAAA,EACA,OAAA5e,SAAA2Z,KAGA,OAAAiF,EAAAw5B,UACA,WACA,WACA,OAAAx5B,EAAA25B,cAAA5+B,KACA,gBACA,OAAAiF,EAAAjF,KAKA,IAAA6+B,EAAAN,EAAAt5B,GACA65B,EAAAD,EAAAC,SACAC,EAAAF,EAAAE,UACAC,EAAAH,EAAAG,UAEA,8BAAAr/D,KAAAm/D,EAAAE,EAAAD,GACA95B,EAGA05B,EAAAH,EAAAv5B,IAGA,IAAAg6B,EAAAhB,MAAA/+D,OAAAggE,uBAAA74C,SAAA84C,cACAC,EAAAnB,GAAA,UAAAt+D,KAAAH,UAAAC,WASA,SAAAC,EAAA8kB,GACA,YAAAA,EACAy6C,EAEA,KAAAz6C,EACA46C,EAEAH,GAAAG,EAUA,SAAAC,EAAAp6B,GACA,IAAAA,EACA,OAAA5e,SAAAmsB,gBAQA,IALA,IAAA8sB,EAAA5/D,EAAA,IAAA2mB,SAAA2Z,KAAA,KAGAu/B,EAAAt6B,EAAAs6B,aAEAA,IAAAD,GAAAr6B,EAAAu6B,oBACAD,GAAAt6B,IAAAu6B,oBAAAD,aAGA,IAAAd,EAAAc,KAAAd,SAEA,OAAAA,GAAA,SAAAA,GAAA,SAAAA,GAMA,mBAAArkE,QAAAmlE,EAAAd,WAAA,WAAAF,EAAAgB,EAAA,YACAF,EAAAE,GAGAA,EATAt6B,IAAA25B,cAAApsB,gBAAAnsB,SAAAmsB,gBA4BA,SAAAitB,EAAA17D,GACA,cAAAA,EAAAmhB,WACAu6C,EAAA17D,EAAAmhB,YAGAnhB,EAWA,SAAA27D,EAAAC,EAAAC,GAEA,KAAAD,KAAA1qC,UAAA2qC,KAAA3qC,UACA,OAAA5O,SAAAmsB,gBAIA,IAAAqtB,EAAAF,EAAAG,wBAAAF,GAAAG,KAAAC,4BACAtkE,EAAAmkE,EAAAF,EAAAC,EACAjsC,EAAAksC,EAAAD,EAAAD,EAGAM,EAAA55C,SAAA65C,cACAD,EAAAE,SAAAzkE,EAAA,GACAukE,EAAAG,OAAAzsC,EAAA,GACA,IAAA0sC,EAAAJ,EAAAI,wBAIA,GAAAV,IAAAU,GAAAT,IAAAS,GAAA3kE,EAAAkzD,SAAAj7B,GACA,OApDA,SAAAsR,GACA,IAAAw5B,EAAAx5B,EAAAw5B,SAEA,eAAAA,IAGA,SAAAA,GAAAY,EAAAp6B,EAAAq7B,qBAAAr7B,GA8CAs7B,CAAAF,GACAA,EAGAhB,EAAAgB,GAIA,IAAAG,EAAAf,EAAAE,GACA,OAAAa,EAAA9B,KACAgB,EAAAc,EAAA9B,KAAAkB,GAEAF,EAAAC,EAAAF,EAAAG,GAAAlB,MAYA,SAAA+B,EAAAx7B,GACA,IAEAy7B,EAAA,SAFAplE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,UAEA,yBACAmjE,EAAAx5B,EAAAw5B,SAEA,YAAAA,GAAA,SAAAA,EAAA,CACA,IAAAl9B,EAAA0D,EAAA25B,cAAApsB,gBAEA,OADAvN,EAAA25B,cAAA+B,kBAAAp/B,GACAm/B,GAGA,OAAAz7B,EAAAy7B,GAmCA,SAAAE,EAAA9sC,EAAA+sC,GACA,IAAAC,EAAA,MAAAD,EAAA,aACAE,EAAA,SAAAD,EAAA,iBAEA,OAAAjoE,WAAAi7B,EAAA,SAAAgtC,EAAA,aAAAjoE,WAAAi7B,EAAA,SAAAitC,EAAA,aAGA,SAAAC,EAAAH,EAAA7gC,EAAAuB,EAAA0/B,GACA,OAAAloE,KAAAyN,IAAAw5B,EAAA,SAAA6gC,GAAA7gC,EAAA,SAAA6gC,GAAAt/B,EAAA,SAAAs/B,GAAAt/B,EAAA,SAAAs/B,GAAAt/B,EAAA,SAAAs/B,GAAAnhE,EAAA,IAAA6hC,EAAA,SAAAs/B,GAAAI,EAAA,qBAAAJ,EAAA,eAAAI,EAAA,qBAAAJ,EAAA,sBAGA,SAAAK,IACA,IAAAlhC,EAAA3Z,SAAA2Z,KACAuB,EAAAlb,SAAAmsB,gBACAyuB,EAAAvhE,EAAA,KAAAq0B,iBAAAwN,GAEA,OACA4/B,OAAAH,EAAA,SAAAhhC,EAAAuB,EAAA0/B,GACApmB,MAAAmmB,EAAA,QAAAhhC,EAAAuB,EAAA0/B,IAIA,IAAAG,EAAA,SAAAzT,EAAAhE,GACA,KAAAgE,aAAAhE,GACA,UAAA5W,UAAA,sCAIAsuB,EAAA,WACA,SAAAx9D,EAAAvM,EAAAqQ,GACA,QAAA1T,EAAA,EAAmBA,EAAA0T,EAAA/N,OAAkB3F,IAAA,CACrC,IAAAqtE,EAAA35D,EAAA1T,GACAqtE,EAAAzsE,WAAAysE,EAAAzsE,aAAA,EACAysE,EAAAziE,cAAA,EACA,UAAAyiE,MAAA1iE,UAAA,GACAjK,OAAAC,eAAA0C,EAAAgqE,EAAA9rE,IAAA8rE,IAIA,gBAAA3X,EAAA4X,EAAAC,GAGA,OAFAD,GAAA19D,EAAA8lD,EAAA9zD,UAAA0rE,GACAC,GAAA39D,EAAA8lD,EAAA6X,GACA7X,GAdA,GAsBA/0D,EAAA,SAAA0D,EAAA9C,EAAAN,GAYA,OAXAM,KAAA8C,EACA3D,OAAAC,eAAA0D,EAAA9C,GACAN,QACAL,YAAA,EACAgK,cAAA,EACAD,UAAA,IAGAtG,EAAA9C,GAAAN,EAGAoD,GAGAmpE,EAAA9sE,OAAA8mE,QAAA,SAAAnkE,GACA,QAAArD,EAAA,EAAiBA,EAAAqH,UAAA1B,OAAsB3F,IAAA,CACvC,IAAAuC,EAAA8E,UAAArH,GAEA,QAAAuB,KAAAgB,EACA7B,OAAAkB,UAAAC,eAAA1B,KAAAoC,EAAAhB,KACA8B,EAAA9B,GAAAgB,EAAAhB,IAKA,OAAA8B,GAUA,SAAAoqE,EAAAC,GACA,OAAAF,KAAoBE,GACpB/0C,MAAA+0C,EAAA9iC,KAAA8iC,EAAA9mB,MACAhD,OAAA8pB,EAAA5iC,IAAA4iC,EAAAR,SAWA,SAAA3iC,EAAAyG,GACA,IAAA28B,KAKA,IACA,GAAAliE,EAAA,KACAkiE,EAAA38B,EAAAzG,wBACA,IAAAoa,EAAA6nB,EAAAx7B,EAAA,OACA48B,EAAApB,EAAAx7B,EAAA,QACA28B,EAAA7iC,KAAA6Z,EACAgpB,EAAA/iC,MAAAgjC,EACAD,EAAA/pB,QAAAe,EACAgpB,EAAAh1C,OAAAi1C,OAEAD,EAAA38B,EAAAzG,wBAEG,MAAA3hC,IAEH,IAAA+H,GACAi6B,KAAA+iC,EAAA/iC,KACAE,IAAA6iC,EAAA7iC,IACA8b,MAAA+mB,EAAAh1C,MAAAg1C,EAAA/iC,KACAsiC,OAAAS,EAAA/pB,OAAA+pB,EAAA7iC,KAIA+iC,EAAA,SAAA78B,EAAAw5B,SAAAyC,OACArmB,EAAAinB,EAAAjnB,OAAA5V,EAAA88B,aAAAn9D,EAAAgoB,MAAAhoB,EAAAi6B,KACAsiC,EAAAW,EAAAX,QAAAl8B,EAAA+8B,cAAAp9D,EAAAizC,OAAAjzC,EAAAm6B,IAEAkjC,EAAAh9B,EAAAi9B,YAAArnB,EACAsnB,EAAAl9B,EAAAhF,aAAAkhC,EAIA,GAAAc,GAAAE,EAAA,CACA,IAAAruC,EAAAyqC,EAAAt5B,GACAg9B,GAAArB,EAAA9sC,EAAA,KACAquC,GAAAvB,EAAA9sC,EAAA,KAEAlvB,EAAAi2C,OAAAonB,EACAr9D,EAAAu8D,QAAAgB,EAGA,OAAAT,EAAA98D,GAGA,SAAAw9D,EAAA5/D,EAAAU,GACA,IAAAm/D,EAAA/mE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAEA8jE,EAAA1/D,EAAA,IACA4iE,EAAA,SAAAp/D,EAAAu7D,SACA8D,EAAA/jC,EAAAh8B,GACAggE,EAAAhkC,EAAAt7B,GACAu/D,EAAA9D,EAAAn8D,GAEAsxB,EAAAyqC,EAAAr7D,GACAw/D,EAAA7pE,WAAAi7B,EAAA4uC,eAAA,IACAC,EAAA9pE,WAAAi7B,EAAA6uC,gBAAA,IAGAN,GAAA,SAAAn/D,EAAAu7D,WACA+D,EAAAzjC,IAAAhmC,KAAAyN,IAAAg8D,EAAAzjC,IAAA,GACAyjC,EAAA3jC,KAAA9lC,KAAAyN,IAAAg8D,EAAA3jC,KAAA,IAEA,IAAA8iC,EAAAD,GACA3iC,IAAAwjC,EAAAxjC,IAAAyjC,EAAAzjC,IAAA2jC,EACA7jC,KAAA0jC,EAAA1jC,KAAA2jC,EAAA3jC,KAAA8jC,EACA9nB,MAAA0nB,EAAA1nB,MACAsmB,OAAAoB,EAAApB,SASA,GAPAQ,EAAAiB,UAAA,EACAjB,EAAAkB,WAAA,GAMAzD,GAAAkD,EAAA,CACA,IAAAM,EAAA/pE,WAAAi7B,EAAA8uC,UAAA,IACAC,EAAAhqE,WAAAi7B,EAAA+uC,WAAA,IAEAlB,EAAA5iC,KAAA2jC,EAAAE,EACAjB,EAAA9pB,QAAA6qB,EAAAE,EACAjB,EAAA9iC,MAAA8jC,EAAAE,EACAlB,EAAA/0C,OAAA+1C,EAAAE,EAGAlB,EAAAiB,YACAjB,EAAAkB,aAOA,OAJAzD,IAAAiD,EAAAn/D,EAAA0rD,SAAA6T,GAAAv/D,IAAAu/D,GAAA,SAAAA,EAAAhE,YACAkD,EA1NA,SAAAC,EAAA38B,GACA,IAAA69B,EAAAxnE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAEAs9C,EAAA6nB,EAAAx7B,EAAA,OACA48B,EAAApB,EAAAx7B,EAAA,QACA89B,EAAAD,GAAA,IAKA,OAJAlB,EAAA7iC,KAAA6Z,EAAAmqB,EACAnB,EAAA/pB,QAAAe,EAAAmqB,EACAnB,EAAA/iC,MAAAgjC,EAAAkB,EACAnB,EAAAh1C,OAAAi1C,EAAAkB,EACAnB,EAgNAoB,CAAArB,EAAAz+D,IAGAy+D,EAmDA,SAAAsB,EAAAh+B,GAEA,IAAAA,MAAAi+B,eAAAxjE,IACA,OAAA2mB,SAAAmsB,gBAGA,IADA,IAAAlxB,EAAA2jB,EAAAi+B,cACA5hD,GAAA,SAAAi9C,EAAAj9C,EAAA,cACAA,IAAA4hD,cAEA,OAAA5hD,GAAA+E,SAAAmsB,gBAcA,SAAA2wB,EAAAC,EAAAC,EAAAtoB,EAAAuoB,GACA,IAAAjB,EAAA/mE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAIAioE,GAAoBxkC,IAAA,EAAAF,KAAA,GACpB0gC,EAAA8C,EAAAY,EAAAG,GAAA1D,EAAA0D,EAAAC,GAGA,gBAAAC,EACAC,EAjFA,SAAAt+B,GACA,IAAAu+B,EAAAloE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAEAimC,EAAA0D,EAAA25B,cAAApsB,gBACAixB,EAAArB,EAAAn9B,EAAA1D,GACAsZ,EAAA9hD,KAAAyN,IAAA+6B,EAAAwgC,YAAA7iE,OAAAwkE,YAAA,GACAvC,EAAApoE,KAAAyN,IAAA+6B,EAAAygC,aAAA9iE,OAAA04C,aAAA,GAEAgB,EAAA4qB,EAAA,EAAA/C,EAAAl/B,GACAsgC,EAAA2B,EAAA,EAAA/C,EAAAl/B,EAAA,QASA,OAAAmgC,GANA3iC,IAAA6Z,EAAA6qB,EAAA1kC,IAAA0kC,EAAAb,UACA/jC,KAAAgjC,EAAA4B,EAAA5kC,KAAA4kC,EAAAZ,WACAhoB,QACAsmB,WAkEAwC,CAAApE,EAAA8C,OACG,CAEH,IAAAuB,OAAA,EACA,iBAAAN,EAEA,UADAM,EAAAjF,EAAAH,EAAA6E,KACA5E,WACAmF,EAAAR,EAAAxE,cAAApsB,iBAGAoxB,EADK,WAAAN,EACLF,EAAAxE,cAAApsB,gBAEA8wB,EAGA,IAAA3B,EAAAS,EAAAwB,EAAArE,EAAA8C,GAGA,YAAAuB,EAAAnF,UAtEA,SAAAoF,EAAA5+B,GACA,IAAAw5B,EAAAx5B,EAAAw5B,SACA,eAAAA,GAAA,SAAAA,IAGA,UAAAF,EAAAt5B,EAAA,aAGA4+B,EAAArF,EAAAv5B,KA8DA4+B,CAAAtE,GAWAgE,EAAA5B,MAXA,CACA,IAAAmC,EAAA5C,IACAC,EAAA2C,EAAA3C,OACAtmB,EAAAipB,EAAAjpB,MAEA0oB,EAAAxkC,KAAA4iC,EAAA5iC,IAAA4iC,EAAAiB,UACAW,EAAA1rB,OAAAspB,EAAAQ,EAAA5iC,IACAwkC,EAAA1kC,MAAA8iC,EAAA9iC,KAAA8iC,EAAAkB,WACAU,EAAA32C,MAAAiuB,EAAA8mB,EAAA9iC,MAaA,OALA0kC,EAAA1kC,MAAAkc,EACAwoB,EAAAxkC,KAAAgc,EACAwoB,EAAA32C,OAAAmuB,EACAwoB,EAAA1rB,QAAAkD,EAEAwoB,EAmBA,SAAAQ,EAAAC,EAAAC,EAAAb,EAAAC,EAAAC,GACA,IAAAvoB,EAAAz/C,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,KAEA,QAAA0oE,EAAA5pE,QAAA,QACA,OAAA4pE,EAGA,IAAAT,EAAAJ,EAAAC,EAAAC,EAAAtoB,EAAAuoB,GAEAY,GACAnlC,KACA8b,MAAA0oB,EAAA1oB,MACAsmB,OAAA8C,EAAAllC,IAAAwkC,EAAAxkC,KAEAnS,OACAiuB,MAAA0oB,EAAA32C,MAAAq3C,EAAAr3C,MACAu0C,OAAAoC,EAAApC,QAEAtpB,QACAgD,MAAA0oB,EAAA1oB,MACAsmB,OAAAoC,EAAA1rB,OAAAosB,EAAApsB,QAEAhZ,MACAgc,MAAAopB,EAAAplC,KAAA0kC,EAAA1kC,KACAsiC,OAAAoC,EAAApC,SAIAgD,EAAAxvE,OAAAoI,KAAAmnE,GAAAzqE,IAAA,SAAAjE,GACA,OAAAisE,GACAjsE,OACK0uE,EAAA1uE,IACL4uE,KAhDA,SAAAC,GAIA,OAHAA,EAAAxpB,MACAwpB,EAAAlD,OA8CAmD,CAAAJ,EAAA1uE,QAEGyb,KAAA,SAAA5V,EAAAc,GACH,OAAAA,EAAAioE,KAAA/oE,EAAA+oE,OAGAG,EAAAJ,EAAArvD,OAAA,SAAA0vD,GACA,IAAA3pB,EAAA2pB,EAAA3pB,MACAsmB,EAAAqD,EAAArD,OACA,OAAAtmB,GAAAuoB,EAAArB,aAAAZ,GAAAiC,EAAApB,eAGAyC,EAAAF,EAAA3qE,OAAA,EAAA2qE,EAAA,GAAA/uE,IAAA2uE,EAAA,GAAA3uE,IAEAkvE,EAAAV,EAAArqE,MAAA,QAEA,OAAA8qE,GAAAC,EAAA,IAAAA,EAAA,IAaA,SAAAC,EAAA91B,EAAAu0B,EAAAC,GACA,IAAAhB,EAAA/mE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,QAGA,OAAA8mE,EAAAiB,EADAhB,EAAAY,EAAAG,GAAA1D,EAAA0D,EAAAC,GACAhB,GAUA,SAAAuC,EAAA3/B,GACA,IAAAnR,EAAAC,iBAAAkR,GACAkP,EAAAt7C,WAAAi7B,EAAA8uC,WAAA/pE,WAAAi7B,EAAA+wC,cACAjxB,EAAA/6C,WAAAi7B,EAAA+uC,YAAAhqE,WAAAi7B,EAAAgxC,aAKA,OAHAjqB,MAAA5V,EAAAi9B,YAAAtuB,EACAutB,OAAAl8B,EAAAhF,aAAAkU,GAYA,SAAA4wB,EAAAf,GACA,IAAA/1D,GAAc4wB,KAAA,QAAAjS,MAAA,OAAAirB,OAAA,MAAA9Y,IAAA,UACd,OAAAilC,EAAAppE,QAAA,kCAAAoqE,GACA,OAAA/2D,EAAA+2D,KAcA,SAAAC,EAAA7B,EAAA8B,EAAAlB,GACAA,IAAArqE,MAAA,QAGA,IAAAwrE,EAAAP,EAAAxB,GAGAgC,GACAvqB,MAAAsqB,EAAAtqB,MACAsmB,OAAAgE,EAAAhE,QAIAkE,GAAA,qBAAAjrE,QAAA4pE,GACAsB,EAAAD,EAAA,aACAE,EAAAF,EAAA,aACAG,EAAAH,EAAA,iBACAI,EAAAJ,EAAA,iBASA,OAPAD,EAAAE,GAAAJ,EAAAI,GAAAJ,EAAAM,GAAA,EAAAL,EAAAK,GAAA,EAEAJ,EAAAG,GADAvB,IAAAuB,EACAL,EAAAK,GAAAJ,EAAAM,GAEAP,EAAAH,EAAAQ,IAGAH,EAYA,SAAAhuB,EAAAn9C,EAAA44D,GAEA,OAAAj3D,MAAA/F,UAAAuhD,KACAn9C,EAAAm9C,KAAAyb,GAIA54D,EAAA6a,OAAA+9C,GAAA,GAqCA,SAAA6S,EAAAv8C,EAAA5mB,EAAAojE,GAoBA,YAnBAnuE,IAAAmuE,EAAAx8C,IAAAluB,MAAA,EA1BA,SAAAhB,EAAAqP,EAAApU,GAEA,GAAA0G,MAAA/F,UAAAuwD,UACA,OAAAnsD,EAAAmsD,UAAA,SAAA57C,GACA,OAAAA,EAAAlB,KAAApU,IAKA,IAAAgV,EAAAktC,EAAAn9C,EAAA,SAAA3B,GACA,OAAAA,EAAAgR,KAAApU,IAEA,OAAA+E,EAAAG,QAAA8P,GAcAk8C,CAAAj9B,EAAA,OAAAw8C,KAEArhE,QAAA,SAAAy+D,GACAA,EAAA,UAEAj4D,QAAA3J,KAAA,yDAEA,IAAA3G,EAAAuoE,EAAA,UAAAA,EAAAvoE,GACAuoE,EAAA6C,SAAA9mB,EAAAtkD,KAIA+H,EAAAo/D,QAAAyB,OAAA1B,EAAAn/D,EAAAo/D,QAAAyB,QACA7gE,EAAAo/D,QAAA0B,UAAA3B,EAAAn/D,EAAAo/D,QAAA0B,WAEA9gE,EAAA/H,EAAA+H,EAAAwgE,MAIAxgE,EA8DA,SAAAsjE,EAAA18C,EAAA28C,GACA,OAAA38C,EAAAkT,KAAA,SAAAgoC,GACA,IAAA7vE,EAAA6vE,EAAA7vE,KAEA,OADA6vE,EAAAuB,SACApxE,IAAAsxE,IAWA,SAAAC,EAAAnwE,GAIA,IAHA,IAAAowE,IAAA,2BACAC,EAAArwE,EAAAoF,OAAA,GAAAF,cAAAlF,EAAAqF,MAAA,GAEAhH,EAAA,EAAiBA,EAAA+xE,EAAApsE,OAAqB3F,IAAA,CACtC,IAAAiyE,EAAAF,EAAA/xE,GACAkyE,EAAAD,EAAA,GAAAA,EAAAD,EAAArwE,EACA,YAAAywB,SAAA2Z,KAAAhiB,MAAAmoD,GACA,OAAAA,EAGA,YAsCA,SAAAC,EAAAnhC,GACA,IAAA25B,EAAA35B,EAAA25B,cACA,OAAAA,IAAAyH,YAAAnnE,OAoBA,SAAAonE,EAAAjD,EAAAn7D,EAAA2mC,EAAA03B,GAEA13B,EAAA03B,cACAH,EAAA/C,GAAAljE,iBAAA,SAAA0uC,EAAA03B,aAAsE15D,SAAA,IAGtE,IAAA25D,EAAA7H,EAAA0E,GAKA,OA5BA,SAAAoD,EAAAhE,EAAAh1D,EAAAqP,EAAA4pD,GACA,IAAAC,EAAA,SAAAlE,EAAAhE,SACAnnE,EAAAqvE,EAAAlE,EAAA7D,cAAAyH,YAAA5D,EACAnrE,EAAA6I,iBAAAsN,EAAAqP,GAA4CjQ,SAAA,IAE5C85D,GACAF,EAAA9H,EAAArnE,EAAA4tB,YAAAzX,EAAAqP,EAAA4pD,GAEAA,EAAAhlE,KAAApK,GAgBAmvE,CAAAD,EAAA,SAAA33B,EAAA03B,YAAA13B,EAAA63B,eACA73B,EAAA23B,gBACA33B,EAAA+3B,eAAA,EAEA/3B,EA6CA,SAAAg4B,IACAzpE,KAAAyxC,MAAA+3B,gBACAE,qBAAA1pE,KAAA2pE,gBACA3pE,KAAAyxC,MA3BA,SAAAw0B,EAAAx0B,GAcA,OAZAu3B,EAAA/C,GAAAl5C,oBAAA,SAAA0kB,EAAA03B,aAGA13B,EAAA63B,cAAApiE,QAAA,SAAAhN,GACAA,EAAA6yB,oBAAA,SAAA0kB,EAAA03B,eAIA13B,EAAA03B,YAAA,KACA13B,EAAA63B,iBACA73B,EAAA23B,cAAA,KACA33B,EAAA+3B,eAAA,EACA/3B,EAaAm4B,CAAA5pE,KAAAimE,UAAAjmE,KAAAyxC,QAWA,SAAAo4B,EAAAvxE,GACA,WAAAA,IAAA2D,MAAAR,WAAAnD,KAAAuD,SAAAvD,GAWA,SAAAwxE,EAAAjiC,EAAAnR,GACAn/B,OAAAoI,KAAA+2B,GAAAxvB,QAAA,SAAAgF,GACA,IAAA69D,EAAA,IAEA,qDAAA/sE,QAAAkP,IAAA29D,EAAAnzC,EAAAxqB,MACA69D,EAAA,MAEAliC,EAAAjnB,MAAA1U,GAAAwqB,EAAAxqB,GAAA69D,IAyLA,SAAAC,EAAAj+C,EAAAk+C,EAAAC,GACA,IAAAC,EAAAnwB,EAAAjuB,EAAA,SAAAk7C,GAEA,OADAA,EAAA7vE,OACA6yE,IAGAG,IAAAD,GAAAp+C,EAAAkT,KAAA,SAAA0mC,GACA,OAAAA,EAAAvuE,OAAA8yE,GAAAvE,EAAA6C,SAAA7C,EAAAlD,MAAA0H,EAAA1H,QAGA,IAAA2H,EAAA,CACA,IAAAC,EAAA,IAAAJ,EAAA,IACAK,EAAA,IAAAJ,EAAA,IACAx8D,QAAA3J,KAAAumE,EAAA,4BAAAD,EAAA,4DAAAA,EAAA,KAEA,OAAAD,EAoIA,IAAAG,GAAA,kKAGAC,EAAAD,EAAA1sE,MAAA,GAYA,SAAA4sE,EAAA7D,GACA,IAAAzQ,EAAAj4D,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAEAnB,EAAAytE,EAAAxtE,QAAA4pE,GACA/pE,EAAA2tE,EAAA3sE,MAAAd,EAAA,GAAAoN,OAAAqgE,EAAA3sE,MAAA,EAAAd,IACA,OAAAo5D,EAAAt5D,EAAAusD,UAAAvsD,EAGA,IAAA6tE,GACAC,KAAA,OACAC,UAAA,YACAC,iBAAA,oBA0LA,SAAAC,EAAAnjB,EAAAqgB,EAAAF,EAAAiD,GACA,IAAAxG,GAAA,KAKAyG,GAAA,qBAAAhuE,QAAA+tE,GAIAE,EAAAtjB,EAAAprD,MAAA,WAAAF,IAAA,SAAA6uE,GACA,OAAAA,EAAA38C,SAKA48C,EAAAF,EAAAjuE,QAAAg9C,EAAAixB,EAAA,SAAAC,GACA,WAAAA,EAAA/zB,OAAA,WAGA8zB,EAAAE,KAAA,IAAAF,EAAAE,GAAAnuE,QAAA,MACA0Q,QAAA3J,KAAA,gFAKA,IAAAqnE,EAAA,cACAC,GAAA,IAAAF,GAAAF,EAAAptE,MAAA,EAAAstE,GAAAhhE,QAAA8gE,EAAAE,GAAA5uE,MAAA6uE,GAAA,MAAAH,EAAAE,GAAA5uE,MAAA6uE,GAAA,IAAAjhE,OAAA8gE,EAAAptE,MAAAstE,EAAA,MAAAF,GAqCA,OAlCAI,IAAAhvE,IAAA,SAAAivE,EAAAvuE,GAEA,IAAAqrE,GAAA,IAAArrE,GAAAiuE,KAAA,iBACAO,GAAA,EACA,OAAAD,EAGA78B,OAAA,SAAAxwC,EAAAc,GACA,WAAAd,IAAAzB,OAAA,mBAAAQ,QAAA+B,IACAd,IAAAzB,OAAA,GAAAuC,EACAwsE,GAAA,EACAttE,GACOstE,GACPttE,IAAAzB,OAAA,IAAAuC,EACAwsE,GAAA,EACAttE,GAEAA,EAAAkM,OAAApL,QAIA1C,IAAA,SAAAF,GACA,OAxGA,SAAAA,EAAAisE,EAAAJ,EAAAF,GAEA,IAAAvrE,EAAAJ,EAAA2Q,MAAA,6BACAhV,GAAAyE,EAAA,GACAwtE,EAAAxtE,EAAA,GAGA,IAAAzE,EACA,OAAAqE,EAGA,OAAA4tE,EAAA/sE,QAAA,MACA,IAAA6qC,OAAA,EACA,OAAAkiC,GACA,SACAliC,EAAAmgC,EACA,MACA,QACA,SACA,QACAngC,EAAAigC,EAIA,OADAxD,EAAAz8B,GACAugC,GAAA,IAAAtwE,EACG,UAAAiyE,GAAA,OAAAA,EAQH,OALA,OAAAA,EACApuE,KAAAyN,IAAA6f,SAAAmsB,gBAAAwvB,aAAA9iE,OAAA04C,aAAA,GAEA7+C,KAAAyN,IAAA6f,SAAAmsB,gBAAAuvB,YAAA7iE,OAAAwkE,YAAA,IAEA,IAAAxuE,EAIA,OAAAA,EAmEA0zE,CAAArvE,EAAAisE,EAAAJ,EAAAF,QAKA5gE,QAAA,SAAAokE,EAAAvuE,GACAuuE,EAAApkE,QAAA,SAAAgkE,EAAAO,GACA5B,EAAAqB,KACA3G,EAAAxnE,IAAAmuE,GAAA,MAAAI,EAAAG,EAAA,cAIAlH,EA2OA,IAkVAmH,GAKA9E,UAAA,SAMA+E,eAAA,EAMAnC,eAAA,EAOAoC,iBAAA,EAQAC,SAAA,aAUAC,SAAA,aAOA//C,WA1XAza,OAEAmxD,MAAA,IAEA+F,SAAA,EAEAprE,GA9HA,SAAA+H,GACA,IAAAyhE,EAAAzhE,EAAAyhE,UACAmE,EAAAnE,EAAArqE,MAAA,QACAwvE,EAAAnF,EAAArqE,MAAA,QAGA,GAAAwvE,EAAA,CACA,IAAAC,EAAA7mE,EAAAo/D,QACA0B,EAAA+F,EAAA/F,UACAD,EAAAgG,EAAAhG,OAEAiG,GAAA,qBAAAjvE,QAAA+tE,GACAmB,EAAAD,EAAA,aACA7D,EAAA6D,EAAA,iBAEAE,GACA7tE,MAAA9G,KAA8B00E,EAAAjG,EAAAiG,IAC9B31C,IAAA/+B,KAA4B00E,EAAAjG,EAAAiG,GAAAjG,EAAAmC,GAAApC,EAAAoC,KAG5BjjE,EAAAo/D,QAAAyB,OAAA3B,KAAqC2B,EAAAmG,EAAAJ,IAGrC,OAAA5mE,IAgJAwiD,QAEA8a,MAAA,IAEA+F,SAAA,EAEAprE,GA7RA,SAAA+H,EAAA8hE,GACA,IAAAtf,EAAAsf,EAAAtf,OACAif,EAAAzhE,EAAAyhE,UACAoF,EAAA7mE,EAAAo/D,QACAyB,EAAAgG,EAAAhG,OACAC,EAAA+F,EAAA/F,UAEA8E,EAAAnE,EAAArqE,MAAA,QAEAgoE,OAAA,EAsBA,OApBAA,EADAsF,GAAAliB,KACAA,EAAA,GAEAmjB,EAAAnjB,EAAAqe,EAAAC,EAAA8E,GAGA,SAAAA,GACA/E,EAAArkC,KAAA4iC,EAAA,GACAyB,EAAAvkC,MAAA8iC,EAAA,IACG,UAAAwG,GACH/E,EAAArkC,KAAA4iC,EAAA,GACAyB,EAAAvkC,MAAA8iC,EAAA,IACG,QAAAwG,GACH/E,EAAAvkC,MAAA8iC,EAAA,GACAyB,EAAArkC,KAAA4iC,EAAA,IACG,WAAAwG,IACH/E,EAAAvkC,MAAA8iC,EAAA,GACAyB,EAAArkC,KAAA4iC,EAAA,IAGAp/D,EAAA6gE,SACA7gE,GAkQAwiD,OAAA,GAoBAykB,iBAEA3J,MAAA,IAEA+F,SAAA,EAEAprE,GAlRA,SAAA+H,EAAA2F,GACA,IAAAo7D,EAAAp7D,EAAAo7D,mBAAAjE,EAAA98D,EAAAorD,SAAAyV,QAKA7gE,EAAAorD,SAAA0V,YAAAC,IACAA,EAAAjE,EAAAiE,IAMA,IAAAmG,EAAA1D,EAAA,aACA2D,EAAAnnE,EAAAorD,SAAAyV,OAAAplD,MACA+gB,EAAA2qC,EAAA3qC,IACAF,EAAA6qC,EAAA7qC,KACAI,EAAAyqC,EAAAD,GAEAC,EAAA3qC,IAAA,GACA2qC,EAAA7qC,KAAA,GACA6qC,EAAAD,GAAA,GAEA,IAAAlG,EAAAJ,EAAA5gE,EAAAorD,SAAAyV,OAAA7gE,EAAAorD,SAAA0V,UAAAn7D,EAAA6yC,QAAAuoB,EAAA/gE,EAAAwmE,eAIAW,EAAA3qC,MACA2qC,EAAA7qC,OACA6qC,EAAAD,GAAAxqC,EAEA/2B,EAAAq7D,aAEA,IAAA1D,EAAA33D,EAAAyhE,SACAvG,EAAA7gE,EAAAo/D,QAAAyB,OAEAvQ,GACA+W,QAAA,SAAA5F,GACA,IAAA9uE,EAAAkuE,EAAAY,GAIA,OAHAZ,EAAAY,GAAAT,EAAAS,KAAA97D,EAAA2hE,sBACA30E,EAAA6D,KAAAyN,IAAA48D,EAAAY,GAAAT,EAAAS,KAEApvE,KAA8BovE,EAAA9uE,IAE9B40E,UAAA,SAAA9F,GACA,IAAAsB,EAAA,UAAAtB,EAAA,aACA9uE,EAAAkuE,EAAAkC,GAIA,OAHAlC,EAAAY,GAAAT,EAAAS,KAAA97D,EAAA2hE,sBACA30E,EAAA6D,KAAA26C,IAAA0vB,EAAAkC,GAAA/B,EAAAS,IAAA,UAAAA,EAAAZ,EAAAvoB,MAAAuoB,EAAAjC,UAEAvsE,KAA8B0wE,EAAApwE,KAW9B,OAPA2qE,EAAAv7D,QAAA,SAAA0/D,GACA,IAAAsF,GAAA,mBAAAlvE,QAAA4pE,GAAA,sBACAZ,EAAA3B,KAAwB2B,EAAAvQ,EAAAyW,GAAAtF,MAGxBzhE,EAAAo/D,QAAAyB,SAEA7gE,GA2NAonE,UAAA,+BAOA5uB,QAAA,EAMAuoB,kBAAA,gBAYAyG,cAEAlK,MAAA,IAEA+F,SAAA,EAEAprE,GAlgBA,SAAA+H,GACA,IAAA6mE,EAAA7mE,EAAAo/D,QACAyB,EAAAgG,EAAAhG,OACAC,EAAA+F,EAAA/F,UAEAW,EAAAzhE,EAAAyhE,UAAArqE,MAAA,QACAX,EAAAD,KAAAC,MACAqwE,GAAA,qBAAAjvE,QAAA4pE,GACAsF,EAAAD,EAAA,iBACAW,EAAAX,EAAA,aACA7D,EAAA6D,EAAA,iBASA,OAPAjG,EAAAkG,GAAAtwE,EAAAqqE,EAAA2G,MACAznE,EAAAo/D,QAAAyB,OAAA4G,GAAAhxE,EAAAqqE,EAAA2G,IAAA5G,EAAAoC,IAEApC,EAAA4G,GAAAhxE,EAAAqqE,EAAAiG,MACA/mE,EAAAo/D,QAAAyB,OAAA4G,GAAAhxE,EAAAqqE,EAAAiG,KAGA/mE,IA4fA0nE,OAEApK,MAAA,IAEA+F,SAAA,EAEAprE,GA7wBA,SAAA+H,EAAA2F,GACA,IAAAgiE,EAGA,IAAA9C,EAAA7kE,EAAAorD,SAAAxkC,UAAA,wBACA,OAAA5mB,EAGA,IAAA4nE,EAAAjiE,EAAA+8B,QAGA,oBAAAklC,GAIA,KAHAA,EAAA5nE,EAAAorD,SAAAyV,OAAA98C,cAAA6jD,IAIA,OAAA5nE,OAKA,IAAAA,EAAAorD,SAAAyV,OAAAxU,SAAAub,GAEA,OADAr/D,QAAA3J,KAAA,iEACAoB,EAIA,IAAAyhE,EAAAzhE,EAAAyhE,UAAArqE,MAAA,QACAyvE,EAAA7mE,EAAAo/D,QACAyB,EAAAgG,EAAAhG,OACAC,EAAA+F,EAAA/F,UAEAgG,GAAA,qBAAAjvE,QAAA4pE,GAEAt/D,EAAA2kE,EAAA,iBACAe,EAAAf,EAAA,aACAC,EAAAc,EAAAvwE,cACAwwE,EAAAhB,EAAA,aACAW,EAAAX,EAAA,iBACAiB,EAAA1F,EAAAuF,GAAAzlE,GAQA2+D,EAAA2G,GAAAM,EAAAlH,EAAAkG,KACA/mE,EAAAo/D,QAAAyB,OAAAkG,IAAAlG,EAAAkG,IAAAjG,EAAA2G,GAAAM,IAGAjH,EAAAiG,GAAAgB,EAAAlH,EAAA4G,KACAznE,EAAAo/D,QAAAyB,OAAAkG,IAAAjG,EAAAiG,GAAAgB,EAAAlH,EAAA4G,IAEAznE,EAAAo/D,QAAAyB,OAAA1B,EAAAn/D,EAAAo/D,QAAAyB,QAGA,IAAAmH,EAAAlH,EAAAiG,GAAAjG,EAAA3+D,GAAA,EAAA4lE,EAAA,EAIAz4C,EAAA0sC,EAAAh8D,EAAAorD,SAAAyV,QACAoH,EAAA3xE,WAAAg5B,EAAA,SAAAu4C,GAAA,IACAK,EAAA5xE,WAAAg5B,EAAA,SAAAu4C,EAAA,aACAM,EAAAH,EAAAhoE,EAAAo/D,QAAAyB,OAAAkG,GAAAkB,EAAAC,EAQA,OALAC,EAAA3xE,KAAAyN,IAAAzN,KAAA26C,IAAA0vB,EAAA1+D,GAAA4lE,EAAAI,GAAA,GAEAnoE,EAAA4nE,eACA5nE,EAAAo/D,QAAAsI,OAAgDr1E,EAAhDs1E,KAAgDZ,EAAAvwE,KAAAovD,MAAAuiB,IAAA91E,EAAAs1E,EAAAG,EAAA,IAAAH,GAEhD3nE,GAusBA0iC,QAAA,aAcA0lC,MAEA9K,MAAA,IAEA+F,SAAA,EAEAprE,GAroBA,SAAA+H,EAAA2F,GAEA,GAAA29D,EAAAtjE,EAAAorD,SAAAxkC,UAAA,SACA,OAAA5mB,EAGA,GAAAA,EAAAqoE,SAAAroE,EAAAyhE,YAAAzhE,EAAAsoE,kBAEA,OAAAtoE,EAGA,IAAAghE,EAAAJ,EAAA5gE,EAAAorD,SAAAyV,OAAA7gE,EAAAorD,SAAA0V,UAAAn7D,EAAA6yC,QAAA7yC,EAAAo7D,kBAAA/gE,EAAAwmE,eAEA/E,EAAAzhE,EAAAyhE,UAAArqE,MAAA,QACAmxE,EAAA/F,EAAAf,GACAU,EAAAniE,EAAAyhE,UAAArqE,MAAA,YAEAoxE,KAEA,OAAA7iE,EAAA8iE,UACA,KAAAlD,EAAAC,KACAgD,GAAA/G,EAAA8G,GACA,MACA,KAAAhD,EAAAE,UACA+C,EAAAlD,EAAA7D,GACA,MACA,KAAA8D,EAAAG,iBACA8C,EAAAlD,EAAA7D,GAAA,GACA,MACA,QACA+G,EAAA7iE,EAAA8iE,SAkDA,OA/CAD,EAAAzmE,QAAA,SAAAihD,EAAAprD,GACA,GAAA6pE,IAAAze,GAAAwlB,EAAAnxE,SAAAO,EAAA,EACA,OAAAoI,EAGAyhE,EAAAzhE,EAAAyhE,UAAArqE,MAAA,QACAmxE,EAAA/F,EAAAf,GAEA,IAAAoB,EAAA7iE,EAAAo/D,QAAAyB,OACA6H,EAAA1oE,EAAAo/D,QAAA0B,UAGArqE,EAAAD,KAAAC,MACAkyE,EAAA,SAAAlH,GAAAhrE,EAAAosE,EAAAx4C,OAAA5zB,EAAAiyE,EAAApsC,OAAA,UAAAmlC,GAAAhrE,EAAAosE,EAAAvmC,MAAA7lC,EAAAiyE,EAAAr+C,QAAA,QAAAo3C,GAAAhrE,EAAAosE,EAAAvtB,QAAA7+C,EAAAiyE,EAAAlsC,MAAA,WAAAilC,GAAAhrE,EAAAosE,EAAArmC,KAAA/lC,EAAAiyE,EAAApzB,QAEAszB,EAAAnyE,EAAAosE,EAAAvmC,MAAA7lC,EAAAuqE,EAAA1kC,MACAusC,EAAApyE,EAAAosE,EAAAx4C,OAAA5zB,EAAAuqE,EAAA32C,OACAy+C,EAAAryE,EAAAosE,EAAArmC,KAAA/lC,EAAAuqE,EAAAxkC,KACAusC,EAAAtyE,EAAAosE,EAAAvtB,QAAA7+C,EAAAuqE,EAAA1rB,QAEA0zB,EAAA,SAAAvH,GAAAmH,GAAA,UAAAnH,GAAAoH,GAAA,QAAApH,GAAAqH,GAAA,WAAArH,GAAAsH,EAGAjC,GAAA,qBAAAjvE,QAAA4pE,GACAwH,IAAAtjE,EAAAujE,iBAAApC,GAAA,UAAA3E,GAAAyG,GAAA9B,GAAA,QAAA3E,GAAA0G,IAAA/B,GAAA,UAAA3E,GAAA2G,IAAAhC,GAAA,QAAA3E,GAAA4G,IAEAJ,GAAAK,GAAAC,KAEAjpE,EAAAqoE,SAAA,GAEAM,GAAAK,KACAvH,EAAA+G,EAAA5wE,EAAA,IAGAqxE,IACA9G,EAhJA,SAAAA,GACA,cAAAA,EACA,QACG,UAAAA,EACH,MAEAA,EA0IAgH,CAAAhH,IAGAniE,EAAAyhE,aAAAU,EAAA,IAAAA,EAAA,IAIAniE,EAAAo/D,QAAAyB,OAAA3B,KAAuCl/D,EAAAo/D,QAAAyB,OAAA6B,EAAA1iE,EAAAorD,SAAAyV,OAAA7gE,EAAAo/D,QAAA0B,UAAA9gE,EAAAyhE,YAEvCzhE,EAAAmjE,EAAAnjE,EAAAorD,SAAAxkC,UAAA5mB,EAAA,WAGAA,GA4jBAyoE,SAAA,OAKAjwB,QAAA,EAOAuoB,kBAAA,YAUAqI,OAEA9L,MAAA,IAEA+F,SAAA,EAEAprE,GArPA,SAAA+H,GACA,IAAAyhE,EAAAzhE,EAAAyhE,UACAmE,EAAAnE,EAAArqE,MAAA,QACAyvE,EAAA7mE,EAAAo/D,QACAyB,EAAAgG,EAAAhG,OACAC,EAAA+F,EAAA/F,UAEAgC,GAAA,qBAAAjrE,QAAA+tE,GAEAyD,GAAA,mBAAAxxE,QAAA+tE,GAOA,OALA/E,EAAAiC,EAAA,cAAAhC,EAAA8E,IAAAyD,EAAAxI,EAAAiC,EAAA,qBAEA9iE,EAAAyhE,UAAAe,EAAAf,GACAzhE,EAAAo/D,QAAAyB,OAAA1B,EAAA0B,GAEA7gE,IAkPApM,MAEA0pE,MAAA,IAEA+F,SAAA,EAEAprE,GA9SA,SAAA+H,GACA,IAAA6kE,EAAA7kE,EAAAorD,SAAAxkC,UAAA,0BACA,OAAA5mB,EAGA,IAAA0hE,EAAA1hE,EAAAo/D,QAAA0B,UACAwI,EAAAz0B,EAAA70C,EAAAorD,SAAAxkC,UAAA,SAAA45C,GACA,0BAAAA,EAAAvuE,OACG+uE,WAEH,GAAAU,EAAApsB,OAAAg0B,EAAA9sC,KAAAklC,EAAAplC,KAAAgtC,EAAAj/C,OAAAq3C,EAAAllC,IAAA8sC,EAAAh0B,QAAAosB,EAAAr3C,MAAAi/C,EAAAhtC,KAAA,CAEA,QAAAt8B,EAAApM,KACA,OAAAoM,EAGAA,EAAApM,MAAA,EACAoM,EAAAupE,WAAA,8BACG,CAEH,QAAAvpE,EAAApM,KACA,OAAAoM,EAGAA,EAAApM,MAAA,EACAoM,EAAAupE,WAAA,0BAGA,OAAAvpE,IAoSAwpE,cAEAlM,MAAA,IAEA+F,SAAA,EAEAprE,GA7+BA,SAAA+H,EAAA2F,GACA,IAAAisC,EAAAjsC,EAAAisC,EACAP,EAAA1rC,EAAA0rC,EACAwvB,EAAA7gE,EAAAo/D,QAAAyB,OAIA4I,EAAA50B,EAAA70C,EAAAorD,SAAAxkC,UAAA,SAAA45C,GACA,qBAAAA,EAAAvuE,OACGy3E,qBACHz0E,IAAAw0E,GACAlhE,QAAA3J,KAAA,iIAEA,IAAA8qE,OAAAz0E,IAAAw0E,IAAA9jE,EAAA+jE,gBAGAC,EAAA1tC,EADA6gC,EAAA98D,EAAAorD,SAAAyV,SAIAtvC,GACAgnB,SAAAsoB,EAAAtoB,UAMA6mB,GACA9iC,KAAA9lC,KAAAC,MAAAoqE,EAAAvkC,MACAE,IAAAhmC,KAAAovD,MAAAib,EAAArkC,KACA8Y,OAAA9+C,KAAAovD,MAAAib,EAAAvrB,QACAjrB,MAAA7zB,KAAAC,MAAAoqE,EAAAx2C,QAGAk0C,EAAA,WAAA3sB,EAAA,eACA4sB,EAAA,UAAAntB,EAAA,eAKAu4B,EAAApG,EAAA,aAWAlnC,OAAA,EACAE,OAAA,EAWA,GATAA,EADA,WAAA+hC,GACAoL,EAAA/K,OAAAQ,EAAA9pB,OAEA8pB,EAAA5iC,IAGAF,EADA,UAAAkiC,GACAmL,EAAArxB,MAAA8mB,EAAA/0C,MAEA+0C,EAAA9iC,KAEAotC,GAAAE,EACAr4C,EAAAq4C,GAAA,eAAAttC,EAAA,OAAAE,EAAA,SACAjL,EAAAgtC,GAAA,EACAhtC,EAAAitC,GAAA,EACAjtC,EAAAs4C,WAAA,gBACG,CAEH,IAAAC,EAAA,WAAAvL,GAAA,IACAwL,EAAA,UAAAvL,GAAA,IACAjtC,EAAAgtC,GAAA/hC,EAAAstC,EACAv4C,EAAAitC,GAAAliC,EAAAytC,EACAx4C,EAAAs4C,WAAAtL,EAAA,KAAAC,EAIA,IAAA+K,GACAS,cAAAhqE,EAAAyhE,WAQA,OAJAzhE,EAAAupE,WAAArK,KAA+BqK,EAAAvpE,EAAAupE,YAC/BvpE,EAAAuxB,OAAA2tC,KAA2B3tC,EAAAvxB,EAAAuxB,QAC3BvxB,EAAAiqE,YAAA/K,KAAgCl/D,EAAAo/D,QAAAsI,MAAA1nE,EAAAiqE,aAEhCjqE,GA65BA0pE,iBAAA,EAMA93B,EAAA,SAMAP,EAAA,SAkBA64B,YAEA5M,MAAA,IAEA+F,SAAA,EAEAprE,GA7kCA,SAAA+H,GAgBA,OAXA2kE,EAAA3kE,EAAAorD,SAAAyV,OAAA7gE,EAAAuxB,QAzBA,SAAAmR,EAAA6mC,GACAn3E,OAAAoI,KAAA+uE,GAAAxnE,QAAA,SAAAgF,IAEA,IADAwiE,EAAAxiE,GAEA27B,EAAAve,aAAApd,EAAAwiE,EAAAxiE,IAEA27B,EAAApb,gBAAAvgB,KAuBAojE,CAAAnqE,EAAAorD,SAAAyV,OAAA7gE,EAAAupE,YAGAvpE,EAAA4nE,cAAAx1E,OAAAoI,KAAAwF,EAAAiqE,aAAA5yE,QACAstE,EAAA3kE,EAAA4nE,aAAA5nE,EAAAiqE,aAGAjqE,GA+jCAoqE,OAljCA,SAAAtJ,EAAAD,EAAAl7D,EAAA0kE,EAAA/9B,GAEA,IAAAq2B,EAAAP,EAAA91B,EAAAu0B,EAAAC,EAAAn7D,EAAA6gE,eAKA/E,EAAAD,EAAA77D,EAAA87D,UAAAkB,EAAA9B,EAAAC,EAAAn7D,EAAAihB,UAAAwhD,KAAArH,kBAAAp7D,EAAAihB,UAAAwhD,KAAA5vB,SAQA,OANAqoB,EAAA18C,aAAA,cAAAs9C,GAIAkD,EAAA9D,GAAqBtoB,SAAA5yC,EAAA6gE,cAAA,qBAErB7gE,GA0iCA+jE,qBAAAz0E,KAuGAq1E,EAAA,WASA,SAAAA,EAAAxJ,EAAAD,GACA,IAAA0J,EAAA1vE,KAEA8K,EAAA5M,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,MACA8lE,EAAAhkE,KAAAyvE,GAEAzvE,KAAA2pE,eAAA,WACA,OAAA9zC,sBAAA65C,EAAA/qE,SAIA3E,KAAA2E,OAAAq8D,EAAAhhE,KAAA2E,OAAAtM,KAAA2H,OAGAA,KAAA8K,QAAAu5D,KAA8BoL,EAAA/D,SAAA5gE,GAG9B9K,KAAAyxC,OACAk+B,aAAA,EACAC,WAAA,EACAtG,kBAIAtpE,KAAAimE,eAAA4J,OAAA5J,EAAA,GAAAA,EACAjmE,KAAAgmE,YAAA6J,OAAA7J,EAAA,GAAAA,EAGAhmE,KAAA8K,QAAAihB,aACAx0B,OAAAoI,KAAA0kE,KAA2BoL,EAAA/D,SAAA3/C,UAAAjhB,EAAAihB,YAAA7kB,QAAA,SAAA9P,GAC3Bs4E,EAAA5kE,QAAAihB,UAAA30B,GAAAitE,KAAiDoL,EAAA/D,SAAA3/C,UAAA30B,OAAuC0T,EAAAihB,UAAAjhB,EAAAihB,UAAA30B,SAIxF4I,KAAA+rB,UAAAx0B,OAAAoI,KAAAK,KAAA8K,QAAAihB,WAAA1vB,IAAA,SAAAjF,GACA,OAAAitE,GACAjtE,QACOs4E,EAAA5kE,QAAAihB,UAAA30B,MAGPyc,KAAA,SAAA5V,EAAAc,GACA,OAAAd,EAAAwkE,MAAA1jE,EAAA0jE,QAOAziE,KAAA+rB,UAAA7kB,QAAA,SAAAsoE,GACAA,EAAAhH,SAAA9mB,EAAA8tB,EAAAD,SACAC,EAAAD,OAAAG,EAAAzJ,UAAAyJ,EAAA1J,OAAA0J,EAAA5kE,QAAA0kE,EAAAE,EAAAj+B,SAKAzxC,KAAA2E,SAEA,IAAA6kE,EAAAxpE,KAAA8K,QAAA0+D,cACAA,GAEAxpE,KAAA8vE,uBAGA9vE,KAAAyxC,MAAA+3B,gBAqDA,OA9CAvF,EAAAwL,IACAr3E,IAAA,SACAN,MAAA,WACA,OAlhDA,WAEA,IAAAkI,KAAAyxC,MAAAk+B,YAAA,CAIA,IAAAxqE,GACAorD,SAAAvwD,KACA02B,UACA04C,eACAV,cACAlB,SAAA,EACAjJ,YAIAp/D,EAAAo/D,QAAA0B,UAAAsB,EAAAvnE,KAAAyxC,MAAAzxC,KAAAgmE,OAAAhmE,KAAAimE,UAAAjmE,KAAA8K,QAAA6gE,eAKAxmE,EAAAyhE,UAAAD,EAAA3mE,KAAA8K,QAAA87D,UAAAzhE,EAAAo/D,QAAA0B,UAAAjmE,KAAAgmE,OAAAhmE,KAAAimE,UAAAjmE,KAAA8K,QAAAihB,UAAAwhD,KAAArH,kBAAAlmE,KAAA8K,QAAAihB,UAAAwhD,KAAA5vB,SAGAx4C,EAAAsoE,kBAAAtoE,EAAAyhE,UAEAzhE,EAAAwmE,cAAA3rE,KAAA8K,QAAA6gE,cAGAxmE,EAAAo/D,QAAAyB,OAAA6B,EAAA7nE,KAAAgmE,OAAA7gE,EAAAo/D,QAAA0B,UAAA9gE,EAAAyhE,WAEAzhE,EAAAo/D,QAAAyB,OAAAtoB,SAAA19C,KAAA8K,QAAA6gE,cAAA,mBAGAxmE,EAAAmjE,EAAAtoE,KAAA+rB,UAAA5mB,GAIAnF,KAAAyxC,MAAAm+B,UAIA5vE,KAAA8K,QAAAghE,SAAA3mE,IAHAnF,KAAAyxC,MAAAm+B,WAAA,EACA5vE,KAAA8K,QAAA+gE,SAAA1mE,MA0+CAnO,KAAAgJ,SAGA5H,IAAA,UACAN,MAAA,WACA,OAj8CA,WAsBA,OArBAkI,KAAAyxC,MAAAk+B,aAAA,EAGAlH,EAAAzoE,KAAA+rB,UAAA,gBACA/rB,KAAAgmE,OAAAv5C,gBAAA,eACAzsB,KAAAgmE,OAAAplD,MAAA88B,SAAA,GACA19C,KAAAgmE,OAAAplD,MAAA+gB,IAAA,GACA3hC,KAAAgmE,OAAAplD,MAAA6gB,KAAA,GACAzhC,KAAAgmE,OAAAplD,MAAA4O,MAAA,GACAxvB,KAAAgmE,OAAAplD,MAAA65B,OAAA,GACAz6C,KAAAgmE,OAAAplD,MAAAouD,WAAA,GACAhvE,KAAAgmE,OAAAplD,MAAA+nD,EAAA,kBAGA3oE,KAAAypE,wBAIAzpE,KAAA8K,QAAA8gE,iBACA5rE,KAAAgmE,OAAAl+C,WAAAgC,YAAA9pB,KAAAgmE,QAEAhmE,MA26CAhJ,KAAAgJ,SAGA5H,IAAA,uBACAN,MAAA,WACA,OA93CA,WACAkI,KAAAyxC,MAAA+3B,gBACAxpE,KAAAyxC,MAAAy3B,EAAAlpE,KAAAimE,UAAAjmE,KAAA8K,QAAA9K,KAAAyxC,MAAAzxC,KAAA2pE,kBA43CA3yE,KAAAgJ,SAGA5H,IAAA,wBACAN,MAAA,WACA,OAAA2xE,EAAAzyE,KAAAgJ,UA4BAyvE,EA7HA,GAqJAA,EAAAM,OAAA,oBAAAjuE,cAAAjJ,GAAAm3E,YACAP,EAAAlF,aACAkF,EAAA/D,WAEA,IAAAuE,EAAA,aAKA,SAAAC,EAAAp4E,GAIA,MAHA,iBAAAA,IACAA,IAAAyE,MAAA,MAEAzE,EAUA,SAAAq4E,GAAAjsD,EAAAksD,GACA,IAAAC,EAAAH,EAAAE,GACAh8C,OAAA,EAEAA,EADAlQ,EAAAosD,qBAAAL,EACAC,EAAAhsD,EAAAosD,UAAAC,SAEAL,EAAAhsD,EAAAosD,WAEAD,EAAAnpE,QAAA,SAAAspE,IACA,IAAAp8C,EAAAp3B,QAAAwzE,IACAp8C,EAAA9vB,KAAAksE,KAGAtsD,aAAAusD,WACAvsD,EAAAoF,aAAA,QAAA8K,EAAAlI,KAAA,MAEAhI,EAAAosD,UAAAl8C,EAAAlI,KAAA,KAWA,SAAAwkD,GAAAxsD,EAAAksD,GACA,IAAAC,EAAAH,EAAAE,GACAh8C,OAAA,EAEAA,EADAlQ,EAAAosD,qBAAAL,EACAC,EAAAhsD,EAAAosD,UAAAC,SAEAL,EAAAhsD,EAAAosD,WAEAD,EAAAnpE,QAAA,SAAAspE,GACA,IAAAzzE,EAAAq3B,EAAAp3B,QAAAwzE,IACA,IAAAzzE,GACAq3B,EAAAn3B,OAAAF,EAAA,KAGAmnB,aAAAusD,WACAvsD,EAAAoF,aAAA,QAAA8K,EAAAlI,KAAA,MAEAhI,EAAAosD,UAAAl8C,EAAAlI,KAAA,KA9DA,oBAAApqB,SACAmuE,EAAAnuE,OAAAmuE,mBAiEA,IAAAptE,IAAA,EAEA,uBAAAf,OAAA,CACAe,IAAA,EACA,IACA,IAAAC,GAAAvL,OAAAC,kBAAqC,WACrCE,IAAA,WACAmL,IAAA,KAGAf,OAAAiB,iBAAA,YAAAD,IACE,MAAArD,KAGF,IAAAkxE,GAAA,mBAAA/4E,QAAA,iBAAAA,OAAA2nD,SAAA,SAAArkD,GACA,cAAAA,GACC,SAAAA,GACD,OAAAA,GAAA,mBAAAtD,QAAAsD,EAAAmnB,cAAAzqB,QAAAsD,IAAAtD,OAAAa,UAAA,gBAAAyC,GAaA01E,GAAA,SAAArgB,EAAAhE,GACA,KAAAgE,aAAAhE,GACA,UAAA5W,UAAA,sCAIAk7B,GAAA,WACA,SAAApqE,EAAAvM,EAAAqQ,GACA,QAAA1T,EAAA,EAAmBA,EAAA0T,EAAA/N,OAAkB3F,IAAA,CACrC,IAAAqtE,EAAA35D,EAAA1T,GACAqtE,EAAAzsE,WAAAysE,EAAAzsE,aAAA,EACAysE,EAAAziE,cAAA,EACA,UAAAyiE,MAAA1iE,UAAA,GACAjK,OAAAC,eAAA0C,EAAAgqE,EAAA9rE,IAAA8rE,IAIA,gBAAA3X,EAAA4X,EAAAC,GAGA,OAFAD,GAAA19D,EAAA8lD,EAAA9zD,UAAA0rE,GACAC,GAAA39D,EAAA8lD,EAAA6X,GACA7X,GAdA,GAwBAukB,GAAAv5E,OAAA8mE,QAAA,SAAAnkE,GACA,QAAArD,EAAA,EAAiBA,EAAAqH,UAAA1B,OAAsB3F,IAAA,CACvC,IAAAuC,EAAA8E,UAAArH,GAEA,QAAAuB,KAAAgB,EACA7B,OAAAkB,UAAAC,eAAA1B,KAAAoC,EAAAhB,KACA8B,EAAA9B,GAAAgB,EAAAhB,IAKA,OAAA8B,GAKA62E,IACAz7B,WAAA,EACAl2B,MAAA,EACA+kB,MAAA,EACAyiC,UAAA,MACAhU,MAAA,GACAvrB,SAAA,+GACA9I,QAAA,cACAopB,OAAA,GAGAqpB,MAEAC,GAAA,WAkCA,SAAAA,EAAAhL,EAAAn7D,GACA8lE,GAAA5wE,KAAAixE,GAEAC,GAAAl6E,KAAAgJ,MAGA8K,EAAAgmE,MAAyBC,GAAAjmE,GAEzBm7D,EAAA4J,SAAA5J,IAAA,IAGAjmE,KAAAimE,YACAjmE,KAAA8K,UAGA9K,KAAAmxE,SAAA,EAEAnxE,KAAA8hB,QAwgBA,OApeA+uD,GAAAI,IACA74E,IAAA,aACAN,MAAA,SAAAs4E,GACApwE,KAAAoxE,SAAAhB,KAGAh4E,IAAA,aACAN,MAAA,SAAAu5E,GACArxE,KAAA8K,QAAA8nD,MAAAye,EACArxE,KAAAsxE,cACAtxE,KAAAuxE,YAAAF,EAAArxE,KAAA8K,YAIA1S,IAAA,aACAN,MAAA,SAAAgT,GACA,IAAA0mE,GAAA,EACApB,EAAAtlE,KAAAslE,SAAA5xC,GAAA1zB,QAAA2mE,aACAzxE,KAAAoxE,WAAAhB,IACApwE,KAAA0xE,WAAAtB,GACAoB,GAAA,GAGA1mE,EAAA6mE,GAAA7mE,GAEA,IAAA8mE,GAAA,EACAC,GAAA,EAUA,QAAAz5E,KARA4H,KAAA8K,QAAA68C,SAAA78C,EAAA68C,QAAA3nD,KAAA8K,QAAA87D,YAAA97D,EAAA87D,YACAgL,GAAA,IAGA5xE,KAAA8K,QAAAu8B,WAAAv8B,EAAAu8B,UAAArnC,KAAA8K,QAAAyzB,UAAAzzB,EAAAyzB,SAAAv+B,KAAA8K,QAAAwqC,YAAAxqC,EAAAwqC,WAAAk8B,KACAK,GAAA,GAGA/mE,EACA9K,KAAA8K,QAAA1S,GAAA0S,EAAA1S,GAGA,GAAA4H,KAAAsxE,aACA,GAAAO,EAAA,CACA,IAAAz6B,EAAAp3C,KAAAmxE,QAEAnxE,KAAA8xE,UACA9xE,KAAA8hB,QAEAs1B,GACAp3C,KAAAs5B,YAEKs4C,GACL5xE,KAAA+xE,eAAAptE,YAUAvM,IAAA,QACAN,MAAA,WAEA,IAAAy3B,EAAA,iBAAAvvB,KAAA8K,QAAAyzB,QAAAv+B,KAAA8K,QAAAyzB,QAAAhiC,MAAA,KAAAmb,OAAA,SAAA6mB,GACA,qCAAAvhC,QAAAuhC,QAEAv+B,KAAAgyE,aAAA,EACAhyE,KAAAiyE,sBAAA,IAAA1iD,EAAAvyB,QAAA,UAGAgD,KAAAkyE,mBAAAlyE,KAAAimE,UAAA12C,EAAAvvB,KAAA8K,YAeA1S,IAAA,UACAN,MAAA,SAAAmuE,EAAA5+B,GAEA,IAAA8qC,EAAArwE,OAAAmnB,SAAAlN,cAAA,OACAo2D,EAAA10C,UAAA4J,EAAA9Y,OACA,IAAA6jD,EAAAD,EAAApgD,WAAA,GAgBA,OAbAqgD,EAAAluE,GAAA,WAAAvI,KAAA+6C,SAAAt7C,SAAA,IAAAi3E,OAAA,MAKAD,EAAA9oD,aAAA,sBAEAtpB,KAAA8K,QAAAwnE,WAAA,IAAAtyE,KAAA8K,QAAAyzB,QAAAvhC,QAAA,WACAo1E,EAAArvE,iBAAA,aAAA/C,KAAAjH,MACAq5E,EAAArvE,iBAAA,QAAA/C,KAAAjH,OAIAq5E,KAGAh6E,IAAA,cACAN,MAAA,SAAAu5E,EAAAvmE,GACA,IAAA4kE,EAAA1vE,KAEAA,KAAAuyE,cAAA,EACAvyE,KAAAwyE,cAAAnB,EAAAvmE,GAAA+D,KAAA,WACA6gE,EAAAqC,eAAAptE,cAIAvM,IAAA,gBACAN,MAAA,SAAA86D,EAAA9nD,GACA,IAAA2nE,EAAAzyE,KAEA,WAAA2O,QAAA,SAAAC,EAAAqQ,GACA,IAAAyzD,EAAA5nE,EAAAq5B,KACAwuC,EAAAF,EAAAnB,aACA,GAAAqB,EAAA,CACA,IAAAC,EAAAD,EAAAzpD,cAAAupD,EAAA3nE,QAAA+nE,eACA,OAAAjgB,EAAA/6B,UAEA,GAAA66C,EAAA,CACA,KAAAE,EAAAj1C,YACAi1C,EAAA9oD,YAAA8oD,EAAAj1C,YAEAi1C,EAAA7oD,YAAA6oC,QAEK,uBAAAA,EAAA,CAEL,IAAAprD,EAAAorD,IAcA,YAbAprD,GAAA,mBAAAA,EAAAqH,MACA4jE,EAAAF,cAAA,EACAznE,EAAAgoE,cAAA3C,GAAAwC,EAAA7nE,EAAAgoE,cACAhoE,EAAAioE,gBACAN,EAAAD,cAAA1nE,EAAAioE,eAAAjoE,GAEAtD,EAAAqH,KAAA,SAAAmkE,GAEA,OADAloE,EAAAgoE,cAAApC,GAAAiC,EAAA7nE,EAAAgoE,cACAL,EAAAD,cAAAQ,EAAAloE,KACO+D,KAAAD,GAAAqkE,MAAAh0D,IAEPwzD,EAAAD,cAAAhrE,EAAAsD,GAAA+D,KAAAD,GAAAqkE,MAAAh0D,IAKAyzD,EAAAE,EAAAn1C,UAAAm1B,EAAAggB,EAAAM,UAAAtgB,EAEAhkD,UAIAxW,IAAA,QACAN,MAAA,SAAAmuE,EAAAn7D,GACA,GAAAA,GAAA,iBAAAA,EAAAwqC,YACArsB,SAAAC,cAAApe,EAAAwqC,WACA,OAGA6c,aAAAnyD,KAAAmzE,sBAEAroE,EAAAvT,OAAA8mE,UAA6BvzD,IAC7B68C,OAEA,IAAAyrB,GAAA,EACApzE,KAAAsxE,eACAnB,GAAAnwE,KAAAsxE,aAAAtxE,KAAAoxE,UACAgC,GAAA,GAGA,IAAA5rE,EAAAxH,KAAAqzE,aAAApN,EAAAn7D,GAQA,OANAsoE,GAAApzE,KAAAsxE,cACAnB,GAAAnwE,KAAAsxE,aAAAtxE,KAAAoxE,UAGAjB,GAAAlK,GAAA,mBAEAz+D,KAGApP,IAAA,eACAN,MAAA,SAAAmuE,EAAAn7D,GACA,IAAAwoE,EAAAtzE,KAGA,GAAAA,KAAAmxE,QACA,OAAAnxE,KAOA,GALAA,KAAAmxE,SAAA,EAEAH,GAAA1sE,KAAAtE,MAGAA,KAAAsxE,aAQA,OAPAtxE,KAAAsxE,aAAA1wD,MAAAmf,QAAA,GACA//B,KAAAsxE,aAAAhoD,aAAA,uBACAtpB,KAAA+xE,eAAAjC,uBACA9vE,KAAA+xE,eAAAptE,SACA3E,KAAAuyE,cACAvyE,KAAAuxE,YAAAzmE,EAAA8nD,MAAA9nD,GAEA9K,KAIA,IAAA4yD,EAAAqT,EAAA5xC,aAAA,UAAAvpB,EAAA8nD,MAGA,IAAAA,EACA,OAAA5yD,KAIA,IAAAoyE,EAAApyE,KAAAuzE,QAAAtN,EAAAn7D,EAAAu8B,UACArnC,KAAAsxE,aAAAc,EAEApyE,KAAAuxE,YAAA3e,EAAA9nD,GAGAm7D,EAAA38C,aAAA,mBAAA8oD,EAAAluE,IAGA,IAAAoxC,EAAAt1C,KAAAwzE,eAAA1oE,EAAAwqC,UAAA2wB,GAEAjmE,KAAAyzE,QAAArB,EAAA98B,GAEA,IAAAo+B,EAAA5C,MAAoChmE,EAAA4oE,eACpC9M,UAAA97D,EAAA87D,YAmCA,OAhCA8M,EAAA3nD,UAAA+kD,MAA0C4C,EAAA3nD,WAC1C8gD,OACAhlC,QAAA7nC,KAAA8K,QAAA6oE,iBAIA7oE,EAAAo7D,oBACAwN,EAAA3nD,UAAAqgD,iBACAlG,kBAAAp7D,EAAAo7D,oBAIAlmE,KAAA+xE,eAAA,IAAAtC,EAAAxJ,EAAAmM,EAAAsB,GAGA79C,sBAAA,YACAy9C,EAAAtB,aAAAsB,EAAAvB,gBACAuB,EAAAvB,eAAAptE,SAGAkxB,sBAAA,WACAy9C,EAAAtB,YAGAsB,EAAAxB,UAFAwB,EAAAnC,SAAAiB,EAAA9oD,aAAA,0BAMAgqD,EAAAxB,YAIA9xE,QAGA5H,IAAA,gBACAN,MAAA,WACA,IAAAiF,EAAAi0E,GAAAh0E,QAAAgD,OACA,IAAAjD,GACAi0E,GAAA/zE,OAAAF,EAAA,MAIA3E,IAAA,QACAN,MAAA,WACA,IAAA87E,EAAA5zE,KAGA,IAAAA,KAAAmxE,QACA,OAAAnxE,KAGAA,KAAAmxE,SAAA,EACAnxE,KAAA6zE,gBAGA7zE,KAAAsxE,aAAA1wD,MAAAmf,QAAA,OACA//B,KAAAsxE,aAAAhoD,aAAA,sBAEAtpB,KAAA+xE,eAAAtI,wBAEAtX,aAAAnyD,KAAAmzE,eACA,IAAAW,EAAAt1C,GAAA1zB,QAAAipE,eAeA,OAdA,OAAAD,IACA9zE,KAAAmzE,cAAA/kE,WAAA,WACAwlE,EAAAtC,eACAsC,EAAAtC,aAAAvkD,oBAAA,aAAA6mD,EAAA76E,MACA66E,EAAAtC,aAAAvkD,oBAAA,QAAA6mD,EAAA76E,MAEA66E,EAAAtC,aAAAxpD,WAAAgC,YAAA8pD,EAAAtC,cACAsC,EAAAtC,aAAA,OAEKwC,IAGLpD,GAAA1wE,KAAAimE,WAAA,mBAEAjmE,QAGA5H,IAAA,WACAN,MAAA,WACA,IAAAk8E,EAAAh0E,KA8BA,OA5BAA,KAAAgyE,aAAA,EAGAhyE,KAAA4jB,QAAA1c,QAAA,SAAA+/D,GACA,IAAAgN,EAAAhN,EAAAgN,KACA5jE,EAAA42D,EAAA52D,MAEA2jE,EAAA/N,UAAAl5C,oBAAA1c,EAAA4jE,KAEAj0E,KAAA4jB,WAEA5jB,KAAAsxE,cACAtxE,KAAAk0E,QAEAl0E,KAAAsxE,aAAAvkD,oBAAA,aAAA/sB,KAAAjH,MACAiH,KAAAsxE,aAAAvkD,oBAAA,QAAA/sB,KAAAjH,MAGAiH,KAAA+xE,eAAA7zD,UAGAle,KAAA+xE,eAAAjnE,QAAA8gE,kBACA5rE,KAAAsxE,aAAAxpD,WAAAgC,YAAA9pB,KAAAsxE,cACAtxE,KAAAsxE,aAAA,OAGAtxE,KAAA6zE,gBAEA7zE,QAGA5H,IAAA,iBACAN,MAAA,SAAAw9C,EAAA2wB,GAQA,MANA,iBAAA3wB,EACAA,EAAAxzC,OAAAmnB,SAAAC,cAAAosB,IACI,IAAAA,IAEJA,EAAA2wB,EAAAn+C,YAEAwtB,KAYAl9C,IAAA,UACAN,MAAA,SAAAs6E,EAAA98B,GACAA,EAAAvrB,YAAAqoD,MAGAh6E,IAAA,qBACAN,MAAA,SAAAmuE,EAAA12C,EAAAzkB,GACA,IAAAqpE,EAAAn0E,KAEAo0E,KACAC,KAEA9kD,EAAAroB,QAAA,SAAAmJ,GACA,OAAAA,GACA,YACA+jE,EAAA9vE,KAAA,cACA+vE,EAAA/vE,KAAA,cACA6vE,EAAArpE,QAAAwpE,mBAAAD,EAAA/vE,KAAA,SACA,MACA,YACA8vE,EAAA9vE,KAAA,SACA+vE,EAAA/vE,KAAA,QACA6vE,EAAArpE,QAAAwpE,mBAAAD,EAAA/vE,KAAA,SACA,MACA,YACA8vE,EAAA9vE,KAAA,SACA+vE,EAAA/vE,KAAA,YAMA8vE,EAAAltE,QAAA,SAAAmJ,GACA,IAAA4jE,EAAA,SAAAM,IACA,IAAAJ,EAAAhD,UAGAoD,EAAAC,eAAA,EACAL,EAAAM,cAAAxO,EAAAn7D,EAAAsU,MAAAtU,EAAAypE,KAEAJ,EAAAvwD,QAAAtf,MAAyB+L,QAAA4jE,SACzBhO,EAAAljE,iBAAAsN,EAAA4jE,KAIAI,EAAAntE,QAAA,SAAAmJ,GACA,IAAA4jE,EAAA,SAAAM,IACA,IAAAA,EAAAC,eAGAL,EAAAO,cAAAzO,EAAAn7D,EAAAsU,MAAAtU,EAAAypE,IAEAJ,EAAAvwD,QAAAtf,MAAyB+L,QAAA4jE,SACzBhO,EAAAljE,iBAAAsN,EAAA4jE,QAIA77E,IAAA,mBACAN,MAAA,SAAAuY,GACArQ,KAAAiyE,sBACAjyE,KAAA00E,cAAA10E,KAAAimE,UAAAjmE,KAAA8K,QAAAsU,MAAApf,KAAA8K,QAAAuF,MAIAjY,IAAA,gBACAN,MAAA,SAAAmuE,EAAA7mD,EAAAtU,GACA,IAAA6pE,EAAA30E,KAGA40E,EAAAx1D,KAAAka,MAAAla,GAAA,EACA+yC,aAAAnyD,KAAA60E,gBACA70E,KAAA60E,eAAA/yE,OAAAsM,WAAA,WACA,OAAAumE,EAAAG,MAAA7O,EAAAn7D,IACI8pE,MAGJx8E,IAAA,gBACAN,MAAA,SAAAmuE,EAAA7mD,EAAAtU,EAAAypE,GACA,IAAAQ,EAAA/0E,KAGA40E,EAAAx1D,KAAArmB,MAAAqmB,GAAA,EACA+yC,aAAAnyD,KAAA60E,gBACA70E,KAAA60E,eAAA/yE,OAAAsM,WAAA,WACA,QAAA2mE,EAAA5D,SAGAloD,SAAA2Z,KAAA4uB,SAAAujB,EAAAzD,cAAA,CAMA,kBAAAiD,EAAAp7E,KAKA,GAJA47E,EAAAC,qBAAAT,EAAAtO,EAAA7mD,EAAAtU,GAKA,OAIAiqE,EAAAb,MAAAjO,EAAAn7D,KACI8pE,OAGJ3D,EA3jBA,GAikBAC,GAAA,WACA,IAAA+D,EAAAj1E,KAEAA,KAAAs5B,KAAA,WACA27C,EAAAH,MAAAG,EAAAhP,UAAAgP,EAAAnqE,UAGA9K,KAAAjH,KAAA,WACAk8E,EAAAf,SAGAl0E,KAAA8xE,QAAA,WACAmD,EAAAC,YAGAl1E,KAAAu6C,OAAA,WACA,OAAA06B,EAAA9D,QACA8D,EAAAl8E,OAEAk8E,EAAA37C,QAIAt5B,KAAA4jB,WAEA5jB,KAAAg1E,qBAAA,SAAAT,EAAAtO,EAAA7mD,EAAAtU,GACA,IAAAqqE,EAAAZ,EAAAY,kBAAAZ,EAAAa,WAAAb,EAAAc,cAeA,QAAAJ,EAAA3D,aAAA9f,SAAA2jB,KAEAF,EAAA3D,aAAAvuE,iBAAAwxE,EAAAp7E,KAfA,SAAAumB,EAAA41D,GACA,IAAAC,EAAAD,EAAAH,kBAAAG,EAAAF,WAAAE,EAAAD,cAGAJ,EAAA3D,aAAAvkD,oBAAAwnD,EAAAp7E,KAAAumB,GAGAumD,EAAAzU,SAAA+jB,IAEAN,EAAAP,cAAAzO,EAAAn7D,EAAAsU,MAAAtU,EAAAwqE,MAOA,KAOA,oBAAArsD,UACAA,SAAAlmB,iBAAA,sBAAAsN,GACA,QAAAxZ,EAAA,EAAiBA,EAAAm6E,GAAAx0E,OAAyB3F,IAC1Cm6E,GAAAn6E,GAAA2+E,iBAAAnlE,KAEExN,KACF4M,SAAA,EACAE,SAAA,IAoBA,IAAA8hC,IACA+2B,SAAA,GAGAiN,IAAA,mIAEAC,IAEAC,iBAAA,MAEAlE,aAAA,oBAEAmE,mBAAA,cAEAC,aAAA,EAIAC,gBAAA,+GAEAC,qBAAA,kCAEAC,qBAAA,kCAEAC,aAAA,EAEAC,eAAA,cAEAC,cAAA,EAEAC,iBAAA,OACAC,8BAAAj8E,EACAk8E,wBAEAC,oBAAA,kBAEAC,sBAAA,MAEAlE,UAAA,EAEAmE,0BAAA,EAEA1C,eAAA,IAEA2C,SACAf,iBAAA,SAEAlE,aAAA,oBAEAkF,iBAAA,kBAEAC,oBAAA,UAEAC,kBAAA,8BAEAC,kBAAA,8BACAb,aAAA,EACAC,eAAA,QACAC,cAAA,EACAC,iBAAA,OACAC,8BAAAj8E,EACAk8E,wBAEAS,iBAAA,EAEAC,qBAAA,IAIA,SAAArF,GAAA7mE,GACA,IAAAtD,GACAo/D,eAAA,IAAA97D,EAAA87D,UAAA97D,EAAA87D,UAAApoC,GAAA1zB,QAAA6qE,iBACAv2D,WAAA,IAAAtU,EAAAsU,MAAAtU,EAAAsU,MAAAof,GAAA1zB,QAAAmrE,aACA9xC,UAAA,IAAAr5B,EAAAq5B,KAAAr5B,EAAAq5B,KAAA3F,GAAA1zB,QAAA+qE,YACAxuC,cAAA,IAAAv8B,EAAAu8B,SAAAv8B,EAAAu8B,SAAA7I,GAAA1zB,QAAAgrE,gBACAnC,mBAAA,IAAA7oE,EAAA6oE,cAAA7oE,EAAA6oE,cAAAn1C,GAAA1zB,QAAAirE,qBACAlD,mBAAA,IAAA/nE,EAAA+nE,cAAA/nE,EAAA+nE,cAAAr0C,GAAA1zB,QAAAkrE,qBACAz3C,aAAA,IAAAzzB,EAAAyzB,QAAAzzB,EAAAyzB,QAAAC,GAAA1zB,QAAAorE,eACAvuB,YAAA,IAAA78C,EAAA68C,OAAA78C,EAAA68C,OAAAnpB,GAAA1zB,QAAAqrE,cACA7gC,eAAA,IAAAxqC,EAAAwqC,UAAAxqC,EAAAwqC,UAAA9W,GAAA1zB,QAAAsrE,iBACAlQ,uBAAA,IAAAp7D,EAAAo7D,kBAAAp7D,EAAAo7D,kBAAA1nC,GAAA1zB,QAAAurE,yBACA/D,cAAA,IAAAxnE,EAAAwnE,SAAAxnE,EAAAwnE,SAAA9zC,GAAA1zB,QAAAwnE,SACAgC,uBAAA,IAAAxpE,EAAAwpE,kBAAAxpE,EAAAwpE,kBAAA91C,GAAA1zB,QAAA2rE,yBACA3D,kBAAA,IAAAhoE,EAAAgoE,aAAAhoE,EAAAgoE,aAAAt0C,GAAA1zB,QAAAyrE,oBACAxD,oBAAA,IAAAjoE,EAAAioE,eAAAjoE,EAAAioE,eAAAv0C,GAAA1zB,QAAA0rE,sBACA9C,cAAA5C,WAA8B,IAAAhmE,EAAA4oE,cAAA5oE,EAAA4oE,cAAAl1C,GAAA1zB,QAAAwrE,uBAG9B,GAAA9uE,EAAAmgD,OAAA,CACA,IAAAsvB,EAAAtG,GAAAnpE,EAAAmgD,QACAA,EAAAngD,EAAAmgD,QAGA,WAAAsvB,GAAA,WAAAA,IAAA,IAAAtvB,EAAA3qD,QAAA,QACA2qD,EAAA,MAAAA,GAGAngD,EAAAksE,cAAA3nD,YACAvkB,EAAAksE,cAAA3nD,cAEAvkB,EAAAksE,cAAA3nD,UAAA47B,QACAA,UAQA,OAJAngD,EAAA+2B,UAAA,IAAA/2B,EAAA+2B,QAAAvhC,QAAA,WACAwK,EAAA8sE,mBAAA,GAGA9sE,EAGA,SAAA0vE,GAAAp/E,EAAAi0B,GAEA,IADA,IAAA66C,EAAA9uE,EAAA8uE,UACA/vE,EAAA,EAAgBA,EAAA4+E,GAAAj5E,OAAsB3F,IAAA,CACtC,IAAA0qC,EAAAk0C,GAAA5+E,GACAk1B,EAAAwV,KACAqlC,EAAArlC,GAGA,OAAAqlC,EAGA,SAAAuQ,GAAAr/E,GACA,IAAAqB,OAAA,IAAArB,EAAA,YAAA64E,GAAA74E,GACA,iBAAAqB,EACArB,KACEA,GAAA,WAAAqB,IACFrB,EAAAu5E,QA4BA,SAAA+F,GAAAlzD,GACAA,EAAAmzD,WACAnzD,EAAAmzD,SAAAvF,iBACA5tD,EAAAmzD,gBACAnzD,EAAAozD,iBAGApzD,EAAAqzD,wBACA7G,GAAAxsD,IAAAqzD,8BACArzD,EAAAqzD,uBAIA,SAAAl/E,GAAA6rB,EAAA+iD,GACA,IAAAnvE,EAAAmvE,EAAAnvE,MAEAi0B,GADAk7C,EAAArxD,SACAqxD,EAAAl7C,WAEAslD,EAAA8F,GAAAr/E,GACA,GAAAu5E,GAAA5/B,GAAA+2B,QAEE,CACF,IAAAgP,OAAA,EACAtzD,EAAAmzD,WACAG,EAAAtzD,EAAAmzD,UAEAI,WAAApG,GAEAmG,EAAAE,WAAA5G,MAAmCh5E,GACnC8uE,UAAAsQ,GAAAp/E,EAAAi0B,OAGAyrD,EAtDA,SAAAtzD,EAAApsB,GACA,IAAAi0B,EAAA7tB,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,MAEAmzE,EAAA8F,GAAAr/E,GACAs4E,OAAA,IAAAt4E,EAAAs4E,QAAAt4E,EAAAs4E,QAAA5xC,GAAA1zB,QAAA2mE,aACA3uE,EAAAguE,IACAle,MAAAye,GACEM,GAAAb,MAA0Bh5E,GAC5B8uE,UAAAsQ,GAAAp/E,EAAAi0B,OAEAyrD,EAAAtzD,EAAAmzD,SAAA,IAAApG,GAAA/sD,EAAAphB,GACA00E,EAAA9F,WAAAtB,GACAoH,EAAAG,OAAAzzD,EAGA,IAAA0zD,OAAA,IAAA9/E,EAAA8/E,cAAA9/E,EAAA8/E,cAAAp5C,GAAA1zB,QAAA8qE,mBAIA,OAHA1xD,EAAAqzD,sBAAAK,EACAzH,GAAAjsD,EAAA0zD,GAEAJ,EAmCAK,CAAA3zD,EAAApsB,EAAAi0B,QAIA,IAAAj0B,EAAAwhC,MAAAxhC,EAAAwhC,OAAApV,EAAAozD,kBACApzD,EAAAozD,gBAAAx/E,EAAAwhC,KACAxhC,EAAAwhC,KAAAk+C,EAAAl+C,OAAAk+C,EAAAz+E,aAlBAq+E,GAAAlzD,GAuBA,IAAAsa,IACA1zB,QAAA4qE,GACAr9E,QACAsM,OAAAtM,GACA2nC,OAAA,SAAA9b,GACAkzD,GAAAlzD,KAIA,SAAA4zD,GAAA5zD,GACAA,EAAAnhB,iBAAA,QAAAg1E,IACA7zD,EAAAnhB,iBAAA,aAAAi1E,KAAAn1E,KACA4M,SAAA,IAIA,SAAAwoE,GAAA/zD,GACAA,EAAA6I,oBAAA,QAAAgrD,IACA7zD,EAAA6I,oBAAA,aAAAirD,IACA9zD,EAAA6I,oBAAA,WAAAmrD,IACAh0D,EAAA6I,oBAAA,cAAAorD,IAGA,SAAAJ,GAAA1nE,GACA,IAAA6T,EAAA7T,EAAAuwC,cACAvwC,EAAA+nE,cAAAl0D,EAAAm0D,sBACAhoE,EAAAioE,gBAAAp0D,EAAAq0D,2BAAAr0D,EAAAq0D,wBAAAjwC,IAGA,SAAA0vC,GAAA3nE,GACA,OAAAA,EAAAmoE,eAAAh8E,OAAA,CACA,IAAA0nB,EAAA7T,EAAAuwC,cACA18B,EAAAm0D,uBAAA,EACA,IAAAI,EAAApoE,EAAAmoE,eAAA,GACAt0D,EAAAw0D,2BAAAD,EACAv0D,EAAAnhB,iBAAA,WAAAm1E,IACAh0D,EAAAnhB,iBAAA,cAAAo1E,KAIA,SAAAD,GAAA7nE,GACA,IAAA6T,EAAA7T,EAAAuwC,cAEA,GADA18B,EAAAm0D,uBAAA,EACA,IAAAhoE,EAAAmoE,eAAAh8E,OAAA,CACA,IAAAi8E,EAAApoE,EAAAmoE,eAAA,GACAG,EAAAz0D,EAAAw0D,2BACAroE,EAAA+nE,aAAAz8E,KAAAo+D,IAAA0e,EAAAG,QAAAD,EAAAC,SAAA,IAAAj9E,KAAAo+D,IAAA0e,EAAAI,QAAAF,EAAAE,SAAA,GACAxoE,EAAAioE,gBAAAp0D,EAAAq0D,2BAAAr0D,EAAAq0D,wBAAAjwC,KAIA,SAAA6vC,GAAA9nE,GACAA,EAAAuwC,cACAy3B,uBAAA,EAGA,IAAAS,IACAzgF,KAAA,SAAA6rB,EAAA+iD,GACA,IAAAnvE,EAAAmvE,EAAAnvE,MACAi0B,EAAAk7C,EAAAl7C,UAEA7H,EAAAq0D,wBAAAxsD,QACA,IAAAj0B,OACAggF,GAAA5zD,IAGAvf,OAAA,SAAAuf,EAAAkjD,GACA,IAAAtvE,EAAAsvE,EAAAtvE,MACA8d,EAAAwxD,EAAAxxD,SACAmW,EAAAq7C,EAAAr7C,UAEA7H,EAAAq0D,wBAAAxsD,EACAj0B,IAAA8d,SACA,IAAA9d,KACAggF,GAAA5zD,GAEA+zD,GAAA/zD,KAIA8b,OAAA,SAAA9b,GACA+zD,GAAA/zD,KA8BA,IAAA60D,QAAA,EAEA,SAAAC,KACAA,GAAA58D,OACA48D,GAAA58D,MAAA,EACA28D,IAAA,IA/BA,WACA,IAAAE,EAAAn3E,OAAAM,UAAAC,UAEA62E,EAAAD,EAAAj8E,QAAA,SACA,GAAAk8E,EAAA,EAEA,OAAA7yD,SAAA4yD,EAAArwC,UAAAswC,EAAA,EAAAD,EAAAj8E,QAAA,IAAAk8E,IAAA,IAIA,GADAD,EAAAj8E,QAAA,YACA,GAEA,IAAAm8E,EAAAF,EAAAj8E,QAAA,OACA,OAAAqpB,SAAA4yD,EAAArwC,UAAAuwC,EAAA,EAAAF,EAAAj8E,QAAA,IAAAm8E,IAAA,IAGA,IAAAC,EAAAH,EAAAj8E,QAAA,SACA,OAAAo8E,EAAA,EAEA/yD,SAAA4yD,EAAArwC,UAAAwwC,EAAA,EAAAH,EAAAj8E,QAAA,IAAAo8E,IAAA,KAIA,EAQAC,IAIA,IAAAC,IAAsBvhE,OAAA,WACtB,IAAiBwhE,EAAjBv5E,KAAiByY,eAAwD,OAAzEzY,KAA6CwjB,MAAA1H,IAAAy9D,GAA4B,OAAkBtxD,YAAA,kBAAA3V,OAAyCwqC,SAAA,SAClIhjC,mBAAA+B,SAAA,kBACFzkB,KAAA,kBAEAoT,SACA9F,OAAA,WACA1E,KAAAsT,MAAA,WAEAkmE,kBAAA,WACAx5E,KAAAy5E,cAAAC,gBAAAzQ,YAAAlmE,iBAAA,SAAA/C,KAAA0E,QACA1E,KAAA25E,KAAA35E,KAAAglB,IAAA8/C,aAAA9kE,KAAAu5E,KAAAv5E,KAAAglB,IAAA6d,cACA7iC,KAAA0E,UAGAk1E,qBAAA,WACA55E,KAAAy5E,eAAAz5E,KAAAy5E,cAAAI,UACAd,IAAA/4E,KAAAy5E,cAAAC,iBACA15E,KAAAy5E,cAAAC,gBAAAzQ,YAAAl8C,oBAAA,SAAA/sB,KAAA0E,eAEA1E,KAAAy5E,cAAAI,UAKA1zD,QAAA,WACA,IAAAupD,EAAA1vE,KAEAg5E,KACAh5E,KAAAslB,UAAA,WACAoqD,EAAAiK,GAAAjK,EAAA1qD,IAAA8/C,YACA4K,EAAA6J,GAAA7J,EAAA1qD,IAAA6d,eAEA,IAAAtqC,EAAA0wB,SAAAlN,cAAA,UACA/b,KAAAy5E,cAAAlhF,EACAA,EAAA+wB,aAAA,gJACA/wB,EAAA+wB,aAAA,sBACA/wB,EAAA+wB,aAAA,eACA/wB,EAAAshF,OAAA75E,KAAAw5E,kBACAjhF,EAAAY,KAAA,YACA4/E,IACA/4E,KAAAglB,IAAA+E,YAAAxxB,GAEAA,EAAA4M,KAAA,cACA4zE,IACA/4E,KAAAglB,IAAA+E,YAAAxxB,IAGAuhF,cAAA,WACA95E,KAAA45E,yBAcA,IAAAG,IAEA3yD,QAAA,QACAP,QAZA,SAAAhF,GACAA,EAAA1C,UAAA,kBAAAm6D,MAeAU,GAAA,KAUA,SAAAC,GAAA7hF,GACA,IAAAN,EAAA0mC,GAAA1zB,QAAA4rE,QAAAt+E,GACA,gBAAAN,EACA0mC,GAAA1zB,QAAA1S,GAEAN,EAdA,oBAAAgK,OACAk4E,GAAAl4E,OAAA+f,SACC,IAAAhpB,IACDmhF,GAAAnhF,EAAAgpB,KAEAm4D,IACAA,GAAAt3D,IAAAq3D,IAWA,IAAAr3E,IAAA,EACA,oBAAAZ,QAAA,oBAAAM,YACAM,GAAA,mBAAAH,KAAAH,UAAAC,aAAAP,OAAAo4E,UAGA,IAAAC,MAEAC,GAAA,aACA,oBAAAt4E,SACAs4E,GAAAt4E,OAAAs4E,SAGA,IAAAC,IAAetiE,OAAA,WACf,IAAAuiE,EAAAt6E,KAAiBu5E,EAAAe,EAAA7hE,eAA4BqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EAA4B,OAAAz9D,EAAA,OAAkBmM,YAAA,YAAApH,MAAAy5D,EAAAC,WAAgDz+D,EAAA,QAAe0J,IAAA,UAAAyC,YAAA,UAAA8K,aAAuDgN,QAAA,gBAA4BztB,OAAUkoE,mBAAAF,EAAAG,UAAA39B,UAAA,IAAAw9B,EAAA/7C,QAAAvhC,QAAA,iBAAgGs9E,EAAA5/D,GAAA,eAAA4/D,EAAAr/D,GAAA,KAAAa,EAAA,OAAmD0J,IAAA,UAAA3E,OAAAy5D,EAAAI,iBAAAJ,EAAAK,aAAAL,EAAAC,UAAA35D,OAC1Yg6D,WAAAN,EAAAljC,OAAA,oBACI9kC,OAAUpO,GAAAo2E,EAAAG,UAAAx5B,cAAAq5B,EAAAljC,OAAA,kBAAsEt7B,EAAA,OAAc+E,MAAAy5D,EAAAO,sBAAiC/+D,EAAA,OAAc0J,IAAA,QAAA3E,MAAAy5D,EAAAQ,kBAAA/nD,aAA2D2qB,SAAA,cAA2B5hC,EAAA,OAAAw+D,EAAA5/D,GAAA,eAAA4/D,EAAAr/D,GAAA,KAAAq/D,EAAAS,aAAAj/D,EAAA,kBAA4F7L,IAAMvL,OAAA41E,EAAAU,kBAAiCV,EAAAp/D,MAAA,GAAAo/D,EAAAr/D,GAAA,KAAAa,EAAA,OAA2C0J,IAAA,QAAA3E,MAAAy5D,EAAAW,2BACnZnhE,mBACF1iB,KAAA,WAEAwqB,YACA03D,mBAGA/uE,OACAi5B,MACArqC,KAAAmT,QACAE,SAAA,GAEAmtC,UACAxgD,KAAAmT,QACAE,SAAA,GAEAo6D,WACAztE,KAAAuC,OACA8Q,QAAA,WACA,OAAAytE,GAAA,sBAGA76D,OACAjmB,MAAAuC,OAAAsqB,OAAAzuB,QACAiV,QAAA,WACA,OAAAytE,GAAA,kBAGAtyB,QACAxuD,MAAAuC,OAAAsqB,QACAxZ,QAAA,WACA,OAAAytE,GAAA,mBAGA17C,SACAplC,KAAAuC,OACA8Q,QAAA,WACA,OAAAytE,GAAA,oBAGA3kC,WACAn8C,MAAAuC,OAAAnE,OAAA6iF,GAAA9tE,SACAE,QAAA,WACA,OAAAytE,GAAA,sBAGA/T,mBACA/sE,MAAAuC,OAAA0+E,IACA5tE,QAAA,WACA,OAAAytE,GAAA,8BAGAvG,eACAv6E,KAAA5B,OACAiV,QAAA,WACA,OAAAytE,GAAA,0BAGAU,cACAxhF,MAAAuC,OAAA8C,OACAgO,QAAA,WACA,OAAAytE,GAAA,kBAGAS,kBACAvhF,MAAAuC,OAAA8C,OACAgO,QAAA,WACA,OAAAgyB,GAAA1zB,QAAA4rE,QAAAC,mBAGAmE,mBACA3hF,MAAAuC,OAAA8C,OACAgO,QAAA,WACA,OAAAgyB,GAAA1zB,QAAA4rE,QAAAG,oBAGAgE,qBACA1hF,MAAAuC,OAAA8C,OACAgO,QAAA,WACA,OAAAgyB,GAAA1zB,QAAA4rE,QAAAE,sBAGAqE,mBACA9hF,MAAAuC,OAAA8C,OACAgO,QAAA,WACA,OAAAgyB,GAAA1zB,QAAA4rE,QAAAI,oBAGAxE,UACAn5E,KAAAmT,QACAE,QAAA,WACA,OAAAgyB,GAAA1zB,QAAA4rE,QAAAK,kBAGAgE,cACA5hF,KAAAmT,QACAE,QAAA,WACA,OAAAgyB,GAAA1zB,QAAA4rE,QAAAM,sBAGAkE,WACA/hF,KAAAuC,OACA8Q,QAAA,OAIArH,KAAA,WACA,OACAiyC,QAAA,EACAlzC,GAAAvI,KAAA+6C,SAAAt7C,SAAA,IAAAi3E,OAAA,QAKA3nE,UACA6vE,SAAA,WACA,OACA/2C,KAAAxjC,KAAAo3C,SAGAqjC,UAAA,WACA,iBAAAz6E,KAAAkE,KAIAtB,OACA4gC,KAAA,SAAAhoC,GACAA,EACAwE,KAAAs5B,OAEAt5B,KAAAjH,QAGA4gD,SAAA,SAAAn+C,EAAA2/E,GACA3/E,IAAA2/E,IACA3/E,EACAwE,KAAAjH,OACKiH,KAAAwjC,MACLxjC,KAAAs5B,SAIAgc,UAAA,SAAA95C,GACA,GAAAwE,KAAAo3C,QAAAp3C,KAAA+xE,eAAA,CACA,IAAAqJ,EAAAp7E,KAAA0jB,MAAAgzD,QACAzQ,EAAAjmE,KAAA0jB,MAAA6a,QAEA+W,EAAAt1C,KAAAq7E,gBAAAr7E,KAAAs1C,UAAA2wB,GACA,IAAA3wB,EAEA,YADA5nC,QAAA3J,KAAA,2BAAA/D,MAIAs1C,EAAAvrB,YAAAqxD,GACAp7E,KAAA+xE,eAAApI,mBAGAprC,QAAA,SAAA/iC,GACAwE,KAAAs7E,yBACAt7E,KAAAu7E,uBAEA3U,UAAA,SAAAprE,GACA,IAAAk0E,EAAA1vE,KAEAA,KAAAw7E,eAAA,WACA9L,EAAAqC,eAAAjnE,QAAA87D,UAAAprE,KAKAmsD,OAAA,kBAEAue,kBAAA,kBAEAwN,eACAv8D,QAAA,kBACAxC,MAAA,IAIAsR,QAAA,WACAjmB,KAAAy7E,cAAA,EACAz7E,KAAA07E,WAAA,EACA17E,KAAA27E,YACA37E,KAAA47E,eAAA,GAEAz1D,QAAA,WACA,IAAAi1D,EAAAp7E,KAAA0jB,MAAAgzD,QACA0E,EAAAtzD,YAAAszD,EAAAtzD,WAAAgC,YAAAsxD,GAEAp7E,KAAA67E,SAEA77E,KAAAwjC,MACAxjC,KAAAs5B,QAGAwgD,cAAA,WACA95E,KAAA8xE,WAIAtnE,SACA8uB,KAAA,WACA,IAAAm5C,EAAAzyE,KAEAinE,EAAA/oE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,MACAmS,EAAA42D,EAAA52D,MAGAyrE,GAFA7U,EAAA8U,UAEA9U,EAAAtmD,cACAvmB,IAAA0hF,OAEA97E,KAAA25C,WACA35C,KAAAg8E,eAAA3rE,GACArQ,KAAAsT,MAAA,SAEAtT,KAAAsT,MAAA,kBACAtT,KAAAi8E,eAAA,EACApmD,sBAAA,WACA48C,EAAAwJ,eAAA,KAGAljF,KAAA,WACA,IAAAquE,EAAAlpE,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,MACAmS,EAAA+2D,EAAA/2D,MACA+2D,EAAA2U,UAEA/7E,KAAAk8E,eAAA7rE,GAEArQ,KAAAsT,MAAA,QACAtT,KAAAsT,MAAA,mBAEAw+D,QAAA,WAIA,GAHA9xE,KAAAy7E,cAAA,EACAz7E,KAAAs7E,yBACAt7E,KAAAjH,MAAcgjF,WAAA,IACd/7E,KAAA+xE,iBACA/xE,KAAA+xE,eAAA7zD,WAGAle,KAAA+xE,eAAAjnE,QAAA8gE,iBAAA,CACA,IAAAwP,EAAAp7E,KAAA0jB,MAAAgzD,QACA0E,EAAAtzD,YAAAszD,EAAAtzD,WAAAgC,YAAAsxD,GAGAp7E,KAAA07E,WAAA,EACA17E,KAAA+xE,eAAA,KACA/xE,KAAAo3C,QAAA,EAEAp3C,KAAAsT,MAAA,YAEAuoE,OAAA,YACA,IAAA77E,KAAAu+B,QAAAvhC,QAAA,WACAgD,KAAAu7E,uBAGAY,OAAA,WACA,IAAA7I,EAAAtzE,KAEAimE,EAAAjmE,KAAA0jB,MAAA6a,QACA68C,EAAAp7E,KAAA0jB,MAAAgzD,QAKA,GAHAvkB,aAAAnyD,KAAAo8E,iBAGAp8E,KAAAo3C,OAAA,CAWA,GANAp3C,KAAA+xE,iBACA/xE,KAAAo3C,QAAA,EACAp3C,KAAA+xE,eAAAjC,uBACA9vE,KAAA+xE,eAAApI,mBAGA3pE,KAAA07E,UAAA,CACA,IAAApmC,EAAAt1C,KAAAq7E,gBAAAr7E,KAAAs1C,UAAA2wB,GACA,IAAA3wB,EAEA,YADA5nC,QAAA3J,KAAA,2BAAA/D,MAGAs1C,EAAAvrB,YAAAqxD,GACAp7E,KAAA07E,WAAA,EAGA,IAAA17E,KAAA+xE,eAAA,CACA,IAAA2B,EAAA5C,MAAqC9wE,KAAA0zE,eACrC9M,UAAA5mE,KAAA4mE,YASA,GANA8M,EAAA3nD,UAAA+kD,MAA2C4C,EAAA3nD,WAC3C8gD,MAAAiE,MAAyB4C,EAAA3nD,WAAA2nD,EAAA3nD,UAAA8gD,OACzBhlC,QAAA7nC,KAAA0jB,MAAAmpD,UAIA7sE,KAAA2nD,OAAA,CACA,IAAAA,EAAA3nD,KAAAq8E,cAEA3I,EAAA3nD,UAAA47B,OAAAmpB,MAAmD4C,EAAA3nD,WAAA2nD,EAAA3nD,UAAA47B,QACnDA,WAIA3nD,KAAAkmE,oBACAwN,EAAA3nD,UAAAqgD,gBAAA0E,MAA4D4C,EAAA3nD,WAAA2nD,EAAA3nD,UAAAqgD,iBAC5DlG,kBAAAlmE,KAAAkmE,qBAIAlmE,KAAA+xE,eAAA,IAAAtC,EAAAxJ,EAAAmV,EAAA1H,GAGA79C,sBAAA,YACAy9C,EAAAmI,cAAAnI,EAAAvB,gBACAuB,EAAAvB,eAAApI,iBAGA9zC,sBAAA,WACAy9C,EAAAmI,aAGAnI,EAAAxB,UAFAwB,EAAAl8B,QAAA,KAMAk8B,EAAAxB,YAKA,IAAAoJ,EAAAl7E,KAAAk7E,UACA,GAAAA,EAEA,IADA,IAAAxE,OAAA,EACA7/E,EAAA,EAAmBA,EAAAsjF,GAAA39E,OAAyB3F,KAC5C6/E,EAAAyD,GAAAtjF,IACAqkF,gBACAxE,EAAA39E,OACA29E,EAAApjE,MAAA,gBAKA6mE,GAAA71E,KAAAtE,MAEAA,KAAAsT,MAAA,gBAEAgpE,OAAA,WACA,IAAA1I,EAAA5zE,KAGA,GAAAA,KAAAo3C,OAAA,CAIA,IAAAr6C,EAAAo9E,GAAAn9E,QAAAgD,OACA,IAAAjD,GACAo9E,GAAAl9E,OAAAF,EAAA,GAGAiD,KAAAo3C,QAAA,EACAp3C,KAAA+xE,gBACA/xE,KAAA+xE,eAAAtI,wBAGAtX,aAAAnyD,KAAAo8E,gBACA,IAAAtI,EAAAt1C,GAAA1zB,QAAA4rE,QAAA3C,gBAAAv1C,GAAA1zB,QAAAipE,eACA,OAAAD,IACA9zE,KAAAo8E,eAAAhuE,WAAA,WACA,IAAAgtE,EAAAxH,EAAAlwD,MAAAgzD,QACA0E,IAEAA,EAAAtzD,YAAAszD,EAAAtzD,WAAAgC,YAAAsxD,GACAxH,EAAA8H,WAAA,IAEK5H,IAGL9zE,KAAAsT,MAAA,gBAEA+nE,gBAAA,SAAA/lC,EAAA2wB,GAQA,MANA,iBAAA3wB,EACAA,EAAAxzC,OAAAmnB,SAAAC,cAAAosB,IACI,IAAAA,IAEJA,EAAA2wB,EAAAn+C,YAEAwtB,GAEA+mC,YAAA,WACA,IAAApF,EAAAtG,GAAA3wE,KAAA2nD,QACAA,EAAA3nD,KAAA2nD,OAOA,OAJA,WAAAsvB,GAAA,WAAAA,IAAA,IAAAtvB,EAAA3qD,QAAA,QACA2qD,EAAA,MAAAA,GAGAA,GAEA4zB,oBAAA,WACA,IAAAvH,EAAAh0E,KAEAimE,EAAAjmE,KAAA0jB,MAAA6a,QACA61C,KACAC,MAEA,iBAAAr0E,KAAAu+B,QAAAv+B,KAAAu+B,QAAAhiC,MAAA,KAAAmb,OAAA,SAAA6mB,GACA,qCAAAvhC,QAAAuhC,SAGAr3B,QAAA,SAAAmJ,GACA,OAAAA,GACA,YACA+jE,EAAA9vE,KAAA,cACA+vE,EAAA/vE,KAAA,cACA,MACA,YACA8vE,EAAA9vE,KAAA,SACA+vE,EAAA/vE,KAAA,QACA,MACA,YACA8vE,EAAA9vE,KAAA,SACA+vE,EAAA/vE,KAAA,YAMA8vE,EAAAltE,QAAA,SAAAmJ,GACA,IAAA4jE,EAAA,SAAA5jE,GACA2jE,EAAA58B,SAGA/mC,EAAAmkE,eAAA,GACAR,EAAA4H,eAAA5H,EAAA16C,MAA2CjpB,YAE3C2jE,EAAA2H,SAAAr3E,MAA0B+L,QAAA4jE,SAC1BhO,EAAAljE,iBAAAsN,EAAA4jE,KAIAI,EAAAntE,QAAA,SAAAmJ,GACA,IAAA4jE,EAAA,SAAA5jE,GACAA,EAAAmkE,eAGAR,EAAAj7E,MAAkBsX,WAElB2jE,EAAA2H,SAAAr3E,MAA0B+L,QAAA4jE,SAC1BhO,EAAAljE,iBAAAsN,EAAA4jE,MAGA+H,eAAA,WACA,IAAAD,EAAA79E,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAGA,GADAi0D,aAAAnyD,KAAAu8E,iBACAR,EACA/7E,KAAAm8E,aACI,CAEJ,IAAAvH,EAAAvuD,SAAArmB,KAAAof,OAAApf,KAAAof,MAAAka,MAAAt5B,KAAAof,OAAA,GACApf,KAAAu8E,gBAAAnuE,WAAApO,KAAAm8E,OAAA9jF,KAAA2H,MAAA40E,KAGAsH,eAAA,WACA,IAAA/H,EAAAn0E,KAEAqQ,EAAAnS,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,QACA69E,EAAA79E,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAGA,GADAi0D,aAAAnyD,KAAAu8E,iBACAR,EACA/7E,KAAAs8E,aACI,CAEJ,IAAA1H,EAAAvuD,SAAArmB,KAAAof,OAAApf,KAAAof,MAAArmB,MAAAiH,KAAAof,OAAA,GACApf,KAAAu8E,gBAAAnuE,WAAA,WACA,GAAA+lE,EAAA/8B,OAAA,CAMA,GAAA/mC,GAAA,eAAAA,EAAAlX,KAKA,GAJAg7E,EAAAqI,sBAAAnsE,GAKA,OAIA8jE,EAAAmI,WACK1H,KAGL4H,sBAAA,SAAAnsE,GACA,IAAAskE,EAAA30E,KAEAimE,EAAAjmE,KAAA0jB,MAAA6a,QACA68C,EAAAp7E,KAAA0jB,MAAAgzD,QAEAvB,EAAA9kE,EAAA8kE,kBAAA9kE,EAAA+kE,WAAA/kE,EAAAglE,cAeA,QAAA+F,EAAA5pB,SAAA2jB,KAEAiG,EAAAr4E,iBAAAsN,EAAAlX,KAfA,SAAAumB,EAAA+8D,GACA,IAAAlH,EAAAkH,EAAAtH,kBAAAsH,EAAArH,WAAAqH,EAAApH,cAGA+F,EAAAruD,oBAAA1c,EAAAlX,KAAAumB,GAGAumD,EAAAzU,SAAA+jB,IAEAZ,EAAA57E,MAAkBsX,MAAAosE,OAOlB,IAKAnB,uBAAA,WACA,IAAArV,EAAAjmE,KAAA0jB,MAAA6a,QACAv+B,KAAA27E,SAAAz0E,QAAA,SAAAw1E,GACA,IAAAzI,EAAAyI,EAAAzI,KACA5jE,EAAAqsE,EAAArsE,MAEA41D,EAAAl5C,oBAAA1c,EAAA4jE,KAEAj0E,KAAA27E,aAEAH,eAAA,SAAAzsE,GACA/O,KAAA+xE,iBACAhjE,IACA/O,KAAAo3C,QAAAp3C,KAAA+xE,eAAApI,mBAGAgT,gBAAA,WACA,GAAA38E,KAAA+xE,eAAA,CACA,IAAA36B,EAAAp3C,KAAAo3C,OACAp3C,KAAA8xE,UACA9xE,KAAAy7E,cAAA,EACAz7E,KAAA67E,SACAzkC,GACAp3C,KAAAs5B,MAAgByiD,WAAA,EAAAp7D,OAAA,MAIhBi8D,oBAAA,SAAAvsE,GACA,IAAA0kE,EAAA/0E,KAEAy4E,EAAAv6E,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAEA8B,KAAAi8E,gBAEAj8E,KAAAjH,MAAcsX,UAEdA,EAAA+nE,aACAp4E,KAAAsT,MAAA,mBAEAtT,KAAAsT,MAAA,aAGAmlE,IACAz4E,KAAA47E,eAAA,EACAxtE,WAAA,WACA2mE,EAAA6G,eAAA,GACK,QAGLZ,eAAA,WACAh7E,KAAAo3C,QAAAp3C,KAAA+xE,iBACA/xE,KAAA+xE,eAAApI,iBACA3pE,KAAAsT,MAAA,cAyBA,SAAAupE,GAAAxsE,GACA,IAAAooE,EAAAv6E,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,IAAAA,UAAA,GAGA23B,sBAAA,WAEA,IADA,IAAA6gD,OAAA,EACA7/E,EAAA,EAAiBA,EAAAsjF,GAAA39E,OAAyB3F,IAE1C,IADA6/E,EAAAyD,GAAAtjF,IACA6sB,MAAAgzD,QAAA,CACA,IAAAllB,EAAAklB,EAAAhzD,MAAAgzD,QAAAllB,SAAAnhD,EAAAnW,SACAmW,EAAAioE,iBAAAjoE,EAAA+nE,cAAA5mB,GAAAklB,EAAApE,WAAA9gB,IACAklB,EAAAkG,oBAAAvsE,EAAAooE,MA9BA,oBAAAxvD,UAAA,oBAAAnnB,SACAY,GACAumB,SAAAlmB,iBAAA,WAaA,SAAAsN,GACAwsE,GAAAxsE,GAAA,KAdAxN,KACA4M,SAAA,EACAE,SAAA,IAGA7N,OAAAiB,iBAAA,QAIA,SAAAsN,GACAwsE,GAAAxsE,KALA,IA8BA,IAAAysE,GAAA,oBAAAh7E,mBAAA,IAAAjJ,IAAA,oBAAAm3C,aAUA,IAAA+sC,GAJA,SAAA3/E,EAAAxG,GACA,OAAgCwG,EAAhCxG,GAAkBD,YAAcC,EAAAD,SAAAC,EAAAD,QAGhCqmF,CAAA,SAAApmF,EAAAD,GAWA,IAAAsmF,EAAA,IAGAC,EAAA,4BAGAC,EAAA,IACAC,EAAA,GAGAC,EAAA,iBAGAC,EAAA,qBAEAC,EAAA,yBAIAC,EAAA,oBACAC,EAAA,6BAGAC,EAAA,gBACAC,EAAA,kBACAC,EAAA,iBAIAC,EAAA,qBAsBAC,EAAA,8BAGAC,EAAA,mBAGAC,KACAA,EAxBA,yBAwBAA,EAvBA,yBAwBAA,EAvBA,sBAuBAA,EAtBA,uBAuBAA,EAtBA,uBAsBAA,EArBA,uBAsBAA,EArBA,8BAqBAA,EApBA,wBAqBAA,EApBA,yBAoBA,EACAA,EAAAV,GAAAU,EAjDA,kBAkDAA,EAhCA,wBAgCAA,EAhDA,oBAiDAA,EAhCA,qBAgCAA,EAhDA,iBAiDAA,EAhDA,kBAgDAA,EAAAR,GACAQ,EA9CA,gBA8CAA,EA7CA,mBA8CAA,EAAAL,GAAAK,EA1CA,mBA2CAA,EA1CA,gBA0CAA,EAzCA,mBA0CAA,EAxCA,qBAwCA,EAGA,IAAAC,EAAA,iBAAAnB,WAAAvlF,iBAAAulF,GAGAoB,EAAA,iBAAAluC,iBAAAz4C,iBAAAy4C,KAGAzI,EAAA02C,GAAAC,GAAA7jF,SAAA,cAAAA,GAGA8jF,EAAAxnF,MAAAkhC,UAAAlhC,EAGAynF,EAAAD,GAAAvnF,MAAAihC,UAAAjhC,EAGAynF,EAAAD,KAAAznF,UAAAwnF,EAGAG,EAAAD,GAAAJ,EAAAnxB,QAGAyxB,EAAA,WACA,IACA,OAAAD,KAAA7/C,SAAA6/C,EAAA7/C,QAAA,QACG,MAAAh/B,KAHH,GAOA++E,EAAAD,KAAAE,aAwFA,SAAAC,EAAAnmF,EAAAH,GACA,mBAAAA,OACAgC,EACA7B,EAAAH,GAIA,IAAA4O,EAAAxI,MAAA/F,UACAkmF,EAAAtkF,SAAA5B,UACAmmF,EAAArnF,OAAAkB,UAGAomF,EAAAt3C,EAAA,sBAGAu3C,EAAAH,EAAAvjF,SAGA1C,EAAAkmF,EAAAlmF,eAGAqmF,EAAA,WACA,IAAA/6E,EAAA,SAAAynC,KAAAozC,KAAAl/E,MAAAk/E,EAAAl/E,KAAA+sD,UAAA,IACA,OAAA1oD,EAAA,iBAAAA,EAAA,GAFA,GAUAg7E,EAAAJ,EAAAxjF,SAGA6jF,EAAAH,EAAA9nF,KAAAO,QAGA2nF,EAAAv5D,OAAA,IACAm5D,EAAA9nF,KAAA0B,GAAA8E,QAnLA,sBAmLA,QACAA,QAAA,uEAIA2hF,EAAAd,EAAA92C,EAAA43C,YAAA/kF,EACAxC,EAAA2vC,EAAA3vC,OACAstD,EAAA3d,EAAA2d,WACAk6B,EAAAD,IAAAC,iBAAAhlF,EACAilF,EA7DA,SAAApL,EAAApyC,GACA,gBAAAzS,GACA,OAAA6kD,EAAApyC,EAAAzS,KA2DAkwD,CAAA/nF,OAAAinD,eAAAjnD,QACAgoF,EAAAhoF,OAAAY,OACAy+C,EAAAgoC,EAAAhoC,qBACA35C,EAAA+J,EAAA/J,OACAuiF,EAAA5nF,IAAAC,iBAAAuC,EAEA5C,EAAA,WACA,IACA,IAAAy8E,EAAAwL,GAAAloF,OAAA,kBAEA,OADA08E,KAAW,OACXA,EACG,MAAAx0E,KALH,GASAigF,EAAAP,IAAA19B,cAAArnD,EACAulF,EAAAhkF,KAAAyN,IACAw2E,EAAAC,KAAAxpB,IAGAypB,EAAAL,GAAAl4C,EAAA,OACAw4C,EAAAN,GAAAloF,OAAA,UAUAyoF,EAAA,WACA,SAAAznF,KACA,gBAAAowD,GACA,IAAA1tD,GAAA0tD,GACA,SAEA,GAAA42B,EACA,OAAAA,EAAA52B,GAEApwD,EAAAE,UAAAkwD,EACA,IAAAnhD,EAAA,IAAAjP,EAEA,OADAA,EAAAE,eAAA2B,EACAoN,GAZA,GAuBA,SAAAy4E,GAAAlkC,GACA,IAAAh/C,GAAA,EACAP,EAAA,MAAAu/C,EAAA,EAAAA,EAAAv/C,OAGA,IADAwD,KAAA8D,UACA/G,EAAAP,GAAA,CACA,IAAAyhE,EAAAliB,EAAAh/C,GACAiD,KAAA2D,IAAAs6D,EAAA,GAAAA,EAAA,KA+FA,SAAAiiB,GAAAnkC,GACA,IAAAh/C,GAAA,EACAP,EAAA,MAAAu/C,EAAA,EAAAA,EAAAv/C,OAGA,IADAwD,KAAA8D,UACA/G,EAAAP,GAAA,CACA,IAAAyhE,EAAAliB,EAAAh/C,GACAiD,KAAA2D,IAAAs6D,EAAA,GAAAA,EAAA,KA4GA,SAAAkiB,GAAApkC,GACA,IAAAh/C,GAAA,EACAP,EAAA,MAAAu/C,EAAA,EAAAA,EAAAv/C,OAGA,IADAwD,KAAA8D,UACA/G,EAAAP,GAAA,CACA,IAAAyhE,EAAAliB,EAAAh/C,GACAiD,KAAA2D,IAAAs6D,EAAA,GAAAA,EAAA,KA8FA,SAAAmiB,GAAArkC,GACA,IAAA52C,EAAAnF,KAAAqgF,SAAA,IAAAH,GAAAnkC,GACA/7C,KAAAsgF,KAAAn7E,EAAAm7E,KAmGA,SAAAC,GAAAzoF,EAAA0oF,GACA,IAAAC,EAAAnhF,GAAAxH,GACA4oF,GAAAD,GAAAE,GAAA7oF,GACA8oF,GAAAH,IAAAC,GAAAj/B,GAAA3pD,GACA+oF,GAAAJ,IAAAC,IAAAE,GAAAnC,GAAA3mF,GACAgpF,EAAAL,GAAAC,GAAAE,GAAAC,EACAr5E,EAAAs5E,EAvkBA,SAAAxoF,EAAAyoF,GAIA,IAHA,IAAAhkF,GAAA,EACAyK,EAAAhJ,MAAAlG,KAEAyE,EAAAzE,GACAkP,EAAAzK,GAAAgkF,EAAAhkF,GAEA,OAAAyK,EAgkBAw5E,CAAAlpF,EAAA0E,OAAAd,WACAc,EAAAgL,EAAAhL,OAEA,QAAApE,KAAAN,GACA0oF,IAAA9nF,EAAA1B,KAAAc,EAAAM,IACA0oF,IAEA,UAAA1oF,GAEAwoF,IAAA,UAAAxoF,GAAA,UAAAA,IAEAyoF,IAAA,UAAAzoF,GAAA,cAAAA,GAAA,cAAAA,IAEA6oF,GAAA7oF,EAAAoE,KAEAgL,EAAAlD,KAAAlM,GAGA,OAAAoP,EAYA,SAAA05E,GAAA3oF,EAAAH,EAAAN,SACAsC,IAAAtC,GAAAqpF,GAAA5oF,EAAAH,GAAAN,WACAsC,IAAAtC,GAAAM,KAAAG,IACA6oF,GAAA7oF,EAAAH,EAAAN,GAcA,SAAAirD,GAAAxqD,EAAAH,EAAAN,GACA,IAAAupF,EAAA9oF,EAAAH,GACAM,EAAA1B,KAAAuB,EAAAH,IAAA+oF,GAAAE,EAAAvpF,UACAsC,IAAAtC,GAAAM,KAAAG,IACA6oF,GAAA7oF,EAAAH,EAAAN,GAYA,SAAAwpF,GAAAvzB,EAAA31D,GAEA,IADA,IAAAoE,EAAAuxD,EAAAvxD,OACAA,KACA,GAAA2kF,GAAApzB,EAAAvxD,GAAA,GAAApE,GACA,OAAAoE,EAGA,SAYA,SAAA4kF,GAAA7oF,EAAAH,EAAAN,GACA,aAAAM,GAAAZ,EACAA,EAAAe,EAAAH,GACAqJ,cAAA,EACAhK,YAAA,EACAK,QACA0J,UAAA,IAGAjJ,EAAAH,GAAAN,EA3aAmoF,GAAAxnF,UAAAqL,MAvEA,WACA9D,KAAAqgF,SAAAN,IAAA,SACA//E,KAAAsgF,KAAA,GAsEAL,GAAAxnF,UAAA,OAzDA,SAAAL,GACA,IAAAoP,EAAAxH,KAAA4D,IAAAxL,WAAA4H,KAAAqgF,SAAAjoF,GAEA,OADA4H,KAAAsgF,MAAA94E,EAAA,IACAA,GAuDAy4E,GAAAxnF,UAAAf,IA3CA,SAAAU,GACA,IAAA+M,EAAAnF,KAAAqgF,SACA,GAAAN,EAAA,CACA,IAAAv4E,EAAArC,EAAA/M,GACA,OAAAoP,IAAA01E,OAAA9iF,EAAAoN,EAEA,OAAA9O,EAAA1B,KAAAmO,EAAA/M,GAAA+M,EAAA/M,QAAAgC,GAsCA6lF,GAAAxnF,UAAAmL,IA1BA,SAAAxL,GACA,IAAA+M,EAAAnF,KAAAqgF,SACA,OAAAN,OAAA3lF,IAAA+K,EAAA/M,GAAAM,EAAA1B,KAAAmO,EAAA/M,IAyBA6nF,GAAAxnF,UAAAkL,IAZA,SAAAvL,EAAAN,GACA,IAAAqN,EAAAnF,KAAAqgF,SAGA,OAFArgF,KAAAsgF,MAAAtgF,KAAA4D,IAAAxL,GAAA,IACA+M,EAAA/M,GAAA2nF,QAAA3lF,IAAAtC,EAAAolF,EAAAplF,EACAkI,MAuHAkgF,GAAAznF,UAAAqL,MApFA,WACA9D,KAAAqgF,YACArgF,KAAAsgF,KAAA,GAmFAJ,GAAAznF,UAAA,OAvEA,SAAAL,GACA,IAAA+M,EAAAnF,KAAAqgF,SACAtjF,EAAAukF,GAAAn8E,EAAA/M,GAEA,QAAA2E,EAAA,IAIAA,GADAoI,EAAA3I,OAAA,EAEA2I,EAAAH,MAEA/H,EAAAjG,KAAAmO,EAAApI,EAAA,KAEAiD,KAAAsgF,KACA,KA0DAJ,GAAAznF,UAAAf,IA9CA,SAAAU,GACA,IAAA+M,EAAAnF,KAAAqgF,SACAtjF,EAAAukF,GAAAn8E,EAAA/M,GAEA,OAAA2E,EAAA,OAAA3C,EAAA+K,EAAApI,GAAA,IA2CAmjF,GAAAznF,UAAAmL,IA/BA,SAAAxL,GACA,OAAAkpF,GAAAthF,KAAAqgF,SAAAjoF,IAAA,GA+BA8nF,GAAAznF,UAAAkL,IAlBA,SAAAvL,EAAAN,GACA,IAAAqN,EAAAnF,KAAAqgF,SACAtjF,EAAAukF,GAAAn8E,EAAA/M,GAQA,OANA2E,EAAA,KACAiD,KAAAsgF,KACAn7E,EAAAb,MAAAlM,EAAAN,KAEAqN,EAAApI,GAAA,GAAAjF,EAEAkI,MAyGAmgF,GAAA1nF,UAAAqL,MAtEA,WACA9D,KAAAsgF,KAAA,EACAtgF,KAAAqgF,UACAxvE,KAAA,IAAAovE,GACA5jF,IAAA,IAAAyjF,GAAAI,IACAhvB,OAAA,IAAA+uB,KAkEAE,GAAA1nF,UAAA,OArDA,SAAAL,GACA,IAAAoP,EAAA+5E,GAAAvhF,KAAA5H,GAAA,OAAAA,GAEA,OADA4H,KAAAsgF,MAAA94E,EAAA,IACAA,GAmDA24E,GAAA1nF,UAAAf,IAvCA,SAAAU,GACA,OAAAmpF,GAAAvhF,KAAA5H,GAAAV,IAAAU,IAuCA+nF,GAAA1nF,UAAAmL,IA3BA,SAAAxL,GACA,OAAAmpF,GAAAvhF,KAAA5H,GAAAwL,IAAAxL,IA2BA+nF,GAAA1nF,UAAAkL,IAdA,SAAAvL,EAAAN,GACA,IAAAqN,EAAAo8E,GAAAvhF,KAAA5H,GACAkoF,EAAAn7E,EAAAm7E,KAIA,OAFAn7E,EAAAxB,IAAAvL,EAAAN,GACAkI,KAAAsgF,MAAAn7E,EAAAm7E,QAAA,IACAtgF,MAwGAogF,GAAA3nF,UAAAqL,MA3EA,WACA9D,KAAAqgF,SAAA,IAAAH,GACAlgF,KAAAsgF,KAAA,GA0EAF,GAAA3nF,UAAA,OA9DA,SAAAL,GACA,IAAA+M,EAAAnF,KAAAqgF,SACA74E,EAAArC,EAAA,OAAA/M,GAGA,OADA4H,KAAAsgF,KAAAn7E,EAAAm7E,KACA94E,GA0DA44E,GAAA3nF,UAAAf,IA9CA,SAAAU,GACA,OAAA4H,KAAAqgF,SAAA3oF,IAAAU,IA8CAgoF,GAAA3nF,UAAAmL,IAlCA,SAAAxL,GACA,OAAA4H,KAAAqgF,SAAAz8E,IAAAxL,IAkCAgoF,GAAA3nF,UAAAkL,IArBA,SAAAvL,EAAAN,GACA,IAAAqN,EAAAnF,KAAAqgF,SACA,GAAAl7E,aAAA+6E,GAAA,CACA,IAAAsB,EAAAr8E,EAAAk7E,SACA,IAAAP,GAAA0B,EAAAhlF,OAAAygF,EAAA,EAGA,OAFAuE,EAAAl9E,MAAAlM,EAAAN,IACAkI,KAAAsgF,OAAAn7E,EAAAm7E,KACAtgF,KAEAmF,EAAAnF,KAAAqgF,SAAA,IAAAF,GAAAqB,GAIA,OAFAr8E,EAAAxB,IAAAvL,EAAAN,GACAkI,KAAAsgF,KAAAn7E,EAAAm7E,KACAtgF,MAkIA,IAAAyhF,GAsWA,SAAAC,GACA,gBAAAnpF,EAAAwoF,EAAAY,GAMA,IALA,IAAA5kF,GAAA,EACAgzD,EAAAx4D,OAAAgB,GACAgS,EAAAo3E,EAAAppF,GACAiE,EAAA+N,EAAA/N,OAEAA,KAAA,CACA,IAAApE,EAAAmS,EAAAm3E,EAAAllF,IAAAO,GACA,QAAAgkF,EAAAhxB,EAAA33D,KAAA23D,GACA,MAGA,OAAAx3D,GAnXAqpF,GASA,SAAAC,GAAA/pF,GACA,aAAAA,OACAsC,IAAAtC,EAAA+lF,EAAAH,EAEA8B,QAAAjoF,OAAAO,GA6YA,SAAAA,GACA,IAAAgqF,EAAAppF,EAAA1B,KAAAc,EAAA0nF,GACAt6E,EAAApN,EAAA0nF,GAEA,IACA1nF,EAAA0nF,QAAAplF,EACA,IAAA2nF,GAAA,EACG,MAAAtiF,IAEH,IAAA+H,EAAAw3E,EAAAhoF,KAAAc,GACAiqF,IACAD,EACAhqF,EAAA0nF,GAAAt6E,SAEApN,EAAA0nF,IAGA,OAAAh4E,EA7ZAw6E,CAAAlqF,GAwhBA,SAAAA,GACA,OAAAknF,EAAAhoF,KAAAc,GAxhBAmqF,CAAAnqF,GAUA,SAAAoqF,GAAApqF,GACA,OAAAqqF,GAAArqF,IAAA+pF,GAAA/pF,IAAAwlF,EAWA,SAAA8E,GAAAtqF,GACA,SAAAmD,GAAAnD,IAodA,SAAAm8E,GACA,QAAA8K,QAAA9K,EArdAoO,CAAAvqF,MAGA4pD,GAAA5pD,GAAAonF,EAAApB,GACAv7E,KA4kBA,SAAA0xE,GACA,SAAAA,EAAA,CACA,IACA,OAAA6K,EAAA9nF,KAAAi9E,GACK,MAAAx0E,IACL,IACA,OAAAw0E,EAAA,GACK,MAAAx0E,KAEL,SArlBA6iF,CAAAxqF,IAsBA,SAAAyqF,GAAAhqF,GACA,IAAA0C,GAAA1C,GACA,OAmdA,SAAAA,GACA,IAAAiP,KACA,SAAAjP,EACA,QAAAH,KAAAb,OAAAgB,GACAiP,EAAAlD,KAAAlM,GAGA,OAAAoP,EA1dAg7E,CAAAjqF,GAEA,IAAAkqF,EAAAC,GAAAnqF,GACAiP,KAEA,QAAApP,KAAAG,GACA,eAAAH,IAAAqqF,GAAA/pF,EAAA1B,KAAAuB,EAAAH,KACAoP,EAAAlD,KAAAlM,GAGA,OAAAoP,EAcA,SAAAm7E,GAAApqF,EAAAa,EAAAwpF,EAAAC,EAAAp7C,GACAlvC,IAAAa,GAGAqoF,GAAAroF,EAAA,SAAA0pF,EAAA1qF,GACA,GAAA6C,GAAA6nF,GACAr7C,MAAA,IAAA24C,IA+BA,SAAA7nF,EAAAa,EAAAhB,EAAAwqF,EAAAG,EAAAF,EAAAp7C,GACA,IAAA45C,EAAA3C,EAAAnmF,EAAAH,GACA0qF,EAAApE,EAAAtlF,EAAAhB,GACA4qF,EAAAv7C,EAAA/vC,IAAAorF,GAEA,GAAAE,EAEA,YADA9B,GAAA3oF,EAAAH,EAAA4qF,GAGA,IAAAC,EAAAJ,EACAA,EAAAxB,EAAAyB,EAAA1qF,EAAA,GAAAG,EAAAa,EAAAquC,QACArtC,EAEA8oF,OAAA9oF,IAAA6oF,EAEA,GAAAC,EAAA,CACA,IAAAzC,EAAAnhF,GAAAwjF,GACAlC,GAAAH,GAAAh/B,GAAAqhC,GACAK,GAAA1C,IAAAG,GAAAnC,GAAAqE,GAEAG,EAAAH,EACArC,GAAAG,GAAAuC,EACA7jF,GAAA+hF,GACA4B,EAAA5B,GAsnBA,SAAAvpF,GACA,OAAAqqF,GAAArqF,IAAAsrF,GAAAtrF,GArnBAurF,CAAAhC,GAGAT,GACAsC,GAAA,EACAD,EAqEA,SAAAhhC,EAAAqhC,GACA,GAAAA,EACA,OAAArhC,EAAApkD,QAEA,IAAArB,EAAAylD,EAAAzlD,OACAgL,EAAA43E,IAAA5iF,GAAA,IAAAylD,EAAA5/B,YAAA7lB,GAGA,OADAylD,EAAAshC,KAAA/7E,GACAA,EA7EAg8E,CAAAV,GAAA,IAEAK,GACAD,GAAA,EACAD,EAiGA,SAAAQ,EAAAH,GACA,IAAArhC,EAAAqhC,EAfA,SAAAI,GACA,IAAAl8E,EAAA,IAAAk8E,EAAArhE,YAAAqhE,EAAAx4B,YAEA,OADA,IAAAhG,EAAA19C,GAAA7D,IAAA,IAAAuhD,EAAAw+B,IACAl8E,EAYAm8E,CAAAF,EAAAxhC,QAAAwhC,EAAAxhC,OACA,WAAAwhC,EAAAphE,YAAA4/B,EAAAwhC,EAAAh6B,WAAAg6B,EAAAjnF,QAnGAonF,CAAAd,GAAA,IAGAG,KAXAA,EAsHA,SAAA7pF,EAAA20D,GACA,IAAAhxD,GAAA,EACAP,EAAApD,EAAAoD,OAEAuxD,MAAAvvD,MAAAhC,IACA,OAAAO,EAAAP,GACAuxD,EAAAhxD,GAAA3D,EAAA2D,GAEA,OAAAgxD,EA9HA81B,CAAAxC,GA0xBA,SAAAvpF,GACA,IAAAqqF,GAAArqF,IAAA+pF,GAAA/pF,IAAA6lF,EACA,SAEA,IAAAh1B,EAAA02B,EAAAvnF,GACA,UAAA6wD,EACA,SAEA,IAAAtlD,EAAA3K,EAAA1B,KAAA2xD,EAAA,gBAAAA,EAAAtmC,YACA,yBAAAhf,mBACAy7E,EAAA9nF,KAAAqM,IAAA47E,EAtxBA5jF,CAAAynF,IAAAnC,GAAAmC,IACAG,EAAA5B,EACAV,GAAAU,GACA4B,EAi0BA,SAAAnrF,GACA,OAxsBA,SAAAsB,EAAAmR,EAAAhS,EAAAsqF,GACA,IAAAiB,GAAAvrF,EACAA,UAEA,IAAAwE,GAAA,EACAP,EAAA+N,EAAA/N,OAEA,OAAAO,EAAAP,GAAA,CACA,IAAApE,EAAAmS,EAAAxN,GAEAkmF,EAAAJ,EACAA,EAAAtqF,EAAAH,GAAAgB,EAAAhB,KAAAG,EAAAa,QACAgB,OAEAA,IAAA6oF,IACAA,EAAA7pF,EAAAhB,IAEA0rF,EACA1C,GAAA7oF,EAAAH,EAAA6qF,GAEAlgC,GAAAxqD,EAAAH,EAAA6qF,GAGA,OAAA1qF,EAirBAwrF,CAAAjsF,EAAAksF,GAAAlsF,IAl0BAmsF,CAAA5C,KAEApmF,GAAAomF,IAAAuB,GAAAlhC,GAAA2/B,MACA4B,EAwQA,SAAA1qF,GACA,yBAAAA,EAAA8pB,aAAAqgE,GAAAnqF,MACAynF,EAAAX,EAAA9mF,IA1QA2rF,CAAApB,KAIAI,GAAA,EAGAA,IAEAz7C,EAAA9jC,IAAAm/E,EAAAG,GACAF,EAAAE,EAAAH,EAAAF,EAAAC,EAAAp7C,GACAA,EAAA,OAAAq7C,IAEA5B,GAAA3oF,EAAAH,EAAA6qF,GAzFAkB,CAAA5rF,EAAAa,EAAAhB,EAAAwqF,EAAAD,GAAAE,EAAAp7C,OAEA,CACA,IAAAw7C,EAAAJ,EACAA,EAAAnE,EAAAnmF,EAAAH,GAAA0qF,EAAA1qF,EAAA,GAAAG,EAAAa,EAAAquC,QACArtC,OAEAA,IAAA6oF,IACAA,EAAAH,GAEA5B,GAAA3oF,EAAAH,EAAA6qF,KAEGe,IAwFH,SAAAI,GAAAnQ,EAAA31E,GACA,OAAA+lF,GA6WA,SAAApQ,EAAA31E,EAAAujC,GAEA,OADAvjC,EAAAqhF,OAAAvlF,IAAAkE,EAAA21E,EAAAz3E,OAAA,EAAA8B,EAAA,GACA,WAMA,IALA,IAAA+I,EAAAnJ,UACAnB,GAAA,EACAP,EAAAmjF,EAAAt4E,EAAA7K,OAAA8B,EAAA,GACAyvD,EAAAvvD,MAAAhC,KAEAO,EAAAP,GACAuxD,EAAAhxD,GAAAsK,EAAA/I,EAAAvB,GAEAA,GAAA,EAEA,IADA,IAAAunF,EAAA9lF,MAAAF,EAAA,KACAvB,EAAAuB,GACAgmF,EAAAvnF,GAAAsK,EAAAtK,GAGA,OADAunF,EAAAhmF,GAAAujC,EAAAksB,GAvwCA,SAAAkmB,EAAAjxB,EAAA37C,GACA,OAAAA,EAAA7K,QACA,cAAAy3E,EAAAj9E,KAAAgsD,GACA,cAAAixB,EAAAj9E,KAAAgsD,EAAA37C,EAAA,IACA,cAAA4sE,EAAAj9E,KAAAgsD,EAAA37C,EAAA,GAAAA,EAAA,IACA,cAAA4sE,EAAAj9E,KAAAgsD,EAAA37C,EAAA,GAAAA,EAAA,GAAAA,EAAA,IAEA,OAAA4sE,EAAA91E,MAAA6kD,EAAA37C,GAiwCAlJ,CAAA81E,EAAAj0E,KAAAskF,IA9XAC,CAAAtQ,EAAA31E,EAAAW,IAAAg1E,EAAA,IAyLA,SAAAsN,GAAAllF,EAAAjE,GACA,IAAA+M,EAAA9I,EAAAgkF,SACA,OA2GA,SAAAvoF,GACA,IAAAqB,SAAArB,EACA,gBAAAqB,GAAA,UAAAA,GAAA,UAAAA,GAAA,WAAAA,EACA,cAAArB,EACA,OAAAA,EA/GA0sF,CAAApsF,GACA+M,EAAA,iBAAA/M,EAAA,iBACA+M,EAAA9I,IAWA,SAAAojF,GAAAlnF,EAAAH,GACA,IAAAN,EAjiCA,SAAAS,EAAAH,GACA,aAAAG,OAAA6B,EAAA7B,EAAAH,GAgiCAwmC,CAAArmC,EAAAH,GACA,OAAAgqF,GAAAtqF,UAAAsC,EAmDA,SAAA6mF,GAAAnpF,EAAA0E,GACA,IAAArD,SAAArB,EAGA,SAFA0E,EAAA,MAAAA,EAAA6gF,EAAA7gF,KAGA,UAAArD,GACA,UAAAA,GAAA4kF,EAAAx7E,KAAAzK,KACAA,GAAA,GAAAA,EAAA,MAAAA,EAAA0E,EA2DA,SAAAkmF,GAAA5qF,GACA,IAAAuL,EAAAvL,KAAAuqB,YAGA,OAAAvqB,KAFA,mBAAAuL,KAAA5K,WAAAmmF,GAyEA,IAAAyF,GAWA,SAAApQ,GACA,IAAArW,EAAA,EACA6mB,EAAA,EAEA,kBACA,IAAAC,EAAA9E,IACA+E,EAAAvH,GAAAsH,EAAAD,GAGA,GADAA,EAAAC,EACAC,EAAA,GACA,KAAA/mB,GAAAuf,EACA,OAAAj/E,UAAA,QAGA0/D,EAAA,EAEA,OAAAqW,EAAA91E,WAAA/D,EAAA8D,YA3BA0mF,CA/XAptF,EAAA,SAAAy8E,EAAA/iB,GACA,OAAA15D,EAAAy8E,EAAA,YACAxyE,cAAA,EACAhK,YAAA,EACAK,MA22BA,SAAAA,GACA,kBACA,OAAAA,GA72BA+sF,CAAA3zB,GACA1vD,UAAA,KALAvC,IAidA,SAAAkiF,GAAArpF,EAAAgtF,GACA,OAAAhtF,IAAAgtF,GAAAhtF,MAAAgtF,KAqBA,IAAAnE,GAAAuB,GAAA,WAA8C,OAAAhkF,UAA9C,IAAkEgkF,GAAA,SAAApqF,GAClE,OAAAqqF,GAAArqF,IAAAY,EAAA1B,KAAAc,EAAA,YACA8+C,EAAA5/C,KAAAc,EAAA,WA0BAwH,GAAAd,MAAAc,QA2BA,SAAA8jF,GAAAtrF,GACA,aAAAA,GAAAitF,GAAAjtF,EAAA0E,UAAAklD,GAAA5pD,GAiDA,IAAA2pD,GAAAi+B,GAsUA,WACA,UApTA,SAAAh+B,GAAA5pD,GACA,IAAAmD,GAAAnD,GACA,SAIA,IAAAoN,EAAA28E,GAAA/pF,GACA,OAAAoN,GAAAs4E,GAAAt4E,GAAAu4E,GAAAv4E,GAAAq4E,GAAAr4E,GAAA04E,EA6BA,SAAAmH,GAAAjtF,GACA,uBAAAA,GACAA,GAAA,GAAAA,EAAA,MAAAA,GAAAulF,EA4BA,SAAApiF,GAAAnD,GACA,IAAAqB,SAAArB,EACA,aAAAA,IAAA,UAAAqB,GAAA,YAAAA,GA2BA,SAAAgpF,GAAArqF,GACA,aAAAA,GAAA,iBAAAA,EA6DA,IAAA2mF,GAAAD,EAjnDA,SAAAvK,GACA,gBAAAn8E,GACA,OAAAm8E,EAAAn8E,IA+mDAktF,CAAAxG,GA75BA,SAAA1mF,GACA,OAAAqqF,GAAArqF,IACAitF,GAAAjtF,EAAA0E,WAAAwhF,EAAA6D,GAAA/pF,KAg9BA,SAAAksF,GAAAzrF,GACA,OAAA6qF,GAAA7qF,GAAAgoF,GAAAhoF,GAAA,GAAAgqF,GAAAhqF,GAkCA,IAAAuqD,GApuBA,SAAAmiC,GACA,OAAAb,GAAA,SAAA7rF,EAAA2sF,GACA,IAAAnoF,GAAA,EACAP,EAAA0oF,EAAA1oF,OACAqmF,EAAArmF,EAAA,EAAA0oF,EAAA1oF,EAAA,QAAApC,EACA+qF,EAAA3oF,EAAA,EAAA0oF,EAAA,QAAA9qF,EAWA,IATAyoF,EAAAoC,EAAAzoF,OAAA,sBAAAqmF,GACArmF,IAAAqmF,QACAzoF,EAEA+qF,GAuIA,SAAArtF,EAAAiF,EAAAxE,GACA,IAAA0C,GAAA1C,GACA,SAEA,IAAAY,SAAA4D,EACA,mBAAA5D,EACAiqF,GAAA7qF,IAAA0oF,GAAAlkF,EAAAxE,EAAAiE,QACA,UAAArD,GAAA4D,KAAAxE,IAEA4oF,GAAA5oF,EAAAwE,GAAAjF,GAhJAstF,CAAAF,EAAA,GAAAA,EAAA,GAAAC,KACAtC,EAAArmF,EAAA,OAAApC,EAAAyoF,EACArmF,EAAA,GAEAjE,EAAAhB,OAAAgB,KACAwE,EAAAP,GAAA,CACA,IAAApD,EAAA8rF,EAAAnoF,GACA3D,GACA6rF,EAAA1sF,EAAAa,EAAA2D,EAAA8lF,GAGA,OAAAtqF,IA8sBA8sF,CAAA,SAAA9sF,EAAAa,EAAAwpF,GACAD,GAAApqF,EAAAa,EAAAwpF,KA4CA,SAAA3jF,GAAAnH,GACA,OAAAA,EAoBAlB,EAAAD,QAAAmsD,KAoBA,IAIAr8B,IACAI,QAtBA,SAAAA,EAAAhF,GACA,IAAA/W,EAAA5M,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,MAEA,IAAA2oB,EAAAy+D,UAAA,CACAz+D,EAAAy+D,WAAA,EAEA,IAAA9wC,KACAuoC,GAAAvoC,EAAAkhC,GAAA5qE,GAEA2b,GAAA3b,QAAA0pC,EACAhW,GAAA1zB,QAAA0pC,EAEA3yB,EAAA2c,UAAA,UAAAA,IACA3c,EAAA2c,UAAA,gBAAAs6C,IACAj3D,EAAA1C,UAAA,YAAAk7D,MAUA7R,cACA,OAAA/2B,GAAA+2B,SAGAA,YAAA1wE,GACA25C,GAAA+2B,QAAA1wE,IAKAytF,GAAA,KACA,oBAAAzjF,OACAyjF,GAAAzjF,OAAA+f,SACC,IAAAhpB,IACD0sF,GAAA1sF,EAAAgpB,KAEA0jE,IACAA,GAAA7iE,IAAA+D,IAIA+uB,EAAA,yCC7vMwN,oBAAAxF,WAAzMp5C,EAAAD,QAAwP,SAAA8I,GAAmB,SAAA1H,EAAAO,GAAc,GAAAzB,EAAAyB,GAAA,OAAAzB,EAAAyB,GAAA3B,QAA4B,IAAAsH,EAAApH,EAAAyB,IAAYzB,EAAAyB,EAAAxB,GAAA,EAAAH,YAAqB,OAAA8I,EAAAnH,GAAAtB,KAAAiH,EAAAtH,QAAAsH,IAAAtH,QAAAoB,GAAAkG,EAAAnH,GAAA,EAAAmH,EAAAtH,QAA2D,IAAAE,KAAS,OAAAkB,EAAAd,EAAAwI,EAAA1H,EAAAb,EAAAL,EAAAkB,EAAAZ,EAAA,SAAAsI,EAAA5I,EAAAyB,GAAuCP,EAAAT,EAAAmI,EAAA5I,IAAAU,OAAAC,eAAAiI,EAAA5I,GAAqC4K,cAAA,EAAAhK,YAAA,EAAAC,IAAAY,KAAsCP,EAAAO,EAAA,SAAAmH,GAAiB,IAAA5I,EAAA4I,KAAAxH,WAAA,WAAiC,OAAAwH,EAAA+M,SAAiB,WAAY,OAAA/M,GAAU,OAAA1H,EAAAZ,EAAAN,EAAA,IAAAA,MAAsBkB,EAAAT,EAAA,SAAAmI,EAAA1H,GAAmB,OAAAR,OAAAkB,UAAAC,eAAA1B,KAAAyI,EAAA1H,IAAiDA,EAAAY,EAAA,IAAAZ,IAAAa,EAAA,GAAvc,EAAyd,SAAA6G,EAAA1H,GAAgB,SAAAlB,EAAA4I,EAAA1H,GAAgB,IAAAlB,EAAA4I,EAAA,OAAAxB,EAAAwB,EAAA,GAAsB,IAAAxB,EAAA,OAAApH,EAAe,GAAAkB,GAAA,mBAAAm/D,KAAA,CAA+B,IAAAv/D,EAAiJ,SAAA8H,GAAc,yEAAgEy3D,KAAAsuB,SAAAC,mBAAA3pF,KAAAC,UAAA0D,MAAA,MAA/NnH,CAAA2F,GAAW,OAAApH,GAAAsT,OAAAlM,EAAAinF,QAAA7oF,IAAA,SAAAoD,GAA2C,uBAAAxB,EAAAynF,WAAAjmF,EAAA,SAA4C0K,QAAAxS,IAAAu0B,KAAA,MAA0B,OAAAr1B,GAAAq1B,KAAA,MAAwKzsB,EAAA9I,QAAA,SAAA8I,GAAsB,IAAA1H,KAAS,OAAAA,EAAAqD,SAAA,WAA6B,OAAA4E,KAAA3D,IAAA,SAAAtE,GAA4B,IAAAO,EAAAzB,EAAAkB,EAAA0H,GAAa,OAAA1H,EAAA,aAAAA,EAAA,OAA6BO,EAAA,IAAMA,IAAI4zB,KAAA,KAAWn0B,EAAAlB,EAAA,SAAA4I,EAAA5I,GAAmB,iBAAA4I,QAAA,KAAAA,EAAA,MAAsC,QAAAnH,KAAY2F,EAAA,EAAKA,EAAA+B,KAAAxD,OAAcyB,IAAA,CAAK,IAAAtG,EAAAqI,KAAA/B,GAAA,GAAiB,iBAAAtG,IAAAW,EAAAX,IAAA,GAA8B,IAAAsG,EAAA,EAAQA,EAAAwB,EAAAjD,OAAWyB,IAAA,CAAK,IAAA3G,EAAAmI,EAAAxB,GAAW,iBAAA3G,EAAA,IAAAgB,EAAAhB,EAAA,MAAAT,IAAAS,EAAA,GAAAA,EAAA,GAAAT,MAAAS,EAAA,OAAAA,EAAA,aAAAT,EAAA,KAAAkB,EAAAuM,KAAAhN,MAAgGS,IAAI,SAAA0H,EAAA1H,EAAAlB,GAAiB,SAAAyB,EAAAmH,GAAc,QAAA1H,EAAA,EAAYA,EAAA0H,EAAAjD,OAAWzE,IAAA,CAAK,IAAAlB,EAAA4I,EAAA1H,GAAAO,EAAA49C,EAAAr/C,EAAAqN,IAAqB,GAAA5L,EAAA,CAAMA,EAAAiyB,OAAS,QAAAtsB,EAAA,EAAYA,EAAA3F,EAAAqtF,MAAAnpF,OAAiByB,IAAA3F,EAAAqtF,MAAA1nF,GAAApH,EAAA8uF,MAAA1nF,IAA2B,KAAKA,EAAApH,EAAA8uF,MAAAnpF,OAAiByB,IAAA3F,EAAAqtF,MAAArhF,KAAA3M,EAAAd,EAAA8uF,MAAA1nF,KAAgC3F,EAAAqtF,MAAAnpF,OAAA3F,EAAA8uF,MAAAnpF,SAAAlE,EAAAqtF,MAAAnpF,OAAA3F,EAAA8uF,MAAAnpF,YAA+D,CAAK,QAAAlF,KAAA2G,EAAA,EAAiBA,EAAApH,EAAA8uF,MAAAnpF,OAAiByB,IAAA3G,EAAAgN,KAAA3M,EAAAd,EAAA8uF,MAAA1nF,KAA0Bi4C,EAAAr/C,EAAAqN,KAASA,GAAArN,EAAAqN,GAAAqmB,KAAA,EAAAo7D,MAAAruF,KAA0B,SAAA2G,IAAa,IAAAwB,EAAAwpB,SAAAlN,cAAA,SAAsC,OAAAtc,EAAAtG,KAAA,WAAAjC,EAAA6yB,YAAAtqB,KAA4C,SAAA9H,EAAA8H,GAAc,IAAA1H,EAAAlB,EAAAyB,EAAA2wB,SAAAC,cAAA,2BAAAzpB,EAAAyE,GAAA,MAAuE,GAAA5L,EAAA,CAAM,GAAArB,EAAA,OAAAqpC,EAAchoC,EAAAwvB,WAAAgC,YAAAxxB,GAA4B,GAAAyG,EAAA,CAAM,IAAApH,EAAAgB,IAAUL,EAAAi+C,MAAAt4C,KAAAlG,EAAAT,EAAAe,KAAA,KAAAC,EAAAX,GAAA,GAAAd,EAAAS,EAAAe,KAAA,KAAAC,EAAAX,GAAA,QAAyDW,EAAA2F,IAAAlG,EAA6Y,SAAA0H,EAAA1H,GAAgB,IAAAlB,EAAAkB,EAAA08B,IAAAn8B,EAAAP,EAAA6tF,MAAA3nF,EAAAlG,EAAA8tF,UAAoC,GAAAvtF,GAAAmH,EAAA6pB,aAAA,QAAAhxB,GAAA2F,IAAApH,GAAA,mBAAAoH,EAAAinF,QAAA,SAAAruF,GAAA,uDAA8HqgE,KAAAsuB,SAAAC,mBAAA3pF,KAAAC,UAAAkC,MAAA,OAAAwB,EAAAqmF,WAAArmF,EAAAqmF,WAAAnzD,QAAA97B,MAA0G,CAAK,KAAK4I,EAAAk+B,YAAal+B,EAAAqqB,YAAArqB,EAAAk+B,YAA6Bl+B,EAAAsqB,YAAAd,SAAAQ,eAAA5yB,MAA7tBwB,KAAA,KAAAC,GAAAzB,EAAA,WAAyCyB,EAAAwvB,WAAAgC,YAAAxxB,IAA6B,OAAAP,EAAA0H,GAAA,SAAAnH,GAAwB,GAAAA,EAAA,CAAM,GAAAA,EAAAm8B,MAAAh1B,EAAAg1B,KAAAn8B,EAAAstF,QAAAnmF,EAAAmmF,OAAAttF,EAAAutF,YAAApmF,EAAAomF,UAAA,OAAsE9tF,EAAA0H,EAAAnH,QAAOzB,KAAU,SAAAS,EAAAmI,EAAA1H,EAAAlB,EAAAyB,GAAoB,IAAA2F,EAAApH,EAAA,GAAAyB,EAAAm8B,IAAiB,GAAAh1B,EAAAqmF,WAAArmF,EAAAqmF,WAAAnzD,QAAAsS,EAAAltC,EAAAkG,OAA4C,CAAK,IAAAtG,EAAAsxB,SAAAQ,eAAAxrB,GAAA3G,EAAAmI,EAAAsyB,WAAgDz6B,EAAAS,IAAA0H,EAAAqqB,YAAAxyB,EAAAS,IAAAT,EAAAkF,OAAAiD,EAAAkqB,aAAAhyB,EAAAL,EAAAS,IAAA0H,EAAAsqB,YAAApyB,IAAuc,IAAAb,EAAA,oBAAAmyB,SAAmC,uBAAA88D,eAAAjvF,EAAA,UAAAi7D,MAAA,2JAAmN,IAAA56D,EAAAN,EAAA,GAAAq/C,KAAeh/C,EAAAJ,IAAAmyB,SAAA+8D,MAAA/8D,SAAAg9D,qBAAA,YAAA1vC,EAAA,KAAA59C,EAAA,EAAA1B,GAAA,EAAAqpC,EAAA,aAA8FvhC,EAAA,oBAAAqD,WAAA,eAAAG,KAAAH,UAAAC,UAAA5F,eAAyFgD,EAAA9I,QAAA,SAAA8I,EAAA1H,EAAAlB,GAA0BI,EAAAJ,EAAI,IAAAoH,EAAA9G,EAAAsI,EAAA1H,GAAa,OAAAO,EAAA2F,GAAA,SAAAlG,GAAwB,QAAAlB,KAAAc,EAAA,EAAiBA,EAAAsG,EAAAzB,OAAW7E,IAAA,CAAK,IAAAL,EAAA2G,EAAAtG,GAAAiB,EAAAs9C,EAAA5+C,EAAA4M,IAAqBtL,EAAA2xB,OAAA1zB,EAAAyN,KAAA1L,GAAmBb,EAAAO,EAAA2F,EAAA9G,EAAAsI,EAAA1H,IAAAkG,KAAuB,QAAAtG,EAAA,EAAYA,EAAAd,EAAA2F,OAAW7E,IAAA,CAAK,IAAAiB,EAAA/B,EAAAc,GAAW,OAAAiB,EAAA2xB,KAAA,CAAe,QAAAzzB,EAAA,EAAYA,EAAA8B,EAAA+sF,MAAAnpF,OAAiB1F,IAAA8B,EAAA+sF,MAAA7uF,YAAiBo/C,EAAAt9C,EAAAsL,QAAmB,IAAA+gC,EAAA,WAAiB,IAAAxlC,KAAS,gBAAA1H,EAAAlB,GAAqB,OAAA4I,EAAA1H,GAAAlB,EAAA4I,EAAAiY,OAAApL,SAAA4f,KAAA,OAA/C,IAA8F,SAAAzsB,EAAA1H,GAAe0H,EAAA9I,QAAA,SAAA8I,EAAA1H,EAAAlB,EAAAyB,EAAA2F,EAAAtG,GAAgC,IAAAL,EAAAsB,EAAA6G,QAAe3I,SAAA2I,EAAA+M,QAAoB,WAAA1V,GAAA,aAAAA,IAAAQ,EAAAmI,EAAA7G,EAAA6G,EAAA+M,SAAgD,IAAwJ0pC,EAAxJ/+C,EAAA,mBAAAyB,IAAAkS,QAAAlS,EAA8J,GAAvHb,IAAAZ,EAAA4gB,OAAAhgB,EAAAggB,OAAA5gB,EAAA2iB,gBAAA/hB,EAAA+hB,gBAAA3iB,EAAAskB,WAAA,GAAA5kB,IAAAM,EAAA0oB,YAAA,GAAA5hB,IAAA9G,EAAA0kB,SAAA5d,GAAuHtG,GAAAu+C,EAAA,SAAAz2C,IAAoBA,KAAAO,KAAAwd,QAAAxd,KAAAwd,OAAA2J,YAAAnnB,KAAA8F,QAAA9F,KAAA8F,OAAA0X,QAAAxd,KAAA8F,OAAA0X,OAAA2J,aAAA,oBAAA+4B,sBAAAzgD,EAAAygD,qBAAA5nD,KAAAtB,KAAAgJ,KAAAP,QAAA0gD,uBAAA1gD,EAAA0gD,sBAAAt8C,IAAAlM,IAA0PR,EAAAipD,aAAAlK,GAAA59C,IAAA49C,EAAA59C,GAAA49C,EAAA,CAA+B,IAAAh/C,EAAAC,EAAA0oB,WAAA02B,EAAAr/C,EAAAC,EAAA4gB,OAAA5gB,EAAAkpD,aAA+CnpD,GAAAC,EAAAmpD,cAAApK,EAAA/+C,EAAA4gB,OAAA,SAAAtY,EAAA1H,GAA4C,OAAAm+C,EAAAl/C,KAAAe,GAAAw+C,EAAA92C,EAAA1H,KAAwBZ,EAAAkpD,aAAA9J,KAAApsC,OAAAosC,EAAAL,OAAsC,OAAOqK,SAAAjpD,EAAAX,QAAAiC,EAAAkS,QAAA3T,KAAiC,SAAAsI,EAAA1H,EAAAlB,GAAiB,aAAaU,OAAAC,eAAAO,EAAA,cAAsCD,OAAA,IAAW,IAAAQ,EAAAzB,EAAA,GAAWkB,EAAAyU,QAAAlU,EAAA2F,EAAA,oBAAA6D,eAAA+f,KAAA/f,OAAA+f,IAAA1C,UAAA,mBAAA7mB,EAAA2F,IAAmG,SAAAwB,EAAA1H,EAAAlB,GAAiB,aAAgC,IAAAoH,EAAApH,EAAA,GAAAc,EAAAd,EAAA,IAAAS,EAAAT,EAAA,GAAA+B,EAAnB,SAAA6G,GAAc5I,EAAA,IAAKC,EAAAQ,EAAA2G,IAAAtG,EAAAsG,GAAA,EAAArF,EAAA,wBAAuEb,EAAAkG,EAAAnH,EAAAH,SAAc,SAAA8I,EAAA1H,EAAAlB,GAAiB,IAAAyB,EAAAzB,EAAA,GAAW,iBAAAyB,QAAAmH,EAAA5I,EAAAyB,EAAA,MAAAA,EAAA4tF,SAAAzmF,EAAA9I,QAAA2B,EAAA4tF,QAAoErvF,EAAA,EAAAA,CAAA,WAAAyB,GAAA,IAAsB,SAAAmH,EAAA1H,EAAAlB,IAAiB4I,EAAA9I,QAAAE,EAAA,EAAAA,MAAA,IAAAyN,MAAA7E,EAAA5I,EAAA,4VAA+X,MAAO,SAAA4I,EAAA1H,GAAe0H,EAAA9I,QAAA,SAAA8I,EAAA1H,GAAwB,QAAAlB,KAAAyB,KAAiB2F,EAAA,EAAKA,EAAAlG,EAAAyE,OAAWyB,IAAA,CAAK,IAAAtG,EAAAI,EAAAkG,GAAA3G,EAAAK,EAAA,GAAAiB,EAAAjB,EAAA,GAAAb,EAAAa,EAAA,GAAAR,EAAAQ,EAAA,GAAAu+C,GAA0ChyC,GAAAzE,EAAA,IAAAxB,EAAAw2B,IAAA77B,EAAAgtF,MAAA9uF,EAAA+uF,UAAA1uF,GAAsCmB,EAAAhB,GAAAgB,EAAAhB,GAAAquF,MAAArhF,KAAA4xC,GAAAr/C,EAAAyN,KAAAhM,EAAAhB,IAAqC4M,GAAA5M,EAAAquF,OAAAzvC,KAAiB,OAAAr/C,IAAU,SAAA4I,EAAA1H,EAAAlB,GAAiB,aAAa,IAAAyB,EAAAzB,EAAA,GAAAoH,GAAckoF,eAAA,8iBAAsjB,yGAAAj6D,KAAA,MAAAk6D,eAAA,uHAAgQzuF,GAAI0uF,eAAA,+pBAAAn6D,KAAA,OAA0rBn0B,EAAAkG,GAAK7G,KAAA,kBAAA+N,KAAA,WAAuC,OAAOkgE,aAAA,KAAAihB,cAAA,KAAAC,WAAA,EAAAC,YAAA,EAAAC,aAAA,EAAAC,cAAA,KAAAC,iBAAA,GAAAC,qBAAA,EAAAC,kBAAA,KAAAC,oBAAA,IAA2LllE,YAAamlE,QAAAzuF,EAAA2F,GAAYyM,UAAWs8E,aAAa3pF,OAAA,EAAA3F,IAAA,WAAwB,IAAA+H,EAAAO,KAAAuY,OAAA,cAAAxgB,EAAA0H,KAAA,GAAA6F,KAAA,KAAA7F,EAAA,GAAA6F,IAAA4kB,YAAyE,OAAAlqB,KAAAumF,WAAAvmF,KAAAwmF,YAAAxmF,KAAAymF,cAAA1uF,IAA8DkvF,UAAW5pF,OAAA,EAAA3F,IAAA,WAAwB,IAAA+H,EAAAO,KAAAuY,OAAA,WAAAxgB,EAAA0H,KAAA,GAAA6F,KAAA,KAAA7F,EAAA,GAAA6F,IAAA4kB,YAAsE,OAAAlqB,KAAAumF,WAAAvmF,KAAAwmF,aAAAxmF,KAAAymF,cAAA1uF,KAAgEwS,OAAQ28E,UAAU/tF,KAAA6sB,OAAAxZ,QAAA,KAAwB26E,WAAA9sF,SAAA+sF,QAAA1rF,OAAA2rF,WAA+CluF,KAAAuC,OAAA8Q,QAAA,UAA6B86E,wBAAA,MAA8BnhE,QAAA,WAAoB,IAAA1mB,EAAAO,KAAWA,KAAAqlE,aAAArlE,KAAAuhE,kBAAAvhE,KAAAsmF,cAAA,SAAA7mF,GAAwEO,KAAAumF,YAAAp0B,aAAAnyD,KAAA0mF,eAAAjnF,KAAA4iB,cAAAklE,MAAAvnF,KAAA0mF,cAAAt4E,WAAApO,KAAAwnF,YAAAxnF,KAAA2mF,kBAAA3mF,KAAAwnF,gBAAqKnvF,KAAA2H,MAAAoO,WAAApO,KAAAsmF,cAAA,GAAAtmF,KAAAqlE,aAAAtiE,iBAAA,SAAA/C,KAAAsmF,eAAAtmF,KAAA8R,IAAA,mCAAA/Z,GAA4J0H,EAAAgnF,aAAA,EAAAhnF,EAAA8mF,WAAA9mF,EAAA6lB,UAAA7lB,EAAA+nF,YAAAnvF,KAAA,UAAAN,KAAAmC,SAAAuF,GAAAiO,QAAA3J,KAAA9F,EAAAkoF,iBAAsHnmF,KAAA8R,IAAA,qCAAA/Z,GAAmD0H,EAAA8mF,WAAA,EAAA9mF,EAAA+mF,YAAA,EAAA/mF,EAAA6lB,UAAA,WAAsD7lB,EAAAqe,iBAAiBre,EAAA4lE,aAAAt4C,oBAAA,SAAAttB,EAAA6mF,eAAAvuF,KAAAmC,SAAAuF,GAAAiO,QAAA3J,KAAA9F,EAAAkoF,iBAA8GnmF,KAAA8R,IAAA,oCAA+CrS,EAAA8mF,WAAA,EAAA9mF,EAAA+mF,YAAA,EAAA/mF,EAAAgnF,aAAA,EAAAhnF,EAAA4lE,aAAAtiE,iBAAA,SAAAtD,EAAA6mF,eAAAl4E,WAAA3O,EAAA6mF,cAAA,KAAwItmF,KAAAmnF,YAAAz5E,QAAA3J,KAAA9F,EAAAmoF,gBAAApmF,KAAAynF,cAAqEC,OAAA,WAAkBjoF,EAAA6T,MAAA,2BAAmCpZ,OAAAuF,KAAWkoF,SAAA,WAAqBloF,EAAA6T,MAAA,6BAAqCpZ,OAAAuF,KAAWmoF,MAAA,WAAkBnoF,EAAA6T,MAAA,0BAAkCpZ,OAAAuF,MAAYO,KAAAwX,OAAA,qCAAkD/X,EAAA4lE,aAAA5lE,EAAA8hE,qBAAqCsmB,YAAA,WAAwB7nF,KAAAumF,WAAA,EAAAvmF,KAAAqlE,aAAAt4C,oBAAA,SAAA/sB,KAAAsmF,gBAAqFwB,UAAA,WAAsB9nF,KAAAqlE,aAAAtiE,iBAAA,SAAA/C,KAAAsmF,gBAAgE97E,SAAUg9E,YAAA,SAAA/nF,GAAwB,IAAA1H,EAAAiI,KAAAnJ,EAAAmJ,KAAA+nF,sBAAuC/nF,KAAAwmF,YAAA3vF,GAAAmJ,KAAAknF,UAAAlnF,KAAAglB,IAAA8/C,YAAA9kE,KAAAglB,IAAA6d,aAAA,GAAA7iC,KAAAumF,WAAA,qBAAAvmF,KAAAmnF,WAAAnnF,KAAAmnF,WAAAnwF,KAAA,KAAAgJ,KAAAynF,cAAAznF,KAAAsT,MAAA,WAAAtT,KAAAynF,eAAAhoF,GAAAO,KAAAsnF,yBAAAtnF,KAAA4mF,sBAAA5mF,KAAA8mF,qBAAA,EAAA30B,aAAAnyD,KAAA6mF,mBAAA7mF,KAAA6mF,kBAAAz4E,WAAA,WAAwYrW,EAAA6uF,qBAAA,GAAyB,KAAA5mF,KAAA8mF,oBAAA,KAAAp5E,QAAAC,MAAAhW,EAAA0uF,eAAArmF,KAAA4mF,qBAAA,KAAA5mF,KAAAumF,WAAA,GAAoHwB,mBAAA,WAAkT,MAAtQ,QAAA/nF,KAAAqnF,UAAAprF,MAAA+D,KAAAqlE,aAAA7pB,WAAAx7C,KAAAqlE,aAAA2iB,YAAAhoF,KAAAqlE,aAAA7pB,UAA8Hx7C,KAAAglB,IAAAoc,wBAAAO,KAAA3hC,KAAAqlE,eAAAvjE,cAAA04C,YAAAx6C,KAAAqlE,aAAAjkC,wBAAAqZ,SAAiJ8mB,gBAAA,WAA4B,IAAA9hE,EAAAvB,UAAA1B,OAAA,YAAA0B,UAAA,GAAAA,UAAA,GAAA8B,KAAAglB,IAAAjtB,OAAA,EAA+E,eAAA0H,EAAA2pB,QAAArxB,EAAA+J,QAAA9B,KAAAsnF,0BAAA,iBAAAtqF,QAAA25B,iBAAAl3B,GAAAmiE,YAAA,EAAA7pE,EAAA0H,KAAAs+B,aAAA,qBAAAt+B,EAAAs+B,aAAA,4BAAAhmC,EAAA0H,GAAA1H,GAAAiI,KAAAuhE,gBAAA9hE,EAAAqoB,cAA6P5B,UAAA,WAAsBlmB,KAAAwmF,YAAAxmF,KAAAqlE,aAAAt4C,oBAAA,SAAA/sB,KAAAsmF,kBAAsF,SAAA7mF,EAAA1H,EAAAlB,GAAiB,aAAiC,IAAAoH,EAAApH,EAAA,IAAAc,EAAAd,EAAA,IAAAS,EAAAT,EAAA,GAAA+B,EAApB,SAAA6G,GAAc5I,EAAA,KAAMC,EAAAQ,EAAA2G,IAAAtG,EAAAsG,GAAA,EAAArF,EAAA,wBAAwEb,EAAAkG,EAAAnH,EAAAH,SAAc,SAAA8I,EAAA1H,EAAAlB,GAAiB,IAAAyB,EAAAzB,EAAA,IAAY,iBAAAyB,QAAAmH,EAAA5I,EAAAyB,EAAA,MAAAA,EAAA4tF,SAAAzmF,EAAA9I,QAAA2B,EAAA4tF,QAAoErvF,EAAA,EAAAA,CAAA,WAAAyB,GAAA,IAAsB,SAAAmH,EAAA1H,EAAAlB,IAAiB4I,EAAA9I,QAAAE,EAAA,EAAAA,MAAA,IAAAyN,MAAA7E,EAAA5I,EAAA,+9MAAkgN,MAAO,SAAA4I,EAAA1H,EAAAlB,GAAiB,aAAa,IAAAyB,GAAO2vF,SAASlwE,OAAA,SAAAtY,GAAmB,OAAAA,EAAA,QAAiB6S,OAAOuO,MAAA,oBAAyBriB,MAAAL,MAAAK,YAAA,IAAAnC,IAAA,WAA4C,OAAAoD,EAAA,QAAiB6S,OAAOuO,MAAA,sBAA2BqnE,SAAUnwE,OAAA,SAAAtY,GAAmB,OAAAA,EAAA,QAAiB6S,OAAOuO,MAAA,oBAAyBriB,MAAAL,MAAAK,YAAA,IAAAnC,IAAA,WAA4C,OAAAoD,EAAA,QAAiB6S,OAAOuO,MAAA,sBAA2Bq8C,SAAUnlD,OAAA,SAAAtY,GAAmB,OAAAA,EAAA,KAAc6S,OAAOuO,MAAA,uBAA4BsnE,QAASpwE,OAAA,SAAAtY,GAAmB,OAAAA,EAAA,KAAc6S,OAAOuO,MAAA,sBAA2BunE,UAAWrwE,OAAA,SAAAtY,GAAmB,OAAAA,EAAA,QAAiB6S,OAAOuO,MAAA,sBAA2BriB,MAAAL,MAAAK,YAAA,IAAAnC,IAAA,WAA4C,OAAAoD,EAAA,QAAiB6S,OAAOuO,MAAA,qBAA2B9oB,EAAAkG,GAAK7G,KAAA,UAAAsT,UAAyB29E,YAAA,WAAuB,OAAA/vF,GAAA0H,KAAAonF,SAAA,IAAA1pF,gBAAApF,EAAA4kE,UAAuD3yD,OAAQ68E,QAAA1rF,UAAiB,SAAA+D,EAAA1H,EAAAlB,GAAiB,aAAa,IAAsGc,GAASogB,OAA/G,WAAiB,IAAAtY,EAAAO,KAAAjI,EAAA0H,EAAAgZ,eAA8B,OAAAhZ,EAAA+jB,MAAA1H,IAAA/jB,GAAA0H,EAAA4oF,aAAqCnjF,IAAA,eAA2B4U,oBAA4B/hB,EAAAkG,EAAAtG,GAAM,SAAA8H,EAAA1H,EAAAlB,GAAiB,aAAa,IAAwpBc,GAASogB,OAAjqB,WAAiB,IAAAtY,EAAAO,KAAAjI,EAAA0H,EAAAgZ,eAAA5hB,EAAA4I,EAAA+jB,MAAA1H,IAAA/jB,EAA8C,OAAAlB,EAAA,OAAgBoxB,YAAA,+BAAyCpxB,EAAA,OAAWsU,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAA2H,EAAA8mF,UAAAlxE,WAAA,gBAAwE5V,EAAAib,GAAA,WAAA7jB,EAAA,WAA+Byb,OAAO80E,QAAA3nF,EAAA2nF,cAAmB,GAAA3nF,EAAAwb,GAAA,KAAApkB,EAAA,OAA2BsU,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAA2H,EAAAunF,YAAA3xE,WAAA,gBAA0E4S,YAAA,2BAAuCxoB,EAAAib,GAAA,cAAAjb,EAAAwb,GAAA,uBAAAxb,EAAAwb,GAAA,KAAApkB,EAAA,OAAoEsU,aAAa/T,KAAA,OAAA60B,QAAA,SAAAn0B,MAAA2H,EAAAwnF,SAAA5xE,WAAA,aAAoE4S,YAAA,2BAAuCxoB,EAAAib,GAAA,WAAAjb,EAAAwb,GAAA,4BAA2DnB,oBAA4B/hB,EAAAkG,EAAAtG,uBCA/nmB,SAAAkB,GAAA,IAAAyvF,OAAA,IAAAzvF,MACA,oBAAAm3C,YACAluC,OACA3D,EAAA9D,SAAA5B,UAAA0F,MAiBA,SAAAoqF,EAAArkF,EAAAskF,GACAxoF,KAAAyoF,IAAAvkF,EACAlE,KAAA0oF,SAAAF,EAfA7xF,EAAAyX,WAAA,WACA,WAAAm6E,EAAApqF,EAAAnH,KAAAoX,WAAAk6E,EAAApqF,WAAAi0D,eAEAx7D,EAAAgyF,YAAA,WACA,WAAAJ,EAAApqF,EAAAnH,KAAA2xF,YAAAL,EAAApqF,WAAA0qF,gBAEAjyF,EAAAw7D,aACAx7D,EAAAiyF,cAAA,SAAAvpE,GACAA,GACAA,EAAAokB,SAQA8kD,EAAA9vF,UAAAowF,MAAAN,EAAA9vF,UAAA+sB,IAAA,aACA+iE,EAAA9vF,UAAAgrC,MAAA,WACAzjC,KAAA0oF,SAAA1xF,KAAAsxF,EAAAtoF,KAAAyoF,MAIA9xF,EAAAmyF,OAAA,SAAAhsF,EAAAisF,GACA52B,aAAAr1D,EAAAksF,gBACAlsF,EAAAmsF,aAAAF,GAGApyF,EAAAuyF,SAAA,SAAApsF,GACAq1D,aAAAr1D,EAAAksF,gBACAlsF,EAAAmsF,cAAA,GAGAtyF,EAAAwyF,aAAAxyF,EAAAoe,OAAA,SAAAjY,GACAq1D,aAAAr1D,EAAAksF,gBAEA,IAAAD,EAAAjsF,EAAAmsF,aACAF,GAAA,IACAjsF,EAAAksF,eAAA56E,WAAA,WACAtR,EAAAssF,YACAtsF,EAAAssF,cACKL,KAKLtyF,EAAA,KAIAE,EAAA8D,aAAA,oBAAAu1C,WAAAv1C,mBACA,IAAA5B,KAAA4B,cACAuF,WAAAvF,aACA9D,EAAAs/D,eAAA,oBAAAjmB,WAAAimB,qBACA,IAAAp9D,KAAAo9D,gBACAj2D,WAAAi2D,oDC9DA,SAAAp9D,EAAAi0D,IAAA,SAAAj0D,EAAAuB,GACA,aAEA,IAAAvB,EAAA4B,aAAA,CAIA,IAIA4uF,EAJAC,EAAA,EACAC,KACAC,GAAA,EACAC,EAAA5wF,EAAAowB,SAoJAygE,EAAAnyF,OAAAinD,gBAAAjnD,OAAAinD,eAAA3lD,GACA6wF,OAAAt7E,WAAAs7E,EAAA7wF,EAGU,wBAAAuC,SAAApE,KAAA6B,EAAAi0D,SApFVu8B,EAAA,SAAAM,GACA78B,EAAAh+C,SAAA,WAA0C86E,EAAAD,MAI1C,WAGA,GAAA9wF,EAAA6V,cAAA7V,EAAAy9D,cAAA,CACA,IAAAuzB,GAAA,EACAC,EAAAjxF,EAAA4V,UAMA,OALA5V,EAAA4V,UAAA,WACAo7E,GAAA,GAEAhxF,EAAA6V,YAAA,QACA7V,EAAA4V,UAAAq7E,EACAD,GAwEKE,GApEL,WAKA,IAAAC,EAAA,gBAAAruF,KAAA+6C,SAAA,IACAuzC,EAAA,SAAA55E,GACAA,EAAAjX,SAAAP,GACA,iBAAAwX,EAAAlL,MACA,IAAAkL,EAAAlL,KAAAnI,QAAAgtF,IACAJ,GAAAv5E,EAAAlL,KAAAtH,MAAAmsF,EAAAxtF,UAIA3D,EAAAkK,iBACAlK,EAAAkK,iBAAA,UAAAknF,GAAA,GAEApxF,EAAAqxF,YAAA,YAAAD,GAGAZ,EAAA,SAAAM,GACA9wF,EAAA6V,YAAAs7E,EAAAL,EAAA,MAiDAQ,GAEKtxF,EAAAsV,eA/CL,WACA,IAAAE,EAAA,IAAAF,eACAE,EAAAG,MAAAC,UAAA,SAAA4B,GAEAu5E,EADAv5E,EAAAlL,OAIAkkF,EAAA,SAAAM,GACAt7E,EAAAE,MAAAG,YAAAi7E,IAyCAS,GAEKX,GAAA,uBAAAA,EAAA1tE,cAAA,UAvCL,WACA,IAAAooB,EAAAslD,EAAAr0C,gBACAi0C,EAAA,SAAAM,GAGA,IAAAU,EAAAZ,EAAA1tE,cAAA,UACAsuE,EAAAC,mBAAA,WACAV,EAAAD,GACAU,EAAAC,mBAAA,KACAnmD,EAAAra,YAAAugE,GACAA,EAAA,MAEAlmD,EAAApa,YAAAsgE,IA6BAE,GAxBAlB,EAAA,SAAAM,GACAv7E,WAAAw7E,EAAA,EAAAD,IA8BAD,EAAAjvF,aA1KA,SAAAilB,GAEA,mBAAAA,IACAA,EAAA,IAAArlB,SAAA,GAAAqlB,IAIA,IADA,IAAArY,EAAA,IAAA7I,MAAAN,UAAA1B,OAAA,GACA3F,EAAA,EAAqBA,EAAAwQ,EAAA7K,OAAiB3F,IACtCwQ,EAAAxQ,GAAAqH,UAAArH,EAAA,GAGA,IAAA2zF,GAAkB9qE,WAAArY,QAGlB,OAFAkiF,EAAAD,GAAAkB,EACAnB,EAAAC,GACAA,KA6JAI,EAAAzzB,iBA1JA,SAAAA,EAAA0zB,UACAJ,EAAAI,GAyBA,SAAAC,EAAAD,GAGA,GAAAH,EAGAp7E,WAAAw7E,EAAA,EAAAD,OACS,CACT,IAAAa,EAAAjB,EAAAI,GACA,GAAAa,EAAA,CACAhB,GAAA,EACA,KAjCA,SAAAgB,GACA,IAAA9qE,EAAA8qE,EAAA9qE,SACArY,EAAAmjF,EAAAnjF,KACA,OAAAA,EAAA7K,QACA,OACAkjB,IACA,MACA,OACAA,EAAArY,EAAA,IACA,MACA,OACAqY,EAAArY,EAAA,GAAAA,EAAA,IACA,MACA,OACAqY,EAAArY,EAAA,GAAAA,EAAA,GAAAA,EAAA,IACA,MACA,QACAqY,EAAAvhB,MAAA/D,EAAAiN,IAiBAyM,CAAA02E,GACiB,QACjBv0B,EAAA0zB,GACAH,GAAA,MAvEA,CAyLC,oBAAAx5C,UAAA,IAAAn3C,EAAAmH,KAAAnH,EAAAm3C,6DCvLD,IAAAyjB,EAAAh9D,EAAA,IACA4B,EAAA5B,EAAA,IACAg0F,EAAAh0F,EAAA,KACAs9D,EAAAt9D,EAAA,IAQA,SAAAi0F,EAAAC,GACA,IAAAplF,EAAA,IAAAklF,EAAAE,GACAp6B,EAAAl4D,EAAAoyF,EAAAhyF,UAAA4+D,QAAA9xD,GAQA,OALAkuD,EAAAh1D,OAAA8xD,EAAAk6B,EAAAhyF,UAAA8M,GAGAkuD,EAAAh1D,OAAA8xD,EAAAhrD,GAEAgrD,EAIA,IAAAq6B,EAAAF,EAAA32B,GAGA62B,EAAAH,QAGAG,EAAAzyF,OAAA,SAAA0yF,GACA,OAAAH,EAAAj3B,EAAA3Q,MAAAiR,EAAA82B,KAIAD,EAAAlxB,OAAAjjE,EAAA,IACAm0F,EAAAE,YAAAr0F,EAAA,KACAm0F,EAAAG,SAAAt0F,EAAA,IAGAm0F,EAAAtiD,IAAA,SAAA0iD,GACA,OAAAr8E,QAAA25B,IAAA0iD,IAEAJ,EAAAK,OAAAx0F,EAAA,KAEAG,EAAAD,QAAAi0F,EAGAh0F,EAAAD,QAAA6V,QAAAo+E,iBCtCA,SAAAnpC,EAAAvmD,GACA,QAAAA,EAAAmnB,aAAA,mBAAAnnB,EAAAmnB,YAAAo/B,UAAAvmD,EAAAmnB,YAAAo/B,SAAAvmD;;;;;;;AALAtE,EAAAD,QAAA,SAAAuE,GACA,aAAAA,IAAAumD,EAAAvmD,IAQA,SAAAA,GACA,yBAAAA,EAAAgwF,aAAA,mBAAAhwF,EAAA2C,OAAA4jD,EAAAvmD,EAAA2C,MAAA,MATAstF,CAAAjwF,QAAAkwF,0CCRA,IAAAr3B,EAAAt9D,EAAA,IACAg9D,EAAAh9D,EAAA,IACA40F,EAAA50F,EAAA,KACA60F,EAAA70F,EAAA,KAOA,SAAAg0F,EAAAI,GACA7qF,KAAA+zD,SAAA82B,EACA7qF,KAAAurF,cACAl0B,QAAA,IAAAg0B,EACAhzB,SAAA,IAAAgzB,GASAZ,EAAAhyF,UAAA4+D,QAAA,SAAAj3D,GAGA,iBAAAA,IACAA,EAAAqzD,EAAA3Q,OACA2U,IAAAv5D,UAAA,IACKA,UAAA,MAGLkC,EAAAqzD,EAAA3Q,MAAAiR,GAAkC5sD,OAAA,OAAcnH,KAAA+zD,SAAA3zD,IAChD+G,OAAA/G,EAAA+G,OAAA1K,cAGA,IAAA+uF,GAAAF,OAAAlxF,GACA++D,EAAAxqD,QAAAC,QAAAxO,GAUA,IARAJ,KAAAurF,aAAAl0B,QAAAnwD,QAAA,SAAAukF,GACAD,EAAA5kE,QAAA6kE,EAAAC,UAAAD,EAAAE,YAGA3rF,KAAAurF,aAAAlzB,SAAAnxD,QAAA,SAAAukF,GACAD,EAAAlnF,KAAAmnF,EAAAC,UAAAD,EAAAE,YAGAH,EAAAhvF,QACA28D,IAAAtqD,KAAA28E,EAAAl6E,QAAAk6E,EAAAl6E,SAGA,OAAA6nD,GAIA1F,EAAAvsD,SAAA,0CAAAC,GAEAsjF,EAAAhyF,UAAA0O,GAAA,SAAAswD,EAAAr3D,GACA,OAAAJ,KAAAq3D,QAAA5D,EAAA3Q,MAAA1iD,OACA+G,SACAswD,YAKAhE,EAAAvsD,SAAA,+BAAAC,GAEAsjF,EAAAhyF,UAAA0O,GAAA,SAAAswD,EAAAtyD,EAAA/E,GACA,OAAAJ,KAAAq3D,QAAA5D,EAAA3Q,MAAA1iD,OACA+G,SACAswD,MACAtyD,aAKAvO,EAAAD,QAAA8zF,gCC5EA,IAAAh3B,EAAAh9D,EAAA,IAEAG,EAAAD,QAAA,SAAAm9D,EAAAxgC,GACAmgC,EAAAvsD,QAAA4sD,EAAA,SAAAh8D,EAAAV,GACAA,IAAAk8B,GAAAl8B,EAAAsG,gBAAA41B,EAAA51B,gBACAo2D,EAAAxgC,GAAAx7B,SACAg8D,EAAA18D,qCCNA,IAAA6/D,EAAAxgE,EAAA,IASAG,EAAAD,QAAA,SAAAiY,EAAAqQ,EAAAo5C,GACA,IAAA7D,EAAA6D,EAAAj4D,OAAAo0D,eAEA6D,EAAA5D,QAAAD,MAAA6D,EAAA5D,QAGAx1C,EAAAg4C,EACA,mCAAAoB,EAAA5D,OACA4D,EAAAj4D,OACA,KACAi4D,EAAAhB,QACAgB,IAPAzpD,EAAAypD,kCCHAzhE,EAAAD,QAAA,SAAAgX,EAAAvN,EAAA4tC,EAAAqpB,EAAAgB,GAOA,OANA1qD,EAAAvN,SACA4tC,IACArgC,EAAAqgC,QAEArgC,EAAA0pD,UACA1pD,EAAA0qD,WACA1qD,iCCjBA,IAAA8lD,EAAAh9D,EAAA,IAEA,SAAAm1F,EAAApwF,GACA,OAAAiqF,mBAAAjqF,GACAgC,QAAA,aACAA,QAAA,aACAA,QAAA,YACAA,QAAA,aACAA,QAAA,YACAA,QAAA,aACAA,QAAA,aAUA5G,EAAAD,QAAA,SAAA8gE,EAAAnnD,EAAA0nD,GAEA,IAAA1nD,EACA,OAAAmnD,EAGA,IAAAo0B,EACA,GAAA7zB,EACA6zB,EAAA7zB,EAAA1nD,QACG,GAAAmjD,EAAA/Q,kBAAApyC,GACHu7E,EAAAv7E,EAAAlV,eACG,CACH,IAAAuqF,KAEAlyB,EAAAvsD,QAAAoJ,EAAA,SAAA9U,EAAApD,GACA,OAAAoD,QAAA,IAAAA,IAIAi4D,EAAAn0D,QAAA9D,GACApD,GAAA,KAEAoD,MAGAi4D,EAAAvsD,QAAA1L,EAAA,SAAAX,GACA44D,EAAApR,OAAAxnD,GACAA,IAAAixF,cACSr4B,EAAAx4D,SAAAJ,KACTA,EAAAiB,KAAAC,UAAAlB,IAEA8qF,EAAArhF,KAAAsnF,EAAAxzF,GAAA,IAAAwzF,EAAA/wF,SAIAgxF,EAAAlG,EAAAz5D,KAAA,KAOA,OAJA2/D,IACAp0B,KAAA,IAAAA,EAAAz6D,QAAA,cAAA6uF,GAGAp0B,iCC9DA,IAAAhE,EAAAh9D,EAAA,IAIAs1F,GACA,6DACA,kEACA,gEACA,sCAgBAn1F,EAAAD,QAAA,SAAAm9D,GACA,IACA17D,EACAoD,EACA3E,EAHAm1F,KAKA,OAAAl4B,GAEAL,EAAAvsD,QAAA4sD,EAAAv3D,MAAA,eAAA0vF,GAKA,GAJAp1F,EAAAo1F,EAAAjvF,QAAA,KACA5E,EAAAq7D,EAAAllC,KAAA09D,EAAA5Z,OAAA,EAAAx7E,IAAA4F,cACAjB,EAAAi4D,EAAAllC,KAAA09D,EAAA5Z,OAAAx7E,EAAA,IAEAuB,EAAA,CACA,GAAA4zF,EAAA5zF,IAAA2zF,EAAA/uF,QAAA5E,IAAA,EACA,OAGA4zF,EAAA5zF,GADA,eAAAA,GACA4zF,EAAA5zF,GAAA4zF,EAAA5zF,OAAA+R,QAAA3O,IAEAwwF,EAAA5zF,GAAA4zF,EAAA5zF,GAAA,KAAAoD,OAKAwwF,GAnBiBA,iCC9BjB,IAAAv4B,EAAAh9D,EAAA,IAEAG,EAAAD,QACA88D,EAAA7Q,uBAIA,WACA,IAEAspC,EAFAhT,EAAA,kBAAA32E,KAAAH,UAAAC,WACA8pF,EAAAljE,SAAAlN,cAAA,KASA,SAAAqwE,EAAA30B,GACA,IAAAxiB,EAAAwiB,EAWA,OATAyhB,IAEAiT,EAAA7iE,aAAA,OAAA2rB,GACAA,EAAAk3C,EAAAl3C,MAGAk3C,EAAA7iE,aAAA,OAAA2rB,IAIAA,KAAAk3C,EAAAl3C,KACAo3C,SAAAF,EAAAE,SAAAF,EAAAE,SAAA7uF,QAAA,YACA8jE,KAAA6qB,EAAA7qB,KACAnqB,OAAAg1C,EAAAh1C,OAAAg1C,EAAAh1C,OAAA35C,QAAA,aACAqT,KAAAs7E,EAAAt7E,KAAAs7E,EAAAt7E,KAAArT,QAAA,YACA8uF,SAAAH,EAAAG,SACAh+E,KAAA69E,EAAA79E,KACAi+E,SAAA,MAAAJ,EAAAI,SAAA3uF,OAAA,GACAuuF,EAAAI,SACA,IAAAJ,EAAAI,UAYA,OARAL,EAAAE,EAAAtqF,OAAA0qF,SAAAv3C,MAQA,SAAAw3C,GACA,IAAAT,EAAAv4B,EAAAvR,SAAAuqC,GAAAL,EAAAK,KACA,OAAAT,EAAAK,WAAAH,EAAAG,UACAL,EAAA1qB,OAAA4qB,EAAA5qB,MAhDA,GAsDA,WACA,wCC5DA,IAAA/4B,EAAA,oEAEA,SAAAsT,IACA77C,KAAAw5D,QAAA,uCAEA3d,EAAApjD,UAAA,IAAAs5D,MACAlW,EAAApjD,UAAAu1C,KAAA,EACA6N,EAAApjD,UAAArB,KAAA,wBAwBAR,EAAAD,QAtBA,SAAAwqD,GAGA,IAFA,IAIA1W,EAAAiiD,EAJAvwF,EAAAT,OAAAylD,GACAwrC,EAAA,GAGAC,EAAA,EAAAvwF,EAAAksC,EAIApsC,EAAAyB,OAAA,EAAAgvF,KAAAvwF,EAAA,IAAAuwF,EAAA,GAEAD,GAAAtwF,EAAAuB,OAAA,GAAA6sC,GAAA,EAAAmiD,EAAA,KACA,CAEA,IADAF,EAAAvwF,EAAAmF,WAAAsrF,GAAA,MACA,IACA,UAAA/wC,EAEApR,KAAA,EAAAiiD,EAEA,OAAAC,iCC9BA,IAAAl5B,EAAAh9D,EAAA,IAEAG,EAAAD,QACA88D,EAAA7Q,wBAKA1G,MAAA,SAAA9kD,EAAAU,EAAA+0F,EAAAv3E,EAAAw3E,EAAAC,GACA,IAAAC,KACAA,EAAA1oF,KAAAlN,EAAA,IAAAquF,mBAAA3tF,IAEA27D,EAAAtR,SAAA0qC,IACAG,EAAA1oF,KAAA,eAAAu7E,KAAAgN,GAAAI,eAGAx5B,EAAAvR,SAAA5sC,IACA03E,EAAA1oF,KAAA,QAAAgR,GAGAm+C,EAAAvR,SAAA4qC,IACAE,EAAA1oF,KAAA,UAAAwoF,IAGA,IAAAC,GACAC,EAAA1oF,KAAA,UAGA2kB,SAAA+jE,SAAA9gE,KAAA,OAGA2sC,KAAA,SAAAzhE,GACA,IAAA0V,EAAAmc,SAAA+jE,OAAAlgF,MAAA,IAAA6Y,OAAA,aAA0DvuB,EAAA,cAC1D,OAAA0V,EAAAogF,mBAAApgF,EAAA,UAGAlQ,OAAA,SAAAxF,GACA4I,KAAAk8C,MAAA9kD,EAAA,GAAAyoF,KAAAxpB,MAAA,UAQAna,MAAA,aACA2c,KAAA,WAA6B,aAC7Bj8D,OAAA,4CC/CA,IAAA62D,EAAAh9D,EAAA,IAEA,SAAA40F,IACArrF,KAAAmT,YAWAk4E,EAAA5yF,UAAAiqB,IAAA,SAAAgpE,EAAAC,GAKA,OAJA3rF,KAAAmT,SAAA7O,MACAonF,YACAC,aAEA3rF,KAAAmT,SAAA3W,OAAA,GAQA6uF,EAAA5yF,UAAA00F,MAAA,SAAAjpF,GACAlE,KAAAmT,SAAAjP,KACAlE,KAAAmT,SAAAjP,GAAA,OAYAmnF,EAAA5yF,UAAAyO,QAAA,SAAA9J,GACAq2D,EAAAvsD,QAAAlH,KAAAmT,SAAA,SAAAmtB,GACA,OAAAA,GACAljC,EAAAkjC,MAKA1pC,EAAAD,QAAA00F,gCCjDA,IAAA53B,EAAAh9D,EAAA,IACA22F,EAAA32F,EAAA,KACAs0F,EAAAt0F,EAAA,IACAs9D,EAAAt9D,EAAA,IACA42F,EAAA52F,EAAA,KACA62F,EAAA72F,EAAA,KAKA,SAAA82F,EAAAntF,GACAA,EAAA84D,aACA94D,EAAA84D,YAAAs0B,mBAUA52F,EAAAD,QAAA,SAAAyJ,GAkCA,OAjCAmtF,EAAAntF,GAGAA,EAAAqtF,UAAAJ,EAAAjtF,EAAAq3D,OACAr3D,EAAAq3D,IAAA61B,EAAAltF,EAAAqtF,QAAArtF,EAAAq3D,MAIAr3D,EAAA0zD,QAAA1zD,EAAA0zD,YAGA1zD,EAAA+E,KAAAioF,EACAhtF,EAAA+E,KACA/E,EAAA0zD,QACA1zD,EAAA+zD,kBAIA/zD,EAAA0zD,QAAAL,EAAA3Q,MACA1iD,EAAA0zD,QAAA3D,WACA/vD,EAAA0zD,QAAA1zD,EAAA+G,YACA/G,EAAA0zD,aAGAL,EAAAvsD,SACA,qDACA,SAAAC,UACA/G,EAAA0zD,QAAA3sD,MAIA/G,EAAA4zD,SAAAD,EAAAC,SAEA5zD,GAAAyO,KAAA,SAAAwpD,GAUA,OATAk1B,EAAAntF,GAGAi4D,EAAAlzD,KAAAioF,EACA/0B,EAAAlzD,KACAkzD,EAAAvE,QACA1zD,EAAAg0D,mBAGAiE,GACG,SAAAn5C,GAcH,OAbA6rE,EAAA7rE,KACAquE,EAAAntF,GAGA8e,KAAAm5C,WACAn5C,EAAAm5C,SAAAlzD,KAAAioF,EACAluE,EAAAm5C,SAAAlzD,KACA+Z,EAAAm5C,SAAAvE,QACA1zD,EAAAg0D,qBAKAzlD,QAAAsQ,OAAAC,oCCjFA,IAAAu0C,EAAAh9D,EAAA,IAUAG,EAAAD,QAAA,SAAAwO,EAAA2uD,EAAAjkD,GAMA,OAJA4jD,EAAAvsD,QAAA2I,EAAA,SAAAzS,GACA+H,EAAA/H,EAAA+H,EAAA2uD,KAGA3uD,iCCVAvO,EAAAD,QAAA,SAAA8gE,GAIA,sCAAAl1D,KAAAk1D,kCCHA7gE,EAAAD,QAAA,SAAA82F,EAAAC,GACA,OAAAA,EACAD,EAAAjwF,QAAA,eAAAkwF,EAAAlwF,QAAA,WACAiwF,iCCVA,IAAA/zB,EAAAjjE,EAAA,IAQA,SAAAq0F,EAAA6C,GACA,sBAAAA,EACA,UAAAh4C,UAAA,gCAGA,IAAAi4C,EACA5tF,KAAAm5D,QAAA,IAAAxqD,QAAA,SAAAC,GACAg/E,EAAAh/E,IAGA,IAAAi/E,EAAA7tF,KACA2tF,EAAA,SAAAn0B,GACAq0B,EAAA3uE,SAKA2uE,EAAA3uE,OAAA,IAAAw6C,EAAAF,GACAo0B,EAAAC,EAAA3uE,WAOA4rE,EAAAryF,UAAA+0F,iBAAA,WACA,GAAAxtF,KAAAkf,OACA,MAAAlf,KAAAkf,QAQA4rE,EAAA1xF,OAAA,WACA,IAAAggE,EAIA,OACAy0B,MAJA,IAAA/C,EAAA,SAAA5zF,GACAkiE,EAAAliE,IAIAkiE,WAIAxiE,EAAAD,QAAAm0F,gCClCAl0F,EAAAD,QAAA,SAAA+oB,GACA,gBAAA7iB,GACA,OAAA6iB,EAAAvhB,MAAA,KAAAtB,mCCvBA,IAAA3D,EAAAzC,EAAA,GACA+sD,EAAA/sD,EAAA,IACAwrD,EAAAxrD,EAAA,IACAq/C,EAAAr/C,EAAA,GACAstD,EAAAttD,EAAA,IACAotD,EAAAptD,EAAA,GACAwE,EAAAxE,EAAA,GACAsrD,EAAAtrD,EAAA,GAAAsrD,YACAwC,EAAA9tD,EAAA,IACA2uD,EAAAnD,EAAAF,YACAsD,EAAApD,EAAAqD,SACAwoC,EAAAtqC,EAAAoH,KAAA7I,EAAAC,OACA2H,EAAAvE,EAAA3sD,UAAAoF,MACAspD,EAAA3D,EAAA2D,KAGAjuD,IAAAS,EAAAT,EAAAqB,EAAArB,EAAAO,GAAAsoD,IAAAqD,IAA6ErD,YAAAqD,IAE7ElsD,IAAAW,EAAAX,EAAAO,GAAA+pD,EAAAwD,OAJA,eAMAhF,OAAA,SAAAvM,GACA,OAAAq4C,KAAAr4C,IAAAx6C,EAAAw6C,IAAA0R,KAAA1R,KAIAv8C,IAAAa,EAAAb,EAAAoB,EAAApB,EAAAO,EAAAhD,EAAA,EAAAA,CAAA,WACA,WAAA2uD,EAAA,GAAAvnD,MAAA,OAAAzD,GAAA8wD,aAZA,eAeArtD,MAAA,SAAAS,EAAAi4B,GACA,QAAAn8B,IAAAuvD,QAAAvvD,IAAAm8B,EAAA,OAAAozB,EAAA3yD,KAAA8+C,EAAA91C,MAAA1B,GAQA,IAPA,IAAAgJ,EAAAwuC,EAAA91C,MAAAkrD,WACA6iC,EAAAhqC,EAAAzlD,EAAAgJ,GACA0mF,EAAAjqC,OAAA3pD,IAAAm8B,EAAAjvB,EAAAivB,EAAAjvB,GACAE,EAAA,IAAA+8C,EAAAvkD,KAAAolD,GAAA,CAAAvB,EAAAmqC,EAAAD,IACAE,EAAA,IAAA5oC,EAAArlD,MACAkuF,EAAA,IAAA7oC,EAAA79C,GACAzK,EAAA,EACAgxF,EAAAC,GACAE,EAAAnyB,SAAAh/D,IAAAkxF,EAAAhyB,SAAA8xB,MACK,OAAAvmF,KAIL/Q,EAAA,GAAAA,CA9BA,gCCfAA,EAAA,GAAAA,CAAA,kBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA,IAAAy5C,EAAAx/C,EAAA,GACAq/C,EAAAr/C,EAAA,GACAynE,EAAAznE,EAAA,IAEAG,EAAAD,QAAAF,EAAA,IAAAc,OAAAkP,iBAAA,SAAA0vC,EAAA0Y,GACA/Y,EAAAK,GAKA,IAJA,IAGAp8C,EAHA4F,EAAAu+D,EAAArP,GACAryD,EAAAmD,EAAAnD,OACA3F,EAAA,EAEA2F,EAAA3F,GAAAo/C,EAAAC,EAAAC,EAAAp8C,EAAA4F,EAAA9I,KAAAg4D,EAAA90D,IACA,OAAAo8C,oBCVA,IAAAoO,EAAA9tD,EAAA,KAEAG,EAAAD,QAAA,SAAAyQ,EAAA5K,GACA,WAAA+nD,EAAAn9C,GAAA,CAAA5K,qBCJA,IAAAvB,EAAAxE,EAAA,GACA6I,EAAA7I,EAAA,IACAg5D,EAAAh5D,EAAA,EAAAA,CAAA,WAEAG,EAAAD,QAAA,SAAAyQ,GACA,IAAAs3C,EASG,OARHp/C,EAAA8H,KAGA,mBAFAs3C,EAAAt3C,EAAAib,cAEAq8B,IAAAlgD,QAAAc,EAAAo/C,EAAAjmD,aAAAimD,OAAAtkD,GACAa,EAAAyjD,IAEA,QADAA,IAAA+Q,MACA/Q,OAAAtkD,SAEGA,IAAAskD,EAAAlgD,MAAAkgD,iCCbH,IAAAvmD,EAAA1B,EAAA,IACAytE,EAAAztE,EAAA,IACAw5D,EAAAx5D,EAAA,IACA2mE,KAGA3mE,EAAA,GAAAA,CAAA2mE,EAAA3mE,EAAA,EAAAA,CAAA,uBAAkF,OAAAuJ,OAElFpJ,EAAAD,QAAA,SAAA41D,EAAAlC,EAAA15B,GACA47B,EAAA9zD,UAAAN,EAAAilE,GAAqDzsC,KAAAuzC,EAAA,EAAAvzC,KACrDs/B,EAAA1D,EAAAlC,EAAA,+BCXA5zD,EAAA,GAAAA,CAAA,mBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA/F,EAAA,GAAAA,CAAA,mBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,MAEC,oBCJD/F,EAAA,GAAAA,CAAA,mBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA/F,EAAA,GAAAA,CAAA,oBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA/F,EAAA,GAAAA,CAAA,mBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA/F,EAAA,GAAAA,CAAA,oBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA/F,EAAA,GAAAA,CAAA,qBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,uBCFA/F,EAAA,GAAAA,CAAA,qBAAA2lB,GACA,gBAAAjX,EAAAskD,EAAAjtD,GACA,OAAA4f,EAAApc,KAAAmF,EAAAskD,EAAAjtD,oCCDA,IAAA2xF,EAAA13F,EAAA,IACAmxD,EAAAnxD,EAAA,IAIAG,EAAAD,QAAAF,EAAA,GAAAA,CAHA,MAGA,SAAAiB,GACA,kBAAyB,OAAAA,EAAAsI,KAAA9B,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,MAGzB1C,IAAA,SAAAU,GACA,IAAA6lE,EAAAkwB,EAAAnwB,SAAApW,EAAA5nD,KARA,OAQA5H,GACA,OAAA6lE,KAAApjE,GAGA8I,IAAA,SAAAvL,EAAAN,GACA,OAAAq2F,EAAA5sF,IAAAqmD,EAAA5nD,KAbA,OAaA,IAAA5H,EAAA,EAAAA,EAAAN,KAECq2F,GAAA,oBClBD,IAAAlzF,EAAAxE,EAAA,GACAi/D,EAAAj/D,EAAA,IAAAkN,IACA/M,EAAAD,QAAA,SAAA2sD,EAAAppD,EAAAwkD,GACA,IACA3kD,EADAF,EAAAK,EAAAmoB,YAIG,OAFHxoB,IAAA6kD,GAAA,mBAAA7kD,IAAAE,EAAAF,EAAApB,aAAAimD,EAAAjmD,WAAAwC,EAAAlB,IAAA27D,GACAA,EAAApS,EAAAvpD,GACGupD,iCCNH,IAAA6qC,EAAA13F,EAAA,IACAmxD,EAAAnxD,EAAA,IAIAG,EAAAD,QAAAF,EAAA,GAAAA,CAHA,MAGA,SAAAiB,GACA,kBAAyB,OAAAA,EAAAsI,KAAA9B,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,MAGzByJ,IAAA,SAAA/L,GACA,OAAAq2F,EAAA5sF,IAAAqmD,EAAA5nD,KARA,OAQAlI,EAAA,IAAAA,EAAA,EAAAA,OAECq2F,iCCZD,IAaAC,EAbAC,EAAA53F,EAAA,GAAAA,CAAA,GACAuC,EAAAvC,EAAA,IACA05C,EAAA15C,EAAA,IACA4nE,EAAA5nE,EAAA,IACA63F,EAAA73F,EAAA,IACAwE,EAAAxE,EAAA,GACA2sD,EAAA3sD,EAAA,GACAmxD,EAAAnxD,EAAA,IAEA6nD,EAAAnO,EAAAmO,QACA51C,EAAAnR,OAAAmR,aACA+1D,EAAA6vB,EAAA1vB,QACAlpD,KAGAy0C,EAAA,SAAAzyD,GACA,kBACA,OAAAA,EAAAsI,KAAA9B,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,KAIAoQ,GAEA9S,IAAA,SAAAU,GACA,GAAA6C,EAAA7C,GAAA,CACA,IAAA+M,EAAAm5C,EAAAlmD,GACA,WAAA+M,EAAAs5D,EAAA7W,EAAA5nD,KAlBA,YAkBAtI,IAAAU,GACA+M,IAAAnF,KAAA4a,SAAAxgB,IAIAuJ,IAAA,SAAAvL,EAAAN,GACA,OAAAw2F,EAAA/sF,IAAAqmD,EAAA5nD,KAxBA,WAwBA5H,EAAAN,KAKAy2F,EAAA33F,EAAAD,QAAAF,EAAA,GAAAA,CA7BA,UA6BA0zD,EAAA3/C,EAAA8jF,GAAA,MAGAlrC,EAAA,WAAuB,eAAAmrC,GAAA5qF,KAAApM,OAAAoD,QAAApD,QAAAme,GAAA,GAAAhe,IAAAge,OAEvB2oD,GADA+vB,EAAAE,EAAAz9B,eAAA1G,EAjCA,YAkCA1xD,UAAA+R,GACA2lC,EAAAiO,MAAA,EACAiwC,GAAA,qCAAAj2F,GACA,IAAAuwD,EAAA4lC,EAAA91F,UACA0O,EAAAwhD,EAAAvwD,GACAY,EAAA2vD,EAAAvwD,EAAA,SAAA6F,EAAAc,GAEA,GAAA9D,EAAAgD,KAAAyK,EAAAzK,GAAA,CACA+B,KAAA8a,KAAA9a,KAAA8a,GAAA,IAAAszE,GACA,IAAA5mF,EAAAxH,KAAA8a,GAAA1iB,GAAA6F,EAAAc,GACA,aAAA3G,EAAA4H,KAAAwH,EAEO,OAAAL,EAAAnQ,KAAAgJ,KAAA/B,EAAAc,sCCtDP,IAAAuvF,EAAA73F,EAAA,IACAmxD,EAAAnxD,EAAA,IAIAA,EAAA,GAAAA,CAHA,UAGA,SAAAiB,GACA,kBAA6B,OAAAA,EAAAsI,KAAA9B,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,MAG7ByJ,IAAA,SAAA/L,GACA,OAAAw2F,EAAA/sF,IAAAqmD,EAAA5nD,KARA,WAQAlI,GAAA,KAECw2F,GAAA,uBCZD,IAAAp1F,EAAAzC,EAAA,GACA4sD,EAAA5sD,EAAA,IACAq/C,EAAAr/C,EAAA,GACA+3F,GAAA/3F,EAAA,GAAA+M,aAAgDrF,MAChDswF,EAAAp0F,SAAA8D,MAEAjF,IAAAW,EAAAX,EAAAO,GAAAhD,EAAA,EAAAA,CAAA,WACA+3F,EAAA,gBACC,WACDrwF,MAAA,SAAAjE,EAAAw0F,EAAAC,GACA,IAAAhwC,EAAA0E,EAAAnpD,GACAyhD,EAAA7F,EAAA64C,GACA,OAAAH,IAAA7vC,EAAA+vC,EAAA/yC,GAAA8yC,EAAAz3F,KAAA2nD,EAAA+vC,EAAA/yC,uBCZA,IAAAziD,EAAAzC,EAAA,GACA0B,EAAA1B,EAAA,IACA4sD,EAAA5sD,EAAA,IACAq/C,EAAAr/C,EAAA,GACAwE,EAAAxE,EAAA,GACA2sD,EAAA3sD,EAAA,GACA4B,EAAA5B,EAAA,KACAm4F,GAAAn4F,EAAA,GAAA+M,aAAoDqrF,UAIpDC,EAAA1rC,EAAA,WACA,SAAA3pD,KACA,QAAAm1F,EAAA,gBAAiDn1F,kBAEjDs1F,GAAA3rC,EAAA,WACAwrC,EAAA,gBAGA11F,IAAAW,EAAAX,EAAAO,GAAAq1F,GAAAC,GAAA,WACAF,UAAA,SAAAG,EAAA3nF,GACAg8C,EAAA2rC,GACAl5C,EAAAzuC,GACA,IAAA4nF,EAAA/wF,UAAA1B,OAAA,EAAAwyF,EAAA3rC,EAAAnlD,UAAA,IACA,GAAA6wF,IAAAD,EAAA,OAAAF,EAAAI,EAAA3nF,EAAA4nF,GACA,GAAAD,GAAAC,EAAA,CAEA,OAAA5nF,EAAA7K,QACA,kBAAAwyF,EACA,kBAAAA,EAAA3nF,EAAA,IACA,kBAAA2nF,EAAA3nF,EAAA,GAAAA,EAAA,IACA,kBAAA2nF,EAAA3nF,EAAA,GAAAA,EAAA,GAAAA,EAAA,IACA,kBAAA2nF,EAAA3nF,EAAA,GAAAA,EAAA,GAAAA,EAAA,GAAAA,EAAA,IAGA,IAAA6nF,GAAA,MAEA,OADAA,EAAA5qF,KAAAnG,MAAA+wF,EAAA7nF,GACA,IAAAhP,EAAA8F,MAAA6wF,EAAAE,IAGA,IAAAvmC,EAAAsmC,EAAAx2F,UACA83D,EAAAp4D,EAAA8C,EAAA0tD,KAAApxD,OAAAkB,WACA+O,EAAAnN,SAAA8D,MAAAnH,KAAAg4F,EAAAz+B,EAAAlpD,GACA,OAAApM,EAAAuM,KAAA+oD,mCC3CA,IAAAlN,EAAA5sD,EAAA,IACAwE,EAAAxE,EAAA,GACAo/D,EAAAp/D,EAAA,IACA8vD,KAAA1oD,MACAsxF,KAUAv4F,EAAAD,QAAA0D,SAAAhC,MAAA,SAAAirD,GACA,IAAAlmD,EAAAimD,EAAArjD,MACAovF,EAAA7oC,EAAAvvD,KAAAkH,UAAA,GACAuwE,EAAA,WACA,IAAApnE,EAAA+nF,EAAAjlF,OAAAo8C,EAAAvvD,KAAAkH,YACA,OAAA8B,gBAAAyuE,EAbA,SAAAh1E,EAAA6N,EAAAD,GACA,KAAAC,KAAA6nF,GAAA,CACA,QAAA72F,KAAAzB,EAAA,EAA2BA,EAAAyQ,EAASzQ,IAAAyB,EAAAzB,GAAA,KAAAA,EAAA,IAEpCs4F,EAAA7nF,GAAAjN,SAAA,sBAAA/B,EAAA4zB,KAAA,UACG,OAAAijE,EAAA7nF,GAAA7N,EAAA4N,GAQHwnF,CAAAzxF,EAAAiK,EAAA7K,OAAA6K,GAAAwuD,EAAAz4D,EAAAiK,EAAAi8C,IAGA,OADAroD,EAAAmC,EAAA3E,aAAAg2E,EAAAh2E,UAAA2E,EAAA3E,WACAg2E,oBCtBA,IAAAx4B,EAAAx/C,EAAA,GACAyC,EAAAzC,EAAA,GACAq/C,EAAAr/C,EAAA,GACAu/C,EAAAv/C,EAAA,IAGAyC,IAAAW,EAAAX,EAAAO,EAAAhD,EAAA,EAAAA,CAAA,WAEA+M,QAAAhM,eAAAy+C,EAAAC,KAAgC,GAAMp+C,MAAA,IAAW,GAAOA,MAAA,MACvD,WACDN,eAAA,SAAA0C,EAAAm1F,EAAA3gB,GACA54B,EAAA57C,GACAm1F,EAAAr5C,EAAAq5C,GAAA,GACAv5C,EAAA44B,GACA,IAEA,OADAz4B,EAAAC,EAAAh8C,EAAAm1F,EAAA3gB,IACA,EACK,MAAAjvE,GACL,8BClBA,IAAAvG,EAAAzC,EAAA,GACAuuD,EAAAvuD,EAAA,IAAAy/C,EACAJ,EAAAr/C,EAAA,GAEAyC,IAAAW,EAAA,WACAy1F,eAAA,SAAAp1F,EAAAm1F,GACA,IAAAplC,EAAAjF,EAAAlP,EAAA57C,GAAAm1F,GACA,QAAAplC,MAAAxoD,sBAAAvH,EAAAm1F,uBCPA,IAAArqC,EAAAvuD,EAAA,IACA+nD,EAAA/nD,EAAA,IACAmN,EAAAnN,EAAA,IACAyC,EAAAzC,EAAA,GACAwE,EAAAxE,EAAA,GACAq/C,EAAAr/C,EAAA,GAcAyC,IAAAW,EAAA,WAA+BnC,IAZ/B,SAAAA,EAAAwC,EAAAm1F,GACA,IACAplC,EAAAtB,EADA4mC,EAAArxF,UAAA1B,OAAA,EAAAtC,EAAAgE,UAAA,GAEA,OAAA43C,EAAA57C,KAAAq1F,EAAAr1F,EAAAm1F,IACAplC,EAAAjF,EAAA9O,EAAAh8C,EAAAm1F,IAAAzrF,EAAAqmD,EAAA,SACAA,EAAAnyD,WACAsC,IAAA6vD,EAAAvyD,IACAuyD,EAAAvyD,IAAAV,KAAAu4F,QACAn1F,EACAa,EAAA0tD,EAAAnK,EAAAtkD,IAAAxC,EAAAixD,EAAA0mC,EAAAE,QAAA,sBChBA,IAAAvqC,EAAAvuD,EAAA,IACAyC,EAAAzC,EAAA,GACAq/C,EAAAr/C,EAAA,GAEAyC,IAAAW,EAAA,WACAkP,yBAAA,SAAA7O,EAAAm1F,GACA,OAAArqC,EAAA9O,EAAAJ,EAAA57C,GAAAm1F,uBCNA,IAAAn2F,EAAAzC,EAAA,GACA+4F,EAAA/4F,EAAA,IACAq/C,EAAAr/C,EAAA,GAEAyC,IAAAW,EAAA,WACA2kD,eAAA,SAAAtkD,GACA,OAAAs1F,EAAA15C,EAAA57C,wBCNA,IAAAhB,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,WACA+J,IAAA,SAAA1J,EAAAm1F,GACA,OAAAA,KAAAn1F,sBCJA,IAAAhB,EAAAzC,EAAA,GACAq/C,EAAAr/C,EAAA,GACAg5F,EAAAl4F,OAAAmR,aAEAxP,IAAAW,EAAA,WACA6O,aAAA,SAAAxO,GAEA,OADA47C,EAAA57C,IACAu1F,KAAAv1F,uBCPA,IAAAhB,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,WAA+B4J,QAAAhN,EAAA,uBCF/B,IAAAyC,EAAAzC,EAAA,GACAq/C,EAAAr/C,EAAA,GACAi5F,EAAAn4F,OAAA2mD,kBAEAhlD,IAAAW,EAAA,WACAqkD,kBAAA,SAAAhkD,GACA47C,EAAA57C,GACA,IAEA,OADAw1F,KAAAx1F,IACA,EACK,MAAAuF,GACL,8BCXA,IAAAw2C,EAAAx/C,EAAA,GACAuuD,EAAAvuD,EAAA,IACA+nD,EAAA/nD,EAAA,IACAmN,EAAAnN,EAAA,IACAyC,EAAAzC,EAAA,GACAwsD,EAAAxsD,EAAA,IACAq/C,EAAAr/C,EAAA,GACAwE,EAAAxE,EAAA,GAwBAyC,IAAAW,EAAA,WAA+B8J,IAtB/B,SAAAA,EAAAzJ,EAAAm1F,EAAAvzC,GACA,IAEA6zC,EAAAhnC,EAFA4mC,EAAArxF,UAAA1B,OAAA,EAAAtC,EAAAgE,UAAA,GACA0xF,EAAA5qC,EAAA9O,EAAAJ,EAAA57C,GAAAm1F,GAEA,IAAAO,EAAA,CACA,GAAA30F,EAAA0tD,EAAAnK,EAAAtkD,IACA,OAAAyJ,EAAAglD,EAAA0mC,EAAAvzC,EAAAyzC,GAEAK,EAAA3sC,EAAA,GAEA,GAAAr/C,EAAAgsF,EAAA,UACA,QAAAA,EAAApuF,WAAAvG,EAAAs0F,GAAA,SACA,GAAAI,EAAA3qC,EAAA9O,EAAAq5C,EAAAF,GAAA,CACA,GAAAM,EAAAj4F,KAAAi4F,EAAAhsF,MAAA,IAAAgsF,EAAAnuF,SAAA,SACAmuF,EAAA73F,MAAAgkD,EACA7F,EAAAC,EAAAq5C,EAAAF,EAAAM,QACK15C,EAAAC,EAAAq5C,EAAAF,EAAApsC,EAAA,EAAAnH,IACL,SAEA,YAAA1hD,IAAAw1F,EAAAjsF,MAAAisF,EAAAjsF,IAAA3M,KAAAu4F,EAAAzzC,IAAA,uBC5BA,IAAA5iD,EAAAzC,EAAA,GACAo5F,EAAAp5F,EAAA,IAEAo5F,GAAA32F,IAAAW,EAAA,WACA67D,eAAA,SAAAx7D,EAAAyuD,GACAknC,EAAAp6B,MAAAv7D,EAAAyuD,GACA,IAEA,OADAknC,EAAAlsF,IAAAzJ,EAAAyuD,IACA,EACK,MAAAlpD,GACL,2CCVA,IAqBAqwF,EAAAC,EAAAC,EAAAC,EArBA1sC,EAAA9sD,EAAA,IACAoC,EAAApC,EAAA,GACAwC,EAAAxC,EAAA,IACAutD,EAAAvtD,EAAA,IACAyC,EAAAzC,EAAA,GACAwE,EAAAxE,EAAA,GACA4sD,EAAA5sD,EAAA,IACAitD,EAAAjtD,EAAA,IACAu5D,EAAAv5D,EAAA,IACA8tD,EAAA9tD,EAAA,IACA+zF,EAAA/zF,EAAA,IAAAkN,IACAusF,EAAAz5F,EAAA,IAAAA,GACA05F,EAAA15F,EAAA,IACA25F,EAAA35F,EAAA,KACA45F,EAAA55F,EAAA,KAEAk/C,EAAA98C,EAAA88C,UACAmX,EAAAj0D,EAAAi0D,QACAwjC,EAAAz3F,EAAA,QACA03F,EAAA,WAAAvsC,EAAA8I,GACA0jC,EAAA,aAEAC,EAAAV,EAAAI,EAAAj6C,EAEAw6C,IAAA,WACA,IAEA,IAAAv3B,EAAAm3B,EAAA1hF,QAAA,GACA+hF,GAAAx3B,EAAA92C,gBAA+C5rB,EAAA,EAAAA,CAAA,qBAAAg1C,GAC/CA,EAAA+kD,MAGA,OAAAD,GAAA,mBAAAK,wBAAAz3B,EAAAtqD,KAAA2hF,aAAAG,EACG,MAAAlxF,KATH,GAaAoxF,EAAA,SAAAp7C,GACA,IAAA5mC,EACA,SAAA5T,EAAAw6C,IAAA,mBAAA5mC,EAAA4mC,EAAA5mC,WAEAnK,EAAA,SAAAy0D,EAAA23B,GACA,IAAA33B,EAAA5+C,GAAA,CACA4+C,EAAA5+C,IAAA,EACA,IAAAixE,EAAAryB,EAAAr9C,GACAo0E,EAAA,WAoCA,IAnCA,IAAAp4F,EAAAqhE,EAAAl+C,GACA81E,EAAA,GAAA53B,EAAA3+C,GACA3jB,EAAA,EACAid,EAAA,SAAAk9E,GACA,IAIAxpF,EAAAqH,EAAAoiF,EAJA95E,EAAA45E,EAAAC,EAAAD,GAAAC,EAAAE,KACAtiF,EAAAoiF,EAAApiF,QACAqQ,EAAA+xE,EAAA/xE,OACA6tE,EAAAkE,EAAAlE,OAEA,IACA31E,GACA45E,IACA,GAAA53B,EAAAogB,IAAA4X,EAAAh4B,GACAA,EAAAogB,GAAA,IAEA,IAAApiE,EAAA3P,EAAA1P,GAEAg1F,KAAAv1D,QACA/vB,EAAA2P,EAAArf,GACAg1F,IACAA,EAAAsE,OACAH,GAAA,IAGAzpF,IAAAwpF,EAAA73B,QACAl6C,EAAA02B,EAAA,yBACW9mC,EAAAgiF,EAAArpF,IACXqH,EAAA7X,KAAAwQ,EAAAoH,EAAAqQ,GACWrQ,EAAApH,IACFyX,EAAAnnB,GACF,MAAA2H,GACPqtF,IAAAmE,GAAAnE,EAAAsE,OACAnyE,EAAAxf,KAGA+rF,EAAAhvF,OAAA3F,GAAAid,EAAA03E,EAAA30F,MACAsiE,EAAAr9C,MACAq9C,EAAA5+C,IAAA,EACAu2E,IAAA33B,EAAAogB,IAAA8X,EAAAl4B,OAGAk4B,EAAA,SAAAl4B,GACAqxB,EAAAxzF,KAAA6B,EAAA,WACA,IAEA2O,EAAA2P,EAAAzJ,EAFA5V,EAAAqhE,EAAAl+C,GACAq2E,EAAAC,EAAAp4B,GAeA,GAbAm4B,IACA9pF,EAAA4oF,EAAA,WACAG,EACAzjC,EAAAz4C,KAAA,qBAAAvc,EAAAqhE,IACShiD,EAAAte,EAAA24F,sBACTr6E,GAAmBgiD,UAAAj6C,OAAApnB,KACV4V,EAAA7U,EAAA6U,YAAAC,OACTD,EAAAC,MAAA,8BAAA7V,KAIAqhE,EAAAogB,GAAAgX,GAAAgB,EAAAp4B,GAAA,KACKA,EAAAs4B,QAAAr3F,EACLk3F,GAAA9pF,EAAA/H,EAAA,MAAA+H,EAAA3M,KAGA02F,EAAA,SAAAp4B,GACA,WAAAA,EAAAogB,IAAA,KAAApgB,EAAAs4B,IAAAt4B,EAAAr9C,IAAAtf,QAEA20F,EAAA,SAAAh4B,GACAqxB,EAAAxzF,KAAA6B,EAAA,WACA,IAAAse,EACAo5E,EACAzjC,EAAAz4C,KAAA,mBAAA8kD,IACKhiD,EAAAte,EAAA64F,qBACLv6E,GAAegiD,UAAAj6C,OAAAi6C,EAAAl+C,QAIf02E,EAAA,SAAA75F,GACA,IAAAqhE,EAAAn5D,KACAm5D,EAAAlR,KACAkR,EAAAlR,IAAA,GACAkR,IAAAwgB,IAAAxgB,GACAl+C,GAAAnjB,EACAqhE,EAAA3+C,GAAA,EACA2+C,EAAAs4B,KAAAt4B,EAAAs4B,GAAAt4B,EAAAr9C,GAAAje,SACA6G,EAAAy0D,GAAA,KAEAy4B,EAAA,SAAA95F,GACA,IACA+W,EADAsqD,EAAAn5D,KAEA,IAAAm5D,EAAAlR,GAAA,CACAkR,EAAAlR,IAAA,EACAkR,IAAAwgB,IAAAxgB,EACA,IACA,GAAAA,IAAArhE,EAAA,MAAA69C,EAAA,qCACA9mC,EAAAgiF,EAAA/4F,IACAo4F,EAAA,WACA,IAAA/lC,GAAuBwvB,GAAAxgB,EAAAlR,IAAA,GACvB,IACAp5C,EAAA7X,KAAAc,EAAAmB,EAAA24F,EAAAznC,EAAA,GAAAlxD,EAAA04F,EAAAxnC,EAAA,IACS,MAAA1qD,GACTkyF,EAAA36F,KAAAmzD,EAAA1qD,OAIA05D,EAAAl+C,GAAAnjB,EACAqhE,EAAA3+C,GAAA,EACA9V,EAAAy0D,GAAA,IAEG,MAAA15D,GACHkyF,EAAA36F,MAAkB2iF,GAAAxgB,EAAAlR,IAAA,GAAyBxoD,MAK3CixF,IAEAJ,EAAA,SAAA3C,GACAjqC,EAAA1jD,KAAAswF,EAnJA,UAmJA,MACAjtC,EAAAsqC,GACAmC,EAAA94F,KAAAgJ,MACA,IACA2tF,EAAA10F,EAAA24F,EAAA5xF,KAAA,GAAA/G,EAAA04F,EAAA3xF,KAAA,IACK,MAAAkN,GACLykF,EAAA36F,KAAAgJ,KAAAkN,MAIA4iF,EAAA,SAAAnC,GACA3tF,KAAA8b,MACA9b,KAAAyxF,QAAAr3F,EACA4F,KAAAwa,GAAA,EACAxa,KAAAioD,IAAA,EACAjoD,KAAAib,QAAA7gB,EACA4F,KAAAu5E,GAAA,EACAv5E,KAAAua,IAAA,IAEA9hB,UAAAhC,EAAA,GAAAA,CAAA65F,EAAA73F,WAEAoW,KAAA,SAAAgjF,EAAAC,GACA,IAAAd,EAAAP,EAAAlsC,EAAAvkD,KAAAswF,IAOA,OANAU,EAAAD,GAAA,mBAAAc,KACAb,EAAAE,KAAA,mBAAAY,KACAd,EAAAlE,OAAAyD,EAAAzjC,EAAAggC,YAAA1yF,EACA4F,KAAA8b,GAAAxX,KAAA0sF,GACAhxF,KAAAyxF,IAAAzxF,KAAAyxF,GAAAntF,KAAA0sF,GACAhxF,KAAAwa,IAAA9V,EAAA1E,MAAA,GACAgxF,EAAA73B,SAGA8Z,MAAA,SAAA6e,GACA,OAAA9xF,KAAA6O,UAAAzU,EAAA03F,MAGA9B,EAAA,WACA,IAAA72B,EAAA,IAAA22B,EACA9vF,KAAAm5D,UACAn5D,KAAA4O,QAAA3V,EAAA24F,EAAAz4B,EAAA,GACAn5D,KAAAif,OAAAhmB,EAAA04F,EAAAx4B,EAAA,IAEAg3B,EAAAj6C,EAAAu6C,EAAA,SAAA/xC,GACA,OAAAA,IAAA4xC,GAAA5xC,IAAAuxC,EACA,IAAAD,EAAAtxC,GACAqxC,EAAArxC,KAIAxlD,IAAAS,EAAAT,EAAAqB,EAAArB,EAAAO,GAAAi3F,GAA0D/hF,QAAA2hF,IAC1D75F,EAAA,GAAAA,CAAA65F,EArMA,WAsMA75F,EAAA,GAAAA,CAtMA,WAuMAw5F,EAAAx5F,EAAA,YAGAyC,IAAAW,EAAAX,EAAAO,GAAAi3F,EA1MA,WA4MAzxE,OAAA,SAAAtnB,GACA,IAAAo6F,EAAAtB,EAAAzwF,MAGA,OADA++D,EADAgzB,EAAA9yE,QACAtnB,GACAo6F,EAAA54B,WAGAjgE,IAAAW,EAAAX,EAAAO,GAAA8pD,IAAAmtC,GAnNA,WAqNA9hF,QAAA,SAAAmoC,GACA,OAAAs5C,EAAA9sC,GAAAvjD,OAAAiwF,EAAAK,EAAAtwF,KAAA+2C,MAGA79C,IAAAW,EAAAX,EAAAO,IAAAi3F,GAAAj6F,EAAA,GAAAA,CAAA,SAAA20D,GACAklC,EAAAhoD,IAAA8iB,GAAA,MAAAolC,MA1NA,WA6NAloD,IAAA,SAAAynB,GACA,IAAArR,EAAA1+C,KACA+xF,EAAAtB,EAAA/xC,GACA9vC,EAAAmjF,EAAAnjF,QACAqQ,EAAA8yE,EAAA9yE,OACAzX,EAAA4oF,EAAA,WACA,IAAAp0C,KACAj/C,EAAA,EACA4nF,EAAA,EACA30B,EAAAD,GAAA,WAAAoJ,GACA,IAAA64B,EAAAj1F,IACAk1F,GAAA,EACAj2C,EAAA13C,UAAAlK,GACAuqF,IACAjmC,EAAA9vC,QAAAuqD,GAAAtqD,KAAA,SAAA/W,GACAm6F,IACAA,GAAA,EACAj2C,EAAAg2C,GAAAl6F,IACA6sF,GAAA/1E,EAAAotC,KACS/8B,OAET0lE,GAAA/1E,EAAAotC,KAGA,OADAx0C,EAAA/H,GAAAwf,EAAAzX,EAAA3M,GACAk3F,EAAA54B,SAGA+4B,KAAA,SAAAniC,GACA,IAAArR,EAAA1+C,KACA+xF,EAAAtB,EAAA/xC,GACAz/B,EAAA8yE,EAAA9yE,OACAzX,EAAA4oF,EAAA,WACApgC,EAAAD,GAAA,WAAAoJ,GACAza,EAAA9vC,QAAAuqD,GAAAtqD,KAAAkjF,EAAAnjF,QAAAqQ,OAIA,OADAzX,EAAA/H,GAAAwf,EAAAzX,EAAA3M,GACAk3F,EAAA54B,4BClRA,IAAAtgE,EAAApC,EAAA,GACA07F,EAAA17F,EAAA,IAAAkN,IACAsE,EAAApP,EAAAu5F,kBAAAv5F,EAAAw5F,uBACAvlC,EAAAj0D,EAAAi0D,QACAn+C,EAAA9V,EAAA8V,QACA4hF,EAAA,WAAA95F,EAAA,GAAAA,CAAAq2D,GAEAl2D,EAAAD,QAAA,WACA,IAAAqvF,EAAA50E,EAAA1M,EAEA4tF,EAAA,WACA,IAAAxsF,EAAA1I,EAEA,IADAmzF,IAAAzqF,EAAAgnD,EAAAggC,SAAAhnF,EAAAsrF,OACApL,GAAA,CACA5oF,EAAA4oF,EAAA5oF,GACA4oF,IAAAr1D,KACA,IACAvzB,IACO,MAAAqC,GAGP,MAFAumF,EAAAthF,IACA0M,OAAAhX,EACAqF,GAEK2R,OAAAhX,EACL0L,KAAAyxB,SAIA,GAAAg5D,EACA7rF,EAAA,WACAooD,EAAAh+C,SAAAwjF,SAGG,IAAArqF,GAAApP,EAAAuJ,WAAAvJ,EAAAuJ,UAAAmwF,WAQA,GAAA5jF,KAAAC,QAAA,CACH,IAAAuqD,EAAAxqD,EAAAC,UACAlK,EAAA,WACAy0D,EAAAtqD,KAAAyjF,SASA5tF,EAAA,WAEAytF,EAAAn7F,KAAA6B,EAAAy5F,QAtBG,CACH,IAAA/3C,GAAA,EACA5zC,EAAAsiB,SAAAQ,eAAA,IACA,IAAAxhB,EAAAqqF,GAAA9pF,QAAA7B,GAAuC6rF,eAAA,IACvC9tF,EAAA,WACAiC,EAAAxB,KAAAo1C,MAqBA,gBAAAn9C,GACA,IAAAotF,GAAgBptF,KAAAuzB,UAAAv2B,GAChBgX,MAAAuf,KAAA65D,GACAxE,IACAA,EAAAwE,EACA9lF,KACK0M,EAAAo5E,mBCjEL5zF,EAAAD,QAAA,SAAA80C,GACA,IACA,OAAYhsC,GAAA,EAAA5E,EAAA4wC,KACT,MAAAhsC,GACH,OAAYA,GAAA,EAAA5E,EAAA4E,sBCJZ,IAAAq2C,EAAAr/C,EAAA,GACAwE,EAAAxE,EAAA,GACAg6F,EAAAh6F,EAAA,IAEAG,EAAAD,QAAA,SAAA+nD,EAAA3H,GAEA,GADAjB,EAAA4I,GACAzjD,EAAA87C,MAAA10B,cAAAq8B,EAAA,OAAA3H,EACA,IAAA07C,EAAAhC,EAAAv6C,EAAAwI,GAGA,OADA9vC,EADA6jF,EAAA7jF,SACAmoC,GACA07C,EAAAt5B,uCCRA,IAAAtgE,EAAApC,EAAA,GACAmN,EAAAnN,EAAA,IACA+4D,EAAA/4D,EAAA,IACAyC,EAAAzC,EAAA,GACAuC,EAAAvC,EAAA,IACAs1D,EAAAt1D,EAAA,IAAA0nD,IACAu0C,EAAAj8F,EAAA,GACAu+D,EAAAv+D,EAAA,IACAw5D,EAAAx5D,EAAA,IACAuN,EAAAvN,EAAA,IACA2tD,EAAA3tD,EAAA,GACAk8F,EAAAl8F,EAAA,IACAm8F,EAAAn8F,EAAA,KACAo8F,EAAAp8F,EAAA,KACA6I,EAAA7I,EAAA,IACAq/C,EAAAr/C,EAAA,GACAwE,EAAAxE,EAAA,GACAi1D,EAAAj1D,EAAA,IACAu/C,EAAAv/C,EAAA,IACAwsD,EAAAxsD,EAAA,IACA88E,EAAA98E,EAAA,IACAq8F,EAAAr8F,EAAA,IACAsuD,EAAAtuD,EAAA,IACAquD,EAAAruD,EAAA,GACA41D,EAAA51D,EAAA,IACAuuD,EAAAD,EAAA7O,EACAD,EAAA6O,EAAA5O,EACAgO,EAAA4uC,EAAA58C,EACA68C,EAAAl6F,EAAAjB,OACAo7F,EAAAn6F,EAAAiD,KACAm3F,EAAAD,KAAAj3F,UAEAm3F,EAAA9uC,EAAA,WACA+uC,EAAA/uC,EAAA,eACAma,KAAe3nB,qBACfw8C,EAAAp+B,EAAA,mBACAq+B,EAAAr+B,EAAA,WACAs+B,EAAAt+B,EAAA,cACArI,EAAAp1D,OAAA,UACAm5F,EAAA,mBAAAqC,EACA7zC,EAAArmD,EAAAqmD,QAEAl2C,GAAAk2C,MAAA,YAAAA,EAAA,UAAAE,UAGAm0C,EAAA/jC,GAAAkjC,EAAA,WACA,OAEG,GAFHnf,EAAAt9B,KAAsB,KACtBv+C,IAAA,WAAsB,OAAAu+C,EAAAj2C,KAAA,KAAuBlI,MAAA,IAAWmG,MACrDA,IACF,SAAAw3C,EAAAr9C,EAAA0mD,GACD,IAAA00C,EAAAxuC,EAAA2H,EAAAv0D,GACAo7F,UAAA7mC,EAAAv0D,GACA69C,EAAAR,EAAAr9C,EAAA0mD,GACA00C,GAAA/9C,IAAAkX,GAAA1W,EAAA0W,EAAAv0D,EAAAo7F,IACCv9C,EAEDw9C,EAAA,SAAAvuF,GACA,IAAAwuF,EAAAL,EAAAnuF,GAAAquE,EAAAwf,EAAA,WAEA,OADAW,EAAA34E,GAAA7V,EACAwuF,GAGAC,EAAAjD,GAAA,iBAAAqC,EAAAxzC,SAAA,SAAA9J,GACA,uBAAAA,GACC,SAAAA,GACD,OAAAA,aAAAs9C,GAGAt8B,EAAA,SAAAhhB,EAAAr9C,EAAA0mD,GAKA,OAJArJ,IAAAkX,GAAA8J,EAAA68B,EAAAl7F,EAAA0mD,GACAhJ,EAAAL,GACAr9C,EAAA49C,EAAA59C,GAAA,GACA09C,EAAAgJ,GACAl7C,EAAAyvF,EAAAj7F,IACA0mD,EAAArnD,YAIAmM,EAAA6xC,EAAAy9C,IAAAz9C,EAAAy9C,GAAA96F,KAAAq9C,EAAAy9C,GAAA96F,IAAA,GACA0mD,EAAAy0B,EAAAz0B,GAAsBrnD,WAAAwrD,EAAA,UAJtBr/C,EAAA6xC,EAAAy9C,IAAAj9C,EAAAR,EAAAy9C,EAAAjwC,EAAA,OACAxN,EAAAy9C,GAAA96F,IAAA,GAIKm7F,EAAA99C,EAAAr9C,EAAA0mD,IACF7I,EAAAR,EAAAr9C,EAAA0mD,IAEH80C,EAAA,SAAAn+C,EAAA17C,GACA+7C,EAAAL,GAKA,IAJA,IAGAr9C,EAHAuH,EAAAkzF,EAAA94F,EAAA2xD,EAAA3xD,IACAlD,EAAA,EACAC,EAAA6I,EAAAnD,OAEA1F,EAAAD,GAAA4/D,EAAAhhB,EAAAr9C,EAAAuH,EAAA9I,KAAAkD,EAAA3B,IACA,OAAAq9C,GAKAo+C,EAAA,SAAAz7F,GACA,IAAAyjD,EAAA0iB,EAAAvnE,KAAAgJ,KAAA5H,EAAA49C,EAAA59C,GAAA,IACA,QAAA4H,OAAA2sD,GAAA/oD,EAAAyvF,EAAAj7F,KAAAwL,EAAA0vF,EAAAl7F,QACAyjD,IAAAj4C,EAAA5D,KAAA5H,KAAAwL,EAAAyvF,EAAAj7F,IAAAwL,EAAA5D,KAAAkzF,IAAAlzF,KAAAkzF,GAAA96F,KAAAyjD,IAEAi4C,EAAA,SAAAr+C,EAAAr9C,GAGA,GAFAq9C,EAAAiW,EAAAjW,GACAr9C,EAAA49C,EAAA59C,GAAA,GACAq9C,IAAAkX,IAAA/oD,EAAAyvF,EAAAj7F,IAAAwL,EAAA0vF,EAAAl7F,GAAA,CACA,IAAA0mD,EAAAkG,EAAAvP,EAAAr9C,GAEA,OADA0mD,IAAAl7C,EAAAyvF,EAAAj7F,IAAAwL,EAAA6xC,EAAAy9C,IAAAz9C,EAAAy9C,GAAA96F,KAAA0mD,EAAArnD,YAAA,GACAqnD,IAEAi1C,EAAA,SAAAt+C,GAKA,IAJA,IAGAr9C,EAHA0kE,EAAA5Y,EAAAwH,EAAAjW,IACAjuC,KACA3Q,EAAA,EAEAimE,EAAAtgE,OAAA3F,GACA+M,EAAAyvF,EAAAj7F,EAAA0kE,EAAAjmE,OAAAuB,GAAA86F,GAAA96F,GAAA2zD,GAAAvkD,EAAAlD,KAAAlM,GACG,OAAAoP,GAEHwsF,EAAA,SAAAv+C,GAMA,IALA,IAIAr9C,EAJA67F,EAAAx+C,IAAAkX,EACAmQ,EAAA5Y,EAAA+vC,EAAAX,EAAA5nC,EAAAjW,IACAjuC,KACA3Q,EAAA,EAEAimE,EAAAtgE,OAAA3F,IACA+M,EAAAyvF,EAAAj7F,EAAA0kE,EAAAjmE,OAAAo9F,IAAArwF,EAAA+oD,EAAAv0D,IAAAoP,EAAAlD,KAAA+uF,EAAAj7F,IACG,OAAAoP,GAIHkpF,IAYA13F,GAXA+5F,EAAA,WACA,GAAA/yF,gBAAA+yF,EAAA,MAAAp9C,UAAA,gCACA,IAAAzwC,EAAAlB,EAAA9F,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,GACAkqB,EAAA,SAAAxsB,GACAkI,OAAA2sD,GAAAroC,EAAAttB,KAAAs8F,EAAAx7F,GACA8L,EAAA5D,KAAAkzF,IAAAtvF,EAAA5D,KAAAkzF,GAAAhuF,KAAAlF,KAAAkzF,GAAAhuF,IAAA,GACAquF,EAAAvzF,KAAAkF,EAAA+9C,EAAA,EAAAnrD,KAGA,OADA03D,GAAAxmD,GAAAuqF,EAAA5mC,EAAAznD,GAAgEzD,cAAA,EAAAkC,IAAA2gB,IAChEmvE,EAAAvuF,KAEA,gCACA,OAAAlF,KAAA+a,KAGAgqC,EAAA7O,EAAA49C,EACAhvC,EAAA5O,EAAAugB,EACAhgE,EAAA,IAAAy/C,EAAA48C,EAAA58C,EAAA69C,EACAt9F,EAAA,IAAAy/C,EAAA29C,EACAp9F,EAAA,IAAAy/C,EAAA89C,EAEAxkC,IAAA/4D,EAAA,KACAuC,EAAA2zD,EAAA,uBAAAknC,GAAA,GAGAlB,EAAAz8C,EAAA,SAAA9+C,GACA,OAAAq8F,EAAArvC,EAAAhtD,MAIA8B,IAAAS,EAAAT,EAAAqB,EAAArB,EAAAO,GAAAi3F,GAA0D94F,OAAAm7F,IAE1D,QAAAmB,EAAA,iHAGA33F,MAAA,KAAA6W,GAAA,EAAoB8gF,EAAA13F,OAAA4W,IAAuBgxC,EAAA8vC,EAAA9gF,OAE3C,QAAA+gF,GAAA9nC,EAAAjI,EAAAxO,OAAAgG,GAAA,EAAoDu4C,GAAA33F,OAAAo/C,IAA6Bg3C,EAAAuB,GAAAv4C,OAEjF1iD,IAAAW,EAAAX,EAAAO,GAAAi3F,EAAA,UAEA7kD,IAAA,SAAAzzC,GACA,OAAAwL,EAAAwvF,EAAAh7F,GAAA,IACAg7F,EAAAh7F,GACAg7F,EAAAh7F,GAAA26F,EAAA36F,IAGA2nD,OAAA,SAAA2zC,GACA,IAAAC,EAAAD,GAAA,MAAA/9C,UAAA+9C,EAAA,qBACA,QAAAt7F,KAAAg7F,EAAA,GAAAA,EAAAh7F,KAAAs7F,EAAA,OAAAt7F,GAEA4nD,UAAA,WAA0Bh3C,GAAA,GAC1Bi3C,UAAA,WAA0Bj3C,GAAA,KAG1B9P,IAAAW,EAAAX,EAAAO,GAAAi3F,EAAA,UAEAv4F,OA/FA,SAAAs9C,EAAA17C,GACA,YAAAK,IAAAL,EAAAw5E,EAAA99B,GAAAm+C,EAAArgB,EAAA99B,GAAA17C,IAgGAvC,eAAAi/D,EAEAhwD,iBAAAmtF,EAEA7qF,yBAAA+qF,EAEAhsF,oBAAAisF,EAEA53C,sBAAA63C,IAIAhB,GAAA95F,IAAAW,EAAAX,EAAAO,IAAAi3F,GAAAgC,EAAA,WACA,IAAA74F,EAAAk5F,IAIA,gBAAAE,GAAAp5F,KAA2D,MAA3Do5F,GAAoDh1F,EAAApE,KAAe,MAAAo5F,EAAA17F,OAAAsC,OAClE,QACDkC,UAAA,SAAA05C,GAIA,IAHA,IAEA2+C,EAAAC,EAFAhtF,GAAAouC,GACA5+C,EAAA,EAEAqH,UAAA1B,OAAA3F,GAAAwQ,EAAA/C,KAAApG,UAAArH,MAEA,GADAw9F,EAAAD,EAAA/sF,EAAA,IACApM,EAAAm5F,SAAAh6F,IAAAq7C,KAAAk+C,EAAAl+C,GAMA,OALAn2C,EAAA80F,OAAA,SAAAh8F,EAAAN,GAEA,GADA,mBAAAu8F,IAAAv8F,EAAAu8F,EAAAr9F,KAAAgJ,KAAA5H,EAAAN,KACA67F,EAAA77F,GAAA,OAAAA,IAEAuP,EAAA,GAAA+sF,EACAnB,EAAA90F,MAAA60F,EAAA3rF,MAKA0rF,EAAA,UAAAI,IAAA18F,EAAA,GAAAA,CAAAs8F,EAAA,UAAAI,EAAAJ,EAAA,UAAAj8C,SAEAmZ,EAAA8iC,EAAA,UAEA9iC,EAAAt0D,KAAA,WAEAs0D,EAAAp3D,EAAAiD,KAAA,4BCzOA,IAAAjD,EAAApC,EAAA,GACAqC,EAAArC,EAAA,IACA8sD,EAAA9sD,EAAA,IACAk8F,EAAAl8F,EAAA,IACAe,EAAAf,EAAA,GAAAy/C,EACAt/C,EAAAD,QAAA,SAAAS,GACA,IAAA27F,EAAAj6F,EAAAlB,SAAAkB,EAAAlB,OAAA2rD,KAA0D1qD,EAAAjB,YAC1D,KAAAR,EAAAwG,OAAA,IAAAxG,KAAA27F,GAAAv7F,EAAAu7F,EAAA37F,GAAkFU,MAAA66F,EAAAz8C,EAAA9+C,uBCNlF,IAAA8mE,EAAAznE,EAAA,IACA0nE,EAAA1nE,EAAA,IACAg1D,EAAAh1D,EAAA,IACAG,EAAAD,QAAA,SAAA8+C,GACA,IAAAjuC,EAAA02D,EAAAzoB,GACA6oB,EAAAH,EAAAjoB,EACA,GAAAooB,EAKA,IAJA,IAGAlmE,EAHAk8F,EAAAh2B,EAAA7oB,GACA8oB,EAAA9S,EAAAvV,EACAr/C,EAAA,EAEAy9F,EAAA93F,OAAA3F,GAAA0nE,EAAAvnE,KAAAy+C,EAAAr9C,EAAAk8F,EAAAz9F,OAAA2Q,EAAAlD,KAAAlM,GACG,OAAAoP,oBCZH,IAAAvM,EAAAxE,EAAA,GACA05C,EAAA15C,EAAA,IAAA8nD,SAEA9nD,EAAA,GAAAA,CAAA,kBAAA89F,GACA,gBAAA9+C,GACA,OAAA8+C,GAAAt5F,EAAAw6C,GAAA8+C,EAAApkD,EAAAsF,0BCLA,IAAAx6C,EAAAxE,EAAA,GACA05C,EAAA15C,EAAA,IAAA8nD,SAEA9nD,EAAA,GAAAA,CAAA,gBAAA+9F,GACA,gBAAA/+C,GACA,OAAA++C,GAAAv5F,EAAAw6C,GAAA++C,EAAArkD,EAAAsF,0BCLA,IAAAx6C,EAAAxE,EAAA,GACA05C,EAAA15C,EAAA,IAAA8nD,SAEA9nD,EAAA,GAAAA,CAAA,6BAAAi5F,GACA,gBAAAj6C,GACA,OAAAi6C,GAAAz0F,EAAAw6C,GAAAi6C,EAAAv/C,EAAAsF,0BCLA,IAAAx6C,EAAAxE,EAAA,GAEAA,EAAA,GAAAA,CAAA,oBAAAg+F,GACA,gBAAAh/C,GACA,OAAAx6C,EAAAw6C,MAAAg/C,KAAAh/C,uBCJA,IAAAx6C,EAAAxE,EAAA,GAEAA,EAAA,GAAAA,CAAA,oBAAAi+F,GACA,gBAAAj/C,GACA,OAAAx6C,EAAAw6C,MAAAi/C,KAAAj/C,uBCJA,IAAAx6C,EAAAxE,EAAA,GAEAA,EAAA,GAAAA,CAAA,wBAAAg5F,GACA,gBAAAh6C,GACA,QAAAx6C,EAAAw6C,MAAAg6C,KAAAh6C,wBCJA,IAAAiW,EAAAj1D,EAAA,IACAq9F,EAAAr9F,EAAA,IAAAy/C,EAEAz/C,EAAA,GAAAA,CAAA,sCACA,gBAAAg/C,EAAAr9C,GACA,OAAA07F,EAAApoC,EAAAjW,GAAAr9C,uBCLA,IAAAwG,EAAAnI,EAAA,IACAk+F,EAAAl+F,EAAA,IAEAA,EAAA,GAAAA,CAAA,4BACA,gBAAAg/C,GACA,OAAAk/C,EAAA/1F,EAAA62C,wBCLA,IAAA72C,EAAAnI,EAAA,IACA41D,EAAA51D,EAAA,IAEAA,EAAA,GAAAA,CAAA,kBACA,gBAAAg/C,GACA,OAAA4W,EAAAztD,EAAA62C,wBCLAh/C,EAAA,GAAAA,CAAA,iCACA,OAAAA,EAAA,IAAAy/C,qBCDA,IAAAh9C,EAAAzC,EAAA,GAEAyC,IAAAW,EAAAX,EAAAO,EAAA,UAA0C4kE,OAAA5nE,EAAA,uBCF1C,IAAAyC,EAAAzC,EAAA,GACAyC,IAAAW,EAAA,UAA8B2mB,GAAA/pB,EAAA,sBCD9BG,EAAAD,QAAAY,OAAAipB,IAAA,SAAAu2B,EAAAP,GAEA,OAAAO,IAAAP,EAAA,IAAAO,GAAA,EAAAA,GAAA,EAAAP,EAAAO,MAAAP,uBCFA,IAAAt9C,EAAAzC,EAAA,GACAyC,IAAAW,EAAA,UAA8B67D,eAAAj/D,EAAA,IAAAkN,uBCF9B,IAAAsyC,EAAAx/C,EAAA,GAAAy/C,EACA0+C,EAAAv6F,SAAA5B,UACAo8F,EAAA,wBACA,SAGAD,GAAAn+F,EAAA,KAAAw/C,EAAA2+C,EAHA,QAIAnzF,cAAA,EACA/J,IAAA,WACA,IACA,UAAAsI,MAAA8M,MAAA+nF,GAAA,GACK,MAAAp1F,GACL,8BCZA,IAAAvG,EAAAzC,EAAA,GACAi1D,EAAAj1D,EAAA,IACAotD,EAAAptD,EAAA,GAEAyC,IAAAW,EAAA,UAEAkM,IAAA,SAAA+uF,GAMA,IALA,IAAAC,EAAArpC,EAAAopC,EAAA/uF,KACAuB,EAAAu8C,EAAAkxC,EAAAv4F,QACA4rD,EAAAlqD,UAAA1B,OACAqC,KACAhI,EAAA,EACAyQ,EAAAzQ,GACAgI,EAAAyF,KAAA5I,OAAAq5F,EAAAl+F,OACAA,EAAAuxD,GAAAvpD,EAAAyF,KAAA5I,OAAAwC,UAAArH,KACK,OAAAgI,EAAAqtB,KAAA,wBCfL,IAAAhzB,EAAAzC,EAAA,GACAstD,EAAAttD,EAAA,IACAu+F,EAAAt5F,OAAAs5F,aACAC,EAAAv5F,OAAAw5F,cAGAh8F,IAAAW,EAAAX,EAAAO,KAAAw7F,GAAA,GAAAA,EAAAz4F,QAAA,UAEA04F,cAAA,SAAAn+C,GAKA,IAJA,IAGA/I,EAHAnvC,KACAupD,EAAAlqD,UAAA1B,OACA3F,EAAA,EAEAuxD,EAAAvxD,GAAA,CAEA,GADAm3C,GAAA9vC,UAAArH,KACAktD,EAAA/V,EAAA,WAAAA,EAAA,MAAAiX,WAAAjX,EAAA,8BACAnvC,EAAAyF,KAAA0pC,EAAA,MACAgnD,EAAAhnD,GACAgnD,EAAA,QAAAhnD,GAAA,YAAAA,EAAA,aAEK,OAAAnvC,EAAAqtB,KAAA,qCCnBL,IAAAhzB,EAAAzC,EAAA,GACA0+F,EAAA1+F,EAAA,IAAAA,EAAA,GACAyC,IAAAa,EAAA,UAEAq7F,YAAA,SAAA7zD,GACA,OAAA4zD,EAAAn1F,KAAAuhC,uBCNA,IAAA8U,EAAA5/C,EAAA,IACA0sD,EAAA1sD,EAAA,IAGAG,EAAAD,QAAA,SAAA0+F,GACA,gBAAA/xC,EAAA/hB,GACA,IAGAtjC,EAAAc,EAHAnG,EAAA8C,OAAAynD,EAAAG,IACAzsD,EAAAw/C,EAAA9U,GACAzqC,EAAA8B,EAAA4D,OAEA,OAAA3F,EAAA,GAAAA,GAAAC,EAAAu+F,EAAA,QAAAj7F,GACA6D,EAAArF,EAAA0I,WAAAzK,IACA,OAAAoH,EAAA,OAAApH,EAAA,IAAAC,IAAAiI,EAAAnG,EAAA0I,WAAAzK,EAAA,WAAAkI,EAAA,MACAs2F,EAAAz8F,EAAAgF,OAAA/G,GAAAoH,EACAo3F,EAAAz8F,EAAAiF,MAAAhH,IAAA,GAAAkI,EAAA,OAAAd,EAAA,oCCdA,IAAA/E,EAAAzC,EAAA,GAEAyC,IAAAa,EAAA,UAEAqlE,OAAA3oE,EAAA,qCCFA,IAAAyC,EAAAzC,EAAA,GACAotD,EAAAptD,EAAA,GACA8O,EAAA9O,EAAA,IAEA6+F,EAAA,cAEAp8F,IAAAa,EAAAb,EAAAO,EAAAhD,EAAA,GAAAA,CAHA,cAGA,UACA8+F,WAAA,SAAAh/B,GACA,IAAAjT,EAAA/9C,EAAAvF,KAAAu2D,EALA,cAMAx5D,EAAA8mD,EAAAloD,KAAA26C,IAAAp4C,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,EAAAkpD,EAAA9mD,SACA26C,EAAAz7C,OAAA66D,GACA,OAAA++B,EACAA,EAAAt+F,KAAAssD,EAAAnM,EAAAp6C,GACAumD,EAAAzlD,MAAAd,IAAAo6C,EAAA36C,UAAA26C,mCCbA,IAAAj+C,EAAAzC,EAAA,GACAotD,EAAAptD,EAAA,GACA8O,EAAA9O,EAAA,IAEA++F,EAAA,YAEAt8F,IAAAa,EAAAb,EAAAO,EAAAhD,EAAA,GAAAA,CAHA,YAGA,UACAg/F,SAAA,SAAAl/B,GACA,IAAAjT,EAAA/9C,EAAAvF,KAAAu2D,EALA,YAMAm/B,EAAAx3F,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,EACAkN,EAAAu8C,EAAAP,EAAA9mD,QACA+5B,OAAAn8B,IAAAs7F,EAAApuF,EAAA3L,KAAA26C,IAAAuN,EAAA6xC,GAAApuF,GACA6vC,EAAAz7C,OAAA66D,GACA,OAAAi/B,EACAA,EAAAx+F,KAAAssD,EAAAnM,EAAA5gB,GACA+sB,EAAAzlD,MAAA04B,EAAA4gB,EAAA36C,OAAA+5B,KAAA4gB,mCCfA,IAAAj+C,EAAAzC,EAAA,GACA8O,EAAA9O,EAAA,IAGAyC,IAAAa,EAAAb,EAAAO,EAAAhD,EAAA,GAAAA,CAFA,YAEA,UACAyyD,SAAA,SAAAqN,GACA,SAAAhxD,EAAAvF,KAAAu2D,EAJA,YAKAv5D,QAAAu5D,EAAAr4D,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,uBCRA3D,EAAA,eAAAk/F,OAAAl/F,EAAA,GAAAy/C,EAAAvwB,OAAAltB,UAAA,SACAgJ,cAAA,EACA/J,IAAAjB,EAAA,qCCDA,IAAAq/C,EAAAr/C,EAAA,GACAG,EAAAD,QAAA,WACA,IAAA2sD,EAAAxN,EAAA91C,MACAwH,EAAA,GAMA,OALA87C,EAAAzqD,SAAA2O,GAAA,KACA87C,EAAAsyC,aAAApuF,GAAA,KACA87C,EAAAuyC,YAAAruF,GAAA,KACA87C,EAAAwyC,UAAAtuF,GAAA,KACA87C,EAAAyyC,SAAAvuF,GAAA,KACAA,oBCVA/Q,EAAA,GAAAA,CAAA,mBAAA0sD,EAAAqT,EAAAw/B,GAEA,gBAAAC,GACA,aACA,IAAA9/C,EAAAgN,EAAAnjD,MACA5C,OAAAhD,GAAA67F,OAAA77F,EAAA67F,EAAAz/B,GACA,YAAAp8D,IAAAgD,IAAApG,KAAAi/F,EAAA9/C,GAAA,IAAAxwB,OAAAswE,GAAAz/B,GAAA96D,OAAAy6C,KACG6/C,sBCPHv/F,EAAA,GAAAA,CAAA,qBAAA0sD,EAAA+yC,EAAAC,GAEA,gBAAAC,EAAAC,GACA,aACA,IAAAlgD,EAAAgN,EAAAnjD,MACA5C,OAAAhD,GAAAg8F,OAAAh8F,EAAAg8F,EAAAF,GACA,YAAA97F,IAAAgD,EACAA,EAAApG,KAAAo/F,EAAAjgD,EAAAkgD,GACAF,EAAAn/F,KAAA0E,OAAAy6C,GAAAigD,EAAAC,IACGF,sBCTH1/F,EAAA,GAAAA,CAAA,mBAAA0sD,EAAAmzC,EAAAC,GACA,aACA,IAAAj7F,EAAA7E,EAAA,KACA+/F,EAAAD,EACAE,KAAAnyF,KAIA,GACA,8BACA,mCACA,iCACA,iCACA,4BACA,sBACA,CACA,IAAAoyF,OAAAt8F,IAAA,OAAAqxC,KAAA,OAEA8qD,EAAA,SAAAptC,EAAAxM,GACA,IAAAuU,EAAAx1D,OAAAsE,MACA,QAAA5F,IAAA+uD,GAAA,IAAAxM,EAAA,SAEA,IAAArhD,EAAA6tD,GAAA,OAAAqtC,EAAAx/F,KAAAk6D,EAAA/H,EAAAxM,GACA,IASAg6C,EAAA7pF,EAAAqE,EAAAylF,EAAA//F,EATA81F,KACAgJ,GAAAxsC,EAAAysC,WAAA,SACAzsC,EAAA0sC,UAAA,SACA1sC,EAAA2sC,QAAA,SACA3sC,EAAA4sC,OAAA,QACAc,EAAA,EACAC,OAAA18F,IAAAuiD,EAAA,WAAAA,IAAA,EAEAo6C,EAAA,IAAApxE,OAAAwjC,EAAA/vD,OAAAu8F,EAAA,KAIA,IADAe,IAAAC,EAAA,IAAAhxE,OAAA,IAAAoxE,EAAA39F,OAAA,WAAAu8F,KACA7oF,EAAAiqF,EAAAtrD,KAAAylB,QAEA//C,EAAArE,EAAA/P,MAAA+P,EAAA,WACA+pF,IACAlK,EAAAroF,KAAA4sD,EAAArzD,MAAAg5F,EAAA/pF,EAAA/P,SAGA25F,GAAA5pF,EAAA,UAAAA,EAAA,GAAAtP,QAAAm5F,EAAA,WACA,IAAA9/F,EAAA,EAAuBA,EAAAqH,UAAA,SAA2BrH,SAAAuD,IAAA8D,UAAArH,KAAAiW,EAAAjW,QAAAuD,KAElD0S,EAAA,UAAAA,EAAA/P,MAAAm0D,EAAA,QAAAulC,EAAAt4F,MAAAwuF,EAAA7/E,EAAAjP,MAAA,IACA+4F,EAAA9pF,EAAA,UACA+pF,EAAA1lF,EACAw7E,EAAA,QAAAmK,KAEAC,EAAA,YAAAjqF,EAAA/P,OAAAg6F,EAAA,YAKA,OAHAF,IAAA3lC,EAAA,QACA0lC,GAAAG,EAAAx0F,KAAA,KAAAoqF,EAAAroF,KAAA,IACOqoF,EAAAroF,KAAA4sD,EAAArzD,MAAAg5F,IACPlK,EAAA,OAAAmK,EAAAnK,EAAA9uF,MAAA,EAAAi5F,GAAAnK,OAGG,eAAAvyF,EAAA,YACHm8F,EAAA,SAAAptC,EAAAxM,GACA,YAAAviD,IAAA+uD,GAAA,IAAAxM,KAAA65C,EAAAx/F,KAAAgJ,KAAAmpD,EAAAxM,KAIA,gBAAAwM,EAAAxM,GACA,IAAAxG,EAAAgN,EAAAnjD,MACA5C,OAAAhD,GAAA+uD,OAAA/uD,EAAA+uD,EAAAmtC,GACA,YAAAl8F,IAAAgD,IAAApG,KAAAmyD,EAAAhT,EAAAwG,GAAA45C,EAAAv/F,KAAA0E,OAAAy6C,GAAAgT,EAAAxM,IACG45C,sBCpEH9/F,EAAA,GAAAA,CAAA,oBAAA0sD,EAAA6zC,EAAAC,GAEA,gBAAAhB,GACA,aACA,IAAA9/C,EAAAgN,EAAAnjD,MACA5C,OAAAhD,GAAA67F,OAAA77F,EAAA67F,EAAAe,GACA,YAAA58F,IAAAgD,IAAApG,KAAAi/F,EAAA9/C,GAAA,IAAAxwB,OAAAswE,GAAAe,GAAAt7F,OAAAy6C,KACG8gD,mCCPH,IAAAh+F,EAAAxC,EAAA,IACAyC,EAAAzC,EAAA,GACAmI,EAAAnI,EAAA,IACAO,EAAAP,EAAA,IACAwtD,EAAAxtD,EAAA,IACAotD,EAAAptD,EAAA,GACAygG,EAAAzgG,EAAA,IACA0tD,EAAA1tD,EAAA,IAEAyC,IAAAW,EAAAX,EAAAO,GAAAhD,EAAA,GAAAA,CAAA,SAAA20D,GAA4E5sD,MAAAiL,KAAA2hD,KAAoB,SAEhG3hD,KAAA,SAAAmgD,GACA,IAOAptD,EAAAgL,EAAA2gD,EAAA5I,EAPApJ,EAAAv3C,EAAAgrD,GACAlL,EAAA,mBAAA1+C,UAAAxB,MACA4pD,EAAAlqD,UAAA1B,OACA6rD,EAAAD,EAAA,EAAAlqD,UAAA,QAAA9D,EACAkuD,OAAAluD,IAAAiuD,EACAtrD,EAAA,EACAwrD,EAAApE,EAAAhO,GAIA,GAFAmS,IAAAD,EAAApvD,EAAAovD,EAAAD,EAAA,EAAAlqD,UAAA,QAAA9D,EAAA,SAEAA,GAAAmuD,GAAA7J,GAAAlgD,OAAAylD,EAAAsE,GAMA,IAAA/gD,EAAA,IAAAk3C,EADAliD,EAAAqnD,EAAA1N,EAAA35C,SACkCA,EAAAO,EAAgBA,IAClDm6F,EAAA1vF,EAAAzK,EAAAurD,EAAAD,EAAAlS,EAAAp5C,MAAAo5C,EAAAp5C,SANA,IAAAwiD,EAAAgJ,EAAAvxD,KAAAm/C,GAAA3uC,EAAA,IAAAk3C,IAAuDyJ,EAAA5I,EAAA5uB,QAAAstB,KAAgClhD,IACvFm6F,EAAA1vF,EAAAzK,EAAAurD,EAAAtxD,EAAAuoD,EAAA8I,GAAAF,EAAArwD,MAAAiF,IAAA,GAAAorD,EAAArwD,OASA,OADA0P,EAAAhL,OAAAO,EACAyK,mCCjCA,IAAAtO,EAAAzC,EAAA,GACAygG,EAAAzgG,EAAA,IAGAyC,IAAAW,EAAAX,EAAAO,EAAAhD,EAAA,EAAAA,CAAA,WACA,SAAAgD,KACA,QAAA+E,MAAAgtD,GAAAx0D,KAAAyC,kBACC,SAED+xD,GAAA,WAIA,IAHA,IAAAzuD,EAAA,EACAqrD,EAAAlqD,UAAA1B,OACAgL,EAAA,uBAAAxH,UAAAxB,OAAA4pD,GACAA,EAAArrD,GAAAm6F,EAAA1vF,EAAAzK,EAAAmB,UAAAnB,MAEA,OADAyK,EAAAhL,OAAA4rD,EACA5gD,sBCfA,IAAAtO,EAAAzC,EAAA,GAEAyC,IAAAa,EAAA,SAA6B6uD,WAAAnyD,EAAA,MAE7BA,EAAA,GAAAA,CAAA,4CCHA,IAAAyC,EAAAzC,EAAA,GACA0gG,EAAA1gG,EAAA,GAAAA,CAAA,GAEA2gG,GAAA,EADA,YAGA54F,MAAA,mBAA0C44F,GAAA,IAC1Cl+F,IAAAa,EAAAb,EAAAO,EAAA29F,EAAA,SACAp9C,KAAA,SAAA6O,GACA,OAAAsuC,EAAAn3F,KAAA6oD,EAAA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,MAGA3D,EAAA,GAAAA,CATA,sCCFA,IAAAyC,EAAAzC,EAAA,GACA0gG,EAAA1gG,EAAA,GAAAA,CAAA,GACA0nD,EAAA,YACAi5C,GAAA,EAEAj5C,QAAA3/C,MAAA,GAAA2/C,GAAA,WAA0Ci5C,GAAA,IAC1Cl+F,IAAAa,EAAAb,EAAAO,EAAA29F,EAAA,SACApuC,UAAA,SAAAH,GACA,OAAAsuC,EAAAn3F,KAAA6oD,EAAA3qD,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,MAGA3D,EAAA,GAAAA,CAAA0nD,oBCZA,IAAAjlD,EAAAzC,EAAA,GAEAyC,IAAAa,EAAA,SAA6B+uD,KAAAryD,EAAA,MAE7BA,EAAA,GAAAA,CAAA,yBCJA,IAAAyC,EAAAzC,EAAA,GACA4gG,EAAA5gG,EAAA,GAAAoF,SAEA3C,IAAAW,EAAA,UACAgC,SAAA,SAAA45C,GACA,uBAAAA,GAAA4hD,EAAA5hD,uBCLA,IAAAv8C,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,UAA8By9F,UAAA7gG,EAAA,wBCF9B,IAAAyC,EAAAzC,EAAA,GACA6gG,EAAA7gG,EAAA,KACAsjE,EAAAp+D,KAAAo+D,IAEA7gE,IAAAW,EAAA,UACA09F,cAAA,SAAAnnE,GACA,OAAAknE,EAAAlnE,IAAA2pC,EAAA3pC,IAAA,qCCNA,IAAAl3B,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,UACAoC,MAAA,SAAAm0B,GAEA,OAAAA,yBCLA,IAAAl3B,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,UAA8B29F,QAAA77F,KAAAq+D,IAAA,0BCF9B,IAAA9gE,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,UAA8B49F,kBAAA,oCCF9B,IAAAv+F,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,UAA8BwjF,iBAAA,oCCF9B,IAAAnkF,EAAAzC,EAAA,GACAyoE,EAAAzoE,EAAA,KACAihG,EAAA/7F,KAAA+7F,KACAC,EAAAh8F,KAAAi8F,MAEA1+F,IAAAW,EAAAX,EAAAO,IAAAk+F,GAEA,KAAAh8F,KAAAC,MAAA+7F,EAAA3xE,OAAA6xE,aAEAF,EAAA99B,WACA,QACA+9B,MAAA,SAAA7gD,GACA,OAAAA,MAAA,EAAA+jB,IAAA/jB,EAAA,kBACAp7C,KAAA0yD,IAAAtX,GAAAp7C,KAAAs+D,IACAiF,EAAAnoB,EAAA,EAAA2gD,EAAA3gD,EAAA,GAAA2gD,EAAA3gD,EAAA,wBCdA,IAAA79C,EAAAzC,EAAA,GACAqhG,EAAAn8F,KAAAo8F,MAOA7+F,IAAAW,EAAAX,EAAAO,IAAAq+F,GAAA,EAAAA,EAAA,cAAyEC,MALzE,SAAAA,EAAAhhD,GACA,OAAAl7C,SAAAk7C,OAAA,GAAAA,IAAA,GAAAghD,GAAAhhD,GAAAp7C,KAAA0yD,IAAAtX,EAAAp7C,KAAA+7F,KAAA3gD,IAAA,IAAAA,sBCJA,IAAA79C,EAAAzC,EAAA,GACAuhG,EAAAr8F,KAAAs8F,MAGA/+F,IAAAW,EAAAX,EAAAO,IAAAu+F,GAAA,EAAAA,GAAA,cACAC,MAAA,SAAAlhD,GACA,WAAAA,QAAAp7C,KAAA0yD,KAAA,EAAAtX,IAAA,EAAAA,IAAA,sBCNA,IAAA79C,EAAAzC,EAAA,GACAigE,EAAAjgE,EAAA,IAEAyC,IAAAW,EAAA,QACAq+F,KAAA,SAAAnhD,GACA,OAAA2f,EAAA3f,MAAAp7C,KAAAq+D,IAAAr+D,KAAAo+D,IAAAhjB,GAAA,yBCLA,IAAA79C,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QACAs+F,MAAA,SAAAphD,GACA,OAAAA,KAAA,MAAAp7C,KAAAC,MAAAD,KAAA0yD,IAAAtX,EAAA,IAAAp7C,KAAAy8F,OAAA,uBCJA,IAAAl/F,EAAAzC,EAAA,GACA8C,EAAAoC,KAAApC,IAEAL,IAAAW,EAAA,QACAw+F,KAAA,SAAAthD,GACA,OAAAx9C,EAAAw9C,MAAAx9C,GAAAw9C,IAAA,sBCLA,IAAA79C,EAAAzC,EAAA,GACAkgE,EAAAlgE,EAAA,IAEAyC,IAAAW,EAAAX,EAAAO,GAAAk9D,GAAAh7D,KAAAi7D,OAAA,QAAiEA,MAAAD,qBCHjE,IAAAz9D,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QAA4By+F,OAAA7hG,EAAA,wBCF5B,IAAAigE,EAAAjgE,EAAA,IACAujE,EAAAr+D,KAAAq+D,IACAw9B,EAAAx9B,EAAA,OACAu+B,EAAAv+B,EAAA,OACAw+B,EAAAx+B,EAAA,UAAAu+B,GACAE,EAAAz+B,EAAA,QAMApjE,EAAAD,QAAAgF,KAAA28F,QAAA,SAAAvhD,GACA,IAEA94C,EAAAuJ,EAFAkxF,EAAA/8F,KAAAo+D,IAAAhjB,GACA4hD,EAAAjiC,EAAA3f,GAEA,OAAA2hD,EAAAD,EAAAE,EARA,SAAArgG,GACA,OAAAA,EAAA,EAAAk/F,EAAA,EAAAA,EAOAoB,CAAAF,EAAAD,EAAAF,GAAAE,EAAAF,GAEA/wF,GADAvJ,GAAA,EAAAs6F,EAAAf,GAAAkB,IACAz6F,EAAAy6F,IAEAF,GAAAhxF,KAAAmxF,GAAA9+B,KACA8+B,EAAAnxF,oBCpBA,IAAAtO,EAAAzC,EAAA,GACAsjE,EAAAp+D,KAAAo+D,IAEA7gE,IAAAW,EAAA,QACAg/F,MAAA,SAAAC,EAAAC,GAMA,IALA,IAIA3pE,EAAAglB,EAJA4kD,EAAA,EACAniG,EAAA,EACAuxD,EAAAlqD,UAAA1B,OACAy8F,EAAA,EAEApiG,EAAAuxD,GAEA6wC,GADA7pE,EAAA2qC,EAAA77D,UAAArH,QAGAmiG,KADA5kD,EAAA6kD,EAAA7pE,GACAglB,EAAA,EACA6kD,EAAA7pE,GAGA4pE,GAFO5pE,EAAA,GACPglB,EAAAhlB,EAAA6pE,GACA7kD,EACOhlB,EAEP,OAAA6pE,IAAAp/B,QAAAo/B,EAAAt9F,KAAA+7F,KAAAsB,uBCrBA,IAAA9/F,EAAAzC,EAAA,GACAyiG,EAAAv9F,KAAAw9F,KAGAjgG,IAAAW,EAAAX,EAAAO,EAAAhD,EAAA,EAAAA,CAAA,WACA,UAAAyiG,EAAA,kBAAAA,EAAA18F,SACC,QACD28F,KAAA,SAAApiD,EAAAP,GACA,IACA4iD,GAAAriD,EACAsiD,GAAA7iD,EACA8iD,EAHA,MAGAF,EACAG,EAJA,MAIAF,EACA,SAAAC,EAAAC,IALA,MAKAH,IAAA,IAAAG,EAAAD,GALA,MAKAD,IAAA,iCCbA,IAAAngG,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QAA4BqlE,MAAAzoE,EAAA,wBCF5B,IAAAyC,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QACA2/F,MAAA,SAAAziD,GACA,OAAAp7C,KAAA0yD,IAAAtX,GAAAp7C,KAAA89F,2BCJA,IAAAvgG,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QACA6/F,KAAA,SAAA3iD,GACA,OAAAp7C,KAAA0yD,IAAAtX,GAAAp7C,KAAAs+D,wBCJA,IAAA/gE,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QAA4B68D,KAAAjgE,EAAA,uBCF5B,IAAAyC,EAAAzC,EAAA,GACAmgE,EAAAngE,EAAA,IACA8C,EAAAoC,KAAApC,IAGAL,IAAAW,EAAAX,EAAAO,EAAAhD,EAAA,EAAAA,CAAA,WACA,eAAAkF,KAAAg+F,MAAA,SACC,QACDA,KAAA,SAAA5iD,GACA,OAAAp7C,KAAAo+D,IAAAhjB,MAAA,GACA6f,EAAA7f,GAAA6f,GAAA7f,IAAA,GACAx9C,EAAAw9C,EAAA,GAAAx9C,GAAAw9C,EAAA,KAAAp7C,KAAAkgD,EAAA,uBCXA,IAAA3iD,EAAAzC,EAAA,GACAmgE,EAAAngE,EAAA,IACA8C,EAAAoC,KAAApC,IAEAL,IAAAW,EAAA,QACA+/F,KAAA,SAAA7iD,GACA,IAAA94C,EAAA24D,EAAA7f,MACAh4C,EAAA63D,GAAA7f,GACA,OAAA94C,GAAA47D,IAAA,EAAA96D,GAAA86D,KAAA,GAAA57D,EAAAc,IAAAxF,EAAAw9C,GAAAx9C,GAAAw9C,wBCRA,IAAA79C,EAAAzC,EAAA,GAEAyC,IAAAW,EAAA,QACAggG,MAAA,SAAApkD,GACA,OAAAA,EAAA,EAAA95C,KAAAC,MAAAD,KAAAk7C,MAAApB,oCCHA,IAAAv8C,EAAAzC,EAAA,GACAqjG,EAAArjG,EAAA,GAAAA,EAAA,GAEAyC,IAAAa,EAAA,SACAmvD,SAAA,SAAAhlC,GACA,OAAA41E,EAAA95F,KAAAkkB,EAAAhmB,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,MAIA3D,EAAA,GAAAA,CAAA,6BCVA,IAAAyC,EAAAzC,EAAA,GACAsjG,EAAAtjG,EAAA,IAAAA,EAAA,GAEAyC,IAAAW,EAAA,UACAmiD,OAAA,SAAAvG,GACA,OAAAskD,EAAAtkD,uBCLA,IAAAv8C,EAAAzC,EAAA,GACAinE,EAAAjnE,EAAA,IAAAA,EAAA,GAEAyC,IAAAW,EAAA,UACAkiD,QAAA,SAAAtG,GACA,OAAAioB,EAAAjoB,uBCLA,IAAAv8C,EAAAzC,EAAA,GACAgN,EAAAhN,EAAA,IACAi1D,EAAAj1D,EAAA,IACAuuD,EAAAvuD,EAAA,IACAygG,EAAAzgG,EAAA,IAEAyC,IAAAW,EAAA,UACAmgG,0BAAA,SAAAzhG,GAOA,IANA,IAKAH,EAAA6xD,EALA9T,EAAAuV,EAAAnzD,GACA0hG,EAAAj1C,EAAA9O,EACAv2C,EAAA8D,EAAA0yC,GACA3uC,KACA3Q,EAAA,EAEA8I,EAAAnD,OAAA3F,QAEAuD,KADA6vD,EAAAgwC,EAAA9jD,EAAA/9C,EAAAuH,EAAA9I,QACAqgG,EAAA1vF,EAAApP,EAAA6xD,GAEA,OAAAziD,mCCjBA,IAAAtO,EAAAzC,EAAA,GACAyjG,EAAAzjG,EAAA,KACA4L,EAAA5L,EAAA,IAGAyC,IAAAa,EAAAb,EAAAO,EAAA,oCAAA8I,KAAAF,GAAA,UACA83F,SAAA,SAAA96B,GACA,OAAA66B,EAAAl6F,KAAAq/D,EAAAnhE,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,GAAA,oCCPA,IAAAlB,EAAAzC,EAAA,GACAyjG,EAAAzjG,EAAA,KACA4L,EAAA5L,EAAA,IAGAyC,IAAAa,EAAAb,EAAAO,EAAA,oCAAA8I,KAAAF,GAAA,UACA+3F,OAAA,SAAA/6B,GACA,OAAA66B,EAAAl6F,KAAAq/D,EAAAnhE,UAAA1B,OAAA,EAAA0B,UAAA,QAAA9D,GAAA,uBCRA,IAAAvB,EAAApC,EAAA,GACAyC,EAAAzC,EAAA,GACA4L,EAAA5L,EAAA,IACAoH,WACAw8F,EAAA,WAAA93F,KAAAF,GACAoxF,EAAA,SAAA9vF,GACA,gBAAAvG,EAAAk9F,GACA,IAAAC,EAAAr8F,UAAA1B,OAAA,EACA6K,IAAAkzF,GAAA18F,EAAA7G,KAAAkH,UAAA,GACA,OAAAyF,EAAA42F,EAAA,YAEA,mBAAAn9F,IAAA/C,SAAA+C,IAAAe,MAAA6B,KAAAqH,IACKjK,EAAAk9F,KAGLphG,IAAAS,EAAAT,EAAAe,EAAAf,EAAAO,EAAA4gG,GACAjsF,WAAAqlF,EAAA56F,EAAAuV,YACAu6E,YAAA8K,EAAA56F,EAAA8vF,gCClBA,IAAAzvF,EAAAzC,EAAA,GACA+jG,EAAA/jG,EAAA,IACAyC,IAAAS,EAAAT,EAAAe,GACAQ,aAAA+/F,EAAA72F,IACAsyD,eAAAukC,EAAA12F,yBCyCA,IA7CA,IAAA+lD,EAAApzD,EAAA,IACAynE,EAAAznE,EAAA,IACAuC,EAAAvC,EAAA,IACAoC,EAAApC,EAAA,GACAsC,EAAAtC,EAAA,IACAguD,EAAAhuD,EAAA,IACA2tD,EAAA3tD,EAAA,GACAkwD,EAAAvC,EAAA,YACAq2C,EAAAr2C,EAAA,eACAs2C,EAAAj2C,EAAAjmD,MAEAm8F,GACAC,aAAA,EACAC,qBAAA,EACAC,cAAA,EACAC,gBAAA,EACAC,aAAA,EACAC,eAAA,EACAC,cAAA,EACAC,sBAAA,EACAC,UAAA,EACAC,mBAAA,EACAC,gBAAA,EACAC,iBAAA,EACAC,mBAAA,EACAC,WAAA,EACAC,eAAA,EACAC,cAAA,EACAC,UAAA,EACAC,kBAAA,EACAC,QAAA,EACAC,aAAA,EACAC,eAAA,EACAC,eAAA,EACAC,gBAAA,EACAC,cAAA,EACAC,eAAA,EACAC,kBAAA,EACAC,kBAAA,EACAC,gBAAA,EACAC,kBAAA,EACAC,eAAA,EACAC,WAAA,GAGAC,EAAAz+B,EAAAy8B,GAAA9jG,EAAA,EAAoDA,EAAA8lG,EAAAngG,OAAwB3F,IAAA,CAC5E,IAIAuB,EAJAiyD,EAAAsyC,EAAA9lG,GACA+lG,EAAAjC,EAAAtwC,GACAwyC,EAAAhkG,EAAAwxD,GACA1B,EAAAk0C,KAAApkG,UAEA,GAAAkwD,IACAA,EAAAhC,IAAA5tD,EAAA4vD,EAAAhC,EAAA+zC,GACA/xC,EAAA8xC,IAAA1hG,EAAA4vD,EAAA8xC,EAAApwC,GACA5F,EAAA4F,GAAAqwC,EACAkC,GAAA,IAAAxkG,KAAAyxD,EAAAlB,EAAAvwD,IAAAY,EAAA2vD,EAAAvwD,EAAAyxD,EAAAzxD,IAAA,oBChDA,SAAAS,GACA,aAEA,IAEAuB,EAFA0iG,EAAAvlG,OAAAkB,UACAyE,EAAA4/F,EAAApkG,eAEAq6F,EAAA,mBAAAn7F,iBACAmlG,EAAAhK,EAAAxzC,UAAA,aACAy9C,EAAAjK,EAAAkK,eAAA,kBACAC,EAAAnK,EAAAl7F,aAAA,gBAEAslG,EAAA,iBAAAvmG,EACAwmG,EAAAvkG,EAAAwkG,mBACA,GAAAD,EACAD,IAGAvmG,EAAAD,QAAAymG,OAJA,EAaAA,EAAAvkG,EAAAwkG,mBAAAF,EAAAvmG,EAAAD,YAcA88F,OAoBA,IAAA6J,EAAA,iBACAC,EAAA,iBACAC,EAAA,YACAC,EAAA,YAIAC,KAYAtgC,KACAA,EAAA2/B,GAAA,WACA,OAAA/8F,MAGA,IAAAwvF,EAAAj4F,OAAAinD,eACAm/C,EAAAnO,OAAAxzC,QACA2hD,GACAA,IAAAb,GACA5/F,EAAAlG,KAAA2mG,EAAAZ,KAGA3/B,EAAAugC,GAGA,IAAAC,EAAAC,EAAAplG,UACAqlG,EAAArlG,UAAAlB,OAAAY,OAAAilE,GACA2gC,EAAAtlG,UAAAmlG,EAAAv7E,YAAAw7E,EACAA,EAAAx7E,YAAA07E,EACAF,EAAAX,GACAa,EAAAC,YAAA,oBAYAZ,EAAAa,oBAAA,SAAAC,GACA,IAAAC,EAAA,mBAAAD,KAAA77E,YACA,QAAA87E,IACAA,IAAAJ,GAGA,uBAAAI,EAAAH,aAAAG,EAAA/mG,QAIAgmG,EAAAgB,KAAA,SAAAF,GAUA,OATA3mG,OAAAm+D,eACAn+D,OAAAm+D,eAAAwoC,EAAAL,IAEAK,EAAA31F,UAAAs1F,EACAX,KAAAgB,IACAA,EAAAhB,GAAA,sBAGAgB,EAAAzlG,UAAAlB,OAAAY,OAAAylG,GACAM,GAOAd,EAAAiB,MAAA,SAAAjvE,GACA,OAAYkvE,QAAAlvE,IA8EZmvE,EAAAC,EAAA/lG,WACA+lG,EAAA/lG,UAAAukG,GAAA,WACA,OAAAh9F,MAEAo9F,EAAAoB,gBAKApB,EAAAqB,MAAA,SAAAC,EAAAC,EAAA3uD,EAAA4uD,GACA,IAAAxzC,EAAA,IAAAozC,EACA/K,EAAAiL,EAAAC,EAAA3uD,EAAA4uD,IAGA,OAAAxB,EAAAa,oBAAAU,GACAvzC,EACAA,EAAAz6B,OAAA9hB,KAAA,SAAArH,GACA,OAAAA,EAAAy2C,KAAAz2C,EAAA1P,MAAAszD,EAAAz6B,UAsKA4tE,EAAAX,GAEAA,EAAAV,GAAA,YAOAU,EAAAb,GAAA,WACA,OAAA/8F,MAGA49F,EAAAxiG,SAAA,WACA,4BAkCAgiG,EAAAz9F,KAAA,SAAApH,GACA,IAAAoH,KACA,QAAAvH,KAAAG,EACAoH,EAAA2E,KAAAlM,GAMA,OAJAuH,EAAAypD,UAIA,SAAAz4B,IACA,KAAAhxB,EAAAnD,QAAA,CACA,IAAApE,EAAAuH,EAAAqF,MACA,GAAA5M,KAAAG,EAGA,OAFAo4B,EAAA74B,MAAAM,EACAu4B,EAAAstB,MAAA,EACAttB,EAQA,OADAA,EAAAstB,MAAA,EACAttB,IAsCAysE,EAAAphD,SAMA6iD,EAAApmG,WACA4pB,YAAAw8E,EAEAjX,MAAA,SAAAkX,GAcA,GAbA9+F,KAAA6tB,KAAA,EACA7tB,KAAA2wB,KAAA,EAGA3wB,KAAA++F,KAAA/+F,KAAAg/F,MAAA5kG,EACA4F,KAAAi+C,MAAA,EACAj+C,KAAAi/F,SAAA,KAEAj/F,KAAAmH,OAAA,OACAnH,KAAAovB,IAAAh1B,EAEA4F,KAAAk/F,WAAAh4F,QAAAi4F,IAEAL,EACA,QAAA1nG,KAAA4I,KAEA,MAAA5I,EAAAwG,OAAA,IACAV,EAAAlG,KAAAgJ,KAAA5I,KACA6E,OAAA7E,EAAAyG,MAAA,MACAmC,KAAA5I,GAAAgD,IAMA01C,KAAA,WACA9vC,KAAAi+C,MAAA,EAEA,IACAmhD,EADAp/F,KAAAk/F,WAAA,GACAG,WACA,aAAAD,EAAAjmG,KACA,MAAAimG,EAAAhwE,IAGA,OAAApvB,KAAAs/F,MAGAC,kBAAA,SAAAC,GACA,GAAAx/F,KAAAi+C,KACA,MAAAuhD,EAGA,IAAAj6F,EAAAvF,KACA,SAAA2pF,EAAA8V,EAAAC,GAYA,OAXAC,EAAAxmG,KAAA,QACAwmG,EAAAvwE,IAAAowE,EACAj6F,EAAAorB,KAAA8uE,EAEAC,IAGAn6F,EAAA4B,OAAA,OACA5B,EAAA6pB,IAAAh1B,KAGAslG,EAGA,QAAA7oG,EAAAmJ,KAAAk/F,WAAA1iG,OAAA,EAA8C3F,GAAA,IAAQA,EAAA,CACtD,IAAAonE,EAAAj+D,KAAAk/F,WAAAroG,GACA8oG,EAAA1hC,EAAAohC,WAEA,YAAAphC,EAAA2hC,OAIA,OAAAjW,EAAA,OAGA,GAAA1rB,EAAA2hC,QAAA5/F,KAAA6tB,KAAA,CACA,IAAAgyE,EAAA3iG,EAAAlG,KAAAinE,EAAA,YACA6hC,EAAA5iG,EAAAlG,KAAAinE,EAAA,cAEA,GAAA4hC,GAAAC,EAAA,CACA,GAAA9/F,KAAA6tB,KAAAowC,EAAA8hC,SACA,OAAApW,EAAA1rB,EAAA8hC,UAAA,GACa,GAAA//F,KAAA6tB,KAAAowC,EAAA+hC,WACb,OAAArW,EAAA1rB,EAAA+hC,iBAGW,GAAAH,GACX,GAAA7/F,KAAA6tB,KAAAowC,EAAA8hC,SACA,OAAApW,EAAA1rB,EAAA8hC,UAAA,OAGW,KAAAD,EAMX,UAAA/tC,MAAA,0CALA,GAAA/xD,KAAA6tB,KAAAowC,EAAA+hC,WACA,OAAArW,EAAA1rB,EAAA+hC,gBAUAC,OAAA,SAAA9mG,EAAAi2B,GACA,QAAAv4B,EAAAmJ,KAAAk/F,WAAA1iG,OAAA,EAA8C3F,GAAA,IAAQA,EAAA,CACtD,IAAAonE,EAAAj+D,KAAAk/F,WAAAroG,GACA,GAAAonE,EAAA2hC,QAAA5/F,KAAA6tB,MACA3wB,EAAAlG,KAAAinE,EAAA,eACAj+D,KAAA6tB,KAAAowC,EAAA+hC,WAAA,CACA,IAAAE,EAAAjiC,EACA,OAIAiiC,IACA,UAAA/mG,GACA,aAAAA,IACA+mG,EAAAN,QAAAxwE,GACAA,GAAA8wE,EAAAF,aAGAE,EAAA,MAGA,IAAAP,EAAAO,IAAAb,cAIA,OAHAM,EAAAxmG,OACAwmG,EAAAvwE,MAEA8wE,GACAlgG,KAAAmH,OAAA,OACAnH,KAAA2wB,KAAAuvE,EAAAF,WACAtC,GAGA19F,KAAA2nF,SAAAgY,IAGAhY,SAAA,SAAAgY,EAAAQ,GACA,aAAAR,EAAAxmG,KACA,MAAAwmG,EAAAvwE,IAcA,MAXA,UAAAuwE,EAAAxmG,MACA,aAAAwmG,EAAAxmG,KACA6G,KAAA2wB,KAAAgvE,EAAAvwE,IACO,WAAAuwE,EAAAxmG,MACP6G,KAAAs/F,KAAAt/F,KAAAovB,IAAAuwE,EAAAvwE,IACApvB,KAAAmH,OAAA,SACAnH,KAAA2wB,KAAA,OACO,WAAAgvE,EAAAxmG,MAAAgnG,IACPngG,KAAA2wB,KAAAwvE,GAGAzC,GAGA0C,OAAA,SAAAJ,GACA,QAAAnpG,EAAAmJ,KAAAk/F,WAAA1iG,OAAA,EAA8C3F,GAAA,IAAQA,EAAA,CACtD,IAAAonE,EAAAj+D,KAAAk/F,WAAAroG,GACA,GAAAonE,EAAA+hC,eAGA,OAFAhgG,KAAA2nF,SAAA1pB,EAAAohC,WAAAphC,EAAAkiC,UACAhB,EAAAlhC,GACAy/B,IAKAzqB,MAAA,SAAA2sB,GACA,QAAA/oG,EAAAmJ,KAAAk/F,WAAA1iG,OAAA,EAA8C3F,GAAA,IAAQA,EAAA,CACtD,IAAAonE,EAAAj+D,KAAAk/F,WAAAroG,GACA,GAAAonE,EAAA2hC,WAAA,CACA,IAAAD,EAAA1hC,EAAAohC,WACA,aAAAM,EAAAxmG,KAAA,CACA,IAAAknG,EAAAV,EAAAvwE,IACA+vE,EAAAlhC,GAEA,OAAAoiC,GAMA,UAAAtuC,MAAA,0BAGAuuC,cAAA,SAAAvwC,EAAAwwC,EAAAC,GAaA,OAZAxgG,KAAAi/F,UACA1/C,SAAAvD,EAAA+T,GACAwwC,aACAC,WAGA,SAAAxgG,KAAAmH,SAGAnH,KAAAovB,IAAAh1B,GAGAsjG,IA3qBA,SAAAjK,EAAAiL,EAAAC,EAAA3uD,EAAA4uD,GAEA,IAAA6B,EAAA9B,KAAAlmG,qBAAAqlG,EAAAa,EAAAb,EACA4C,EAAAnpG,OAAAY,OAAAsoG,EAAAhoG,WACA8M,EAAA,IAAAs5F,EAAAD,OAMA,OAFA8B,EAAAC,QA0MA,SAAAjC,EAAA1uD,EAAAzqC,GACA,IAAAksC,EAAA6rD,EAEA,gBAAAn2F,EAAAioB,GACA,GAAAqiB,IAAA+rD,EACA,UAAAzrC,MAAA,gCAGA,GAAAtgB,IAAAgsD,EAAA,CACA,aAAAt2F,EACA,MAAAioB,EAKA,OAAAwxE,IAMA,IAHAr7F,EAAA4B,SACA5B,EAAA6pB,QAEA,CACA,IAAA6vE,EAAA15F,EAAA05F,SACA,GAAAA,EAAA,CACA,IAAA4B,EAAAC,EAAA7B,EAAA15F,GACA,GAAAs7F,EAAA,CACA,GAAAA,IAAAnD,EAAA,SACA,OAAAmD,GAIA,YAAAt7F,EAAA4B,OAGA5B,EAAAw5F,KAAAx5F,EAAAy5F,MAAAz5F,EAAA6pB,SAES,aAAA7pB,EAAA4B,OAAA,CACT,GAAAsqC,IAAA6rD,EAEA,MADA7rD,EAAAgsD,EACAl4F,EAAA6pB,IAGA7pB,EAAAg6F,kBAAAh6F,EAAA6pB,SAES,WAAA7pB,EAAA4B,QACT5B,EAAA06F,OAAA,SAAA16F,EAAA6pB,KAGAqiB,EAAA+rD,EAEA,IAAAmC,EAAAoB,EAAArC,EAAA1uD,EAAAzqC,GACA,cAAAo6F,EAAAxmG,KAAA,CAOA,GAJAs4C,EAAAlsC,EAAA04C,KACAw/C,EACAF,EAEAoC,EAAAvwE,MAAAsuE,EACA,SAGA,OACA5lG,MAAA6nG,EAAAvwE,IACA6uB,KAAA14C,EAAA04C,MAGS,UAAA0hD,EAAAxmG,OACTs4C,EAAAgsD,EAGAl4F,EAAA4B,OAAA,QACA5B,EAAA6pB,IAAAuwE,EAAAvwE,OAlRA4xE,CAAAtC,EAAA1uD,EAAAzqC,GAEAm7F,EAcA,SAAAK,EAAA3jG,EAAAlC,EAAAk0B,GACA,IACA,OAAcj2B,KAAA,SAAAi2B,IAAAhyB,EAAApG,KAAAkE,EAAAk0B,IACT,MAAAliB,GACL,OAAc/T,KAAA,QAAAi2B,IAAAliB,IAiBd,SAAA4wF,KACA,SAAAC,KACA,SAAAF,KA4BA,SAAAU,EAAA9lG,IACA,yBAAAyO,QAAA,SAAAC,GACA1O,EAAA0O,GAAA,SAAAioB,GACA,OAAApvB,KAAA2gG,QAAAx5F,EAAAioB,MAoCA,SAAAovE,EAAAkC,GAwCA,IAAAO,EAgCAjhG,KAAA2gG,QA9BA,SAAAx5F,EAAAioB,GACA,SAAA8xE,IACA,WAAAvyF,QAAA,SAAAC,EAAAqQ,IA3CA,SAAA42C,EAAA1uD,EAAAioB,EAAAxgB,EAAAqQ,GACA,IAAA0gF,EAAAoB,EAAAL,EAAAv5F,GAAAu5F,EAAAtxE,GACA,aAAAuwE,EAAAxmG,KAEO,CACP,IAAAqO,EAAAm4F,EAAAvwE,IACAt3B,EAAA0P,EAAA1P,MACA,OAAAA,GACA,iBAAAA,GACAoF,EAAAlG,KAAAc,EAAA,WACA6W,QAAAC,QAAA9W,EAAAwmG,SAAAzvF,KAAA,SAAA/W,GACA+9D,EAAA,OAAA/9D,EAAA8W,EAAAqQ,IACW,SAAA/R,GACX2oD,EAAA,QAAA3oD,EAAA0B,EAAAqQ,KAIAtQ,QAAAC,QAAA9W,GAAA+W,KAAA,SAAAsyF,GAgBA35F,EAAA1P,MAAAqpG,EACAvyF,EAAApH,IACSyX,GAhCTA,EAAA0gF,EAAAvwE,KAyCAymC,CAAA1uD,EAAAioB,EAAAxgB,EAAAqQ,KAIA,OAAAgiF,EAaAA,IAAApyF,KACAqyF,EAGAA,GACAA,KA+GA,SAAAJ,EAAA7B,EAAA15F,GACA,IAAA4B,EAAA83F,EAAA1/C,SAAAh6C,EAAA4B,QACA,GAAAA,IAAA/M,EAAA,CAKA,GAFAmL,EAAA05F,SAAA,KAEA,UAAA15F,EAAA4B,OAAA,CACA,GAAA83F,EAAA1/C,SAAA6hD,SAGA77F,EAAA4B,OAAA,SACA5B,EAAA6pB,IAAAh1B,EACA0mG,EAAA7B,EAAA15F,GAEA,UAAAA,EAAA4B,QAGA,OAAAu2F,EAIAn4F,EAAA4B,OAAA,QACA5B,EAAA6pB,IAAA,IAAAumB,UACA,kDAGA,OAAA+nD,EAGA,IAAAiC,EAAAoB,EAAA55F,EAAA83F,EAAA1/C,SAAAh6C,EAAA6pB,KAEA,aAAAuwE,EAAAxmG,KAIA,OAHAoM,EAAA4B,OAAA,QACA5B,EAAA6pB,IAAAuwE,EAAAvwE,IACA7pB,EAAA05F,SAAA,KACAvB,EAGA,IAAAvwF,EAAAwyF,EAAAvwE,IAEA,OAAAjiB,EAOAA,EAAA8wC,MAGA14C,EAAA05F,EAAAsB,YAAApzF,EAAArV,MAGAyN,EAAAorB,KAAAsuE,EAAAuB,QAQA,WAAAj7F,EAAA4B,SACA5B,EAAA4B,OAAA,OACA5B,EAAA6pB,IAAAh1B,GAUAmL,EAAA05F,SAAA,KACAvB,GANAvwF,GA3BA5H,EAAA4B,OAAA,QACA5B,EAAA6pB,IAAA,IAAAumB,UAAA,oCACApwC,EAAA05F,SAAA,KACAvB,GAoDA,SAAA2D,EAAAC,GACA,IAAArjC,GAAiB2hC,OAAA0B,EAAA,IAEjB,KAAAA,IACArjC,EAAA8hC,SAAAuB,EAAA,IAGA,KAAAA,IACArjC,EAAA+hC,WAAAsB,EAAA,GACArjC,EAAAkiC,SAAAmB,EAAA,IAGAthG,KAAAk/F,WAAA56F,KAAA25D,GAGA,SAAAkhC,EAAAlhC,GACA,IAAA0hC,EAAA1hC,EAAAohC,eACAM,EAAAxmG,KAAA,gBACAwmG,EAAAvwE,IACA6uC,EAAAohC,WAAAM,EAGA,SAAAd,EAAAD,GAIA5+F,KAAAk/F,aAAwBU,OAAA,SACxBhB,EAAA13F,QAAAm6F,EAAArhG,MACAA,KAAA4nF,OAAA,GA8BA,SAAA5rC,EAAA+T,GACA,GAAAA,EAAA,CACA,IAAAwxC,EAAAxxC,EAAAgtC,GACA,GAAAwE,EACA,OAAAA,EAAAvqG,KAAA+4D,GAGA,sBAAAA,EAAAp/B,KACA,OAAAo/B,EAGA,IAAA9zD,MAAA8zD,EAAAvzD,QAAA,CACA,IAAA3F,GAAA,EAAA85B,EAAA,SAAAA,IACA,OAAA95B,EAAAk5D,EAAAvzD,QACA,GAAAU,EAAAlG,KAAA+4D,EAAAl5D,GAGA,OAFA85B,EAAA74B,MAAAi4D,EAAAl5D,GACA85B,EAAAstB,MAAA,EACAttB,EAOA,OAHAA,EAAA74B,MAAAsC,EACAu2B,EAAAstB,MAAA,EAEAttB,GAGA,OAAAA,UAKA,OAAYA,KAAAiwE,GAIZ,SAAAA,IACA,OAAY9oG,MAAAsC,EAAA6jD,MAAA,IAhgBZ,CA8sBA,WAAe,OAAAj+C,KAAf,IAA6B3F,SAAA,cAAAA,6DCrtB7BmnG,EAAA,WACA,IACAjoB,EADAv5E,KACAyY,eAEA,OAHAzY,KAEAwjB,MAAA1H,IAAAy9D,GACA,gBCEA,SAAAkoB,EACAC,EACA3pF,EACA+B,EACA6nF,EACAC,EACAx3E,EACAy3E,EACAC,GAGA,IAqBAz3F,EArBAS,EAAA,mBAAA42F,EACAA,EAAA52F,QACA42F,EAiDA,GA9CA3pF,IACAjN,EAAAiN,SACAjN,EAAAgP,kBACAhP,EAAA2Q,WAAA,GAIAkmF,IACA72F,EAAA+U,YAAA,GAIAuK,IACAtf,EAAA+Q,SAAA,UAAAuO,GAIAy3E,GACAx3F,EAAA,SAAA9E,IAEAA,EACAA,GACAvF,KAAAwd,QAAAxd,KAAAwd,OAAA2J,YACAnnB,KAAA8F,QAAA9F,KAAA8F,OAAA0X,QAAAxd,KAAA8F,OAAA0X,OAAA2J,aAEA,oBAAA+4B,sBACA36C,EAAA26C,qBAGA0hD,GACAA,EAAA5qG,KAAAgJ,KAAAuF,GAGAA,KAAA46C,uBACA56C,EAAA46C,sBAAAt8C,IAAAg+F,IAKA/2F,EAAAs1C,aAAA/1C,GACGu3F,IACHv3F,EAAAy3F,EACA,WAAqBF,EAAA5qG,KAAAgJ,UAAAyjB,MAAAhX,SAAAs1F,aACrBH,GAGAv3F,EACA,GAAAS,EAAA+U,WAAA,CAGA/U,EAAAw1C,cAAAj2C,EAEA,IAAA23F,EAAAl3F,EAAAiN,OACAjN,EAAAiN,OAAA,SAAAuoB,EAAA/6B,GAEA,OADA8E,EAAArT,KAAAuO,GACAy8F,EAAA1hE,EAAA/6B,QAEK,CAEL,IAAA4U,EAAArP,EAAAu1C,aACAv1C,EAAAu1C,aAAAlmC,KACAhQ,OAAAgQ,EAAA9P,IACAA,GAIA,OACA1T,QAAA+qG,EACA52F,WDnFA02F,EAAAS,eAAA,EEAA,IAAA9iF,EAAAsiF,GCqBArqG,KAAA,MACA8qG,YAAA,WAGA,OADAj5E,SAAAk5E,eAAA,eAEAniG,KAAAoiG,OAAAzhC,OAAA,gBAAA7kE,KAAAsrC,MAAAne,SAAAk5E,eAAA,cAAAE,QAAAp0C,WDxBAuzC,MAEA,EACA,KACA,KACA,MAuBAriF,EAAArU,QAAAw3F,OAAA,cACA,IAAAC,EAAApjF;;;;;IEzBA,SAAApb,EAAAgpC,EAAAysB,GACA,EAKA,SAAAgpC,EAAAt1F,GACA,OAAA3V,OAAAkB,UAAA2C,SAAApE,KAAAkW,GAAAlQ,QAAA,YAGA,IAAAylG,GACArrG,KAAA,cACAyoB,YAAA,EACAtV,OACAnT,MACA+B,KAAAuC,OACA8Q,QAAA,YAGAuL,OAAA,SAAAta,EAAA+nB,GACA,IAAAjb,EAAAib,EAAAjb,MACAnF,EAAAogB,EAAApgB,SACAU,EAAA0f,EAAA1f,OACAX,EAAAqgB,EAAArgB,KAEAA,EAAAu9F,YAAA,EAaA,IATA,IAAApiE,EAAAx6B,EAAA2S,eACArhB,EAAAmT,EAAAnT,KACAopE,EAAA16D,EAAA68F,OACAtlG,EAAAyI,EAAA88F,mBAAA98F,EAAA88F,qBAIAC,EAAA,EACAC,GAAA,EACAh9F,KAAAi9F,cAAAj9F,GACAA,EAAA0X,QAAA1X,EAAA0X,OAAArY,KAAAu9F,YACAG,IAEA/8F,EAAA+M,YACAiwF,GAAA,GAEAh9F,IAAAuH,QAKA,GAHAlI,EAAA69F,gBAAAH,EAGAC,EACA,OAAAxiE,EAAAjjC,EAAAjG,GAAA+N,EAAAC,GAGA,IAAAwiE,EAAApH,EAAAoH,QAAAi7B,GAEA,IAAAj7B,EAEA,OADAvqE,EAAAjG,GAAA,KACAkpC,IAGA,IAAAnhB,EAAA9hB,EAAAjG,GAAAwwE,EAAAhmD,WAAAxqB,GAIA+N,EAAA89F,sBAAA,SAAAl5F,EAAAvO,GAEA,IAAA0nB,EAAA0kD,EAAAs7B,UAAA9rG,IAEAoE,GAAA0nB,IAAAnZ,IACAvO,GAAA0nB,IAAAnZ,KAEA69D,EAAAs7B,UAAA9rG,GAAAoE,KAMK2J,EAAAkF,OAAAlF,EAAAkF,UAA6BsS,SAAA,SAAAlf,EAAAqJ,GAClC8gE,EAAAs7B,UAAA9rG,GAAA0P,EAAAjB,mBAIA,IAAAs9F,EAAAh+F,EAAAoF,MAkBA,SAAAi2D,EAAApgE,GACA,cAAAA,GACA,gBACA,OACA,aACA,OAAAA,EACA,eACA,OAAAA,EAAAogE,GACA,cACA,OAAApgE,EAAAogE,EAAAlwD,YAAAlW,EACA,QACA,GA7BAgpG,CAAA5iC,EAAAoH,EAAAr9D,OAAAq9D,EAAAr9D,MAAAnT,IACA,GAAA+rG,EAAA,CAEAA,EAAAh+F,EAAAoF,MAoCA,SAAA7L,EAAA+K,GACA,QAAArR,KAAAqR,EACA/K,EAAAtG,GAAAqR,EAAArR,GAEA,OAAAsG,EAxCAD,IAA0C0kG,GAE1C,IAAA7wF,EAAAnN,EAAAmN,MAAAnN,EAAAmN,UACA,QAAAla,KAAA+qG,EACAhkF,EAAA5U,OAAAnS,KAAA+mB,EAAA5U,QACA+H,EAAAla,GAAA+qG,EAAA/qG,UACA+qG,EAAA/qG,IAKA,OAAAkoC,EAAAnhB,EAAAha,EAAAC,KAkCA,IAAAi+F,EAAA,WACAC,EAAA,SAAApsG,GAA0C,UAAAA,EAAAoK,WAAA,GAAAlG,SAAA,KAC1CmoG,EAAA,OAKA3X,EAAA,SAAAzvF,GAA6B,OAAAspF,mBAAAtpF,GAC7BqB,QAAA6lG,EAAAC,GACA9lG,QAAA+lG,EAAA,MAEAC,EAAAtW,mBAuBA,SAAAuW,EAAA16E,GACA,IAAAlqB,KAIA,OAFAkqB,IAAAwF,OAAA/wB,QAAA,kBAMAurB,EAAAxsB,MAAA,KAAA2K,QAAA,SAAAw8F,GACA,IAAA/d,EAAA+d,EAAAlmG,QAAA,WAAAjB,MAAA,KACAnE,EAAAorG,EAAA7d,EAAAr0E,SACA9V,EAAAmqF,EAAAnpF,OAAA,EACAgnG,EAAA7d,EAAAz5D,KAAA,MACA,UAEA9xB,IAAAyE,EAAAzG,GACAyG,EAAAzG,GAAAoD,EACKgD,MAAAc,QAAAT,EAAAzG,IACLyG,EAAAzG,GAAAkM,KAAA9I,GAEAqD,EAAAzG,IAAAyG,EAAAzG,GAAAoD,KAIAqD,GAnBAA,EAsBA,SAAA8kG,EAAAzoG,GACA,IAAA2D,EAAA3D,EAAA3D,OAAAoI,KAAAzE,GAAAmB,IAAA,SAAAjE,GACA,IAAAoD,EAAAN,EAAA9C,GAEA,QAAAgC,IAAAoB,EACA,SAGA,UAAAA,EACA,OAAAowF,EAAAxzF,GAGA,GAAAoG,MAAAc,QAAA9D,GAAA,CACA,IAAAgM,KAWA,OAVAhM,EAAA0L,QAAA,SAAA08F,QACAxpG,IAAAwpG,IAGA,OAAAA,EACAp8F,EAAAlD,KAAAsnF,EAAAxzF,IAEAoP,EAAAlD,KAAAsnF,EAAAxzF,GAAA,IAAAwzF,EAAAgY,OAGAp8F,EAAA0kB,KAAA,KAGA,OAAA0/D,EAAAxzF,GAAA,IAAAwzF,EAAApwF,KACGkc,OAAA,SAAAq/B,GAAuB,OAAAA,EAAAv6C,OAAA,IAAuB0vB,KAAA,UACjD,OAAArtB,EAAA,IAAAA,EAAA,GAMA,IAAAglG,EAAA,OAEA,SAAAC,EACAnE,EACAnT,EACAuX,EACAjkC,GAEA,IAAAkkC,EAAAlkC,KAAAh1D,QAAA64F,eAEA56E,EAAAyjE,EAAAzjE,UACA,IACAA,EAAA9M,EAAA8M,GACG,MAAAtpB,IAEH,IAAA+gE,GACAppE,KAAAo1F,EAAAp1F,MAAAuoG,KAAAvoG,KACA+4C,KAAAwvD,KAAAxvD,SACA76B,KAAAk3E,EAAAl3E,MAAA,IACAzE,KAAA27E,EAAA37E,MAAA,GACAkY,QACAzY,OAAAk8E,EAAAl8E,WACAuvD,SAAAokC,EAAAzX,EAAAwX,GACAp8B,QAAA+3B,EA2BA,SAAAA,GACA,IAAA9gG,KACA,KAAA8gG,GACA9gG,EAAA+nB,QAAA+4E,GACAA,IAAA75F,OAEA,OAAAjH,EAjCAqlG,CAAAvE,OAKA,OAHAoE,IACAvjC,EAAAujC,eAAAE,EAAAF,EAAAC,IAEAzsG,OAAAoD,OAAA6lE,GAGA,SAAAvkD,EAAAnkB,GACA,GAAA0G,MAAAc,QAAAxH,GACA,OAAAA,EAAAuE,IAAA4f,GACG,GAAAnkB,GAAA,iBAAAA,EAAA,CACH,IAAA+G,KACA,QAAAzG,KAAAN,EACA+G,EAAAzG,GAAA6jB,EAAAnkB,EAAAM,IAEA,OAAAyG,EAEA,OAAA/G,EAKA,IAAAqsG,EAAAL,EAAA,MACAxuF,KAAA,MAYA,SAAA2uF,EACAz+E,EACA4+E,GAEA,IAAA9uF,EAAAkQ,EAAAlQ,KACAyT,EAAAvD,EAAAuD,WAAwB,IAAAA,UACxB,IAAAlY,EAAA2U,EAAA3U,KAGA,YAHsB,IAAAA,MAAA,KAGtByE,GAAA,MADA8uF,GAAAT,GACA56E,GAAAlY,EAGA,SAAAwzF,EAAApmG,EAAAc,GACA,OAAAA,IAAAolG,EACAlmG,IAAAc,IACGA,IAEAd,EAAAqX,MAAAvW,EAAAuW,KAEHrX,EAAAqX,KAAA9X,QAAAqmG,EAAA,MAAA9kG,EAAAuW,KAAA9X,QAAAqmG,EAAA,KACA5lG,EAAA4S,OAAA9R,EAAA8R,MACAyzF,EAAArmG,EAAA8qB,MAAAhqB,EAAAgqB,UAEG9qB,EAAA7G,OAAA2H,EAAA3H,QAEH6G,EAAA7G,OAAA2H,EAAA3H,MACA6G,EAAA4S,OAAA9R,EAAA8R,MACAyzF,EAAArmG,EAAA8qB,MAAAhqB,EAAAgqB,QACAu7E,EAAArmG,EAAAqS,OAAAvR,EAAAuR,UAOA,SAAAg0F,EAAArmG,EAAAc,GAKA,QAJA,IAAAd,eACA,IAAAc,WAGAd,IAAAc,EAAiB,OAAAd,IAAAc,EACjB,IAAAwlG,EAAAhtG,OAAAoI,KAAA1B,GACAumG,EAAAjtG,OAAAoI,KAAAZ,GACA,OAAAwlG,EAAA/nG,SAAAgoG,EAAAhoG,QAGA+nG,EAAA/kG,MAAA,SAAApH,GACA,IAAAqsG,EAAAxmG,EAAA7F,GACAssG,EAAA3lG,EAAA3G,GAEA,uBAAAqsG,GAAA,iBAAAC,EACAJ,EAAAG,EAAAC,GAEAhpG,OAAA+oG,KAAA/oG,OAAAgpG,KA0BA,IA0IAC,EA1IAC,GAAAlpG,OAAAnE,QACAstG,GAAAnpG,OAAA8C,OAEAsmG,GACA1tG,KAAA,cACAmT,OACA7L,IACAvF,KAAAyrG,EACAntD,UAAA,GAEAvyC,KACA/L,KAAAuC,OACA8Q,QAAA,KAEAu4F,MAAAz4F,QACA04F,OAAA14F,QACA9O,QAAA8O,QACAssB,YAAAl9B,OACAupG,iBAAAvpG,OACA2U,OACAlX,KAAA0rG,EACAr4F,QAAA,UAGAuL,OAAA,SAAAuoB,GACA,IAAAla,EAAApmB,KAEA8/D,EAAA9/D,KAAAklG,QACAhiF,EAAAljB,KAAA2iG,OACAn9E,EAAAs6C,EAAAlxD,QAAA5O,KAAAtB,GAAAwkB,EAAAljB,KAAAglG,QACAxY,EAAAhnE,EAAAgnE,SACAhsB,EAAAh7C,EAAAg7C,MACAvrB,EAAAzvB,EAAAyvB,KAEAm7B,KACA+0B,EAAArlC,EAAAh1D,QAAAs6F,gBACAC,EAAAvlC,EAAAh1D,QAAAw6F,qBAEAC,EAAA,MAAAJ,EACA,qBACAA,EACAK,EAAA,MAAAH,EACA,2BACAA,EACAzsE,EAAA,MAAA54B,KAAA44B,YACA2sE,EACAvlG,KAAA44B,YACAqsE,EAAA,MAAAjlG,KAAAilG,iBACAO,EACAxlG,KAAAilG,iBACAQ,EAAAjZ,EAAAl3E,KACAwuF,EAAA,KAAAtX,EAAA,KAAA1sB,GACAU,EAEA4P,EAAA60B,GAAAZ,EAAAnhF,EAAAuiF,GACAr1B,EAAAx3C,GAAA54B,KAAA+kG,MACA30B,EAAA60B,GA9EA,SAAA/hF,EAAAhpB,GACA,OAGA,IAFAgpB,EAAA5N,KAAA9X,QAAAqmG,EAAA,KAAA7mG,QACA9C,EAAAob,KAAA9X,QAAAqmG,EAAA,SAEA3pG,EAAA2W,MAAAqS,EAAArS,OAAA3W,EAAA2W,OAKA,SAAAqS,EAAAhpB,GACA,QAAA9B,KAAA8B,EACA,KAAA9B,KAAA8qB,GACA,SAGA,SAVAwiF,CAAAxiF,EAAA6F,MAAA7uB,EAAA6uB,OAyEA48E,CAAAziF,EAAAuiF,GAEA,IAAAtuF,EAAA,SAAA1X,GACAmmG,EAAAnmG,KACA2mB,EAAA5oB,QACAsiE,EAAAtiE,QAAAgvF,GAEA1sB,EAAAx7D,KAAAkoF,KAKAv8E,GAAcsxC,MAAAqkD,GACdpnG,MAAAc,QAAAU,KAAAqQ,OACArQ,KAAAqQ,MAAAnJ,QAAA,SAAAzH,GAAuCwQ,EAAAxQ,GAAA0X,IAEvClH,EAAAjQ,KAAAqQ,OAAA8G,EAGA,IAAAhS,GACA0b,MAAAuvD,GAGA,SAAApwE,KAAAkF,IACAC,EAAA8K,KACA9K,EAAAmN,OAAoB2iC,YACf,CAEL,IAAAh3C,EAsCA,SAAA4nG,EAAAzgG,GACA,GAAAA,EAEA,IADA,IAAAoB,EACA3P,EAAA,EAAmBA,EAAAuO,EAAA5I,OAAqB3F,IAAA,CAExC,UADA2P,EAAApB,EAAAvO,IACAqO,IACA,OAAAsB,EAEA,GAAAA,EAAApB,WAAAoB,EAAAq/F,EAAAr/F,EAAApB,WACA,OAAAoB,GA/CAq/F,CAAA7lG,KAAAuY,OAAA/L,SACA,GAAAvO,EAAA,CAEAA,EAAA+H,UAAA,EACA,IAAAvH,EAAAkmG,EAAAp+E,KAAA9nB,QACAR,EAAAkH,KAAA1G,KAAsCR,EAAAkH,OACtC8K,MACAhS,EAAAkH,KAAAmN,MAAA7T,KAA6CR,EAAAkH,KAAAmN,QAC7C2iC,YAGA9vC,EAAA8K,KAIA,OAAAqwB,EAAAtgC,KAAAkF,IAAAC,EAAAnF,KAAAuY,OAAA/L,WAIA,SAAAo5F,EAAAnmG,GAEA,KAAAA,EAAAqmG,SAAArmG,EAAAqR,QAAArR,EAAAsmG,SAAAtmG,EAAAumG,UAEAvmG,EAAAwmG,uBAEA7rG,IAAAqF,EAAAymG,QAAA,IAAAzmG,EAAAymG,QAAA,CAEA,GAAAzmG,EAAAmhD,eAAAnhD,EAAAmhD,cAAAvsB,aAAA,CACA,IAAAn6B,EAAAuF,EAAAmhD,cAAAvsB,aAAA,UACA,iBAAA9xB,KAAArI,GAAqC,OAMrC,OAHAuF,EAAAohD,gBACAphD,EAAAohD,kBAEA,GAoBA,SAAAh6B,EAAAhF,GACA,IAAAgF,EAAAy+D,WAAAqf,IAAA9iF,EAAA,CACAgF,EAAAy+D,WAAA,EAEAqf,EAAA9iF,EAEA,IAAA/mB,EAAA,SAAAD,GAA4B,YAAAT,IAAAS,GAE5BsrG,EAAA,SAAAp8F,EAAAq8F,GACA,IAAAvvG,EAAAkT,EAAA0C,SAAAoQ,aACA/hB,EAAAjE,IAAAiE,EAAAjE,IAAAsO,OAAArK,EAAAjE,IAAAosG,wBACApsG,EAAAkT,EAAAq8F,IAIAvkF,EAAAY,OACA49B,aAAA,WACAvlD,EAAAkF,KAAAyM,SAAAqzD,SACA9/D,KAAA+iG,YAAA/iG,KACAA,KAAAqmG,QAAArmG,KAAAyM,SAAAqzD,OACA9/D,KAAAqmG,QAAAjqF,KAAApc,MACA6hB,EAAA0E,KAAA3d,eAAA5I,KAAA,SAAAA,KAAAqmG,QAAAC,QAAApjF,UAEAljB,KAAA+iG,YAAA/iG,KAAAqN,SAAArN,KAAAqN,QAAA01F,aAAA/iG,KAEAmmG,EAAAnmG,YAEAkmB,UAAA,WACAigF,EAAAnmG,SAIAzI,OAAAC,eAAAqqB,EAAAppB,UAAA,WACAf,IAAA,WAA0B,OAAAsI,KAAA+iG,YAAAsD,WAG1B9uG,OAAAC,eAAAqqB,EAAAppB,UAAA,UACAf,IAAA,WAA0B,OAAAsI,KAAA+iG,YAAAwD,UAG1B1kF,EAAA1C,UAAA,cAAAsjF,GACA5gF,EAAA1C,UAAA,cAAA2lF,GAEA,IAAAv7F,EAAAsY,EAAAzhB,OAAAC,sBAEAkJ,EAAAi9F,iBAAAj9F,EAAAk9F,iBAAAl9F,EAAAm9F,kBAAAn9F,EAAA0c,SAKA,IAAApkB,EAAA,oBAAAC,OAIA,SAAA6kG,EACAC,EACAj1F,EACAqzF,GAEA,IAAA6B,EAAAD,EAAAhpG,OAAA,GACA,SAAAipG,EACA,OAAAD,EAGA,SAAAC,GAAA,MAAAA,EACA,OAAAl1F,EAAAi1F,EAGA,IAAAn/D,EAAA91B,EAAApV,MAAA,KAKAyoG,GAAAv9D,IAAAjrC,OAAA,IACAirC,EAAAziC,MAKA,IADA,IAAAuQ,EAAAqxF,EAAAppG,QAAA,UAAAjB,MAAA,KACA1F,EAAA,EAAiBA,EAAA0e,EAAA/Y,OAAqB3F,IAAA,CACtC,IAAAiwG,EAAAvxF,EAAA1e,GACA,OAAAiwG,EACAr/D,EAAAziC,MACK,MAAA8hG,GACLr/D,EAAAnjC,KAAAwiG,GASA,MAJA,KAAAr/D,EAAA,IACAA,EAAA7gB,QAAA,IAGA6gB,EAAAvb,KAAA,KA0BA,SAAA66E,EAAAzxF,GACA,OAAAA,EAAA9X,QAAA,aAGA,IAAAwpG,EAAAxoG,MAAAc,SAAA,SAAAzC,GACA,wBAAAtF,OAAAkB,UAAA2C,SAAApE,KAAA6F,IAMAoqG,EAAAC,EACAC,EAAA//D,EACAggE,EAsGA,SAAAjrG,EAAA2O,GACA,OAAAu8F,EAAAjgE,EAAAjrC,EAAA2O,KAtGAw8F,EAAAD,EACAE,EAAAC,EAOAC,EAAA,IAAA9hF,QAGA,UAOA,0GACAuG,KAAA,UASA,SAAAkb,EAAAjrC,EAAA2O,GAQA,IAPA,IAKAjM,EALA0sC,KACAnzC,EAAA,EACA2E,EAAA,EACAuY,EAAA,GACAoyF,EAAA58F,KAAA68F,WAAA,IAGA,OAAA9oG,EAAA4oG,EAAAh8D,KAAAtvC,KAAA,CACA,IAAAlF,EAAA4H,EAAA,GACA+oG,EAAA/oG,EAAA,GACA8oD,EAAA9oD,EAAA9B,MAKA,GAJAuY,GAAAnZ,EAAA0B,MAAAd,EAAA4qD,GACA5qD,EAAA4qD,EAAA1wD,EAAAuF,OAGAorG,EACAtyF,GAAAsyF,EAAA,OADA,CAKA,IAAAj3E,EAAAx0B,EAAAY,GACA+rE,EAAAjqE,EAAA,GACAzH,EAAAyH,EAAA,GACA8Q,EAAA9Q,EAAA,GACAgpG,EAAAhpG,EAAA,GACA8mE,EAAA9mE,EAAA,GACAipG,EAAAjpG,EAAA,GAGAyW,IACAi2B,EAAAjnC,KAAAgR,GACAA,EAAA,IAGA,IAAAyyF,EAAA,MAAAj/B,GAAA,MAAAn4C,OAAAm4C,EACA1J,EAAA,MAAAuG,GAAA,MAAAA,EACAqiC,EAAA,MAAAriC,GAAA,MAAAA,EACAgiC,EAAA9oG,EAAA,IAAA6oG,EACA7kF,EAAAlT,GAAAk4F,EAEAt8D,EAAAjnC,MACAlN,QAAAgB,IACA0wE,UAAA,GACA6+B,YACAK,WACA5oC,SACA2oC,UACAD,aACAjlF,UAAAolF,EAAAplF,GAAAilF,EAAA,UAAAI,EAAAP,GAAA,SAcA,OATA5qG,EAAAZ,EAAAK,SACA8Y,GAAAnZ,EAAAk2E,OAAAt1E,IAIAuY,GACAi2B,EAAAjnC,KAAAgR,GAGAi2B,EAoBA,SAAA48D,EAAAhsG,GACA,OAAAisG,UAAAjsG,GAAAqB,QAAA,mBAAAtG,GACA,UAAAA,EAAAoK,WAAA,GAAAlG,SAAA,IAAAsC,gBAUA,SAAA2qG,EAAAlsG,GACA,OAAAisG,UAAAjsG,GAAAqB,QAAA,iBAAAtG,GACA,UAAAA,EAAAoK,WAAA,GAAAlG,SAAA,IAAAsC,gBAOA,SAAA2pG,EAAA97D,GAKA,IAHA,IAAA3oB,EAAA,IAAApkB,MAAA+sC,EAAA/uC,QAGA3F,EAAA,EAAiBA,EAAA00C,EAAA/uC,OAAmB3F,IACpC,iBAAA00C,EAAA10C,KACA+rB,EAAA/rB,GAAA,IAAA8uB,OAAA,OAAA4lB,EAAA10C,GAAAgsB,QAAA,OAIA,gBAAA3nB,EAAA4H,GAMA,IALA,IAAAwS,EAAA,GACAnQ,EAAAjK,MAEA0wF,GADA9oF,OACAwlG,OAAAH,EAAA1iB,mBAEA5uF,EAAA,EAAmBA,EAAA00C,EAAA/uC,OAAmB3F,IAAA,CACtC,IAAAg3F,EAAAtiD,EAAA10C,GAEA,oBAAAg3F,EAAA,CAMA,IACAiZ,EADAhvG,EAAAqN,EAAA0oF,EAAAz2F,MAGA,SAAAU,EAAA,CACA,GAAA+1F,EAAAma,SAAA,CAEAna,EAAAka,UACAzyF,GAAAu4E,EAAA/kB,QAGA,SAEA,UAAAnzB,UAAA,aAAAk4C,EAAAz2F,KAAA,mBAIA,GAAA4vG,EAAAlvG,GAAA,CACA,IAAA+1F,EAAAzuB,OACA,UAAAzpB,UAAA,aAAAk4C,EAAAz2F,KAAA,kCAAA0E,KAAAC,UAAAjE,GAAA,KAGA,OAAAA,EAAA0E,OAAA,CACA,GAAAqxF,EAAAma,SACA,SAEA,UAAAryD,UAAA,aAAAk4C,EAAAz2F,KAAA,qBAIA,QAAAgc,EAAA,EAAuBA,EAAAtb,EAAA0E,OAAkB4W,IAAA,CAGzC,GAFA0zF,EAAAlb,EAAA9zF,EAAAsb,KAEAwP,EAAA/rB,GAAA0L,KAAAukG,GACA,UAAAnxD,UAAA,iBAAAk4C,EAAAz2F,KAAA,eAAAy2F,EAAAhrE,QAAA,oBAAA/mB,KAAAC,UAAA+qG,GAAA,KAGAxxF,IAAA,IAAAlC,EAAAy6E,EAAA/kB,OAAA+kB,EAAA8Z,WAAAb,OApBA,CA4BA,GAFAA,EAAAjZ,EAAAia,SAAAO,EAAAvwG,GAAA8zF,EAAA9zF,IAEA8qB,EAAA/rB,GAAA0L,KAAAukG,GACA,UAAAnxD,UAAA,aAAAk4C,EAAAz2F,KAAA,eAAAy2F,EAAAhrE,QAAA,oBAAAikF,EAAA,KAGAxxF,GAAAu4E,EAAA/kB,OAAAg+B,QArDAxxF,GAAAu4E,EAwDA,OAAAv4E,GAUA,SAAA4yF,EAAA/rG,GACA,OAAAA,EAAAqB,QAAA,6BAAmC,QASnC,SAAAyqG,EAAAJ,GACA,OAAAA,EAAArqG,QAAA,wBAUA,SAAA+qG,EAAAtiE,EAAAtmC,GAEA,OADAsmC,EAAAtmC,OACAsmC,EASA,SAAA0vD,EAAA7qF,GACA,OAAAA,EAAA09F,UAAA,OAwEA,SAAAhB,EAAAj8D,EAAA5rC,EAAAmL,GACAk8F,EAAArnG,KACAmL,EAAiCnL,GAAAmL,EACjCnL,MAUA,IALA,IAAA8oG,GAFA39F,SAEA29F,OACAlyE,GAAA,IAAAzrB,EAAAyrB,IACAiqC,EAAA,GAGA3pE,EAAA,EAAiBA,EAAA00C,EAAA/uC,OAAmB3F,IAAA,CACpC,IAAAg3F,EAAAtiD,EAAA10C,GAEA,oBAAAg3F,EACArtB,GAAA0nC,EAAAra,OACK,CACL,IAAA/kB,EAAAo/B,EAAAra,EAAA/kB,QACAn5D,EAAA,MAAAk+E,EAAAhrE,QAAA,IAEAljB,EAAA2E,KAAAupF,GAEAA,EAAAzuB,SACAzvD,GAAA,MAAAm5D,EAAAn5D,EAAA,MAaA6wD,GANA7wD,EAJAk+E,EAAAma,SACAna,EAAAka,QAGAj/B,EAAA,IAAAn5D,EAAA,KAFA,MAAAm5D,EAAA,IAAAn5D,EAAA,MAKAm5D,EAAA,IAAAn5D,EAAA,KAOA,IAAAg4F,EAAAO,EAAAp9F,EAAA68F,WAAA,KACAe,EAAAloC,EAAA3iE,OAAA8pG,EAAAnrG,UAAAmrG,EAkBA,OAZAc,IACAjoC,GAAAkoC,EAAAloC,EAAA3iE,MAAA,GAAA8pG,EAAAnrG,QAAAgkE,GAAA,MAAAmnC,EAAA,WAIAnnC,GADAjqC,EACA,IAIAkyE,GAAAC,EAAA,SAAAf,EAAA,MAGAY,EAAA,IAAA5iF,OAAA,IAAA66C,EAAAm1B,EAAA7qF,IAAAnL,GAeA,SAAAunG,EAAA5xF,EAAA3V,EAAAmL,GAQA,OAPAk8F,EAAArnG,KACAmL,EAAiCnL,GAAAmL,EACjCnL,MAGAmL,QAEAwK,aAAAqQ,OAlJA,SAAArQ,EAAA3V,GAEA,IAAAgpG,EAAArzF,EAAAlc,OAAA0T,MAAA,aAEA,GAAA67F,EACA,QAAA9xG,EAAA,EAAmBA,EAAA8xG,EAAAnsG,OAAmB3F,IACtC8I,EAAA2E,MACAlN,KAAAP,EACAiyE,OAAA,KACA6+B,UAAA,KACAK,UAAA,EACA5oC,QAAA,EACA2oC,SAAA,EACAD,UAAA,EACAjlF,QAAA,OAKA,OAAA0lF,EAAAjzF,EAAA3V,GAgIAipG,CAAAtzF,EAAkD,GAGlD0xF,EAAA1xF,GAxHA,SAAAA,EAAA3V,EAAAmL,GAGA,IAFA,IAAA66E,KAEA9uF,EAAA,EAAiBA,EAAAye,EAAA9Y,OAAiB3F,IAClC8uF,EAAArhF,KAAA4iG,EAAA5xF,EAAAze,GAAA8I,EAAAmL,GAAA1R,QAKA,OAAAmvG,EAFA,IAAA5iF,OAAA,MAAAggE,EAAAz5D,KAAA,SAAAypE,EAAA7qF,IAEAnL,GAgHAkpG,CAA2C,EAA8B,EAAA/9F,GArGzE,SAAAwK,EAAA3V,EAAAmL,GACA,OAAA08F,EAAApgE,EAAA9xB,EAAAxK,GAAAnL,EAAAmL,GAuGAg+F,CAA0C,EAA8B,EAAAh+F,GAGxEm8F,EAAA7/D,MAAA+/D,EACAF,EAAA1yD,QAAA6yD,EACAH,EAAAI,iBAAAC,EACAL,EAAAO,eAAAD,EAKA,IAAAwB,EAAAxxG,OAAAY,OAAA,MAEA,SAAA6wG,GACA1zF,EACAhF,EACA24F,GAEA,IAIA,OAFAF,EAAAzzF,KACAyzF,EAAAzzF,GAAA2xF,EAAA1yD,QAAAj/B,KACAhF,OAAiCg4F,QAAA,IAC9B,MAAA7oG,GAIH,UAMA,SAAAypG,GACAC,EACAC,EACAC,EACAC,GAGA,IAAAC,EAAAH,MAEAI,EAAAH,GAAA9xG,OAAAY,OAAA,MAEAsxG,EAAAH,GAAA/xG,OAAAY,OAAA,MAEAgxG,EAAAjiG,QAAA,SAAAs5D,IAoBA,SAAAkpC,EACAH,EACAC,EACAC,EACAjpC,EACA16D,EACA6jG,GAEA,IAAAr0F,EAAAkrD,EAAAlrD,KACA,IAAAle,EAAAopE,EAAAppE,KACA,EASA,IAAAwyG,EAAAppC,EAAAopC,wBACA,IAAAC,EAuGA,SAAAv0F,EAAAxP,EAAA2iG,GACAA,IAAgBnzF,IAAA9X,QAAA,WAChB,SAAA8X,EAAA,GAAwB,OAAAA,EACxB,SAAAxP,EAAuB,OAAAwP,EACvB,OAAAyxF,EAAAjhG,EAAA,SAAAwP,GA3GAw0F,CACAx0F,EACAxP,EACA8jG,EAAAnB,QAGA,kBAAAjoC,EAAAupC,gBACAH,EAAApB,UAAAhoC,EAAAupC,eAGA,IAAApK,GACArqF,KAAAu0F,EACAG,MA+EA,SAAA10F,EAAAs0F,GACA,IAAAI,EAAA/C,EAAA3xF,KAAAs0F,GACA,EAOA,OAAAI,EAxFAC,CAAAJ,EAAAD,GACAhoF,WAAA4+C,EAAA5+C,aAAqCpV,QAAAg0D,EAAArhD,WACrC+jF,aACA9rG,OACA0O,SACA6jG,UACAO,SAAA1pC,EAAA0pC,SACAjyE,YAAAuoC,EAAAvoC,YACAkY,KAAAqwB,EAAArwB,SACA5lC,MAAA,MAAAi2D,EAAAj2D,SAEAi2D,EAAA5+C,WACA4+C,EAAAj2D,OACWiC,QAAAg0D,EAAAj2D,QAGXi2D,EAAAp7D,UAgBAo7D,EAAAp7D,SAAA8B,QAAA,SAAAV,GACA,IAAA2jG,EAAAR,EACA5C,EAAA4C,EAAA,IAAAnjG,EAAA,WACApM,EACAsvG,EAAAH,EAAAC,EAAAC,EAAAjjG,EAAAm5F,EAAAwK,KAIA,QAAA/vG,IAAAomE,EAAA9zB,MAAA,CACA,IAAA09D,EAAA5rG,MAAAc,QAAAkhE,EAAA9zB,OACA8zB,EAAA9zB,OACA8zB,EAAA9zB,OAEA09D,EAAAljG,QAAA,SAAAwlC,GACA,IAAA29D,GACA/0F,KAAAo3B,EACAtnC,SAAAo7D,EAAAp7D,UAEAskG,EACAH,EACAC,EACAC,EACAY,EACAvkG,EACA65F,EAAArqF,MAAA,OAKAk0F,EAAA7J,EAAArqF,QACAi0F,EAAAjlG,KAAAq7F,EAAArqF,MACAk0F,EAAA7J,EAAArqF,MAAAqqF,GAGAvoG,IACAqyG,EAAAryG,KACAqyG,EAAAryG,GAAAuoG,IAvHA+J,CAAAH,EAAAC,EAAAC,EAAAjpC,KAIA,QAAA3pE,EAAA,EAAAC,EAAAyyG,EAAA/sG,OAAsC3F,EAAAC,EAAOD,IAC7C,MAAA0yG,EAAA1yG,KACA0yG,EAAAjlG,KAAAilG,EAAAtsG,OAAApG,EAAA,OACAC,IACAD,KAIA,OACA0yG,WACAC,UACAC,WAyIA,SAAAa,GACAvkG,EACAmd,EACA8hF,EACAllC,GAEA,IAAAnvC,EAAA,iBAAA5qB,GAAwCuP,KAAAvP,GAAYA,EAEpD,GAAA4qB,EAAAv5B,MAAAu5B,EAAA45E,YACA,OAAA55E,EAIA,IAAAA,EAAArb,MAAAqb,EAAArgB,QAAA4S,EAAA,EACAyN,EAAA65E,MAAoB75E,IACpB45E,aAAA,EACA,IAAAj6F,EAAAk6F,SAAiCtnF,EAAA5S,QAAAqgB,EAAArgB,QACjC,GAAA4S,EAAA9rB,KACAu5B,EAAAv5B,KAAA8rB,EAAA9rB,KACAu5B,EAAArgB,cACK,GAAA4S,EAAA0kD,QAAAprE,OAAA,CACL,IAAAiuG,EAAAvnF,EAAA0kD,QAAA1kD,EAAA0kD,QAAAprE,OAAA,GAAA8Y,KACAqb,EAAArb,KAAA0zF,GAAAyB,EAAAn6F,EAAA4S,EAAA,WACK,EAGL,OAAAyN,EAGA,IAAA+5E,EAzqBA,SAAAp1F,GACA,IAAAzE,EAAA,GACAkY,EAAA,GAEA4hF,EAAAr1F,EAAAtY,QAAA,KACA2tG,GAAA,IACA95F,EAAAyE,EAAAzX,MAAA8sG,GACAr1F,IAAAzX,MAAA,EAAA8sG,IAGA,IAAAC,EAAAt1F,EAAAtY,QAAA,KAMA,OALA4tG,GAAA,IACA7hF,EAAAzT,EAAAzX,MAAA+sG,EAAA,GACAt1F,IAAAzX,MAAA,EAAA+sG,KAIAt1F,OACAyT,QACAlY,QAspBA2E,CAAAmb,EAAArb,MAAA,IACAu1F,EAAA3nF,KAAA5N,MAAA,IACAA,EAAAo1F,EAAAp1F,KACAqxF,EAAA+D,EAAAp1F,KAAAu1F,EAAA7F,GAAAr0E,EAAAq0E,QACA6F,EAEA9hF,EAznCA,SACAA,EACA+hF,EACAC,QAEA,IAAAD,UAEA,IACAE,EADA5jE,EAAA2jE,GAAAtH,EAEA,IACAuH,EAAA5jE,EAAAre,GAAA,IACG,MAAAtpB,GAEHurG,KAEA,QAAA5yG,KAAA0yG,EACAE,EAAA5yG,GAAA0yG,EAAA1yG,GAEA,OAAA4yG,EAumCAC,CACAP,EAAA3hF,MACA4H,EAAA5H,MACA+2C,KAAAh1D,QAAA24F,YAGA5yF,EAAA8f,EAAA9f,MAAA65F,EAAA75F,KAKA,OAJAA,GAAA,MAAAA,EAAAjT,OAAA,KACAiT,EAAA,IAAAA,IAIA05F,aAAA,EACAj1F,OACAyT,QACAlY,QAIA,SAAA25F,GAAAvsG,EAAAc,GACA,QAAA3G,KAAA2G,EACAd,EAAA7F,GAAA2G,EAAA3G,GAEA,OAAA6F,EAMA,SAAAitG,GACA/B,EACArpC,GAEA,IAAAt6C,EAAA0jF,GAAAC,GACAI,EAAA/jF,EAAA+jF,SACAC,EAAAhkF,EAAAgkF,QACAC,EAAAjkF,EAAAikF,QAMA,SAAA38F,EACA/G,EACAm6D,EACA6jC,GAEA,IAAAvX,EAAA8d,GAAAvkG,EAAAm6D,GAAA,EAAAJ,GACA1oE,EAAAo1F,EAAAp1F,KAEA,GAAAA,EAAA,CACA,IAAAuoG,EAAA8J,EAAAryG,GAIA,IAAAuoG,EAAoB,OAAAwL,EAAA,KAAA3e,GACpB,IAAA4e,EAAAzL,EAAAqK,MAAArqG,KACA+X,OAAA,SAAAtf,GAAgC,OAAAA,EAAA4vG,WAChC3rG,IAAA,SAAAjE,GAA6B,OAAAA,EAAAhB,OAM7B,GAJA,iBAAAo1F,EAAAl8E,SACAk8E,EAAAl8E,WAGA4vD,GAAA,iBAAAA,EAAA5vD,OACA,QAAAlY,KAAA8nE,EAAA5vD,SACAlY,KAAAo0F,EAAAl8E,SAAA86F,EAAApuG,QAAA5E,IAAA,IACAo0F,EAAAl8E,OAAAlY,GAAA8nE,EAAA5vD,OAAAlY,IAKA,GAAAunG,EAEA,OADAnT,EAAAl3E,KAAA0zF,GAAArJ,EAAArqF,KAAAk3E,EAAAl8E,QACA66F,EAAAxL,EAAAnT,EAAAuX,QAEK,GAAAvX,EAAAl3E,KAAA,CACLk3E,EAAAl8E,UACA,QAAAzZ,EAAA,EAAqBA,EAAA0yG,EAAA/sG,OAAqB3F,IAAA,CAC1C,IAAAye,EAAAi0F,EAAA1yG,GACAw0G,EAAA7B,EAAAl0F,GACA,GAAAg2F,GAAAD,EAAArB,MAAAxd,EAAAl3E,KAAAk3E,EAAAl8E,QACA,OAAA66F,EAAAE,EAAA7e,EAAAuX,IAKA,OAAAoH,EAAA,KAAA3e,GAGA,SAAA0d,EACAvK,EACAnT,GAEA,IAAA+e,EAAA5L,EAAAuK,SACAA,EAAA,mBAAAqB,EACAA,EAAAzH,EAAAnE,EAAAnT,EAAA,KAAA1sB,IACAyrC,EAMA,GAJA,iBAAArB,IACAA,GAAkB50F,KAAA40F,KAGlBA,GAAA,iBAAAA,EAMA,OAAAiB,EAAA,KAAA3e,GAGA,IAAAvmD,EAAAikE,EACA9yG,EAAA6uC,EAAA7uC,KACAke,EAAA2wB,EAAA3wB,KACAyT,EAAAyjE,EAAAzjE,MACAlY,EAAA27E,EAAA37E,KACAP,EAAAk8E,EAAAl8E,OAKA,GAJAyY,EAAAkd,EAAAvtC,eAAA,SAAAutC,EAAAld,QACAlY,EAAAo1B,EAAAvtC,eAAA,QAAAutC,EAAAp1B,OACAP,EAAA21B,EAAAvtC,eAAA,UAAAutC,EAAA31B,SAEAlZ,EAAA,CAEAqyG,EAAAryG,GAIA,OAAA0V,GACAy9F,aAAA,EACAnzG,OACA2xB,QACAlY,OACAP,eACOlW,EAAAoyF,GACF,GAAAl3E,EAAA,CAEL,IAAAm1F,EAiFA,SAAAn1F,EAAAqqF,GACA,OAAAgH,EAAArxF,EAAAqqF,EAAA75F,OAAA65F,EAAA75F,OAAAwP,KAAA,QAlFAk2F,CAAAl2F,EAAAqqF,GAIA,OAAA7yF,GACAy9F,aAAA,EACAj1F,KAJA0zF,GAAAyB,EAAAn6F,GAKAyY,QACAlY,aACOzW,EAAAoyF,GAKP,OAAA2e,EAAA,KAAA3e,GAuBA,SAAA2e,EACAxL,EACAnT,EACAuX,GAEA,OAAApE,KAAAuK,SACAA,EAAAvK,EAAAoE,GAAAvX,GAEAmT,KAAAgK,QA3BA,SACAhK,EACAnT,EACAmd,GAEA,IACA8B,EAAA3+F,GACAy9F,aAAA,EACAj1F,KAHA0zF,GAAAW,EAAAnd,EAAAl8E,UAKA,GAAAm7F,EAAA,CACA,IAAA7jC,EAAA6jC,EAAA7jC,QACA8jC,EAAA9jC,IAAAprE,OAAA,GAEA,OADAgwF,EAAAl8E,OAAAm7F,EAAAn7F,OACA66F,EAAAO,EAAAlf,GAEA,OAAA2e,EAAA,KAAA3e,GAYA9/C,CAAAizD,EAAAnT,EAAAmT,EAAAgK,SAEA7F,EAAAnE,EAAAnT,EAAAuX,EAAAjkC,GAGA,OACAhzD,QACA6+F,UAxJA,SAAAxC,GACAD,GAAAC,EAAAI,EAAAC,EAAAC,KA2JA,SAAA6B,GACAtB,EACA10F,EACAhF,GAEA,IAAArZ,EAAAqe,EAAAxI,MAAAk9F,GAEA,IAAA/yG,EACA,SACG,IAAAqZ,EACH,SAGA,QAAAzZ,EAAA,EAAAyQ,EAAArQ,EAAAuF,OAAiC3F,EAAAyQ,IAASzQ,EAAA,CAC1C,IAAAuB,EAAA4xG,EAAArqG,KAAA9I,EAAA,GACA2E,EAAA,iBAAAvE,EAAAJ,GAAAq2F,mBAAAj2F,EAAAJ,IAAAI,EAAAJ,GACAuB,IACAkY,EAAAlY,EAAAhB,MAAAoE,GAIA,SAUA,IAAAowG,GAAAr0G,OAAAY,OAAA,MAEA,SAAA0zG,KAEA/pG,OAAAwkG,QAAAwF,cAA+B1zG,IAAA2zG,MAAqB,IACpDjqG,OAAAiB,iBAAA,oBAAAtD,GACAusG,KACAvsG,EAAAgyC,OAAAhyC,EAAAgyC,MAAAr5C,KAqJA,SAAAA,GACA6zG,GAAA7zG,EArJA8zG,CAAAzsG,EAAAgyC,MAAAr5C,OAKA,SAAA+zG,GACArsC,EACAphE,EACA+K,EACA2iG,GAEA,GAAAtsC,EAAAusC,IAAA,CAIA,IAAAz+B,EAAA9N,EAAAh1D,QAAAwhG,eACA1+B,GASA9N,EAAAusC,IAAA/mF,UAAA,WACA,IAAAo4B,EA+BA,WACA,IAAAtlD,EAAA2zG,KACA,GAAA3zG,EACA,OAAAwzG,GAAAxzG,GAlCAm0G,GACAC,EAAA5+B,EAAAlvE,EAAA+K,EAAA2iG,EAAA1uD,EAAA,MAEA8uD,IAIA,mBAAAA,EAAA39F,KACA29F,EAAA39F,KAAA,SAAA29F,GACAC,GAAA,EAAA/uD,KACOu1B,MAAA,SAAA/lE,GACP,IAKAu/F,GAAAD,EAAA9uD,OAKA,SAAAsuD,KACA,IAAA5zG,EAAA2zG,KACA3zG,IACAwzG,GAAAxzG,IACA2+C,EAAAj1C,OAAA4qG,YACAl2D,EAAA10C,OAAAkmF,cAsBA,SAAA2kB,GAAAzxG,GACA,OAAAinD,GAAAjnD,EAAA67C,IAAAoL,GAAAjnD,EAAAs7C,GAGA,SAAAo2D,GAAA1xG,GACA,OACA67C,EAAAoL,GAAAjnD,EAAA67C,GAAA77C,EAAA67C,EAAAj1C,OAAA4qG,YACAl2D,EAAA2L,GAAAjnD,EAAAs7C,GAAAt7C,EAAAs7C,EAAA10C,OAAAkmF,aAWA,SAAA7lC,GAAAtnD,GACA,uBAAAA,EAGA,SAAA4xG,GAAAD,EAAA9uD,GACA,IAAAziD,EAAA,iBAAAuxG,EACA,GAAAvxG,GAAA,iBAAAuxG,EAAAK,SAAA,CACA,IAAA3oF,EAAA+E,SAAAC,cAAAsjF,EAAAK,UACA,GAAA3oF,EAAA,CACA,IAAAyjC,EAAA6kD,EAAA7kD,QAAA,iBAAA6kD,EAAA7kD,OAAA6kD,EAAA7kD,UAEAjK,EAvCA,SAAAx5B,EAAAyjC,GACA,IACAmlD,EADA7jF,SAAAmsB,gBACAhU,wBACA2rE,EAAA7oF,EAAAkd,wBACA,OACA2V,EAAAg2D,EAAAtrE,KAAAqrE,EAAArrE,KAAAkmB,EAAA5Q,EACAP,EAAAu2D,EAAAprE,IAAAmrE,EAAAnrE,IAAAgmB,EAAAnR,GAiCAw2D,CAAA9oF,EADAyjC,EAjBA,SAAAzsD,GACA,OACA67C,EAAAoL,GAAAjnD,EAAA67C,GAAA77C,EAAA67C,EAAA,EACAP,EAAA2L,GAAAjnD,EAAAs7C,GAAAt7C,EAAAs7C,EAAA,GAcAy2D,CAAAtlD,SAEKglD,GAAAH,KACL9uD,EAAAkvD,GAAAJ,SAEGvxG,GAAA0xG,GAAAH,KACH9uD,EAAAkvD,GAAAJ,IAGA9uD,GACA57C,OAAAorG,SAAAxvD,EAAA3G,EAAA2G,EAAAlH,GAMA,IAAA22D,GAAAtrG,GAAA,WACA,IAAAo3E,EAAAn3E,OAAAM,UAAAC,UAEA,QACA,IAAA42E,EAAAj8E,QAAA,oBAAAi8E,EAAAj8E,QAAA,iBACA,IAAAi8E,EAAAj8E,QAAA,mBACA,IAAAi8E,EAAAj8E,QAAA,YACA,IAAAi8E,EAAAj8E,QAAA,oBAKA8E,OAAAwkG,SAAA,cAAAxkG,OAAAwkG,SAZA,GAgBA8G,GAAAvrG,GAAAC,OAAArB,aAAAqB,OAAArB,YAAA41D,IACAv0D,OAAArB,YACAo/E,KAEAosB,GAAAoB,KAEA,SAAAA,KACA,OAAAD,GAAA/2C,MAAAi3C,QAAA,GAGA,SAAAvB,KACA,OAAAE,GAOA,SAAAsB,GAAA91C,EAAAj6D,GACAwuG,KAGA,IAAA1F,EAAAxkG,OAAAwkG,QACA,IACA9oG,EACA8oG,EAAAwF,cAA4B1zG,IAAA6zG,IAAY,GAAAx0C,IAExCw0C,GAAAoB,KACA/G,EAAAiH,WAAyBn1G,IAAA6zG,IAAY,GAAAx0C,IAElC,MAAAh4D,GACHqC,OAAA0qF,SAAAhvF,EAAA,oBAAAi6D,IAIA,SAAAq0C,GAAAr0C,GACA81C,GAAA91C,GAAA,GAKA,SAAA+1C,GAAAj6F,EAAAnW,EAAA2R,GACA,IAAAo5C,EAAA,SAAAprD,GACAA,GAAAwW,EAAA/W,OACAuS,IAEAwE,EAAAxW,GACAK,EAAAmW,EAAAxW,GAAA,WACAorD,EAAAprD,EAAA,KAGAorD,EAAAprD,EAAA,IAIAorD,EAAA,GAKA,SAAAslD,GAAA7lC,GACA,gBAAAlpE,EAAA+K,EAAAknB,GACA,IAAA+8E,GAAA,EACA3/F,EAAA,EACAJ,EAAA,KAEAggG,GAAA/lC,EAAA,SAAArmE,EAAA9D,EAAAqP,EAAA1U,GAMA,sBAAAmJ,QAAAnH,IAAAmH,EAAAkd,IAAA,CACAivF,GAAA,EACA3/F,IAEA,IA0BAlP,EA1BA+P,EAAA9O,GAAA,SAAA8tG,IAuEA,SAAA1yG,GACA,OAAAA,EAAAjD,YAAAsL,IAAA,WAAArI,EAAAtD,OAAAC,cAvEAg2G,CAAAD,KACAA,IAAAphG,SAGAjL,EAAAqd,SAAA,mBAAAgvF,EACAA,EACAjJ,EAAAlmG,OAAAmvG,GACA9gG,EAAA8U,WAAAxpB,GAAAw1G,IACA7/F,GACA,GACA4iB,MAIA1R,EAAAnf,GAAA,SAAAof,GACA,IAAAyP,EAAA,qCAAAv2B,EAAA,KAAA8mB,EAEAvR,IACAA,EAAA60F,EAAAtjF,GACAA,EACA,IAAA6yC,MAAApjC,GACAgC,EAAAhjB,MAKA,IACA9O,EAAA0C,EAAAqN,EAAAqQ,GACS,MAAAxf,GACTwf,EAAAxf,GAEA,GAAAZ,EACA,sBAAAA,EAAAgQ,KACAhQ,EAAAgQ,KAAAD,EAAAqQ,OACW,CAEX,IAAAvN,EAAA7S,EAAAsgB,UACAzN,GAAA,mBAAAA,EAAA7C,MACA6C,EAAA7C,KAAAD,EAAAqQ,OAOAyuF,GAAoB/8E,KAIpB,SAAAg9E,GACA/lC,EACAxqE,GAEA,OAAA0wG,GAAAlmC,EAAAvrE,IAAA,SAAApF,GACA,OAAAM,OAAAoI,KAAA1I,EAAA2qB,YAAAvlB,IAAA,SAAAjE,GAAyD,OAAAgF,EACzDnG,EAAA2qB,WAAAxpB,GACAnB,EAAAisG,UAAA9qG,GACAnB,EAAAmB,QAKA,SAAA01G,GAAAjxG,GACA,OAAA2B,MAAA/F,UAAA0R,OAAAhM,SAAAtB,GAGA,IAAA0G,GACA,mBAAA3L,QACA,iBAAAA,OAAAC,YAUA,SAAAiI,GAAA1C,GACA,IAAA2C,GAAA,EACA,kBAEA,IADA,IAAAsH,KAAAC,EAAApJ,UAAA1B,OACA8K,KAAAD,EAAAC,GAAApJ,UAAAoJ,GAEA,IAAAvH,EAEA,OADAA,GAAA,EACA3C,EAAAe,MAAA6B,KAAAqH,IAMA,IAAA0mG,GAAA,SAAAjuC,EAAAnuD,GACA3R,KAAA8/D,SACA9/D,KAAA2R,KAkKA,SAAAA,GACA,IAAAA,EACA,GAAA9P,EAAA,CAEA,IAAAmsG,EAAA/kF,SAAAC,cAAA,QAGAvX,GAFAA,EAAAq8F,KAAA35E,aAAA,cAEA72B,QAAA,8BAEAmU,EAAA,IAIA,MAAAA,EAAA/T,OAAA,KACA+T,EAAA,IAAAA,GAGA,OAAAA,EAAAnU,QAAA,UAnLAywG,CAAAt8F,GAEA3R,KAAAkjB,QAAAihF,EACAnkG,KAAA+N,QAAA,KACA/N,KAAAkuG,OAAA,EACAluG,KAAAmuG,YACAnuG,KAAAouG,iBACApuG,KAAAquG,aAiMA,SAAAC,GACAC,EACAn3G,EACAiB,EACA+wD,GAEA,IAAAolD,EAAAb,GAAAY,EAAA,SAAAhtG,EAAAgvD,EAAAzjD,EAAA1U,GACA,IAAA+sF,EAUA,SACA5jF,EACAnJ,GAEA,mBAAAmJ,IAEAA,EAAAojG,EAAAlmG,OAAA8C,IAEA,OAAAA,EAAAuJ,QAAA1S,GAlBAq2G,CAAAltG,EAAAnK,GACA,GAAA+tF,EACA,OAAA3mF,MAAAc,QAAA6lF,GACAA,EAAA9oF,IAAA,SAAA8oF,GAAsC,OAAA9sF,EAAA8sF,EAAA50B,EAAAzjD,EAAA1U,KACtCC,EAAA8sF,EAAA50B,EAAAzjD,EAAA1U,KAGA,OAAA01G,GAAA1kD,EAAAolD,EAAAplD,UAAAolD,GAsBA,SAAAE,GAAAvpB,EAAA50B,GACA,GAAAA,EACA,kBACA,OAAA40B,EAAAhnF,MAAAoyD,EAAAryD,YArOA6vG,GAAAt1G,UAAAk2G,OAAA,SAAA5/F,GACA/O,KAAA+O,MAGAg/F,GAAAt1G,UAAAm2G,QAAA,SAAA7/F,EAAA8/F,GACA7uG,KAAAkuG,MACAn/F,KAEA/O,KAAAmuG,SAAA7pG,KAAAyK,GACA8/F,GACA7uG,KAAAouG,cAAA9pG,KAAAuqG,KAKAd,GAAAt1G,UAAAq2G,QAAA,SAAAD,GACA7uG,KAAAquG,SAAA/pG,KAAAuqG,IAGAd,GAAAt1G,UAAAs2G,aAAA,SAAAviB,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAEAwgE,EAAAxgE,KAAA8/D,OAAAhzD,MAAA0/E,EAAAxsF,KAAAkjB,SACAljB,KAAAkvG,kBAAA1uC,EAAA,WACAp6C,EAAA+oF,YAAA3uC,GACAwuC,KAAAxuC,GACAp6C,EAAAgpF,YAGAhpF,EAAA8nF,QACA9nF,EAAA8nF,OAAA,EACA9nF,EAAA+nF,SAAAjnG,QAAA,SAAA6H,GAA6CA,EAAAyxD,OAE1C,SAAAtzD,GACH+hG,GACAA,EAAA/hG,GAEAA,IAAAkZ,EAAA8nF,QACA9nF,EAAA8nF,OAAA,EACA9nF,EAAAgoF,cAAAlnG,QAAA,SAAA6H,GAAkDA,EAAA7B,SAKlD6gG,GAAAt1G,UAAAy2G,kBAAA,SAAA1uC,EAAAwuC,EAAAC,GACA,IAAA7oF,EAAApmB,KAEAkjB,EAAAljB,KAAAkjB,QACAm2C,EAAA,SAAAnsD,GACAs1F,EAAAt1F,KACAkZ,EAAAioF,SAAA7xG,OACA4pB,EAAAioF,SAAAnnG,QAAA,SAAA6H,GAA+CA,EAAA7B,MAE/CnJ,IACA2J,QAAAC,MAAAT,KAGA+hG,KAAA/hG,IAEA,GACAm3F,EAAA7jC,EAAAt9C,IAEAs9C,EAAAoH,QAAAprE,SAAA0mB,EAAA0kD,QAAAprE,OAGA,OADAwD,KAAAovG,YACA/1C,IAGA,IAAA7zC,EAwGA,SACAtC,EACAyN,GAEA,IAAA95B,EACAuS,EAAAzN,KAAAyN,IAAA8Z,EAAA1mB,OAAAm0B,EAAAn0B,QACA,IAAA3F,EAAA,EAAaA,EAAAuS,GACb8Z,EAAArsB,KAAA85B,EAAA95B,GADsBA,KAKtB,OACA4rC,QAAA9R,EAAA9yB,MAAA,EAAAhH,GACAixF,UAAAn3D,EAAA9yB,MAAAhH,GACAgxF,YAAA3kE,EAAArlB,MAAAhH,IAtHAw4G,CAAArvG,KAAAkjB,QAAA0kD,QAAApH,EAAAoH,SACAnlC,EAAAjd,EAAAid,QACAolD,EAAAriE,EAAAqiE,YACAC,EAAAtiE,EAAAsiE,UAEAv0E,KAAApJ,OAiJA,SAAA09E,GACA,OAAAymB,GAAAzmB,EAAA,mBAAA6mB,IAAA,GAhJAY,CAAAznB,GAEA7nF,KAAA8/D,OAAAyvC,YAiJA,SAAA9sE,GACA,OAAA6rE,GAAA7rE,EAAA,oBAAAisE,IAhJAc,CAAA/sE,GAEAqlD,EAAAzrF,IAAA,SAAApF,GAAgC,OAAAA,EAAAghC,cAEhCw1E,GAAA3lB,IAGA9nF,KAAA+N,QAAAyyD,EACA,IAAAjhB,EAAA,SAAAl1C,EAAAsmB,GACA,GAAAvK,EAAArY,UAAAyyD,EACA,OAAAnH,IAEA,IACAhvD,EAAAm2D,EAAAt9C,EAAA,SAAAxkB,IACA,IAAAA,GAAA8jG,EAAA9jG,IAEA0nB,EAAAgpF,WAAA,GACA/1C,EAAA36D,IAEA,iBAAAA,GACA,iBAAAA,IACA,iBAAAA,EAAA4W,MACA,iBAAA5W,EAAAtH,OAIAiiE,IACA,iBAAA36D,KAAAlB,QACA4oB,EAAA5oB,QAAAkB,GAEA0nB,EAAA9hB,KAAA5F,IAIAiyB,EAAAjyB,KAGK,MAAAe,GACL45D,EAAA55D,KAIA+tG,GAAAj6F,EAAAgsC,EAAA,WACA,IAAAkwD,KAMAjC,GA0GA,SACA1lB,EACAnjE,EACA+qF,GAEA,OAAApB,GAAAxmB,EAAA,4BAAA3C,EAAA1nF,EAAAqP,EAAA1U,GACA,OAIA,SACA+sF,EACAr4E,EACA1U,EACAusB,EACA+qF,GAEA,gBAAAhxG,EAAA+K,EAAAknB,GACA,OAAAw0D,EAAAzmF,EAAA+K,EAAA,SAAAsF,GACA4hB,EAAA5hB,GACA,mBAAAA,GACA4V,EAAArgB,KAAA,YAaA,SAAAqrG,EACA5gG,EACAm0F,EACA9qG,EACAs3G,GAEAxM,EAAA9qG,GACA2W,EAAAm0F,EAAA9qG,IACGs3G,KACHthG,WAAA,WACAuhG,EAAA5gG,EAAAm0F,EAAA9qG,EAAAs3G,IACK,IAlBLC,CAAA5gG,EAAAjC,EAAAo2F,UAAA9qG,EAAAs3G,QArBAE,CAAAzqB,EAAAr4E,EAAA1U,EAAAusB,EAAA+qF,KAlHAG,CAAA/nB,EAAA2nB,EAHA,WAA+B,OAAArpF,EAAAlD,UAAAs9C,IAI/Br2D,OAAAic,EAAA05C,OAAAgwC,cACAvwD,EAAA,WACA,GAAAn5B,EAAArY,UAAAyyD,EACA,OAAAnH,IAEAjzC,EAAArY,QAAA,KACAihG,EAAAxuC,GACAp6C,EAAA05C,OAAAusC,KACAjmF,EAAA05C,OAAAusC,IAAA/mF,UAAA,WACAmqF,EAAAvoG,QAAA,SAAA6H,GAA8CA,aAO9Cg/F,GAAAt1G,UAAA02G,YAAA,SAAA3uC,GACA,IAAA3yC,EAAA7tB,KAAAkjB,QACAljB,KAAAkjB,QAAAs9C,EACAxgE,KAAA+O,IAAA/O,KAAA+O,GAAAyxD,GACAxgE,KAAA8/D,OAAAiwC,WAAA7oG,QAAA,SAAAmD,GACAA,KAAAm2D,EAAA3yC,MA0IA,IAAAmiF,GAAA,SAAAC,GACA,SAAAD,EAAAlwC,EAAAnuD,GACA,IAAAyU,EAAApmB,KAEAiwG,EAAAj5G,KAAAgJ,KAAA8/D,EAAAnuD,GAEA,IAAAu+F,EAAApwC,EAAAh1D,QAAAwhG,eAEA4D,GACArE,KAGA,IAAAsE,EAAAC,GAAApwG,KAAA2R,MACA7P,OAAAiB,iBAAA,oBAAAtD,GACA,IAAAyjB,EAAAkD,EAAAlD,QAIAspE,EAAA4jB,GAAAhqF,EAAAzU,MACAyU,EAAAlD,UAAAihF,GAAA3X,IAAA2jB,GAIA/pF,EAAA2oF,aAAAviB,EAAA,SAAAhsB,GACA0vC,GACA/D,GAAArsC,EAAAU,EAAAt9C,GAAA,OAiDA,OA3CA+sF,IAAAD,EAAAznG,UAAA0nG,GACAD,EAAAv3G,UAAAlB,OAAAY,OAAA83G,KAAAx3G,WACAu3G,EAAAv3G,UAAA4pB,YAAA2tF,EAEAA,EAAAv3G,UAAA43G,GAAA,SAAA/3G,GACAwJ,OAAAwkG,QAAA+J,GAAA/3G,IAGA03G,EAAAv3G,UAAA6L,KAAA,SAAAkoF,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAGAswG,EADAtwG,KACAkjB,QACAljB,KAAA+uG,aAAAviB,EAAA,SAAAhsB,GACA+sC,GAAAxG,EAAA3gF,EAAAzU,KAAA6uD,EAAAX,WACAssC,GAAA/lF,EAAA05C,OAAAU,EAAA8vC,GAAA,GACAtB,KAAAxuC,IACKyuC,IAGLe,EAAAv3G,UAAA+E,QAAA,SAAAgvF,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAGAswG,EADAtwG,KACAkjB,QACAljB,KAAA+uG,aAAAviB,EAAA,SAAAhsB,GACAsrC,GAAA/E,EAAA3gF,EAAAzU,KAAA6uD,EAAAX,WACAssC,GAAA/lF,EAAA05C,OAAAU,EAAA8vC,GAAA,GACAtB,KAAAxuC,IACKyuC,IAGLe,EAAAv3G,UAAA22G,UAAA,SAAA9qG,GACA,GAAA8rG,GAAApwG,KAAA2R,QAAA3R,KAAAkjB,QAAA28C,SAAA,CACA,IAAA38C,EAAA6jF,EAAA/mG,KAAA2R,KAAA3R,KAAAkjB,QAAA28C,UACAv7D,EAAAipG,GAAArqF,GAAA4oF,GAAA5oF,KAIA8sF,EAAAv3G,UAAA83G,mBAAA,WACA,OAAAH,GAAApwG,KAAA2R,OAGAq+F,EA1EA,CA2ECjC,IAED,SAAAqC,GAAAz+F,GACA,IAAA2D,EAAAxT,OAAA0qF,SAAAD,SAIA,OAHA56E,GAAA,IAAA2D,EAAAtY,QAAA2U,KACA2D,IAAAzX,MAAA8T,EAAAnV,UAEA8Y,GAAA,KAAAxT,OAAA0qF,SAAAr1C,OAAAr1C,OAAA0qF,SAAA37E,KAMA,IAAA2/F,GAAA,SAAAP,GACA,SAAAO,EAAA1wC,EAAAnuD,EAAAsG,GACAg4F,EAAAj5G,KAAAgJ,KAAA8/D,EAAAnuD,GAEAsG,GAiFA,SAAAtG,GACA,IAAA66E,EAAA4jB,GAAAz+F,GACA,WAAApP,KAAAiqF,GAIA,OAHA1qF,OAAA0qF,SAAAhvF,QACAupG,EAAAp1F,EAAA,KAAA66E,KAEA,EAvFAikB,CAAAzwG,KAAA2R,OAGA++F,KA2EA,OAxEAT,IAAAO,EAAAjoG,UAAA0nG,GACAO,EAAA/3G,UAAAlB,OAAAY,OAAA83G,KAAAx3G,WACA+3G,EAAA/3G,UAAA4pB,YAAAmuF,EAIAA,EAAA/3G,UAAAk4G,eAAA,WACA,IAAAvqF,EAAApmB,KAGAkwG,EADAlwG,KAAA8/D,OACAh1D,QAAAwhG,eACAsE,EAAAzD,IAAA+C,EAEAU,GACA/E,KAGA/pG,OAAAiB,iBAAAoqG,GAAA,mCACA,IAAAjqF,EAAAkD,EAAAlD,QACAwtF,MAGAtqF,EAAA2oF,aAAA8B,KAAA,SAAArwC,GACAowC,GACAzE,GAAA/lF,EAAA05C,OAAAU,EAAAt9C,GAAA,GAEAiqF,IACA2D,GAAAtwC,EAAAX,eAMA2wC,EAAA/3G,UAAA6L,KAAA,SAAAkoF,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAGAswG,EADAtwG,KACAkjB,QACAljB,KAAA+uG,aAAAviB,EAAA,SAAAhsB,GACAuwC,GAAAvwC,EAAAX,UACAssC,GAAA/lF,EAAA05C,OAAAU,EAAA8vC,GAAA,GACAtB,KAAAxuC,IACKyuC,IAGLuB,EAAA/3G,UAAA+E,QAAA,SAAAgvF,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAGAswG,EADAtwG,KACAkjB,QACAljB,KAAA+uG,aAAAviB,EAAA,SAAAhsB,GACAswC,GAAAtwC,EAAAX,UACAssC,GAAA/lF,EAAA05C,OAAAU,EAAA8vC,GAAA,GACAtB,KAAAxuC,IACKyuC,IAGLuB,EAAA/3G,UAAA43G,GAAA,SAAA/3G,GACAwJ,OAAAwkG,QAAA+J,GAAA/3G,IAGAk4G,EAAA/3G,UAAA22G,UAAA,SAAA9qG,GACA,IAAA4e,EAAAljB,KAAAkjB,QAAA28C,SACAgxC,OAAA3tF,IACA5e,EAAAysG,GAAA7tF,GAAA4tF,GAAA5tF,KAIAstF,EAAA/3G,UAAA83G,mBAAA,WACA,OAAAM,MAGAL,EAlFA,CAmFCzC,IAYD,SAAA2C,KACA,IAAAp7F,EAAAu7F,KACA,YAAAv7F,EAAA1X,OAAA,KAGAkzG,GAAA,IAAAx7F,IACA,GAGA,SAAAu7F,KAGA,IAAA57D,EAAAnzC,OAAA0qF,SAAAv3C,KACAl4C,EAAAk4C,EAAAj4C,QAAA,KACA,WAAAD,EAAA,GAAAk4C,EAAAp3C,MAAAd,EAAA,GAGA,SAAAi0G,GAAA17F,GACA,IAAA2/B,EAAAnzC,OAAA0qF,SAAAv3C,KACAp+C,EAAAo+C,EAAAj4C,QAAA,KAEA,OADAnG,GAAA,EAAAo+C,EAAAp3C,MAAA,EAAAhH,GAAAo+C,GACA,IAAA3/B,EAGA,SAAAy7F,GAAAz7F,GACA63F,GACAI,GAAAyD,GAAA17F,IAEAxT,OAAA0qF,SAAA37E,KAAAyE,EAIA,SAAAw7F,GAAAx7F,GACA63F,GACArB,GAAAkF,GAAA17F,IAEAxT,OAAA0qF,SAAAhvF,QAAAwzG,GAAA17F,IAOA,IAAA27F,GAAA,SAAAhB,GACA,SAAAgB,EAAAnxC,EAAAnuD,GACAs+F,EAAAj5G,KAAAgJ,KAAA8/D,EAAAnuD,GACA3R,KAAAynC,SACAznC,KAAAjD,OAAA,EAiDA,OA9CAkzG,IAAAgB,EAAA1oG,UAAA0nG,GACAgB,EAAAx4G,UAAAlB,OAAAY,OAAA83G,KAAAx3G,WACAw4G,EAAAx4G,UAAA4pB,YAAA4uF,EAEAA,EAAAx4G,UAAA6L,KAAA,SAAAkoF,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAEAA,KAAA+uG,aAAAviB,EAAA,SAAAhsB,GACAp6C,EAAAqhB,MAAArhB,EAAAqhB,MAAA5pC,MAAA,EAAAuoB,EAAArpB,MAAA,GAAAoN,OAAAq2D,GACAp6C,EAAArpB,QACAiyG,KAAAxuC,IACKyuC,IAGLgC,EAAAx4G,UAAA+E,QAAA,SAAAgvF,EAAAwiB,EAAAC,GACA,IAAA7oF,EAAApmB,KAEAA,KAAA+uG,aAAAviB,EAAA,SAAAhsB,GACAp6C,EAAAqhB,MAAArhB,EAAAqhB,MAAA5pC,MAAA,EAAAuoB,EAAArpB,OAAAoN,OAAAq2D,GACAwuC,KAAAxuC,IACKyuC,IAGLgC,EAAAx4G,UAAA43G,GAAA,SAAA/3G,GACA,IAAA8tB,EAAApmB,KAEAkxG,EAAAlxG,KAAAjD,MAAAzE,EACA,KAAA44G,EAAA,GAAAA,GAAAlxG,KAAAynC,MAAAjrC,QAAA,CAGA,IAAAgkE,EAAAxgE,KAAAynC,MAAAypE,GACAlxG,KAAAkvG,kBAAA1uC,EAAA,WACAp6C,EAAArpB,MAAAm0G,EACA9qF,EAAA+oF,YAAA3uC,OAIAywC,EAAAx4G,UAAA83G,mBAAA,WACA,IAAArtF,EAAAljB,KAAAynC,MAAAznC,KAAAynC,MAAAjrC,OAAA,GACA,OAAA0mB,IAAA28C,SAAA,KAGAoxC,EAAAx4G,UAAA22G,UAAA,aAIA6B,EArDA,CAsDClD,IAIDoD,GAAA,SAAArmG,QACA,IAAAA,UAEA9K,KAAAqsG,IAAA,KACArsG,KAAAoxG,QACApxG,KAAA8K,UACA9K,KAAAuvG,eACAvvG,KAAA8vG,gBACA9vG,KAAA+vG,cACA/vG,KAAAqxG,QAAAnG,GAAApgG,EAAAq+F,WAAAnpG,MAEA,IAAAhI,EAAA8S,EAAA9S,MAAA,OAUA,OATAgI,KAAAiY,SAAA,YAAAjgB,IAAAm1G,KAAA,IAAAriG,EAAAmN,SACAjY,KAAAiY,WACAjgB,EAAA,QAEA6J,IACA7J,EAAA,YAEAgI,KAAAhI,OAEAA,GACA,cACAgI,KAAAsmG,QAAA,IAAA0J,GAAAhwG,KAAA8K,EAAA6G,MACA,MACA,WACA3R,KAAAsmG,QAAA,IAAAkK,GAAAxwG,KAAA8K,EAAA6G,KAAA3R,KAAAiY,UACA,MACA,eACAjY,KAAAsmG,QAAA,IAAA2K,GAAAjxG,KAAA8K,EAAA6G,MACA,MACA,QACA,IAMApL,IAA0B25D,cAAgBz+D,cAAA,IAgJ1C,SAAA6vG,GAAAh1G,EAAAc,GAEA,OADAd,EAAAgI,KAAAlH,GACA,WACA,IAAAvG,EAAAyF,EAAAU,QAAAI,GACAvG,GAAA,GAAiByF,EAAAW,OAAApG,EAAA,IAlJjBs6G,GAAA14G,UAAAqU,MAAA,SACA/G,EACAmd,EACA6gF,GAEA,OAAA/jG,KAAAqxG,QAAAvkG,MAAA/G,EAAAmd,EAAA6gF,IAGAx9F,GAAA25D,aAAAxoE,IAAA,WACA,OAAAsI,KAAAsmG,SAAAtmG,KAAAsmG,QAAApjF,SAGAiuF,GAAA14G,UAAA2jB,KAAA,SAAAiwF,GACA,IAAAjmF,EAAApmB,KAWA,GAHAA,KAAAoxG,KAAA9sG,KAAA+nG,IAGArsG,KAAAqsG,IAAA,CAIArsG,KAAAqsG,MAEA,IAAA/F,EAAAtmG,KAAAsmG,QAEA,GAAAA,aAAA0J,GACA1J,EAAAyI,aAAAzI,EAAAiK,2BACG,GAAAjK,aAAAkK,GAAA,CACH,IAAAe,EAAA,WACAjL,EAAAqK,kBAEArK,EAAAyI,aACAzI,EAAAiK,qBACAgB,EACAA,GAIAjL,EAAAqI,OAAA,SAAAnuC,GACAp6C,EAAAgrF,KAAAlqG,QAAA,SAAAmlG,GACAA,EAAA9F,OAAA/lC,QAKA2wC,GAAA14G,UAAA+4G,WAAA,SAAAp0G,GACA,OAAAk0G,GAAAtxG,KAAAuvG,YAAAnyG,IAGA+zG,GAAA14G,UAAAg5G,cAAA,SAAAr0G,GACA,OAAAk0G,GAAAtxG,KAAA8vG,aAAA1yG,IAGA+zG,GAAA14G,UAAAioE,UAAA,SAAAtjE,GACA,OAAAk0G,GAAAtxG,KAAA+vG,WAAA3yG,IAGA+zG,GAAA14G,UAAAm2G,QAAA,SAAA7/F,EAAA8/F,GACA7uG,KAAAsmG,QAAAsI,QAAA7/F,EAAA8/F,IAGAsC,GAAA14G,UAAAq2G,QAAA,SAAAD,GACA7uG,KAAAsmG,QAAAwI,QAAAD,IAGAsC,GAAA14G,UAAA6L,KAAA,SAAAkoF,EAAAwiB,EAAAC,GACAjvG,KAAAsmG,QAAAhiG,KAAAkoF,EAAAwiB,EAAAC,IAGAkC,GAAA14G,UAAA+E,QAAA,SAAAgvF,EAAAwiB,EAAAC,GACAjvG,KAAAsmG,QAAA9oG,QAAAgvF,EAAAwiB,EAAAC,IAGAkC,GAAA14G,UAAA43G,GAAA,SAAA/3G,GACA0H,KAAAsmG,QAAA+J,GAAA/3G,IAGA64G,GAAA14G,UAAAi5G,KAAA,WACA1xG,KAAAqwG,IAAA,IAGAc,GAAA14G,UAAAk5G,QAAA,WACA3xG,KAAAqwG,GAAA,IAGAc,GAAA14G,UAAAm5G,qBAAA,SAAAlzG,GACA,IAAA8hE,EAAA9hE,EACAA,EAAAkpE,QACAlpE,EACAsB,KAAA4O,QAAAlQ,GAAA8hE,MACAxgE,KAAAkgE,aACA,OAAAM,KAGAr2D,OAAAhM,SAAAqiE,EAAAoH,QAAAvrE,IAAA,SAAApF,GACA,OAAAM,OAAAoI,KAAA1I,EAAA2qB,YAAAvlB,IAAA,SAAAjE,GACA,OAAAnB,EAAA2qB,WAAAxpB,YAKA+4G,GAAA14G,UAAAmW,QAAA,SACAlQ,EACAwkB,EACA8hF,GAEA,IAAAxY,EAAA8d,GACA5rG,EACAwkB,GAAAljB,KAAAsmG,QAAApjF,QACA8hF,EACAhlG,MAEAwgE,EAAAxgE,KAAA8M,MAAA0/E,EAAAtpE,GACA28C,EAAAW,EAAAujC,gBAAAvjC,EAAAX,SAGA,OACA2sB,WACAhsB,QACAvrB,KAwBA,SAAAtjC,EAAAkuD,EAAA7nE,GACA,IAAAsd,EAAA,SAAAtd,EAAA,IAAA6nE,IACA,OAAAluD,EAAAo1F,EAAAp1F,EAAA,IAAA2D,KA9BAu8F,CADA7xG,KAAAsmG,QAAA30F,KACAkuD,EAAA7/D,KAAAhI,MAMA85G,aAAAtlB,EACA5tE,SAAA4hD,IAIA2wC,GAAA14G,UAAAkzG,UAAA,SAAAxC,GACAnpG,KAAAqxG,QAAA1F,UAAAxC,GACAnpG,KAAAsmG,QAAApjF,UAAAihF,GACAnkG,KAAAsmG,QAAAyI,aAAA/uG,KAAAsmG,QAAAiK,uBAIAh5G,OAAAkP,iBAAA0qG,GAAA14G,UAAA8N,IAeA4qG,GAAAtqF,UACAsqF,GAAA/pF,QAAA,QAEAvlB,GAAAC,OAAA+f,KACA/f,OAAA+f,IAAAa,IAAAyuF,IAGA,IAAAY,GAAA,GC9jFAC,GAAA,WACA,IAAA13B,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,OACKmM,YAAA,eAAA3V,OAAsCpO,GAAA,aAE3C4X,EACA,kBACSxJ,OAAS2/F,KAAA33B,EAAA23B,QAElBn2F,EAAA,YAA0BvJ,KAAA,qBAC1BuJ,EACA,OAEAA,EAAA,KAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,kCACAuiF,EAAAr/D,GAAA,KACAa,EAAA,eACAmM,YAAA,kBACA3V,OACAxa,MAAAwiF,EAAA43B,aACApnG,QAAAwvE,EAAA63B,aACAC,kBAAA,SACA/xE,YAAAi6C,EAAAviF,EAAA,mCACA4/C,MAAA,QACA06D,WAAA,KACAt6D,YAAA,EACAI,UAAA,GAEAloC,IAAuB/K,IAAAo1E,EAAAg4B,cAAAnxD,MAAAm5B,EAAAi4B,oBAGvB,GAEAj4B,EAAAr/D,GAAA,KACAa,EAAA,OACAA,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAAk4B,cACAn9F,WAAA,kBAGA4S,YAAA,WACA3V,OAAwBnZ,KAAA,WAAA+K,GAAA,iBACxBqV,UACAk5F,QAAAj0G,MAAAc,QAAAg7E,EAAAk4B,eACAl4B,EAAA1/D,GAAA0/D,EAAAk4B,cAAA,SACAl4B,EAAAk4B,eAEAviG,IACA0hB,OAAA,SAAAnY,GACA,IAAAk5F,EAAAp4B,EAAAk4B,cACAG,EAAAn5F,EAAAtf,OACA04G,IAAAD,EAAAF,QACA,GAAAj0G,MAAAc,QAAAozG,GAAA,CACA,IACAG,EAAAv4B,EAAA1/D,GAAA83F,EADA,MAEAC,EAAAF,QACAI,EAAA,IAAAv4B,EAAAk4B,cAAAE,EAAAvoG,QAHA,QAKA0oG,GAAA,IACAv4B,EAAAk4B,cAAAE,EACA70G,MAAA,EAAAg1G,GACA1oG,OAAAuoG,EAAA70G,MAAAg1G,EAAA,UAGAv4B,EAAAk4B,cAAAI,MAKAt4B,EAAAr/D,GAAA,KACAa,EAAA,SAA2BxJ,OAASu5B,IAAA,mBACpCyuC,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,mCAGAuiF,EAAAr/D,GAAA,KACAa,EAAA,OACAA,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAAw4B,cACAz9F,WAAA,kBAGA4S,YAAA,WACA3V,OAAwBnZ,KAAA,WAAA+K,GAAA,iBACxBqV,UACAk5F,QAAAj0G,MAAAc,QAAAg7E,EAAAw4B,eACAx4B,EAAA1/D,GAAA0/D,EAAAw4B,cAAA,SACAx4B,EAAAw4B,eAEA7iG,IACA0hB,OAAA,SAAAnY,GACA,IAAAk5F,EAAAp4B,EAAAw4B,cACAH,EAAAn5F,EAAAtf,OACA04G,IAAAD,EAAAF,QACA,GAAAj0G,MAAAc,QAAAozG,GAAA,CACA,IACAG,EAAAv4B,EAAA1/D,GAAA83F,EADA,MAEAC,EAAAF,QACAI,EAAA,IAAAv4B,EAAAw4B,cAAAJ,EAAAvoG,QAHA,QAKA0oG,GAAA,IACAv4B,EAAAw4B,cAAAJ,EACA70G,MAAA,EAAAg1G,GACA1oG,OAAAuoG,EAAA70G,MAAAg1G,EAAA,UAGAv4B,EAAAw4B,cAAAF,MAKAt4B,EAAAr/D,GAAA,KACAa,EAAA,SAA2BxJ,OAASu5B,IAAA,mBACpCyuC,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,oCAGAuiF,EAAAr/D,GAAA,KACAa,EAAA,OACAA,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAAy4B,gBACA19F,WAAA,oBAGA4S,YAAA,WACA3V,OAAwBnZ,KAAA,WAAA+K,GAAA,mBACxBqV,UACAk5F,QAAAj0G,MAAAc,QAAAg7E,EAAAy4B,iBACAz4B,EAAA1/D,GAAA0/D,EAAAy4B,gBAAA,SACAz4B,EAAAy4B,iBAEA9iG,IACA0hB,OAAA,SAAAnY,GACA,IAAAk5F,EAAAp4B,EAAAy4B,gBACAJ,EAAAn5F,EAAAtf,OACA04G,IAAAD,EAAAF,QACA,GAAAj0G,MAAAc,QAAAozG,GAAA,CACA,IACAG,EAAAv4B,EAAA1/D,GAAA83F,EADA,MAEAC,EAAAF,QACAI,EAAA,IAAAv4B,EAAAy4B,gBAAAL,EAAAvoG,QAHA,QAKA0oG,GAAA,IACAv4B,EAAAy4B,gBAAAL,EACA70G,MAAA,EAAAg1G,GACA1oG,OAAAuoG,EAAA70G,MAAAg1G,EAAA,UAGAv4B,EAAAy4B,gBAAAH,MAKAt4B,EAAAr/D,GAAA,KACAa,EAAA,SAA2BxJ,OAASu5B,IAAA,qBACpCyuC,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,sCAGAuiF,EAAAr/D,GAAA,KACAa,EAAA,OACAA,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAA04B,gBACA39F,WAAA,oBAGA4S,YAAA,WACA3V,OAAwBnZ,KAAA,WAAA+K,GAAA,mBACxBqV,UACAk5F,QAAAj0G,MAAAc,QAAAg7E,EAAA04B,iBACA14B,EAAA1/D,GAAA0/D,EAAA04B,gBAAA,SACA14B,EAAA04B,iBAEA/iG,IACA0hB,OAAA,SAAAnY,GACA,IAAAk5F,EAAAp4B,EAAA04B,gBACAL,EAAAn5F,EAAAtf,OACA04G,IAAAD,EAAAF,QACA,GAAAj0G,MAAAc,QAAAozG,GAAA,CACA,IACAG,EAAAv4B,EAAA1/D,GAAA83F,EADA,MAEAC,EAAAF,QACAI,EAAA,IAAAv4B,EAAA04B,gBAAAN,EAAAvoG,QAHA,QAKA0oG,GAAA,IACAv4B,EAAA04B,gBAAAN,EACA70G,MAAA,EAAAg1G,GACA1oG,OAAAuoG,EAAA70G,MAAAg1G,EAAA,UAGAv4B,EAAA04B,gBAAAJ,MAKAt4B,EAAAr/D,GAAA,KACAa,EAAA,SAA2BxJ,OAASu5B,IAAA,qBACpCyuC,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,yCAKA,GAEAuiF,EAAAr/D,GAAA,KACAa,EAAA,aACAxJ,OACA2gG,MAAA34B,EAAA24B,MACAC,WAAA54B,EAAA44B,WACAC,cAAA74B,EAAA64B,cACAC,gBAAA94B,EAAA84B,oBAIA,IAIApB,GAAA/P,eAAA,ECzOA,IAAAoR,GAAA,WACA,IAAA/4B,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,OAEA+E,OAAcyyF,eAAAh5B,EAAA23B,KAAApzF,SACdvM,OAAcpO,GAAA,oBAGdo2E,EAAA23B,KAAAsB,IACAz3F,EAAA,OAAqBmM,YAAA,uBACrBnM,EACA,UAEA+E,MAAAy5D,EAAA23B,KAAAsB,IAAAC,KACAlhG,OAAwBnZ,KAAA,SAAA+K,GAAAo2E,EAAA23B,KAAAsB,IAAArvG,IACxB+L,IAAqBsxC,MAAA+4B,EAAA23B,KAAAsB,IAAAE,UAErBn5B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA23B,KAAAsB,IAAAluG,WAGAi1E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EACA,MACSxJ,OAASpO,GAAAo2E,EAAA23B,KAAA/tG,KAClBo2E,EAAA7/D,GAAA6/D,EAAA23B,KAAA3oG,MAAA,SAAAxM,GACA,OAAAgf,EAAA,mBAAwC1jB,IAAA0E,EAAA1E,IAAAka,OAAwBxV,aAGhEw9E,EAAAr/D,GAAA,KACAq/D,EAAA/hE,OAAA,oBACAuD,EAAA,OAAqBxJ,OAASpO,GAAA,kBAC9B4X,EAAA,OAAuBxJ,OAASpO,GAAA,yBAChC4X,EACA,UAEAmM,YAAA,kBACA3V,OAA0BohG,yBAAA,2BAE1Bp5B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,6BAGAuiF,EAAAr/D,GAAA,KACAa,EACA,OACexJ,OAASpO,GAAA,0BACxBo2E,EAAA5/D,GAAA,qBACA,KAGA4/D,EAAAp/D,QAKAm4F,GAAApR,eAAA,EC1DA,IAAA0R,GAAA,WACA,IAAAr5B,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAe,EAAAx9E,KAAA82G,QACA93F,EAAA,MAAgBmM,YAAA,2BAChBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAuI,SAEAyW,EACA,cACAw+D,EAAAt/D,IAEA6F,QAEAgzF,qBAAAv5B,EAAAx9E,KAAA+hB,QACA2kB,KAAA82C,EAAAx9E,KAAAg3G,OACAC,YACAz5B,EAAAx9E,KAAAi3G,aACAz5B,EAAAx9E,KAAAsI,UACAk1E,EAAAx9E,KAAAsI,SAAA5I,OAAA,GAEA89E,EAAAx9E,KAAAszE,SAEA99D,OAAoBpO,GAAAo2E,EAAAx9E,KAAAoH,KAEpB,cACAo2E,EAAA05B,WAAA15B,EAAAx9E,OACA,IAGAw9E,EAAAx9E,KAAAm3G,OACAn4F,EAAA,OACAmM,YAAA,8BACArH,OAAwBszF,gBAAA55B,EAAAx9E,KAAAm3G,UAExB35B,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EACA,KAEA+E,MAAAy5D,EAAAx9E,KAAA02G,KACAlhG,OAAsB2iC,KAAAqlC,EAAAx9E,KAAAm4C,KAAAqlC,EAAAx9E,KAAAm4C,KAAA,KACtBhlC,IAAmBsxC,MAAA+4B,EAAA65B,kBAGnB75B,EAAAx9E,KAAAs3G,QACAt4F,EAAA,OACAxJ,OAA4B49B,IAAAoqC,EAAAx9E,KAAAuI,KAAAiD,IAAAgyE,EAAAx9E,KAAAs3G,WAE5B95B,EAAAp/D,KACAo/D,EAAAr/D,GAAA,SAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAuI,MAAA,UAGAi1E,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAA22D,MACA33C,EAAA,OAAyBmM,YAAA,+BACzBnM,EACA,MAEAkK,OAAAsxE,UAAAhd,EAAAx9E,KAAA22D,MAAA0C,SACAr6C,EACA,MAC2BmM,YAAA,uCAC3BqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAA22D,MAAA0C,YAEAmkB,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAA22D,MAAA4gD,SACA,IAAA/5B,EAAAx9E,KAAA22D,MAAA4gD,QAAA73G,OACAsf,EACA,MAEAmM,YACA,2CAGAnM,EAAA,UACA+E,MAAAy5D,EAAAx9E,KAAA22D,MAAA4gD,QAAA,GAAAb,KACAlhG,OAAsCsgD,MAAA0nB,EAAAx9E,KAAA22D,MAAA4gD,QAAA,GAAAhvG,MACtC4K,IAAmCsxC,MAAA+4B,EAAAx9E,KAAA22D,MAAA4gD,QAAA,GAAAZ,YAInCn5B,EAAAx9E,KAAA22D,MAAA4gD,SACA,IAAA/5B,EAAAx9E,KAAA22D,MAAA4gD,QAAA73G,SACAwpB,OAAAsxE,UAAAhd,EAAAx9E,KAAA22D,MAAA0C,SACAmkB,EAAA7/D,GAAA6/D,EAAAx9E,KAAA22D,MAAA4gD,QAAA,SAAAZ,GACA,OAAA33F,EACA,MAEA1jB,IAAAq7G,SACAxrF,YACA,2CAGAnM,EAAA,UACA+E,MAAA4yF,EAAAD,KACAlhG,OAA0CsgD,MAAA6gD,EAAApuG,MAC1C4K,IAAuCsxC,MAAAkyD,gBAKvCn5B,EAAAx9E,KAAA22D,MAAA4gD,SACA/5B,EAAAx9E,KAAA22D,MAAA4gD,QAAA73G,OAAA,IACAwpB,OAAAsxE,UAAAhd,EAAAx9E,KAAA22D,MAAA0C,UACAmkB,EAAAx9E,KAAA22D,MAAA4gD,QAAA73G,OAAA,GACAsf,EACA,MAEAmM,YACA,2CAGAnM,EAAA,UACA3Q,aAEA/T,KAAA,gBACA60B,QAAA,kBACAn0B,MAAAwiF,EAAAg6B,SACAj/F,WAAA,aAGApF,IAAuCsxC,MAAA+4B,EAAAi6B,cAIvCj6B,EAAAp/D,MAEA,KAGAo/D,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAA22D,OACA6mB,EAAAx9E,KAAA22D,MAAA4gD,SACA/5B,EAAAx9E,KAAA22D,MAAA4gD,QAAA73G,OAAA,IACAwpB,OAAAsxE,UAAAhd,EAAAx9E,KAAA22D,MAAA0C,UACAmkB,EAAAx9E,KAAA22D,MAAA4gD,QAAA73G,OAAA,GACAsf,EACA,OAEAmM,YAAA,4BACApH,OAA0B2iB,KAAA82C,EAAAk6B,cAG1B14F,EAAA,gBACAxJ,OAA4B2/F,KAAA33B,EAAAx9E,KAAA22D,MAAA4gD,YAG5B,GAEA/5B,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAA23G,KACA34F,EAAA,OAAyBmM,YAAA,iCACzBnM,EACA,OACmBmM,YAAA,6CACnBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAA23G,KAAApvG,SAEAi1E,EAAAr/D,GAAA,KACAa,EAAA,UACAmM,YACA,mDACA3V,OAA0BsgD,MAAA0nB,EAAAviF,EAAA,wBAG1BuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAA43G,KACA54F,EAAA,OAAyBmM,YAAA,8BACzBnM,EAAA,QACAA,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAAx9E,KAAAuI,KACAgQ,WAAA,cAGA/C,OAA4BnZ,KAAA,QAC5BogB,UAA+BzhB,MAAAwiF,EAAAx9E,KAAAuI,MAC/B4K,IACAkxC,MAAA,SAAA3nC,GACAA,EAAAtf,OAAAk4B,WAGAkoD,EAAAh2D,KAAAg2D,EAAAx9E,KAAA,OAAA0c,EAAAtf,OAAApC,WAIAwiF,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,eACA3V,OAA4BnZ,KAAA,SAAArB,MAAA,MAE5BwiF,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,aACA3V,OAA4BnZ,KAAA,SAAArB,MAAA,IAC5BmY,IACAsxC,MAAA,SAAA/nC,GAGA,OAFAA,EAAAsnC,kBACAtnC,EAAAqnC,iBACAy5B,EAAAq6B,WAAAn7F,WAMA8gE,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAAsI,SACA0W,EACA,KACAw+D,EAAA7/D,GAAA6/D,EAAAx9E,KAAAsI,SAAA,SAAAtI,EAAA1E,GACA,OAAA0jB,EAAA,mBACA1jB,MACAka,OAA4BxV,aAI5Bw9E,EAAAp/D,QAKAy4F,GAAA1R,eAAA,ECrOA,IAAA2S,GAAA,WACA,IACAr7B,EADAv5E,KACAyY,eACAqD,EAFA9b,KAEAwjB,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,KAJA9b,KAKAya,GALAza,KAKAiyG,KAAA,SAAAn1G,EAAA1E,GACA,OAAA0jB,EAAA,gBAAiC1jB,MAAAka,OAAmBxV,cAKpD83G,GAAA3S,eAAA,ECZA,IAAA4S,GAAA,WACA,IAAAv6B,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EAAA,MACAw+D,EAAAx9E,KAAAm4C,KACAn5B,EACA,KAEAxJ,OACA2iC,KAAAqlC,EAAAx9E,KAAAm4C,KAAAqlC,EAAAx9E,KAAAm4C,KAAA,IACA/6C,OAAAogF,EAAAx9E,KAAA5C,OAAAogF,EAAAx9E,KAAA5C,OAAA,GACA46G,IAAA,uBAEA7kG,IAAiBsxC,MAAA+4B,EAAAx9E,KAAA22G,UAGjB33F,EAAA,QAAwB+E,MAAAy5D,EAAAx9E,KAAA02G,OACxBl5B,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAAuI,KACAyW,EAAA,QAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAuI,SACAi1E,EAAAx9E,KAAAi4G,SACAj5F,EAAA,KAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAi4G,aACAz6B,EAAAp/D,OAGAo/D,EAAAx9E,KAAA22G,OACA33F,EAAA,UAAwB7L,IAAMsxC,MAAA+4B,EAAAx9E,KAAA22G,UAC9B33F,EAAA,QAAwB+E,MAAAy5D,EAAAx9E,KAAA02G,OACxBl5B,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAAuI,KACAyW,EAAA,QAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAuI,SACAi1E,EAAAx9E,KAAAi4G,SACAj5F,EAAA,KAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAi4G,aACAz6B,EAAAp/D,OAEAY,EAAA,QAAsBmM,YAAA,aACtBnM,EAAA,QAAwB+E,MAAAy5D,EAAAx9E,KAAA02G,OACxBl5B,EAAAr/D,GAAA,KACAq/D,EAAAx9E,KAAAuI,KACAyW,EAAA,QAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAuI,SACAi1E,EAAAx9E,KAAAi4G,SACAj5F,EAAA,KAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAx9E,KAAAi4G,aACAz6B,EAAAp/D,UAKA25F,GAAA5S,eAAA,ECFA,ICvCA+S,GAAAvT,GDwCAl3F,OAAA,SCtCAsqG,OAEA,EACA,KACA,KACA,MAuBAG,GAAAlqG,QAAAw3F,OAAA,6CACA,IC/BA2S,GAAAxT,GC0BArqG,KAAA,cACAmT,OAAA,QACAqX,YACAszF,YFEAF,aC7BAJ,OAEA,EACA,KACA,KACA,MAuBAK,GAAAnqG,QAAAw3F,OAAA,iCACA,IAAA6S,GAAAF,+BE/BAG,GAAA3T,GC8FArqG,KAAA,iBACAmT,OAAA,QACAqX,YACAuzF,gBAEAhqG,YACAkqG,aAAAC,GAAAr3G,GAEAkH,KATA,WAUA,OACAqvG,YAAA,IAGAhqG,SACA+pG,SADA,WAEAv0G,KAAAw0G,YAAA,GAEAF,SAJA,WAKAt0G,KAAAw0G,YAAA,GAEAL,eAPA,WAUAoB,EAAA,EAAA5xG,IAAA3D,KAAAlD,KAAA,UAAAkD,KAAAlD,KAAAg3G,SAAA9zG,KAAAlD,KAAAg3G,SAEAa,WAZA,WAcAn2G,MAAAc,QAAAU,KAAAlD,KAAAszE,WACApwE,KAAAlD,KAAAszE,QAAApwE,KAAAlD,KAAAszE,QAAA14D,OACA,SAAA5a,GAAA,kBAAAA,MAKAk3G,WArBA,SAqBAl3G,GACA,OAAAA,EAAAm4C,MAEAz0B,GAAA,OAIAA,GAAA,cACAtb,IAAA,KACAxG,GAAA5B,EAAAgjE,OACAilC,OAAA,KAIA5+E,QAjDA,WAmDAnmB,KAAAyxD,UAAAzxD,KAAAglB,MD9IA2uF,OAEA,EACA,KACA,KACA,MAuBAyB,GAAAtqG,QAAAw3F,OAAA,kDACA,IE/BAkT,GAAA/T,GCwCArqG,KAAA,gBACAmT,OAAA,QACAqX,YACA6zF,eHZAL,aE7BA/B,OAEA,EACA,KACA,KACA,MAuBAmC,GAAA1qG,QAAAw3F,OAAA,mCACA,IAAAoT,GAAAF,WEtCAG,GAAA,WACA,IAAAr7B,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,OAEAmM,YAAA,iBACA3V,OAAcpO,GAAA,eACd+L,IACA2lG,UAAA,SAAAp8F,GACA,OAAA8gE,EAAAu7B,SAAAr8F,OAKAsC,EACA,OAEAmM,YAAA,MACApH,OAAkBk1E,OAAAzb,EAAAw7B,WAAAx7B,EAAA44B,WAAA6C,iBAClBzjG,OAAkBpO,GAAA,iBAGlB4X,EAAA,OAAqBmM,YAAA,SAAA3V,OAAgCpO,GAAA,kBACrDo2E,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,OAAA3V,OAA8BpO,GAAA,gBACnDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,2BAEAuiF,EAAAr/D,GAAA,KACAa,EACA,OACamM,YAAA,cAAA3V,OAAqCpO,GAAA,uBAClDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,+BAEAuiF,EAAAr/D,GAAA,KACAa,EACA,OACamM,YAAA,WAAA3V,OAAkCpO,GAAA,oBAC/Co2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,2BAEAuiF,EAAAr/D,GAAA,KACAa,EACA,OACamM,YAAA,cAAA3V,OAAqCpO,GAAA,mBAClDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,wBAEAuiF,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,SAAA3V,OAAgCpO,GAAA,kBACrDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,yBAEAuiF,EAAAr/D,GAAA,KACAq/D,EAAA07B,gBAAAx5G,OAAA,GAAA89E,EAAA27B,SAAAC,QACAp6F,EACA,OACiBmM,YAAA,YAAA3V,OAAmCpO,GAAA,qBACpDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,kCAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,QAAA3V,OAA+BpO,GAAA,iBACpDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,wBAEAuiF,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAV,cACA12F,EACA,OACiBmM,YAAA,YAAA3V,OAAmCpO,GAAA,qBACpDo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,2BAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAF,gBACAl3F,EACA,OACiBmM,YAAA,0CACjBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,mCAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAH,gBACAj3F,EAAA,OAAyBmM,YAAA,kCACzBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,+BAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAJ,cACAh3F,EAAA,OAAyBmM,YAAA,8BACzBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,6BAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,kBAGrBqyD,EAAAr/D,GAAA,KACAa,EACA,QAEA3Q,aAEA/T,KAAA,OACA60B,QAAA,SACAn0B,MAAAwiF,EAAA44B,WAAA6C,gBACA1gG,WAAA,+BAGA4S,YAAA,MACApH,OAAkBk1E,OAAAzb,EAAAw7B,UAAAx7B,EAAA44B,WAAA6C,iBAClBzjG,OAAkBpO,GAAA,WAAAy1C,SAAA2gC,EAAAz7D,SAClB5O,IACAkmG,OAAA,SAAA38F,GAEA,OADAA,EAAAqnC,iBACAy5B,EAAA87B,WAAA58F,OAKAsC,EAAA,OAAqB+E,MAAAy5D,EAAAz7D,QAAA,kCACrBy7D,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,SACrBnM,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAA+7B,QAAAnyG,GACAmR,WAAA,eAGA/C,OACApO,GAAA,cACA/K,KAAA,OACAs+C,SAAA,GACApX,YAAAi6C,EAAAviF,EAAA,uBACAX,KAAA,WACA8pD,aAAA,MACAo1D,eAAA,OACAC,YAAA,MACA1zF,QAAA,0BAEAtJ,UAAyBzhB,MAAAwiF,EAAA+7B,QAAAnyG,IACzB+L,IACAkxC,MAAA,SAAA3nC,GACAA,EAAAtf,OAAAk4B,WAGAkoD,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,KAAA78F,EAAAtf,OAAApC,aAKAwiF,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,gBACrBnM,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAA+7B,QAAArY,YACA3oF,WAAA,wBAGA/C,OACApO,GAAA,iBACA/K,KAAA,OACAknC,YAAAi6C,EAAAviF,EAAA,2BACAX,KAAA,cACA8pD,aAAA,MACAo1D,eAAA,OACAC,YAAA,OAEAh9F,UAAyBzhB,MAAAwiF,EAAA+7B,QAAArY,aACzB/tF,IACAkxC,MAAA,SAAA3nC,GACAA,EAAAtf,OAAAk4B,WAGAkoD,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,cAAA78F,EAAAtf,OAAApC,aAKAwiF,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,aACrBnM,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAA+7B,QAAAv+C,SACAziD,WAAA,qBAGA/C,OACApO,GAAA,kBACA/K,KAAA,WACAs+C,SAAA,KAAA6iC,EAAA+7B,QAAAG,YACAn2E,YAAAi6C,EAAAviF,EAAA,uBACAX,KAAA,WACA8pD,aAAA,eACAo1D,eAAA,OACAC,YAAA,MACAE,UAAAn8B,EAAAo8B,mBAEAn9F,UAAyBzhB,MAAAwiF,EAAA+7B,QAAAv+C,UACzB7nD,IACAkxC,MAAA,SAAA3nC,GACAA,EAAAtf,OAAAk4B,WAGAkoD,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,WAAA78F,EAAAtf,OAAApC,aAKAwiF,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,gBACrBnM,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAA+7B,QAAAG,YACAnhG,WAAA,wBAGA/C,OACApO,GAAA,WACA/K,KAAA,QACAs+C,SAAA,KAAA6iC,EAAA+7B,QAAAv+C,SACAz3B,YAAAi6C,EAAAviF,EAAA,oBACAX,KAAA,QACA8pD,aAAA,MACAo1D,eAAA,OACAC,YAAA,OAEAh9F,UAAyBzhB,MAAAwiF,EAAA+7B,QAAAG,aACzBvmG,IACAkxC,MAAA,SAAA3nC,GACAA,EAAAtf,OAAAk4B,WAGAkoD,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,cAAA78F,EAAAtf,OAAApC,aAKAwiF,EAAAr/D,GAAA,KACAa,EACA,OACamM,YAAA,WAEbqyD,EAAA27B,SAAAC,QAUA57B,EAAAp/D,KATAY,EAAA,SACAxJ,OACAnZ,KAAA,OACA2jD,SAAA,KACA54C,GAAA,YACAuzC,UAAA6iC,EAAA27B,SAAAC,SAEA38F,UAA+BzhB,MAAAwiF,EAAA+7B,QAAA1N,UAG/BruB,EAAAr/D,GAAA,KACAa,EACA,eAEAmM,YAAA,kBACA3V,OACAxH,QAAAwvE,EAAAq8B,aACAt2E,YAAAi6C,EAAAviF,EAAA,gCACA4/C,MAAA,OACA06D,WAAA,KACAhpF,UAAA,EACAutF,mBAAA,EACA7+D,WAAAuiC,EAAA27B,SAAAC,SAEAz2F,OACA3nB,MAAAwiF,EAAA+7B,QAAA1N,OACAjpF,SAAA,SAAAm3F,GACAv8B,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,SAAAQ,IAEAxhG,WAAA,oBAIAyG,EACA,QACqBxJ,OAASC,KAAA,YAAmBA,KAAA,aACjD+nE,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,gCAKA,GAEAuiF,EAAAr/D,GAAA,KACAq/D,EAAA07B,gBAAAx5G,OAAA,GAAA89E,EAAA27B,SAAAC,QACAp6F,EACA,OACiBmM,YAAA,cAEjBnM,EACA,eAEAmM,YAAA,kBACA3V,OACAxH,QAAAwvE,EAAA07B,gBACA31E,YAAAi6C,EAAAviF,EAAA,oCACA4/C,MAAA,OACA06D,WAAA,KACAhpF,UAAA,EACAutF,mBAAA,GAEAn3F,OACA3nB,MAAAwiF,EAAA+7B,QAAAL,gBACAt2F,SAAA,SAAAm3F,GACAv8B,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,kBAAAQ,IAEAxhG,WAAA,6BAIAyG,EACA,QACyBxJ,OAASC,KAAA,YAAmBA,KAAA,aACrD+nE,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,gCAKA,GAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EACA,OACamM,YAAA,UAEbnM,EAAA,eACAmM,YAAA,kBACA3V,OACAxH,QAAAwvE,EAAA63B,aACA9xE,YAAAi6C,EAAAviF,EAAA,gCACA4/C,MAAA,QACA06D,WAAA,KACAt6D,YAAA,EACAI,UAAA,GAEAloC,IAAqB/K,IAAAo1E,EAAAg4B,eACrB7yF,OACA3nB,MAAAwiF,EAAA+7B,QAAAS,MACAp3F,SAAA,SAAAm3F,GACAv8B,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,QAAAQ,IAEAxhG,WAAA,oBAIA,GAEAilE,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAV,cACA12F,EACA,OACiBmM,YAAA,cAEjBnM,EAAA,eACAmM,YAAA,kBACA3V,OACAxH,QAAAwvE,EAAAy8B,UACA12E,YAAAi6C,EAAAviF,EAAA,+BACA4/C,MAAA,OACA06D,WAAA,OACAt6D,YAAA,EACAi/D,eAAA,YACAC,cAAA,SAEAx3F,OACA3nB,MAAAwiF,EAAA+7B,QAAAa,SACAx3F,SAAA,SAAAm3F,GACAv8B,EAAAh2D,KAAAg2D,EAAA+7B,QAAA,WAAAQ,IAEAxhG,WAAA,uBAIA,GAEAilE,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAF,gBACAl3F,EAAA,OAAyBmM,YAAA,oBACzBqyD,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAH,gBACAj3F,EAAA,OAAyBmM,YAAA,gBACzBqyD,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAJ,cACAh3F,EAAA,OAAyBmM,YAAA,cACzBqyD,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,gBACrBnM,EAAA,SACAmM,YAAA,kDACA3V,OACAnZ,KAAA,SACA+K,GAAA,YACApM,MAAA,GACA86D,MAAA0nB,EAAAviF,EAAA,oCAMAuiF,EAAAr/D,GAAA,KACAq/D,EAAA7/D,GAAA6/D,EAAA68B,cAAA,SAAAviG,EAAAxc,GACA,OAAA0jB,EAAA,YACA1jB,MACAka,OACAsC,OACAqhG,SAAA37B,EAAA27B,SACA/C,WAAA54B,EAAA44B,WACAvK,OAAAruB,EAAAquB,OACAqN,gBAAA17B,EAAA07B,gBACA7D,aAAA73B,EAAA63B,aACA4E,UAAAz8B,EAAAy8B,UACA3D,gBAAA94B,EAAA84B,qBAIA94B,EAAAr/D,GAAA,KACAa,EACA,oBACS0J,IAAA,kBAAAvV,IAA8BmnG,SAAA98B,EAAA+8B,mBAEvCv7F,EAAA,OAAqBxJ,OAASC,KAAA,WAAkBA,KAAA,YAChDuJ,EAAA,OAAuBmM,YAAA,sCAEvBqyD,EAAAr/D,GAAA,KACAa,EAAA,OAAqBxJ,OAASC,KAAA,WAAkBA,KAAA,YAChDuJ,EAAA,OAAuBmM,YAAA,qBAEvBqyD,EAAAr/D,GAAA,KACAa,EAAA,OAAqBxJ,OAASC,KAAA,cAAqBA,KAAA,eACnDuJ,EAAA,OAAuBxJ,OAASpO,GAAA,kBAChC4X,EAAA,OAAyBmM,YAAA,uBACzBqyD,EAAAr/D,GAAA,KACAa,EAAA,MAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,0CAMA,IAIA49G,GAAA1T,eAAA,EC5cA,IAAAqV,GAAA,WACA,IAAAh9B,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,WAAAhiF,OAAAoI,KAAA26E,EAAA1lE,MAAApY,OACAsf,EAAA,OAAiBmM,YAAA,MAAA3V,OAA6BilG,UAAAj9B,EAAA1lE,KAAA1Q,MAC9C4X,EACA,OAEAmM,YAAA,SACApH,OACAgzF,qBAAAv5B,EAAAz7D,QAAA2H,QAAA8zD,EAAAz7D,QAAA24F,WAIAl9B,EAAAz7D,QAAA2H,QAAA8zD,EAAAz7D,QAAA24F,QAcAl9B,EAAAp/D,KAbAY,EAAA,OACAxJ,OACA49B,IAAA,GACAuN,MAAA,KACAsmB,OAAA,KACAz7D,IAAAgyE,EAAAm9B,eAAAn9B,EAAA1lE,KAAA1Q,GAAA,IACAwzG,OACAp9B,EAAAm9B,eAAAn9B,EAAA1lE,KAAA1Q,GAAA,IACA,QACAo2E,EAAAm9B,eAAAn9B,EAAA1lE,KAAA1Q,GAAA,KACA,WAMAo2E,EAAAr/D,GAAA,KACAa,EAAA,OAAmBmM,YAAA,SAAsBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA1lE,KAAA1Q,OACzCo2E,EAAAr/D,GAAA,KACAa,EAAA,OAAmBmM,YAAA,eACnBqyD,EAAAr/D,GACAq/D,EAAA9/D,GACA8/D,EAAAviF,EACA,WACA,qEAMA+jB,EACA,OAEAmM,YAAA,MACApH,OAAkB84B,SAAA2gC,EAAAz7D,QAAA2H,QAAA8zD,EAAAz7D,QAAA24F,SAClBllG,OAAkBilG,UAAAj9B,EAAA1lE,KAAA1Q,MAGlB4X,EACA,OAEAmM,YAAA,SACApH,OACAgzF,qBAAAv5B,EAAAz7D,QAAA2H,QAAA8zD,EAAAz7D,QAAA24F,WAIAl9B,EAAAz7D,QAAA2H,QAAA8zD,EAAAz7D,QAAA24F,QAcAl9B,EAAAp/D,KAbAY,EAAA,OACAxJ,OACA49B,IAAA,GACAuN,MAAA,KACAsmB,OAAA,KACAz7D,IAAAgyE,EAAAm9B,eAAAn9B,EAAA1lE,KAAA1Q,GAAA,IACAwzG,OACAp9B,EAAAm9B,eAAAn9B,EAAA1lE,KAAA1Q,GAAA,IACA,QACAo2E,EAAAm9B,eAAAn9B,EAAA1lE,KAAA1Q,GAAA,KACA,WAMAo2E,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,SAAsBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA1lE,KAAA1Q,OAC3Co2E,EAAAr/D,GAAA,KACAa,EACA,QAEAmM,YAAA,cACApH,OAAsBgzF,qBAAAv5B,EAAAz7D,QAAAm/E,aACtB/tF,IACAkmG,OAAA,SAAA38F,GAEA,OADAA,EAAAqnC,iBACAy5B,EAAAq9B,kBAAAn+F,OAKAsC,EAAA,SACA0J,IAAA,cACAlT,OACApO,GAAA,cAAAo2E,EAAA1lE,KAAA1Q,GAAAo2E,EAAAs9B,KACAz+G,KAAA,OACAwgD,SAAA2gC,EAAAz7D,QAAAm/E,aAAA1jB,EAAAz7D,QAAAypB,IACA4Y,aAAA,eACAq1D,YAAA,MACAD,eAAA,MACAuB,WAAA,SAEAt+F,UAA2BzhB,MAAAwiF,EAAA1lE,KAAAkjG,eAE3Bx9B,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,eACA3V,OAAwBnZ,KAAA,SAAArB,MAAA,QAIxBwiF,EAAAr/D,GAAA,KACAq/D,EAAA27B,SAAA8B,kBACAj8F,EACA,QAEAmM,YAAA,WACApH,OAA0BgzF,qBAAAv5B,EAAAz7D,QAAAi5C,UAC1B7nD,IACAkmG,OAAA,SAAA38F,GAEA,OADAA,EAAAqnC,iBACAy5B,EAAA09B,eAAAx+F,OAKAsC,EAAA,SACA0J,IAAA,WACAlT,OACApO,GAAA,WAAAo2E,EAAA1lE,KAAA1Q,GAAAo2E,EAAAs9B,KACAz+G,KAAA,WACAs+C,SAAA,GACAkC,SAAA2gC,EAAAz7D,QAAAi5C,UAAAwiB,EAAAz7D,QAAAypB,IACAmuE,UAAAn8B,EAAAo8B,kBACA5+G,MAAA,GACAuoC,YAAAi6C,EAAAviF,EAAA,2BACAmpD,aAAA,eACAq1D,YAAA,MACAD,eAAA,MACAuB,WAAA,WAGAv9B,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,eACA3V,OAA4BnZ,KAAA,SAAArB,MAAA,QAI5BgkB,EAAA,OACAw+D,EAAAr/D,GAAA,KACAa,EACA,QAEAmM,YAAA,cACApH,OAAsBgzF,qBAAAv5B,EAAAz7D,QAAA23F,aACtBvmG,IACAkmG,OAAA,SAAA38F,GAEA,OADAA,EAAAqnC,iBACAy5B,EAAA29B,YAAAz+F,OAKAsC,EAAA,SACA0J,IAAA,cACAlT,OACApO,GAAA,cAAAo2E,EAAA1lE,KAAA1Q,GAAAo2E,EAAAs9B,KACAz+G,KAAA,QACAwgD,SAAA2gC,EAAAz7D,QAAA23F,aAAAl8B,EAAAz7D,QAAAypB,IACA4Y,aAAA,eACAq1D,YAAA,MACAD,eAAA,MACAuB,WAAA,SAEAt+F,UAA2BzhB,MAAAwiF,EAAA1lE,KAAAsjG,SAE3B59B,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,eACA3V,OAAwBnZ,KAAA,SAAArB,MAAA,QAIxBwiF,EAAAr/D,GAAA,KACAa,EACA,OAEAmM,YAAA,SACApH,OAAsBgzF,qBAAAv5B,EAAAz7D,QAAA8pF,UAGtB7sF,EACA,eAEAmM,YAAA,kBACA3V,OACAxa,MAAAwiF,EAAA69B,WACArtG,QAAAwvE,EAAA89B,gBACAz+D,SAAA2gC,EAAAz7D,QAAA8pF,QAAAruB,EAAAz7D,QAAAypB,IACA8pE,kBAAA,SACA/xE,YAAAi6C,EAAAviF,EAAA,gCACA4/C,MAAA,OACA06D,WAAA,KACA11D,MAAA,EACAtzB,UAAA,EACA8uB,SAAAmiC,EAAA27B,SAAAC,QACAj+D,eAAA,GAEAhoC,IACA/K,IAAAo1E,EAAA+9B,YACAv/D,OAAAwhC,EAAAg+B,aACA17G,OAAA09E,EAAAi+B,mBAIAz8F,EACA,QAEA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MAAAwiF,EAAAk+B,kBAAAl+B,EAAA69B,YACA9iG,WAAA,gCACA0W,WAAsC0sF,MAAA,KAGtCxwF,YAAA,qBACA3V,OAA8BC,KAAA,SAC9BA,KAAA,UAEA+nE,EAAAr/D,GAAA,IAAAq/D,EAAA9/D,GAAA8/D,EAAA69B,WAAA37G,OAAA,MAEA89E,EAAAr/D,GAAA,KACAa,EACA,QACqBxJ,OAASC,KAAA,YAAmBA,KAAA,aACjD+nE,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,gCAKA,GAEAuiF,EAAAr/D,GAAA,KACAq/D,EAAA07B,gBAAAx5G,OAAA,GAAA89E,EAAA27B,SAAAC,QACAp6F,EACA,OAEAmM,YAAA,YACApH,OAA0BgzF,qBAAAv5B,EAAAz7D,QAAA65F,aAG1B58F,EACA,eAEAmM,YAAA,kBACA3V,OACAxa,MAAAwiF,EAAAq+B,oBACA7tG,QAAAwvE,EAAA07B,gBACAr8D,SAAA2gC,EAAAz7D,QAAA65F,WAAAp+B,EAAAz7D,QAAAypB,IACAjI,YAAAi6C,EAAAviF,EAAA,oCACA4/C,MAAA,OACA06D,WAAA,KACA11D,MAAA,EACAtzB,UAAA,EACA4uB,eAAA,GAEAhoC,IACA6oC,OAAAwhC,EAAAs+B,gBACAh8G,OAAA09E,EAAAu+B,sBAIA/8F,EACA,QAEA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MAAAwiF,EAAAk+B,kBACAl+B,EAAAq+B,qBAEAtjG,WACA,yCACA0W,WAA0C0sF,MAAA,KAG1CxwF,YAAA,qBACA3V,OAAkCC,KAAA,SAClCA,KAAA,UAGA+nE,EAAAr/D,GACA,IAAAq/D,EAAA9/D,GAAA8/D,EAAAq+B,oBAAAn8G,OAAA,MAIA89E,EAAAr/D,GAAA,KACAa,EACA,QACyBxJ,OAASC,KAAA,YAAmBA,KAAA,aACrD+nE,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,gCAKA,GAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EACA,OAEAmM,YAAA,QACApH,OAAsBgzF,qBAAAv5B,EAAAz7D,QAAAi4F,SAGtBh7F,EAAA,eACAmM,YAAA,kBACA3V,OACAxa,MAAAwiF,EAAAw+B,UACAhuG,QAAAwvE,EAAA63B,aACAx4D,SAAA2gC,EAAAz7D,QAAAi4F,OAAAx8B,EAAAz7D,QAAAypB,IACA8pE,kBAAA,SACA/xE,YAAAi6C,EAAAviF,EAAA,gCACA4/C,MAAA,QACA06D,WAAA,KACAt6D,YAAA,EACAI,UAAA,GAEAloC,IAAqB/K,IAAAo1E,EAAAg4B,cAAAnxD,MAAAm5B,EAAAy+B,gBAErBz+B,EAAAr/D,GAAA,KACAa,EAAA,YACAmM,YAAA,sBACApH,OAAwB9c,KAAAu2E,EAAA0+B,UAAA,IACxB1mG,OAAwBlJ,IAAA,OACxBmQ,UAA2BzhB,MAAAwiF,EAAA0+B,cAG3B,GAEA1+B,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAV,cACA12F,EACA,OAEAmM,YAAA,YACApH,OAA0BgzF,qBAAAv5B,EAAAz7D,QAAAk4F,aAG1Bj7F,EAAA,eACAmM,YAAA,kBACA3V,OACAxa,MAAAwiF,EAAA2+B,aACAnuG,QAAAwvE,EAAAy8B,UACAp9D,SAAA2gC,EAAAz7D,QAAAk4F,WAAAz8B,EAAAz7D,QAAAypB,IACAjI,YAAAi6C,EAAAviF,EAAA,8BACA4/C,MAAA,OACA06D,WAAA,OACAt6D,YAAA,EACAi/D,eAAA,YACAC,cAAA,SAEAhnG,IAAyBkxC,MAAAm5B,EAAA4+B,oBAGzB,GAEA5+B,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAF,gBACAl3F,EAAA,OAAyBmM,YAAA,oBACzBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA1lE,KAAAukG,oBAEA7+B,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAH,gBACAj3F,EAAA,OAAyBmM,YAAA,gBACzBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA1lE,KAAAylB,YAEAigD,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA44B,WAAAJ,cACAh3F,EACA,OAEA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MACAwiF,EAAA1lE,KAAAwkG,UAAA,EACA9+B,EAAA++B,GAAAC,KAAAC,WAAAj/B,EAAA1lE,KAAAwkG,WACA,GACA/jG,WACA,6DACA0W,WAAkC0sF,MAAA,KAGlCxwF,YAAA,cAGAqyD,EAAAr/D,GACA,SACAq/D,EAAA9/D,GACA8/D,EAAA1lE,KAAAwkG,UAAA,EACA9+B,EAAA++B,GAAAC,KAAAE,qBAAAl/B,EAAA1lE,KAAAwkG,WACA9+B,EAAAviF,EAAA,qBAEA,UAIAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EAAA,OAAqBmM,YAAA,gBACrBqyD,EAAA++B,GAAAI,cAAAn/B,EAAA1lE,KAAA1Q,IACA,UAAAo2E,EAAA1lE,KAAA1Q,IACAo2E,EAAAz7D,QAAAypB,IAyBAgyC,EAAAp/D,KAxBAY,EAAA,OAA2BmM,YAAA,sBAC3BnM,EAAA,OACA3Q,aAEA/T,KAAA,gBACA60B,QAAA,kBACAn0B,MAAAwiF,EAAAg6B,SACAj/F,WAAA,aAGA4S,YAAA,YACAhY,IAAyBsxC,MAAA+4B,EAAAo/B,cAEzBp/B,EAAAr/D,GAAA,KACAa,EACA,OAEAmM,YAAA,cACApH,OAA8B2iB,KAAA82C,EAAAk6B,cAE9B14F,EAAA,gBAAyCxJ,OAAS2/F,KAAA33B,EAAAq/B,gBAClD,KAIAr/B,EAAAr/D,GAAA,KACAa,EACA,OAEAmM,YAAA,WACArH,OAAwBg5F,QAAA,KAAAt/B,EAAAu/B,gBAAA,OAGxB/9F,EAAA,OAA2BmM,YAAA,mBAC3BqyD,EAAAr/D,GAAA,WAAAq/D,EAAA9/D,GAAA8/D,EAAAu/B,iBAAA,iBAQAvC,GAAArV,eAAA,gPCnVAsT,EAAA,EAAA7yF,IAAAo3F,GAAA,GAEA,IC9HAC,GAAAtY,GD+HArqG,KAAA,UACAmT,OAAA,wGACAqX,YACAuzF,eACA6E,YAAAC,GAAAh8G,GAEAkN,YACAkqG,aAAAC,GAAAr3G,GAEAkoB,QAVA,aAeAhhB,KAfA,WAgBA,OACAyyG,KAAAvxF,SAAA,IAAA1qB,KAAA+6C,UACA89D,YAAA,EACAqF,gBAAA,GACAh7F,SACAypB,KAAA,EACA01D,aAAA,EACAlmC,UAAA,EACA0+C,aAAA,EACA7N,QAAA,EACA+P,WAAA,EACA5B,OAAA,EACAtwF,QAAA,EACAgxF,SAAA,EACAT,WAAA,KAIArsG,UAEAivG,YAFA,WAGA,IAAAtF,IACAb,KAAA,cACAnuG,KAAAtN,EAAA,0BACA07G,OAAAzzG,KAAAk6G,aAEA1G,KAAAxzG,KAAA4U,KAAA4zD,QAAA,wBACAnjE,KAAArF,KAAA4U,KAAA4zD,QAAAzwE,EAAA,2BAAAA,EAAA,0BACA07G,OAAAzzG,KAAAm6G,oBASA,OAPA,OAAAn6G,KAAA4U,KAAAsjG,OAAA,KAAAl4G,KAAA4U,KAAAsjG,OACA7D,EAAA/vG,MACAkvG,KAAA,YACAnuG,KAAAtN,EAAA,mCACA07G,OAAAzzG,KAAAo6G,kBAGA/F,EAAAlqG,OAAAnK,KAAAozG,kBAIA+E,WAvBA,WAuBA,IAAAzoC,EAAA1vE,KACAm4G,EAAAn4G,KAAA2oG,OAAAjxF,OAAA,SAAAmwF,GAAA,OAAAn4B,EAAA96D,KAAA+zF,OAAAz/C,SAAA2+C,EAAA3jG,MACA,OAAAi0G,GAEAQ,oBA3BA,WA2BA,IAAAlmC,EAAAzyE,KACA24G,EAAA34G,KAAAg2G,gBAAAt+F,OAAA,SAAAmwF,GAAA,OAAAp1B,EAAA79D,KAAAylG,SAAAnxD,SAAA2+C,EAAA3jG,MACA,OAAAy0G,GAEAP,gBA/BA,WA+BA,IAAA9kC,EAAAtzE,KACA,OAAAA,KAAA2oG,OAAAtsG,IAAA,SAAAwrG,GAGA,IAAAyS,EAAA/iH,OAAA8mE,UAAAwpC,GAUA,OALAyS,EAAA1gE,aACA,IAAAiuD,EAAA0S,SACAjnC,EAAA1+D,KAAA+zF,OAAAz/C,SAAA2+C,EAAA3jG,MACA,IAAA2jG,EAAA2S,WACAlnC,EAAA1+D,KAAA+zF,OAAAz/C,SAAA2+C,EAAA3jG,IACAo2G,KAKAtB,UAlDA,WAmDA,IAAAlC,EAAA92G,KAAA4U,KAAAkiG,YACAA,EAAA,EACAA,EAAAn7G,KAAA26C,IAAA,IAAA36C,KAAAovD,MAAA/qD,KAAA4U,KAAAkiG,MAAA2D,KAAA3D,EAAA,MAIAA,EAAA,SAFA92G,KAAA4U,KAAAkiG,MAAA2D,MAAA,GAAA9+G,KAAAq+D,IAAA,OAEA,IAEA,OAAA/9D,MAAA66G,GAAA,EAAAA,GAGAgC,UA9DA,WA+DA,GAAA94G,KAAA4U,KAAAkiG,aAAA,GAEA,IAAA4D,EAAArB,GAAAC,KAAAqB,cAAA36G,KAAA4U,KAAAkiG,aACAgC,EAAA94G,KAAAmyG,aAAAn4D,KAAA,SAAA88D,GAAA,OAAAA,EAAA5yG,KAAAw2G,IACA,OAAA5B,IAAA50G,GAAAw2G,EAAA/iE,MAAA+iE,GACA,kBAAA16G,KAAA4U,KAAAkiG,YAEA92G,KAAAmyG,aAAA,GAEAnyG,KAAAmyG,aAAA,IAIAuE,kBA5EA,WA6EA,OAAA12G,KAAAoiG,OAAAwY,QAAAC,4BAIA5B,aAjFA,WAiFA,IAAArlC,EAAA5zE,KAEA86G,EADA96G,KAAA+2G,UAAA,GAAAA,UAAA5sG,OAAAnK,KAAA+2G,UAAA,GAAAA,WACA/8D,KAAA,SAAA+gE,GAAA,OAAAA,EAAA/sE,OAAA4lC,EAAAh/D,KAAAsiG,WACA,2BAAA4D,EAAA,YAAAnqC,GAAAmqC,KAAA,KAAA96G,KAAA4U,KAAAsiG,UAEAlpE,KAAAhuC,KAAA4U,KAAAsiG,SACA9/G,KAAA4I,KAAA4U,KAAAsiG,UAEA,KAAAl3G,KAAA4U,KAAAsiG,UAGA4D,IAGAtwG,SAEAkvG,WAFA,WAGA15G,KAAAw0G,YAAAx0G,KAAAw0G,YAEAF,SALA,WAMAt0G,KAAAw0G,YAAA,GAUAiD,eAhBA,SAgBA7iG,GAAA,IAAA0rE,EAAApiF,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,MACA,OAAAm7G,GAAA2B,YACA,qCAEApmG,OACA0rE,OACAl5D,QAAA6zF,cAAAC,OAAA9zF,WAWAoxF,kBAjCA,SAiCA7P,GAEA,OADAA,EAAAtsG,IAAA,SAAAwrG,GAAA,OAAAA,EAAAzwG,OACAyG,MAAA,GAAAquB,KAAA,OAGAguF,WAtCA,WAsCA,IAAAlmC,EAAAh0E,KACAA,KAAA6e,QAAA2H,QAAA,EACAxmB,KAAA6e,QAAAypB,KAAA,EACA,IAAA6yE,EAAAn7G,KAAA4U,KAAA1Q,GACA,OAAAlE,KAAAoiG,OAAAgZ,SAAA,aAAAD,GACAtsG,KAAA,WACAmlE,EAAAn1D,QAAA2H,QAAA,EACAwtD,EAAAn1D,QAAAypB,KAAA,KAIA6xE,kBAjDA,WAiDA,IAAAhmC,EAAAn0E,KACAA,KAAA6e,QAAA2H,QAAA,EACAxmB,KAAA6e,QAAAypB,KAAA,EACA,IAAA6yE,EAAAn7G,KAAA4U,KAAA1Q,GACAskE,GAAAxoE,KAAA4U,KAAA4zD,QACA,OAAAxoE,KAAAoiG,OAAAgZ,SAAA,qBAAAD,SAAA3yC,YACA35D,KAAA,WACAslE,EAAAt1D,QAAA2H,QAAA,EACA2tD,EAAAt1D,QAAAypB,KAAA,KAUAqvE,kBAnEA,WAmEA,IAAAhjC,EAAA30E,KACAg+F,EAAAh+F,KAAA0jB,MAAAs6E,YAAAlmG,MACAkI,KAAA6e,QAAAm/E,aAAA,EACAh+F,KAAAoiG,OAAAgZ,SAAA,eACAD,OAAAn7G,KAAA4U,KAAA1Q,GACA9L,IAAA,cACAN,MAAAkmG,IACAnvF,KAAA,WACA8lE,EAAA91D,QAAAm/E,aAAA,EACArpB,EAAAjxD,MAAAs6E,YAAAlmG,MAAAkmG,KAUAga,eAtFA,WAsFA,IAAAjjC,EAAA/0E,KACA83D,EAAA93D,KAAA0jB,MAAAo0C,SAAAhgE,MACAkI,KAAA6e,QAAAi5C,UAAA,EACA93D,KAAAoiG,OAAAgZ,SAAA,eACAD,OAAAn7G,KAAA4U,KAAA1Q,GACA9L,IAAA,WACAN,MAAAggE,IACAjpD,KAAA,WACAkmE,EAAAl2D,QAAAi5C,UAAA,EACAid,EAAArxD,MAAAo0C,SAAAhgE,MAAA,MAUAmgH,YAzGA,WAyGA,IAAAhjC,EAAAj1E,KACAw2G,EAAAx2G,KAAA0jB,MAAA8yF,YAAA1+G,MACAkI,KAAA6e,QAAA23F,aAAA,EACAx2G,KAAAoiG,OAAAgZ,SAAA,eACAD,OAAAn7G,KAAA4U,KAAA1Q,GACA9L,IAAA,QACAN,MAAA0+G,IACA3nG,KAAA,WACAomE,EAAAp2D,QAAA23F,aAAA,EACAvhC,EAAAvxD,MAAA8yF,YAAA1+G,MAAA0+G,KAUA6B,YA5HA,SA4HAgD,GAAA,IAAAC,EAAAt7G,KAWA,OAVAA,KAAA6e,SAAA8pF,QAAA,EAAA+P,WAAA,GACA14G,KAAAoiG,OAAAgZ,SAAA,WAAAC,GACAxsG,KAAA,WACAysG,EAAAz8F,SAAA8pF,QAAA,EAAA+P,WAAA,GACA,IAAAyC,EAAAG,EAAA1mG,KAAA1Q,GACAo3G,EAAAlZ,OAAAgZ,SAAA,gBAAAD,SAAAE,UAEApoC,MAAA,WACAqoC,EAAAz8F,SAAA8pF,QAAA,EAAA+P,WAAA,KAEA14G,KAAAoiG,OAAAwY,QAAAW,UAAAv7G,KAAA2oG,OAAAnsG,SASA87G,aAhJA,SAgJAzQ,GAAA,IAAA2T,EAAAx7G,KACA,QAAA6nG,EAAA0S,OACA,SAEAv6G,KAAA6e,QAAA8pF,QAAA,EACA,IAAAwS,EAAAn7G,KAAA4U,KAAA1Q,GACAm3G,EAAAxT,EAAA3jG,GACA,OAAAlE,KAAAoiG,OAAAgZ,SAAA,gBAAAD,SAAAE,QACAxsG,KAAA,kBAAA2sG,EAAA38F,QAAA8pF,QAAA,KASA4P,gBAjKA,SAiKA1Q,GAAA,IAAA4T,EAAAz7G,KACA,QAAA6nG,EAAA2S,UACA,SAEAx6G,KAAA6e,QAAA8pF,QAAA,EACA,IAAAwS,EAAAn7G,KAAA4U,KAAA1Q,GACAm3G,EAAAxT,EAAA3jG,GACA,OAAAlE,KAAAoiG,OAAAgZ,SAAA,mBAAAD,SAAAE,QACAxsG,KAAA,WACA4sG,EAAA58F,QAAA8pF,QAAA,EAEA8S,EAAA9Y,OAAAryF,OAAA6iG,gBAAAkI,GACAI,EAAArZ,OAAAzhC,OAAA,aAAAw6C,KAGAloC,MAAA,WACAwoC,EAAA58F,QAAA8pF,QAAA,KAUAiQ,gBA3LA,SA2LA/Q,GAAA,IAAA6T,EAAA17G,KACAA,KAAA6e,QAAA65F,WAAA,EACA,IAAAyC,EAAAn7G,KAAA4U,KAAA1Q,GACAm3G,EAAAxT,EAAA3jG,GACA,OAAAlE,KAAAoiG,OAAAgZ,SAAA,mBAAAD,SAAAE,QACAxsG,KAAA,kBAAA6sG,EAAA78F,QAAA65F,WAAA,KASAG,mBAzMA,SAyMAhR,GAAA,IAAA8T,EAAA37G,KACAA,KAAA6e,QAAA65F,WAAA,EACA,IAAAyC,EAAAn7G,KAAA4U,KAAA1Q,GACAm3G,EAAAxT,EAAA3jG,GACA,OAAAlE,KAAAoiG,OAAAgZ,SAAA,sBAAAD,SAAAE,QACAxsG,KAAA,kBAAA8sG,EAAA98F,QAAA65F,WAAA,KASAK,aAvNA,WAuNA,IAAA6C,EAAA57G,KAAA82G,EAAA54G,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,UASA,OARA8B,KAAA6e,QAAAi4F,OAAA,EAEAA,IAAA5yG,GAAA4yG,EAAA5yG,GAAA4yG,EACA92G,KAAAoiG,OAAAgZ,SAAA,eACAD,OAAAn7G,KAAA4U,KAAA1Q,GACA9L,IAAA,QACAN,MAAAg/G,IACAjoG,KAAA,kBAAA+sG,EAAA/8F,QAAAi4F,OAAA,IACAA,GASAxE,cAzOA,SAyOAwE,GAEA,IAAA+E,EAAAxC,GAAAC,KAAAwC,iBAAAhF,GACA,cAAA+E,MAAA,GAEA77G,KAAA+4G,aAAAM,GAAAC,KAAAqB,cAAAtB,GAAAC,KAAAwC,iBAAAhF,MAYAoC,gBA1PA,SA0PA6B,GAAA,IAAAgB,EAAA/7G,KAQA,OAPAA,KAAA6e,QAAAk4F,WAAA,EAEA/2G,KAAAoiG,OAAAgZ,SAAA,eACAD,OAAAn7G,KAAA4U,KAAA1Q,GACA9L,IAAA,WACAN,MAAAijH,EAAA/sE,OACAn/B,KAAA,kBAAAktG,EAAAl9F,QAAAk4F,WAAA,IACAgE,GAMAX,gBAxQA,WAwQA,IAAA4B,EAAAh8G,KACAA,KAAA6e,QAAAypB,KAAA,EACAtoC,KAAAoiG,OAAAgZ,SAAA,kBAAAp7G,KAAA4U,KAAA1Q,IACA2K,KAAA,SAAAotG,GACAA,IAEAD,EAAAnC,gBAAA9hH,EAAA,gCACAqW,WAAA,WACA4tG,EAAAnC,gBAAA,IACA,MAEAmC,EAAAn9F,QAAAypB,KAAA,OChhBAgvE,OAEA,EACA,KACA,KACA,MAuBAyC,GAAAjvG,QAAAw3F,OAAA,sCACA,IAAA4Z,GAAAnC,gCC/BAoC,GAAA1a,GCwIArqG,KAAA,WACAmT,OAAA,wDACAqX,YACAs6F,WACAlC,YAAAC,GAAAh8G,EACAm+G,gBAAAC,GAAAp+G,GAEAkH,KARA,WASA,IAAAm3G,GAAAp4G,GAAA,OAAAyzC,MAAA5/C,EAAA,yBACAm6G,GAAAhuG,GAAA,UAAAyzC,MAAA5/C,EAAA,6BACA,OACAukH,iBACApK,eACArzF,SAAA,EACAi3F,UAAA,EACAyG,YAAA,GACAlG,SACAnyG,GAAA,GACA85F,YAAA,GACAlmC,SAAA,GACA0+C,YAAA,GACA7N,UACAqN,mBACAc,MAAA5E,EACAgF,UAAAlpE,KAAA,KAAA52C,KAAAW,EAAA,mCAIAouB,QA7BA,WA8BAnmB,KAAAi2G,SAAA8B,mBACAsB,GAAAmD,aAAAC,cAAA1kH,EAAA,8EAQAw9G,EAAA,EAAA5xG,IAAA3D,KAAAq2G,QAAAa,SAAA,OAAAl3G,KAAAi2G,SAAAyG,iBAMA18G,KAAA28G,uBAAA38G,KAAA2iG,OAAAryF,OAAA6iG,eAKAnzG,KAAA48G,WAAA,IAAAC,IAAAC,OAAA98G,KAAAm3C,OAAAn3C,KAAA+8G,cAEAryG,UACAurG,SADA,WAEA,OAAAj2G,KAAAoiG,OAAAwY,QAAAoC,eAEA7F,cAJA,WAKA,gBAAAn3G,KAAAmzG,cAAA,CACA,IAAA8J,EAAAj9G,KAAAizG,MAAAv7F,OAAA,SAAA9C,GAAA,WAAAA,EAAA4zD,UAMA,OALA,IAAAy0C,EAAAzgH,QAAAwD,KAAA0jB,MAAAw5F,iBAAAl9G,KAAA0jB,MAAAw5F,gBAAA12B,aAEAxmF,KAAAklG,QAAA5gG,MAAAlN,KAAA,UACA4I,KAAA0jB,MAAAw5F,gBAAA5pG,MAAA,2BAEA2pG,EAEA,OAAAj9G,KAAAi2G,SAAAC,QAIAl2G,KAAAizG,MAAAv7F,OAAA,SAAA9C,GAAA,WAAAA,EAAA4zD,UAFAxoE,KAAAizG,MAAAv7F,OAAA,SAAA9C,GAAA,WAAAA,EAAA4zD,SAAA5zD,EAAA1Q,KAAAi5G,mBAIAxU,OApBA,WAsBA,OAAA3oG,KAAAoiG,OAAAwY,QAAAW,UACA7jG,OAAA,SAAAmwF,GAAA,mBAAAA,EAAA3jG,KACA2P,KAAA,SAAA5V,EAAAc,GAAA,OAAAd,EAAA7G,KAAAgmH,cAAAr+G,EAAA3H,SAEAu/G,aA1BA,WA4BA,OAAA32G,KAAA2oG,OAAAtsG,IAAA,SAAAwrG,GAKA,OAFAA,EAAAtwG,OAAA8mE,UAAAwpC,IACAjuD,aAAA,IAAAiuD,EAAA0S,OACA1S,KAGAmO,gBApCA,WAsCA,OAAAh2G,KAAAoiG,OAAAwY,QAAAyC,mBAEAlL,aAxCA,WA0CA,IAAAmL,EAAAt9G,KAAAi2G,SAAAqH,YAAA7uE,OAAA,SAAA8uE,EAAAnwG,GAAA,OAAAmwG,EAAApzG,QAAAjG,GAAAkJ,EAAAuqC,MAAAvqC,SAIA,OAFAkwG,EAAA12F,QAAA5mB,KAAAs8G,gBACAgB,EAAA12F,QAAA5mB,KAAAkyG,cACAoL,GAEA5G,kBAhDA,WAiDA,OAAA12G,KAAAoiG,OAAAwY,QAAAC,4BAEA2C,YAnDA,WAoDA,OAAAx9G,KAAAoiG,OAAAwY,QAAA6C,gBAEAC,WAtDA,WAuDA,OAAA19G,KAAAoiG,OAAAwY,QAAA+C,eAIA5G,UA3DA,WA4DA,OAAAv4G,OAEAm5C,MAAA5/C,EAAA,+BACAg/G,UAAA/2G,KAAAi2G,SAAAc,UAAA6G,kBAGAjmE,MAAA5/C,EAAA,4BACAg/G,UAAA/2G,KAAAi2G,SAAAc,wBAKAn0G,OAEAuwG,cAAA,SAAA33G,EAAA4U,GACApQ,KAAAoiG,OAAAzhC,OAAA,cACA3gE,KAAA0jB,MAAAw5F,gBAAA5pG,MAAA,0BACAtT,KAAA28G,uBAAAnhH,KAGAgP,SACAqrG,SADA,SACAxlG,GACArQ,KAAA81G,SAAAzlG,EAAAnW,OAAAgzG,SAAA,GASAoF,cAXA,SAWAwE,GAEA,IAAA+E,EAAAxC,GAAAC,KAAAwC,iBAAAhF,GACA,cAAA+E,MAAA,GAEA/E,EAAAuC,GAAAC,KAAAqB,cAAAtB,GAAAC,KAAAwC,iBAAAhF,IACA92G,KAAAq2G,QAAAS,OAAA5yG,GAAA4yG,EAAAn/D,MAAAm/D,IAGA92G,KAAAq2G,QAAAS,MAAA92G,KAAAmyG,aAAA,IAGAkF,gBAvBA,SAuBAwG,GACA79G,KAAAoiG,OAAAgZ,SAAA,YACAzzD,OAAA3nD,KAAAw9G,YACA7gE,MAAA38C,KAAA09G,WACA7V,MAAA,aAAA7nG,KAAAmzG,cAAAnzG,KAAAmzG,cAAA,GACAh8D,OAAAn3C,KAAAu8G,cAEA1tG,KAAA,SAAAwpD,KAAAwlD,EAAAn2B,SAAAm2B,EAAAl2B,cAIAxwC,OAlCA,SAkCApuB,GACA/oB,KAAAu8G,YAAAxzF,EACA/oB,KAAAoiG,OAAAzhC,OAAA,cACA3gE,KAAA0jB,MAAAw5F,gBAAA5pG,MAAA,2BAEAypG,YAvCA,WAwCA/8G,KAAAm3C,OAAA,KAGA2mE,UA3CA,WA6CAvmH,OAAA8mE,OAAAr+D,KAAAq2G,QAAAr2G,KAAAyM,SAAAtH,KAAAnO,KAAAgJ,MAAAq2G,SACAr2G,KAAA6e,SAAA,GAEAu3F,WAhDA,WAgDA,IAAA1mC,EAAA1vE,KACAA,KAAA6e,SAAA,EACA7e,KAAAoiG,OAAAgZ,SAAA,WACAD,OAAAn7G,KAAAq2G,QAAAnyG,GACA4zD,SAAA93D,KAAAq2G,QAAAv+C,SACAkmC,YAAAh+F,KAAAq2G,QAAArY,YACAka,MAAAl4G,KAAAq2G,QAAAG,YACA7N,OAAA3oG,KAAAq2G,QAAA1N,OAAAtsG,IAAA,SAAAwrG,GAAA,OAAAA,EAAA3jG,KACAm2G,SAAAr6G,KAAAq2G,QAAAL,gBAAA35G,IAAA,SAAAwrG,GAAA,OAAAA,EAAA3jG,KACA4yG,MAAA92G,KAAAq2G,QAAAS,MAAA5yG,GACAgzG,SAAAl3G,KAAAq2G,QAAAa,SAAAlpE,OACAn/B,KAAA,kBAAA6gE,EAAAouC,cACA7qC,MAAA,kBAAAvD,EAAA7wD,SAAA,KAEA89F,uBA9DA,SA8DA7kH,GACA,GAAAA,KAAA0E,OAAA,GAEA,IAAAuhH,EAAA/9G,KAAA2oG,OAAA3uD,KAAA,SAAA6tD,GAAA,OAAAA,EAAA3jG,KAAApM,IACA,GAAAimH,EAEA,YADA/9G,KAAAq2G,QAAA1N,QAAAoV,IAKA/9G,KAAAq2G,QAAA1N,aDjVAgN,OAEA,EACA,KACA,KACA,MAuBAwG,GAAArxG,QAAAw3F,OAAA,8BACA,IAAA0b,GAAA7B,mDEbM8B,IAAiBnqD,SAAWoqD,aADbj1F,SAASg9D,qBAAqB,QAAQ,GAAG5xD,aAAa,uBAGrE8pF,GAAW,SAAS1mD,GACzB,OAAOA,EAAIj6D,QAAQ,MAAO,KAG3B4gH,GAAe,WAkCb,OAAO,IAAIzvG,QAAQ,SAASC,EAASqQ,GAGpC,IAAIo/F,SAYAC,EAAiBlwG,WAAW,WAC/B+jD,aAAaksD,GAETp1F,SAASs1F,uBAAuB,mBAAmB/hH,OAAO,GAC7DysB,SAASs1F,uBAAuB,mBAAmB,GAAGh9D,QAEvD83D,GAAGmD,aAAaC,cAAc1kH,EAAE,WAAY,2CAC5CknB,EAAO,+BACL,KAGHo6F,GAAGmF,qBAAqBC,8BAtBF,SAAlBC,IACCrF,GAAGmF,qBAAqBG,+BAC3BN,EAAkBjwG,WAAWswG,EAAiB,MAG/CvsD,aAAaksD,GACblsD,aAAamsD,GACb1vG,KAgBD8vG,MA7DHN,GAAe,SAgEV3mD,GACH,OAAOmnD,GAAA3gH,EAAMvG,IAAIymH,GAAS1mD,GAAMwmD,IAC9BpvG,KAAK,SAACwpD,GAAD,OAAc1pD,QAAQC,QAAQypD,KACnC4a,MAAM,SAACtlE,GAAD,OAAWgB,QAAQsQ,OAAOtR,MAnEpCywG,GAAe,SAqET3mD,EAAKtyD,GACT,OAAOy5G,GAAA3gH,EAAM4gH,KAAKV,GAAS1mD,GAAMtyD,EAAM84G,IACrCpvG,KAAK,SAACwpD,GAAD,OAAc1pD,QAAQC,QAAQypD,KACnC4a,MAAM,SAACtlE,GAAD,OAAWgB,QAAQsQ,OAAOtR,MAxEpCywG,GAAe,SA+EV3mD,EAAKtyD,GACR,OAAOy5G,GAAA3gH,EAAM6gH,IAAIX,GAAS1mD,GAAMtyD,EAAM84G,IACpCpvG,KAAK,SAACwpD,GAAD,OAAc1pD,QAAQC,QAAQypD,KACnC4a,MAAM,SAACtlE,GAAD,OAAWgB,QAAQsQ,OAAOtR,MAlFpCywG,GAAe,SAoFP3mD,EAAKtyD,GACX,OAAOy5G,GAAA3gH,EAAMuoB,OAAO23F,GAAS1mD,IAAQtyD,KAAMA,EAAM2uD,QAASmqD,GAAanqD,UACrEjlD,KAAK,SAACwpD,GAAD,OAAc1pD,QAAQC,QAAQypD,KACnC4a,MAAM,SAACtlE,GAAD,OAAWgB,QAAQsQ,OAAOtR,mNCpDpC4nG,EAAA,EAAA7yF,IAAAq8F,GAAA9gH,GACAs3G,EAAA,EAAA7yF,IAAAq8F,GAAA9gH,GAEA,IC9DA+gH,GAAAvd,GD+DArqG,KAAA,QACAmT,OAAA,iBACAqX,YACA8zF,iBACAsI,YACAhE,YAAAC,GAAAh8G,GAEAikG,YARA,WASAliG,KAAAoiG,OAAAzhC,OAAA,cACAgoC,OAAA3oG,KAAAoiG,OAAAwY,QAAAoC,cAAArU,OACAsW,QAAAj/G,KAAAoiG,OAAAwY,QAAAoC,cAAAkC,WACAC,UAAAn/G,KAAAoiG,OAAAwY,QAAAoC,cAAAmC,YAEAn/G,KAAAoiG,OAAAgZ,SAAA,+BAEAn1F,QAhBA,WAmBA1uB,OAAA8mE,OAAAw+C,KACAuC,UACAC,UACAC,eAAAt/G,KAAAs/G,oBAKAn6G,KA3BA,WA4BA,OAEAm3G,gBAAAp4G,GAAA,OAAAyzC,MAAA5/C,EAAA,yBAEAwnH,eAAA,EACAnM,mBACAF,YACAF,iBAAA,EACAD,iBAAA,EACAD,eAAA,EACAiD,iBAAA,EACAvD,eAAA,KAIAhoG,SACAg1G,kBADA,WAEAx/G,KAAAkzG,WAAA6C,iBAAA/1G,KAAAkzG,WAAA6C,gBACA/1G,KAAAkzG,WAAA6C,iBACAR,EAAA,EAAAzmG,SAAA,WACAhN,OAAA29G,YAAAplE,WAIAqlE,gBATA,SASAtnH,GAEA,IAAAunH,EAAA3/G,KAAA4/G,cAAAloH,IAAAU,GAGA,OADA4H,KAAAkzG,WAAA96G,GAAA,OAAAunH,EAAA,SAAAA,EAAA3/G,KAAAkzG,WAAA96G,GACA4H,KAAAkzG,WAAA96G,IAEAynH,gBAhBA,SAgBAznH,EAAAq8D,GAGA,OAFAz0D,KAAAkzG,WAAA96G,GAAAq8D,EACAz0D,KAAA4/G,cAAAj8G,IAAAvL,EAAAq8D,GACAA,GAEAqrD,YArBA,SAqBAC,GACA,IAAA/vE,EAAAhwC,KAEAq5G,GAAA2G,QAAAC,QACAloH,EAAA,wFAAA8vG,MAAAkY,IACAhoH,EAAA,gDACA,SAAAkkH,GACAA,GACAjsE,EAAAoyD,OAAAgZ,SAAA,cAAA2E,MAYAxN,gBAzCA,WAyCA,IAAA7iC,EAAA1vE,KAAA82G,EAAA54G,UAAA1B,OAAA,QAAApC,IAAA8D,UAAA,GAAAA,UAAA,UACA8B,KAAAoiG,OAAAgZ,SAAA,gBACA/O,IAAA,QACAj0G,IAAA,gBAEAN,MAAAg/G,EAAA5yG,GAAA4yG,EAAA5yG,GAAA4yG,IACAjoG,KAAA,WACA,qBAAAioG,EAAA,YAAAoJ,GAAApJ,MACAA,GAAA5yG,GAAA4yG,EAAAn/D,MAAAm/D,IAEApnC,EAAAwiC,aAAA4E,KAUAxE,cA7DA,SA6DAwE,GAEA,IAAA+E,EAAAxC,GAAAC,KAAAwC,iBAAAhF,GACA,WAAA+E,EACA77G,KAAAuyG,gBAAA,QACA,OAAAsJ,GAEA77G,KAAAuyG,gBAAA8G,GAAAC,KAAAqB,cAAAtB,GAAAC,KAAAwC,iBAAAhF,MAaAwI,eAjFA,SAiFA9L,EAAAnuG,EAAAouG,GAMA,OALAzzG,KAAAozG,gBAAA9uG,MACAkvG,OACAnuG,OACAouG,WAEAzzG,KAAAozG,kBAGA1oG,UACAuoG,MADA,WAEA,OAAAjzG,KAAAoiG,OAAAwY,QAAAuF,UAEAthG,QAJA,WAKA,WAAAtnB,OAAAoI,KAAAK,KAAAizG,OAAAz2G,QAEAghH,YAPA,WAQA,OAAAx9G,KAAAoiG,OAAAwY,QAAA6C,gBAEAC,WAVA,WAWA,OAAA19G,KAAAoiG,OAAAwY,QAAA+C,eAIAnL,eACA96G,IAAA,kBAAAsI,KAAA0/G,gBAAA,kBACA/7G,IAAA,SAAA8wD,GACAz0D,KAAA6/G,gBAAA,gBAAAprD,KAGAq+C,eACAp7G,IAAA,kBAAAsI,KAAA0/G,gBAAA,kBACA/7G,IAAA,SAAA8wD,GACAz0D,KAAA6/G,gBAAA,gBAAAprD,KAGAs+C,iBACAr7G,IAAA,kBAAAsI,KAAA0/G,gBAAA,oBACA/7G,IAAA,SAAA8wD,GACAz0D,KAAA6/G,gBAAA,kBAAAprD,KAGAu+C,iBACAt7G,IAAA,kBAAAsI,KAAA0/G,gBAAA,oBACA/7G,IAAA,SAAA8wD,GACAz0D,KAAA6/G,gBAAA,kBAAAprD,KAIA0qD,UAxCA,WAyCA,OAAAn/G,KAAAoiG,OAAAwY,QAAAwF,cAEAnK,SA3CA,WA4CA,OAAAj2G,KAAAoiG,OAAAwY,QAAAoC,eAIA7K,aAhDA,WAkDA,IAAAmL,EAAAt9G,KAAAi2G,SAAAqH,YAAA7uE,OAAA,SAAA8uE,EAAAnwG,GAAA,OAAAmwG,EAAApzG,QAAAjG,GAAAkJ,EAAAuqC,MAAAvqC,SAGA,OADAkwG,EAAA12F,QAAA5mB,KAAAs8G,gBACAgB,GAGApL,cACAx6G,IAAA,WACA,WAAAsI,KAAAu/G,cACAv/G,KAAAu/G,cAEAlG,GAAAC,KAAAwC,iBAAA97G,KAAAi2G,SAAA/D,cAAA,GAEAhuG,GAAAlE,KAAAi2G,SAAA/D,aAAAv6D,MAAA33C,KAAAi2G,SAAA/D,cAEAlyG,KAAAs8G,gBAEA34G,IAAA,SAAAmzG,GACA92G,KAAAu/G,cAAAzI,IAMA7E,KA1EA,WA0EA,IAAAx/B,EAAAzyE,KAEA2oG,EAAA3oG,KAAAoiG,OAAAwY,QAAAW,UAqCA8E,GAjCA1X,GAHAA,EAAAnqG,MAAAc,QAAAqpG,SAGAtsG,IAAA,SAAAwrG,GACA,IAAA/qG,KAmBA,GAlBAA,EAAAoH,GAAA2jG,EAAA3jG,GAAA1G,QAAA,SACAV,EAAA1E,IAAA0E,EAAAoH,GACApH,EAAA22D,SAGA32D,EAAAgjE,QACA1oE,KAAA,QACAkZ,QAAA6iG,cAAAtL,EAAA3jG,KAIApH,EAAAuI,KAAAwiG,EAAAzwG,KAGAywG,EAAAyY,UAAAzY,EAAAluD,SAAA,IACA78C,EAAA22D,MAAA0C,QAAA0xC,EAAAyY,UAAAzY,EAAAluD,UAGA,UAAA78C,EAAAoH,IAAA,aAAApH,EAAAoH,IAAAuuE,EAAAwjC,SAAAC,QAAA,CAEA,IAAAlmE,EAAAyiC,EACA31E,EAAA22D,MAAA4gD,UACAb,KAAA,cACAnuG,KAAAtN,EAAA,2BACA07G,OAAA,WAAAzjE,EAAA8vE,YAAAjY,EAAA3jG,OAGA,OAAApH,KAIAk9C,KAAA,SAAA6tD,GAAA,eAAAA,EAAA3jG,KACAq8G,EAAA5X,EAAA3/C,UAAA,SAAA6+C,GAAA,kBAAAA,EAAA3jG,KACAs8G,EAAA7X,EAAA4X,GACAF,KAAAh7G,OACAg7G,EAAAh7G,KAAAtN,EAAA,qBACAsoH,EAAA7M,KAAA,mBAEAgN,KAAAn7G,OACAm7G,EAAAn7G,KAAAtN,EAAA,6BACAyoH,EAAAhN,KAAA,sBACA,IAAAgN,EAAA/sD,MAAA0C,SACAwyC,EAAA1rG,OAAAsjH,EAAA,IAKA,IAAAE,EAAA9X,EAAA3uD,KAAA,SAAA6tD,GAAA,mBAAAA,EAAA3jG,IAAA,UAAA2jG,EAAA3jG,KAGA,GAFAu8G,OAAA,IAAAA,QACAA,EAAAjiH,MAAAc,QAAAmhH,UACAjkH,OAAA,GACA,IAAA2sD,GACAyqD,SAAA,EACAvuG,KAAAtN,EAAA,sBAEA4wG,EAAA/hF,QAAAuiC,GAKA,IAAAu3D,GACAx8G,GAAA,WACA9L,IAAA,WACAo7G,KAAA,qBACA1zC,QAAA1oE,KAAA,SACAiO,KAAAtN,EAAA,wBASA,OANAiI,KAAAm/G,UAAA,IACAuB,EAAAjtD,OAAA0C,QAAAn2D,KAAAm/G,YAEAxW,EAAA/hF,QAAA85F,IAIAx8G,GAAA,gBACAqvG,KACArvG,GAAA,kBACAmB,KAAAtN,EAAA,uBACAy7G,KAAA,WACAC,OAAAzzG,KAAAw/G,mBAEAl2G,MAAAq/F,MCrWAqJ,OAEA,EACA,KACA,KACA,MAuBAgN,GAAAl0G,QAAAw3F,OAAA,sBACA,IAAAqe,GAAA3B,WCtCA4B,GAAA,WACA,IAAAtmC,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,OAEAmM,YAAA,eACApH,OAAcggG,mBAAAvmC,EAAAwmC,YACdxuG,OAAcpO,GAAA,aAGd4X,EAAA,kBAA4BxJ,OAAS2/F,KAAA33B,EAAA23B,QACrC33B,EAAAr/D,GAAA,KACAa,EACA,OAEAmM,YAAA,uBACApH,OAAkByyF,eAAAh5B,EAAAymC,aAClBzuG,OAAkBpO,GAAA,iBAGlB4X,EAAA,YACAxJ,OACA0uG,SAAA1mC,EAAA0mC,SACA3U,IAAA/xB,EAAAwmC,WACA3pE,OAAAmjC,EAAAiiC,gBAIA,GAEAjiC,EAAAr/D,GAAA,KACAq/D,EAAAp2E,IAAAo2E,EAAAwmC,WACAhlG,EACA,OACaxJ,OAASpO,GAAA,iBAEtB4X,EAAA,eACAxJ,OAAwB0uG,SAAA1mC,EAAA0mC,SAAA3U,IAAA/xB,EAAAwmC,eAGxB,GAEAxmC,EAAAp/D,MAEA,IAIA0lG,GAAA3e,eAAA,EClDA,IAAAgf,GAAA,WACA,IAAA3mC,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EAAA,OAAoBxJ,OAASpO,GAAA,uBAC7B4X,EACA,OAEAmM,YAAA,YACApH,OACAykE,UAAAhL,EAAA4mC,eAAA5mC,EAAA6mC,YACAvrE,MAAA0kC,EAAA8mC,iBAEA9uG,OAAgBpO,GAAA,eAGhBo2E,EAAA6mC,aAEArlG,EACA,oBAEAmM,YAAA,sBACA3V,OAA0Blb,KAAA,WAAA8N,IAAA,QAE1Bo1E,EAAA7/D,GAAA6/D,EAAA82B,KAAA,SAAA/E,GACA,OAAAvwF,EAAA,YACA1jB,IAAAi0G,EAAAnoG,GACAoO,OAA4B+5F,MAAA2U,SAAA1mC,EAAA0mC,gBAK5B1mC,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA7/D,GAAA6/D,EAAA+mC,QAAA,SAAAC,GACA,OAAAhnC,EAAA4mC,eAAA5mC,EAAAinC,WAAAD,EAAAp9G,IAAA1H,OAAA,GAEAsf,EACA,oBAEAmM,YAAA,sBACA3V,OAA4Blb,KAAA,WAAA8N,IAAA,SAG5B4W,EAAA,OAA+B1jB,IAAAkpH,EAAAp9G,GAAA+jB,YAAA,gBAC/BnM,EAAA,OAAiCmM,YAAA,cACjCqyD,EAAAr/D,GAAA,KACAa,EAAA,MACAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8mG,EAAAlqH,MAAA,KACA0kB,EAAA,SACAxJ,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAknC,iBAAAF,EAAAp9G,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACA8gE,EAAAmnC,aAAAH,EAAAp9G,UAKAo2E,EAAAr/D,GAAA,KACAa,EAAA,OAAiCmM,YAAA,gBACjCqyD,EAAAr/D,GAAA,KACAa,EAAA,OAAiCmM,YAAA,cACjCqyD,EAAAr/D,GAAA,KACAa,EAAA,OAAiCmM,YAAA,eACjCqyD,EAAAr/D,GAAA,KACAa,EAAA,OAAiCmM,YAAA,YAAyBqyD,EAAAr/D,GAAA,SAE1Dq/D,EAAAr/D,GAAA,KACAq/D,EAAA7/D,GAAA6/D,EAAAinC,WAAAD,EAAAp9G,IAAA,SAAAmoG,GACA,OAAAvwF,EAAA,YACA1jB,IAAAkpH,EAAAp9G,GAAAmoG,EAAAnoG,GACAoO,OAAgC+5F,MAAA2U,SAAA1mC,EAAA0mC,eAIhC,IAGA1mC,EAAAp/D,OAEAo/D,EAAAr/D,GAAA,KACAq/D,EAAA8mC,gBACA9mC,EAAA7/D,GAAA6/D,EAAA82B,KAAA,SAAA/E,GACA,OAAAvwF,EAAA,YACA1jB,IAAAi0G,EAAAnoG,GACAoO,OAAwB+5F,MAAA2U,SAAA1mC,EAAA0mC,SAAAU,aAAA,OAGxBpnC,EAAAp/D,MAEA,GAEAo/D,EAAAr/D,GAAA,KACAa,EACA,OACOmM,YAAA,sBAAA3V,OAA6CpO,GAAA,sBAEpD4X,EACA,OACWmM,YAAA,wBAEX,KAAAqyD,EAAAnjC,QAAAmjC,EAAAqnC,WAAAnlH,OAAA,GAEAsf,EAAA,OAA6BmM,YAAA,YAC7BnM,EAAA,OACAw+D,EAAAr/D,GAAA,KACAa,EAAA,MAA8BxJ,OAASsvG,QAAA,OACvC9lG,EAAA,MACAw+D,EAAAr/D,GACAq/D,EAAA9/D,GACA8/D,EAAAviF,EAAA,oDAMAuiF,EAAAr/D,GAAA,KACAq/D,EAAA7/D,GAAA6/D,EAAAqnC,WAAA,SAAAtV,GACA,OAAAvwF,EAAA,YACA1jB,IAAAi0G,EAAAnoG,GACAoO,OACA+5F,MACA2U,SAAA1mC,EAAA0mC,SACAU,aAAA,QAKApnC,EAAAp/D,MAEA,KAIAo/D,EAAAr/D,GAAA,KACAq/D,EAAAz7D,SAAA,IAAAy7D,EAAAqnC,WAAAnlH,QAAA,IAAA89E,EAAA82B,KAAA50G,OAoBA89E,EAAAp/D,KAnBAY,EACA,OAEAmM,YAAA,mCACA3V,OAAoBpO,GAAA,qBAGpB4X,EAAA,OACAmM,YAAA,qBACA3V,OAAsBpO,GAAA,yBAEtBo2E,EAAAr/D,GAAA,KACAa,EAAA,MACAw+D,EAAAr/D,GACAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,mDAMAuiF,EAAAr/D,GAAA,KACAa,EAAA,OAAexJ,OAASpO,GAAA,sBAIxB+8G,GAAAhf,eAAA,ECpKA,IAAA4f,GAAA,WACA,IAAAvnC,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,OAEAmM,YAAA,UACApH,OAAcmI,SAAAsxD,EAAArhC,YACdhpC,IAAWsxC,MAAA+4B,EAAAwnC,kBAGXhmG,EACA,OAEAmM,YAAA,2BACAhY,IAAesxC,MAAA+4B,EAAAwnC,kBAGfxnC,EAAAynC,WAAAznC,EAAA+xB,IAAA2V,UACA1nC,EAAAynC,WAAAznC,EAAA+xB,IAAA4V,WACAnmG,EAAA,OAAyBmM,YAAA,uBACzBqyD,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAynC,UAAAznC,EAAA+xB,IAAA2V,QACAlmG,EACA,OACiBxJ,OAASmrC,MAAA,KAAAsmB,OAAA,KAAAm+C,QAAA,eAE1BpmG,EAAA,QACAA,EACA,UACuBxJ,OAASpO,GAAAo2E,EAAA6nC,YAEhCrmG,EAAA,iBACAxJ,OACA8vG,GAAA,gBACAjpH,KAAA,SACA6iD,OAAA,iDAIA,KAGAs+B,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,WACA3V,OACAykC,EAAA,IACAP,EAAA,IACAiH,MAAA,KACAsmB,OAAA,KACAs+C,oBAAA,gBACA3qG,OAAA4iE,EAAAgoC,UACAC,aAAAjoC,EAAA+xB,IAAA2V,aAKA1nC,EAAAp/D,KACAo/D,EAAAr/D,GAAA,MACAq/D,EAAAynC,UAAAznC,EAAA+xB,IAAA4V,WACAnmG,EAAA,OAAyBxJ,OAAShK,IAAAgyE,EAAA+xB,IAAA4V,WAAAxkE,MAAA,UAClC68B,EAAAp/D,OAGAo/D,EAAAr/D,GAAA,KACAa,EACA,OACSmM,YAAA,WAAAhY,IAA+BsxC,MAAA+4B,EAAAwnC,kBACxCxnC,EAAAr/D,GAAA,SAAAq/D,EAAA9/D,GAAA8/D,EAAA+xB,IAAAj1G,MAAA,UAEAkjF,EAAAr/D,GAAA,KACAq/D,EAAAynC,SAIAznC,EAAAp/D,KAHAY,EAAA,OAAqBmM,YAAA,gBACrBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA+xB,IAAAmW,YAGAloC,EAAAr/D,GAAA,KACAq/D,EAAAynC,SACAjmG,EAAA,OAAqBmM,YAAA,gBACrBqyD,EAAA+xB,IAAAjlF,QACAtL,EAAA,QAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA+xB,IAAAjlF,YACAkzD,EAAA+xB,IAAAoW,aAAAC,SAAA,GAAAt7F,QACAtL,EAAA,QACAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA+xB,IAAAoW,aAAAC,SAAA,GAAAt7F,YAEAkzD,EAAAp/D,OAEAo/D,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EACA,OACSmM,YAAA,cAET,MAAAqyD,EAAA+xB,IAAAsW,MACA7mG,EACA,QAEA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MAAAwiF,EAAAviF,EACA,WACA,+HAEAsd,WACA,+IACA0W,WAAkC0sF,MAAA,KAGlCxwF,YAAA,4BAEAqyD,EAAAr/D,GAAA,WAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,2BAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAynC,SAEAznC,EAAAp/D,KADAY,EAAA,aAA+BxJ,OAASswG,MAAAtoC,EAAA+xB,IAAAuW,UAGxC,GAEAtoC,EAAAr/D,GAAA,KACAa,EAAA,OAAiBmM,YAAA,YACjBqyD,EAAA+xB,IAAA1+F,MACAmO,EAAA,OAAuBmM,YAAA,YACvBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAA+xB,IAAA1+F,UAEA2sE,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,IACA4X,EAAA,OAAuBmM,YAAA,4BACvBqyD,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA1nG,OACAmX,EAAA,SACAmM,YAAA,SACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAviF,EAAA,iCACA4M,OAAA21E,EAAA+xB,IAAA1nG,SAEAg1C,SAAA2gC,EAAAuoC,YAAAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACAA,EAAAsnC,kBACAw5B,EAAA31E,OAAA21E,EAAA+xB,IAAAnoG,QAIAo2E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAyW,aACAhnG,EAAA,SACAmM,YAAA,YACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAviF,EAAA,qBACA4hD,SAAA2gC,EAAAuoC,YAAAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACAA,EAAAsnC,kBACAw5B,EAAA19E,OAAA09E,EAAA+xB,IAAAnoG,QAIAo2E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAt3F,OACA+G,EAAA,SACAmM,YAAA,SACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAviF,EAAA,sBACA4hD,SAAA2gC,EAAAuoC,YAAAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACAA,EAAAsnC,kBACAw5B,EAAAk9B,QAAAl9B,EAAA+xB,IAAAnoG,QAIAo2E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAt3F,OA2BAulE,EAAAp/D,KA1BAY,EAAA,SACA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MAAAwiF,EAAAyoC,oBACA1tG,WAAA,sBACA0W,WAA8B0sF,MAAA,KAG9BxwF,YAAA,SACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAA0oC,iBACArpE,UACA2gC,EAAA+xB,IAAA4W,YACA3oC,EAAAuoC,YACAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACAA,EAAAsnC,kBACAw5B,EAAA4oC,OAAA5oC,EAAA+xB,IAAAnoG,aAUA29G,GAAA5f,eAAA,EC/NA,IAAAkhB,GAAA,WACA,IACA5pC,EADAv5E,KACAyY,eAEA,OAHAzY,KAEAwjB,MAAA1H,IAAAy9D,GACA,OACAtxD,YAAA,kBACA3V,OAAYhK,IALZtI,KAKYojH,eAIZD,GAAAlhB,eAAA,ECgBA,ICnBAohB,GAAA5hB,GDoBArqG,KAAA,WACAmT,OAAA,SACAG,UACA04G,WADA,WAEA,IACAE,EAAA,WADA3nH,KAAAovD,MAAA,GAAA/qD,KAAA4iH,OACA,OACA,OAAAvJ,GAAAkK,UAAA,OAAAD,MCxBAH,OAEA,EACA,KACA,KACA,MAuBAE,GAAAv4G,QAAAw3F,OAAA,sCACA,IAAAkhB,GAAAH,WC/BAI,GAAAhiB,GCiBAt7E,QADA,WAEAnmB,KAAAqsG,IAAA1D,OAAAnsG,OAAA,IACAwD,KAAA0jH,sBAAA,IAGAh5G,UACAi5G,UADA,WAEA,OAAA3jH,KAAAqsG,IAAA1D,OAAAtsG,IAAA,SAAAwrG,GAAA,OAAA3jG,GAAA2jG,EAAAzwG,KAAAywG,MAEAhpF,QAJA,WAKA,IAAAmxB,EAAAhwC,KACA,gBAAAkE,GACA,OAAA8rC,EAAAoyD,OAAAwY,QAAA/7F,QAAA3a,KAGA2+G,WAVA,WAWA,OAAA7iH,KAAAoiG,OAAAwY,QAAA/7F,QAAA,YAEAmkG,iBAbA,WAcA,OAAAhjH,KAAAqsG,IAAAuX,cACA7rH,EAAA,kCAEAA,EAAA,sBAEAgrH,oBAnBA,WAoBA,QAAA/iH,KAAAqsG,IAAAuX,eACA7rH,EAAA,8DAKAyS,SACAq5G,eADA,SACA96F,GACA,OAAA/oB,KAAAoiG,OAAAgZ,SAAA,aAAAjkE,OAAApuB,EAAA4zB,MAAA,EAAAgL,OAAA,KAEAm8D,kBAJA,SAIAzX,GACA,SAAArsG,KAAAqsG,IAAA1D,OAAAnsG,SAAAwD,KAAA0jH,uBAKAK,cAAA,WACA/jH,KAAA0jH,sBACA1jH,KAAAoiG,OAAAgZ,SAAA,aAAA4I,MAAAhkH,KAAAqsG,IAAAnoG,GAAAykG,aAGAsb,iBAfA,SAeA5X,GACA,QAAAA,EAAA6X,OAAA7X,EAAA6X,MAAAh7D,SAAA,eACAmjD,EAAA6X,MAAAh7D,SAAA,aACAmjD,EAAA6X,MAAAh7D,SAAA,mBACAmjD,EAAA6X,MAAAh7D,SAAA,YACAmjD,EAAA6X,MAAAh7D,SAAA,+BAKAi7D,mBAzBA,SAyBAtc,GACA,IAAAc,EAAA3oG,KAAAqsG,IAAA1D,OAAAx+F,mBAAA09F,EAAA3jG,KACAlE,KAAAoiG,OAAAgZ,SAAA,aAAA4I,MAAAhkH,KAAAqsG,IAAAnoG,GAAAykG,YAEAyb,sBA7BA,SA6BAvc,GACA,IAAAwc,EAAArkH,KAAAqsG,IAAA1D,OAAAx+F,WACApN,EAAAsnH,EAAArnH,QAAA6qG,EAAA3jG,IACAnH,GAAA,GACAsnH,EAAApnH,OAAAF,EAAA,GAEAiD,KAAAoiG,OAAAgZ,SAAA,aAAA4I,MAAAhkH,KAAAqsG,IAAAnoG,GAAAykG,OAAA0b,KAEAnB,OArCA,SAqCAc,GACAhkH,KAAAoiG,OAAAgZ,SAAA,aAAA4I,QAAArb,YACA95F,KAAA,SAAAwpD,GAAAghD,GAAA+F,SAAAkF,KAAAC,sBACAtxC,MAAA,SAAAtlE,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,MAEA6pG,QA1CA,SA0CAwM,GACAhkH,KAAAoiG,OAAAgZ,SAAA,cAAA4I,UACAn1G,KAAA,SAAAwpD,GAAAghD,GAAA+F,SAAAkF,KAAAC,sBACAtxC,MAAA,SAAAtlE,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,MAEA/Q,OA/CA,SA+CAonH,GACAhkH,KAAAoiG,OAAAgZ,SAAA,gBAAA4I,UACAn1G,KAAA,SAAAwpD,GAAAghD,GAAA+F,SAAAkF,KAAAC,sBACAtxC,MAAA,SAAAtlE,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,MAEAkZ,QApDA,SAoDAm9F,GACAhkH,KAAAoiG,OAAAgZ,SAAA,aAAA4I,UACAn1G,KAAA,SAAAwpD,GAAAghD,GAAA+F,SAAAkF,KAAAC,sBACAtxC,MAAA,SAAAtlE,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,MAEAhJ,OAzDA,SAyDAq/G,GACAhkH,KAAAoiG,OAAAgZ,SAAA,aAAA4I,UACAn1G,KAAA,SAAAwpD,GAAAghD,GAAA+F,SAAAkF,KAAAC,sBACAtxC,MAAA,SAAAtlE,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,aDnHA62G,OAAAC,GAWA,EACA,KACA,KACA,MAkBAhB,GAAA34G,QAAAw3F,OAAA,mCACA,IAAAoiB,GAAAjB,WE1BAkB,GAAAljB,GCiBArqG,KAAA,iBACA+uB,QAFA,WAGAnmB,KAAAmiH,SAAA,iBAAAxmH,KAAAC,MAAA,IAAAD,KAAA+6C,WAAA,IAAAmpC,MAAA+kC,cAAA,IAAA/kC,MAAAglC,mBAEAn6G,UACA43G,UADA,WAEA,cAAAtiH,KAAAmiH,SAAA,MAGAh9G,KAVA,WAWA,OACAg9G,SAAA,WDnCA2C,OAAAC,GAWA,EACA,KACA,KACA,MAkBAJ,GAAA75G,QAAAw3F,OAAA,oCACA,IAAA0iB,GAAAL,WE1BAM,GAAAxjB,GC6DArqG,KAAA,UACAmU,QAAAm5G,GAAAM,IACAz6G,OACA8hG,OACA2U,YACAe,UACA5oH,KAAAmT,QACAE,SAAA,IAGA5J,OACAsiH,mBAAA,SAAAhhH,GACAlE,KAAAi5C,WAAAj5C,KAAAqsG,IAAAnoG,SAGA0d,YACAo4F,YAAAC,GAAAh8G,EACAknH,SAAA3B,IAEAr+G,KApBA,WAqBA,OACA8zC,YAAA,EACA68D,UAAA,IAGA3vF,QA1BA,WA2BAnmB,KAAAi5C,WAAAj5C,KAAAqsG,IAAAnoG,KAAAlE,KAAA2iG,OAAAryF,OAAApM,IAEAwG,YAGAkM,YAGApM,SACAs3G,eADA,SACAzxG,GACA,UAAAA,EAAAuwC,cAAAx3B,SAAA,MAAA/Y,EAAAuwC,cAAAx3B,SAGAppB,KAAAklG,QAAA5gG,MACAlN,KAAA,eACAkZ,QAAA0wG,SAAAhhH,KAAAghH,SAAA98G,GAAAlE,KAAAqsG,IAAAnoG,OAGA4kE,OAVA,SAUAs8C,EAAA/zC,GACA,OAAA+zC,EAAA,IAAA/zC,KDxGAwwC,OAEA,EACA,KACA,KACA,MAuBAoD,GAAAn6G,QAAAw3F,OAAA,qCACA,IAAA+iB,GAAAJ,WE/BAK,GAAA7jB,GCiBArqG,KAAA,cACAoT,SACAs+D,OADA,SACAs8C,EAAA/zC,GACA,OAAA+zC,EAAA,IAAA/zC,UD3BAk0C,OAAAC,GAWA,EACA,KACA,KACA,MAkBAF,GAAAx6G,QAAAw3F,OAAA,iCACA,IAAAmjB,GAAAH,WE1BAI,GAAAjkB,GCwEArqG,KAAA,UACAmU,QAAAk6G,IACAl7G,OAAA,2BACAqX,YACAo4F,YAAAC,GAAAh8G,EACAonH,YAEA36G,UACAmU,QADA,WAEA,OAAA7e,KAAAoiG,OAAAwY,QAAA/7F,QAAA,SAEAuyF,KAJA,WAIA,IAAA1hC,EAAA1vE,KACAoxG,EAAApxG,KAAAoiG,OAAAwY,QAAA+K,WACAjuG,OAAA,SAAA20F,GAAA,WAAAA,EAAAj1G,KAAAqF,cAAA06C,OAAAu4B,EAAAv4B,OAAA16C,iBACAoX,KAAA,SAAA5V,EAAAc,GACA,IAAA6mH,EAAA,IAAA3nH,EAAA8W,OAAA,MAAA9W,EAAA0G,OAAA,KAAA1G,EAAA7G,KACAyuH,EAAA,IAAA9mH,EAAAgW,OAAA,MAAAhW,EAAA4F,OAAA,KAAA5F,EAAA3H,KACA,OAAAiiH,GAAAC,KAAAwM,mBAAAF,EAAAC,KAGA,oBAAA7lH,KAAAghH,SACA5P,EAAA15F,OAAA,SAAA20F,GAAA,OAAAA,EAAA/mB,YAEA,YAAAtlF,KAAAghH,SACA5P,EAAA15F,OAAA,SAAA20F,GAAA,OAAAA,EAAAt3F,QAAAs3F,EAAA/mB,YAEA,aAAAtlF,KAAAghH,SACA5P,EAAA15F,OAAA,SAAA20F,GAAA,OAAAA,EAAAt3F,QAAAs3F,EAAA/mB,YAEA,gBAAAtlF,KAAAghH,SACA5P,EAAA15F,OAAA,SAAA20F,GAAA,OAAAA,EAAAgV,UAEA,YAAArhH,KAAAghH,SACA5P,EAAA15F,OAAA,SAAA20F,GAAA,OAAAA,EAAA1nG,SAGAysG,EAAA15F,OAAA,SAAA20F,GACA,OAAAA,EAAA0Z,eAAA3rH,IAAAiyG,EAAA2U,WACA3U,EAAA2U,WAAAtxC,EAAAsxC,UAAA3U,EAAA2U,SAAAhkH,QAAA0yE,EAAAsxC,WAAA,MAGAK,QAlCA,WAmCA,OAAArhH,KAAAoiG,OAAAwY,QAAAoC,cAAAqE,SAEAE,WArCA,WAsCA,gBAAAD,GACA,OAAAthH,KAAAoiG,OAAAwY,QAAA+K,WACAjuG,OAAA,SAAA20F,GAAA,OAAAA,EAAA2Z,WAAA1E,MAGAK,WA3CA,WA2CA,IAAAlvC,EAAAzyE,KACA,WAAAA,KAAAm3C,UAGAn3C,KAAAoiG,OAAAwY,QAAA+K,WACAjuG,OAAA,SAAA20F,GACA,WAAAA,EAAAj1G,KAAAqF,cAAA06C,OAAAs7B,EAAAt7B,OAAA16C,iBACAg2E,EAAA2+B,KAAAp3D,KAAA,SAAAisE,GAAA,OAAAA,EAAA/hH,KAAAmoG,EAAAnoG,QAKAk9G,gBAvDA,WAwDA,OAAAphH,KAAAmhH,cAAAnhH,KAAAkhH,eAEAC,YA1DA,WA2DA,oBAAAnhH,KAAAghH,UAAA,YAAAhhH,KAAAghH,UAAA,aAAAhhH,KAAAghH,UAAA,YAAAhhH,KAAAghH,UAEAE,cA7DA,WA8DA,sBAAAlhH,KAAAghH,UAEAkF,kBAhEA,WAiEA,IAAAl2E,EAAAhwC,KACA,gBAAAkE,GACA,WAAA8rC,EAAAuxE,WAAAr9G,GAAAwT,OAAA,SAAA20F,GAAA,OAAAA,EAAAt3F,SAAAvY,SAGAglH,iBAtEA,WAuEA,IAAAxxE,EAAAhwC,KACA,gBAAAkE,GACA,OAAA8rC,EAAAk2E,kBAAAhiH,GACAnM,EAAA,0BAEAA,EAAA,4BAIAyS,SACAi3G,aADA,SACAv9G,GACA,OAAAlE,KAAAkmH,kBAAAhiH,GACAlE,KAAAmmH,cAAAjiH,GAEAlE,KAAAomH,aAAAliH,IAEAkiH,aAPA,SAOAliH,GACA,IAAAktG,EAAApxG,KAAAuhH,WAAAr9G,GAAA7H,IAAA,SAAAgwG,GAAA,OAAAA,EAAAnoG,KACAlE,KAAAoiG,OAAAgZ,SAAA,aAAA4I,MAAA5S,EAAAzI,YACA11B,MAAA,SAAAtlE,GAAAD,QAAA2gD,IAAA1gD,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,MAEAw4G,cAZA,SAYAjiH,GACA,IAAAktG,EAAApxG,KAAAuhH,WAAAr9G,GAAA7H,IAAA,SAAAgwG,GAAA,OAAAA,EAAAnoG,KACAlE,KAAAoiG,OAAAgZ,SAAA,cAAA4I,MAAA5S,EAAAzI,YACA11B,MAAA,SAAAtlE,GAAA0rG,GAAAmD,aAAAljF,KAAA3rB,QD5KAszG,OAEA,EACA,KACA,KACA,MAuBAyE,GAAA56G,QAAAw3F,OAAA,6BACA,IAAA+jB,GAAAX,WEtCAY,GAAA,WACA,IAAAhsC,EAAAt6E,KACAu5E,EAAAe,EAAA7hE,eACAqD,EAAAw+D,EAAA92D,MAAA1H,IAAAy9D,EACA,OAAAz9D,EACA,OACKiX,aAAe4qB,QAAA,QAAkBrrC,OAAUpO,GAAA,sBAEhD4X,EACA,KAEAmM,YAAA,mBACA3V,OAAkB2iC,KAAA,KAClBhlC,IAAesxC,MAAA+4B,EAAAisC,kBAEfzqG,EAAA,QAAqBmM,YAAA,oBAAiCqyD,EAAAr/D,GAAA,aAEtDq/D,EAAAr/D,GAAA,KACAa,EAAA,MACAw+D,EAAA+xB,IAAA2V,QAEA1nC,EAAAp/D,KADAY,EAAA,OAAuBmM,YAAA,uBAEvBqyD,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAma,eAAAlsC,EAAA+xB,IAAA2V,QACAlmG,EACA,OACexJ,OAASmrC,MAAA,KAAAsmB,OAAA,KAAAm+C,QAAA,eAExBpmG,EAAA,QACAA,EACA,UACqBxJ,OAASpO,GAAAo2E,EAAA6nC,YAE9BrmG,EAAA,iBACAxJ,OACA8vG,GAAA,gBACAjpH,KAAA,SACA6iD,OAAA,iDAIA,KAGAs+B,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,WACA3V,OACAykC,EAAA,IACAP,EAAA,IACAiH,MAAA,KACAsmB,OAAA,KACAs+C,oBAAA,gBACA3qG,OAAA4iE,EAAAgoC,UACAC,aAAAjoC,EAAA+xB,IAAA2V,aAKA1nC,EAAAp/D,KACAo/D,EAAAr/D,GAAA,SAAAq/D,EAAA9/D,GAAA8/D,EAAA+xB,IAAAj1G,SAEAkjF,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA4V,WACAnmG,EAAA,OAAqBxJ,OAAShK,IAAAgyE,EAAA+xB,IAAA4V,WAAAxkE,MAAA,UAC9B68B,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACA,MAAAq/D,EAAA+xB,IAAAsW,OAAAroC,EAAAmsC,UACA3qG,EACA,OACamM,YAAA,cAEb,MAAAqyD,EAAA+xB,IAAAsW,MACA7mG,EACA,QAEA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MAAAwiF,EAAAviF,EACA,WACA,+HAEAsd,WACA,+IACA0W,WAAsC0sF,MAAA,KAGtCxwF,YAAA,4BAEAqyD,EAAAr/D,GAAA,WAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,2BAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAmsC,UACA3qG,EAAA,aACAxJ,OAA4BswG,MAAAtoC,EAAA+xB,IAAAoW,aAAAiE,iBAE5BpsC,EAAAp/D,MAEA,GAEAo/D,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAqsC,OACA7qG,EACA,OACamM,YAAA,eAEbqyD,EAAAr/D,GAAA,SAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,4BACAuiF,EAAA7/D,GAAA6/D,EAAAqsC,OAAA,SAAA1oH,EAAAlB,GACA,OAAA+e,EAAA,QACA7d,EAAA,gBAAAA,EAAA,wBACA6d,EACA,KACyBxJ,OAAS2iC,KAAAh3C,EAAA,2BAClCq8E,EAAAr/D,GAAAq/D,EAAA9/D,GAAAvc,EAAA,cAEAA,EAAA,UACA6d,EAAA,QAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAAvc,EAAA,cACA6d,EAAA,QAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAAvc,MACAlB,EAAA,EAAAu9E,EAAAqsC,OAAAnqH,OACAsf,EAAA,QAAAw+D,EAAAr/D,GAAA,QACAq/D,EAAAp/D,UAIA,GAEAo/D,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAAssC,QACA9qG,EAAA,OAAqBmM,YAAA,gBACrBqyD,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAssC,YAEAtsC,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAa,EAAA,OAAiBmM,YAAA,YACjBnM,EAAA,OAAmBmM,YAAA,oBACnBqyD,EAAA+xB,IAAA1nG,OACAmX,EAAA,SACAmM,YAAA,SACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAviF,EAAA,kCACAqvB,QAAAkzD,EAAA+xB,IAAA1nG,SAEAg1C,SAAA2gC,EAAAuoC,YAAAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,OAGAo2E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAyW,aACAhnG,EAAA,SACAmM,YAAA,YACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAviF,EAAA,qBACA4hD,SAAA2gC,EAAAuoC,YAAAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACA8gE,EAAA19E,OAAA09E,EAAA+xB,IAAAnoG,QAIAo2E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAt3F,OACA+G,EAAA,SACAmM,YAAA,SACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAAviF,EAAA,sBACA4hD,SAAA2gC,EAAAuoC,YAAAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACA8gE,EAAAk9B,QAAAl9B,EAAA+xB,IAAAnoG,QAIAo2E,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAt3F,OA0BAulE,EAAAp/D,KAzBAY,EAAA,SACA3Q,aAEA/T,KAAA,UACA60B,QAAA,iBACAn0B,MAAAwiF,EAAAyoC,oBACA1tG,WAAA,sBACA0W,WAAgC0sF,MAAA,KAGhCxwF,YAAA,SACA3V,OACAnZ,KAAA,SACArB,MAAAwiF,EAAA0oC,iBACArpE,UACA2gC,EAAA+xB,IAAA4W,YACA3oC,EAAAuoC,YACAvoC,EAAAz7D,QAAAy7D,EAAA+xB,IAAAnoG,KAEA+L,IACAsxC,MAAA,SAAA/nC,GACA8gE,EAAA4oC,OAAA5oC,EAAA+xB,IAAAnoG,UAMAo2E,EAAAr/D,GAAA,KACAa,EAAA,OAAmBmM,YAAA,eACnBqyD,EAAA+xB,IAAAt3F,QAAAulE,EAAA2pC,iBAAA3pC,EAAA+xB,KACAvwF,EACA,OACiBmM,YAAA,kBAEjBnM,EAAA,SACA3Q,aAEA/T,KAAA,QACA60B,QAAA,UACAn0B,MAAAwiF,EAAAopC,qBACAruG,WAAA,yBAGA4S,YAAA,mCACA3V,OACAnZ,KAAA,WACA+K,GAAAo2E,EAAAxR,OAAA,gBAAAwR,EAAA+xB,IAAAnoG,KAEAqV,UACAzhB,MAAAwiF,EAAA+xB,IAAAnoG,GACAuuG,QAAAj0G,MAAAc,QAAAg7E,EAAAopC,sBACAppC,EAAA1/D,GAAA0/D,EAAAopC,qBAAAppC,EAAA+xB,IAAAnoG,KAAA,EACAo2E,EAAAopC,sBAEAzzG,IACA0hB,QACA,SAAAnY,GACA,IAAAk5F,EAAAp4B,EAAAopC,qBACA/Q,EAAAn5F,EAAAtf,OACA04G,IAAAD,EAAAF,QACA,GAAAj0G,MAAAc,QAAAozG,GAAA,CACA,IAAAmE,EAAAv8B,EAAA+xB,IAAAnoG,GACA2uG,EAAAv4B,EAAA1/D,GAAA83F,EAAAmE,GACAlE,EAAAF,QACAI,EAAA,IACAv4B,EAAAopC,qBAAAhR,EAAAvoG,QAAA0sG,KAEAhE,GAAA,IACAv4B,EAAAopC,qBAAAhR,EACA70G,MAAA,EAAAg1G,GACA1oG,OAAAuoG,EAAA70G,MAAAg1G,EAAA,UAGAv4B,EAAAopC,qBAAA9Q,GAGAt4B,EAAAypC,kBAIAzpC,EAAAr/D,GAAA,KACAa,EACA,SACqBxJ,OAASu5B,IAAAyuC,EAAAxR,OAAA,gBAAAwR,EAAA+xB,IAAAnoG,OAC9Bo2E,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,kCAEAuiF,EAAAr/D,GAAA,KACAa,EAAA,SACAmM,YAAA,eACA3V,OACAnZ,KAAA,SACAy5D,MAAA0nB,EAAAviF,EAAA,kBACAD,MAAA,MAGAwiF,EAAAr/D,GAAA,KACAq/D,EAAAwpC,kBAAAxpC,EAAA+xB,KACAvwF,EACA,eAEAmM,YAAA,kBACA3V,OACAxH,QAAAwvE,EAAAquB,OACA7wG,MAAAwiF,EAAAqpC,UACAkD,gBAAA,EACAxmF,YAAAi6C,EAAAviF,EACA,WACA,6BAEA4/C,MAAA,OACA06D,WAAA,KACAhpF,UAAA,EACAutF,mBAAA,GAEA3mG,IACA6oC,OAAAwhC,EAAA6pC,mBACAvnH,OAAA09E,EAAA8pC,sBACA0C,gBAAAxsC,EAAAupC,kBAIA/nG,EACA,QAC6BxJ,OAASC,KAAA,YAAmBA,KAAA,aACzD+nE,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,+BAIAuiF,EAAAp/D,MAEA,GAEAo/D,EAAAp/D,SAGAo/D,EAAAr/D,GAAA,KACAa,EAAA,KAAemM,YAAA,kBACfqyD,EAAA+xB,IAAArkD,SAaAsyB,EAAAp/D,KAZAY,EACA,KAEAmM,YAAA,WACA3V,OACA2iC,KAAAqlC,EAAAysC,YACA7sH,OAAA,SACA46G,IAAA,yBAGAx6B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,qCAGAuiF,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA2a,QACAlrG,EACA,KAEAmM,YAAA,WACA3V,OACA2iC,KAAAqlC,EAAA+xB,IAAA2a,QACA9sH,OAAA,SACA46G,IAAA,yBAGAx6B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,qCAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA4a,KACAnrG,EACA,KAEAmM,YAAA,WACA3V,OACA2iC,KAAAqlC,EAAA+xB,IAAA4a,KACA/sH,OAAA,SACA46G,IAAA,yBAGAx6B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,oCAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA6a,eAAA5sC,EAAA+xB,IAAA6a,cAAAtyG,KACAkH,EACA,KAEAmM,YAAA,WACA3V,OACA2iC,KAAAqlC,EAAA+xB,IAAA6a,cAAAtyG,KACA1a,OAAA,SACA46G,IAAA,yBAGAx6B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,0CAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA6a,eAAA5sC,EAAA+xB,IAAA6a,cAAAC,MACArrG,EACA,KAEAmM,YAAA,WACA3V,OACA2iC,KAAAqlC,EAAA+xB,IAAA6a,cAAAC,MACAjtH,OAAA,SACA46G,IAAA,yBAGAx6B,EAAAr/D,GAAAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,2CAEAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA6a,eAAA5sC,EAAA+xB,IAAA6a,cAAAE,UACAtrG,EACA,KAEAmM,YAAA,WACA3V,OACA2iC,KAAAqlC,EAAA+xB,IAAA6a,cAAAE,UACAltH,OAAA,SACA46G,IAAA,yBAIAx6B,EAAAr/D,GACAq/D,EAAA9/D,GAAA8/D,EAAAviF,EAAA,+CAIAuiF,EAAAp/D,OAEAo/D,EAAAr/D,GAAA,KACAa,EAAA,MAAgBmM,YAAA,qBAChBqyD,EAAA+xB,IAAAgb,0BACAvrG,EAAA,MACAw+D,EAAAr/D,GACAq/D,EAAA9/D,GACA8/D,EAAAviF,EACA,WACA,gGAKAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAAib,0BACAxrG,EAAA,MACAw+D,EAAAr/D,GACAq/D,EAAA9/D,GACA8/D,EAAAviF,EACA,WACA,gGAKAuiF,EAAAp/D,KACAo/D,EAAAr/D,GAAA,KACAq/D,EAAA+xB,IAAA4W,WAoBA3oC,EAAAp/D,KAnBAY,EAAA,MACAw+D,EAAAr/D,GACA,WACAq/D,EAAA9/D,GACA8/D,EAAAviF,EACA,WACA,uFAGA,YAEA+jB,EACA,MACiBmM,YAAA,wBACjBqyD,EAAA7/D,GAAA6/D,EAAA+xB,IAAAkb,oBAAA,SAAA3/G,GACA,OAAAkU,EAAA,MAAAw+D,EAAAr/D,GAAAq/D,EAAA9/D,GAAA5S,aAMA0yE,EAAAr/D,GAAA,KACAa,EAAA,OACAmM,YAAA,kBACA1O,UAAmBkkB,UAAA68C,EAAA9/D,GAAA8/D,EAAAktC,sBAMnBlB,GAAArkB,eAAA,ECrXA,IChGAwlB,GAAAhmB,GDiGAl2F,QAAAm5G,GAAAe,GAAAT,IACA5tH,KAAA,aACAmT,OAAA,kBACAqX,YACAo4F,YAAAC,GAAAh8G,EACAknH,SAAA3B,IAEAr+G,KARA,WASA,OACAu+G,sBAAA,IAGAv9F,QAbA,WAcAnmB,KAAAqsG,IAAA1D,OAAAnsG,OAAA,IACAwD,KAAA0jH,sBAAA,IAGAl5G,SACA+7G,eADA,WAEAvmH,KAAAklG,QAAA5gG,MACAlN,KAAA,gBACAkZ,QAAA0wG,SAAAhhH,KAAAghH,cAIAt2G,UACAq8G,YADA,WAEA,yCAAA/mH,KAAAqsG,IAAAnoG,IAEA0iH,QAJA,WAKA,OAAA5mH,KAAAqsG,IAAAua,QACA7uH,EAAA,iCAAA2vH,SAAA,GAAA1nH,KAAAqsG,IAAAua,SAAAlpH,gBAEA,MAEA+oH,UAVA,WAWA,OAAAzmH,KAAAqsG,IAAAoW,cAAAziH,KAAAqsG,IAAAoW,aAAAkF,iBAAA,GAEAhB,OAbA,WAcA,uBAAA3mH,KAAAqsG,IAAAsa,SAGAiB,SAAA5nH,KAAAqsG,IAAAsa,SAIA3mH,KAAAqsG,IAAAsa,OAAA,WACA3mH,KAAAqsG,IAAAsa,QAEA3mH,KAAAqsG,IAAAsa,QAEAhD,UA1BA,WA2BA,OAAA3jH,KAAAqsG,IAAA1D,OAAAtsG,IAAA,SAAAwrG,GAAA,OAAA3jG,GAAA2jG,EAAAzwG,KAAAywG,MAEAc,OA7BA,WA8BA,OAAA3oG,KAAAoiG,OAAAwY,QAAAW,UACA7jG,OAAA,SAAAmwF,GAAA,mBAAAA,EAAA3jG,KACA2P,KAAA,SAAA5V,EAAAc,GAAA,OAAAd,EAAA7G,KAAAgmH,cAAAr+G,EAAA3H,SAEAowH,eAlCA,WAoCA,IAAAK,EAAA,IAAA/lH,OAAAgmH,OAAAC,SA8BA,OA7BAF,EAAAG,KAAA,SAAA/yE,EAAA2d,EAAAvtD,GACA,IACA,IAAA4iH,EAAA/6B,mBAAA1H,SAAAvwC,IACAz3C,QAAA,cACAf,cACA,MAAAgD,GACA,SAGA,OAAAwoH,EAAAjrH,QAAA,cAAAirH,EAAAjrH,QAAA,UACA,SAGA,IAAA1D,EAAA,YAAA27C,EAAA,8BAKA,OAJA2d,IACAt5D,GAAA,WAAAs5D,EAAA,KAEAt5D,GAAA,IAAA+L,EAAA,QAGAwiH,EAAAK,MAAA,SAAAjzE,EAAA2d,EAAAvtD,GACA,OAAAA,GAGAutD,GAEAi1D,EAAAM,WAAA,SAAAC,GACA,OAAAA,GAEAC,UAAAlK,SACAr8G,OAAAgmH,OAAA9nH,KAAAqsG,IAAAic,YAAA/5F,QACAs5F,WACAU,KAAA,EACAC,WAAA,EACAC,QAAA,EACAC,QAAA,EACAC,UAAA,EACAxK,UAAA,EACAyK,YAAA,EACAC,aAAA,KAGAC,iBAAA,EACAC,cACA,SACA,IACA,IACA,KACA,KACA,KACA,KACA,MACA,mBCjNAzC,OAEA,EACA,KACA,KACA,MAuBAmB,GAAA38G,QAAAw3F,OAAA,gCACA,IAAA0mB,GAAAvB,WCMAlS,EAAA,EAAA7yF,IAAAq8F,GAAA9gH,GACAs3G,EAAA,EAAA7yF,IAAAq8F,GAAA9gH,GAEA,ICxCAgrH,GAAAxnB,GDyCArqG,KAAA,OACAmT,OACAy2G,UACA7nH,KAAAuC,OACA8Q,QAAA,aAEAtI,IACA/K,KAAAuC,OACA8Q,QAAA,KAGAoV,YACAsnG,WAAAF,GACAtT,iBACA2Q,YAEA77G,SACA2+G,UADA,SACApgG,GACA/oB,KAAAu8G,YAAAxzF,GAEAg0F,YAJA,WAKA/8G,KAAAmpH,UAAA,MAGAjnB,YAzBA,WA0BAliG,KAAAoiG,OAAAgZ,SAAA,iBACAp7G,KAAAoiG,OAAAgZ,SAAA,cACAp7G,KAAAoiG,OAAAgZ,SAAA,aAAAzzD,OAAA,EAAAhL,MAAA,IACA38C,KAAAoiG,OAAAzhC,OAAA,iBAAA3gE,KAAAoiG,OAAAwY,QAAAoC,cAAAoM,cAEAjjG,QA/BA,WAmCAnmB,KAAAqpH,UAAA,IAAAxM,IAAAC,OAAA98G,KAAAmpH,UAAAnpH,KAAA+8G,cAEA53G,KArCA,WAsCA,OACAo3G,YAAA,KAGA35G,OACAo+G,SAAA,SAAAxlH,EAAA4U,GACApQ,KAAAmpH,UAAA,MAGAz+G,UACAmU,QADA,WAEA,OAAA7e,KAAAoiG,OAAAwY,QAAA/7F,QAAA,eAEAkiG,YAJA,WAKA,OAAA/gH,KAAAoiG,OAAAwY,QAAA/7F,QAAA,SAEAiiG,WAPA,WAOA,IAAApxC,EAAA1vE,KACA,OAAAA,KAAAoxG,KAAAp3D,KAAA,SAAAqyD,GAAA,OAAAA,EAAAnoG,KAAAwrE,EAAAxrE,MAEAolH,WAVA,WAWA,OAAAtpH,KAAAoiG,OAAAwY,QAAA2O,eAEAnY,KAbA,WAcA,OAAApxG,KAAAoiG,OAAAwY,QAAA+K,YAEAyD,YAhBA,WAiBA,OAAAppH,KAAAoiG,OAAAwY,QAAA4O,gBAEAvT,SAnBA,WAoBA,OAAAj2G,KAAAoiG,OAAAwY,QAAAoC,eAIA/K,KAxBA,WAwBA,IAAAx/B,EAAAzyE,KAEAspH,EAAAtpH,KAAAoiG,OAAAwY,QAAA2O,cAIAD,GAHAA,EAAA9qH,MAAAc,QAAAgqH,SAGAjtH,IAAA,SAAA2kH,GACA,IAAAlkH,KAUA,OATAA,EAAAoH,GAAA,gBAAA88G,EAAAyI,MACA3sH,EAAA02G,KAAA,iBAAAwN,EAAAyI,MACA3sH,EAAAszE,WACAtzE,EAAAgjE,QACA1oE,KAAA,gBACAkZ,QAAA0wG,WAAAyI,QAEA3sH,EAAAuI,KAAA27G,EAAAhjB,YAEAlhG,IAKA,IAAA4sH,IAEAxlH,GAAA,yBACAksE,WACAtQ,QAAA1oE,KAAA,QACAo8G,KAAA,0BACAnuG,KAAAtN,EAAA,0BAGAmM,GAAA,uBACAksE,WACAojC,KAAA,wBACA1zC,QAAA1oE,KAAA,gBAAAkZ,QAAA0wG,SAAA,YACA37G,KAAAtN,EAAA,4BAEAmM,GAAA,wBACAksE,WACAojC,KAAA,yBACA1zC,QAAA1oE,KAAA,gBAAAkZ,QAAA0wG,SAAA,aACA37G,KAAAtN,EAAA,8BAIA,IAAAiI,KAAAi2G,SAAA0T,gBACA,OACAzlH,GAAA,iBACAoF,MAAAogH,GAIA1pH,KAAAoiG,OAAAwY,QAAA4O,eAAA,GACAE,EAAAplH,MACAJ,GAAA,uBACAksE,WACAojC,KAAA,gBACA1zC,QAAA1oE,KAAA,gBAAAkZ,QAAA0wG,SAAA,YACA37G,KAAAtN,EAAA,sBACA07D,OAAA0C,QAAAn2D,KAAAoiG,OAAAwY,QAAA4O,kBAIAE,EAAAplH,MACAJ,GAAA,2BACAksE,WACAojC,KAAA,4BACA1zC,QAAA1oE,KAAA,gBAAAkZ,QAAA0wG,SAAA,gBACA37G,KAAAtN,EAAA,4BAMA,IAAA6xH,GAHAN,EAAAI,EAAAv/G,OAAAm/G,IAGAtgE,UAAA,SAAA6+C,GAAA,OAAAA,EAAA3jG,KAAA,gBAAAuuE,EAAAuuC,WAeA,OAdA4I,GAAA,EACAN,EAAAM,GAAAx5C,QAAA9rE,KAAA,UAEAglH,EAAA,GAAAl5C,QAAA9rE,KAAA,UAGAglH,EAAAhlH,MACAJ,GAAA,qBACAksE,WACAn7B,KAAAj1C,KAAAi2G,SAAA4T,uBACAxkH,KAAAtN,EAAA,8CAKAmM,GAAA,iBACAoF,MAAAggH,EACAzqG,QAAA7e,KAAA6e,YCzMA+hG,OAEA,EACA,KACA,KACA,MAuBAqI,GAAAn+G,QAAAw3F,OAAA,qBACA,IAAAgiB,GAAA2E;;;;;;;;;;;;;;;;;;;;;;GCVA1T,EAAA,EAAI7yF,IAAIqvF,IAWR,IAAAjyC,GAAA,IAAmBiyC,IAClB/5G,KAAM,UAGN2Z,KAAM0nG,GAAG2B,YAAY,IACrB5V,gBAAiB,SACjB+D,SAEE7zF,KAAM,qCACN6J,UAAWwhG,GACXp2G,OAAO,EACPnT,KAAM,QACNgO,WAEEkQ,KAAM,iBACNle,KAAM,QACN+nB,UAAWwhG,OAKbrrG,KAAM,oCACN6J,UAAWmlG,GACX/5G,OAAO,EACPnT,KAAM,OACNgO,WAEEkQ,KAAM,YACNle,KAAM,gBACN+nB,UAAWmlG,GACXl/G,WAEEkQ,KAAM,MACNle,KAAM,eACN+nB,UAAWmlG,WCpElBwF,GAAA,SAAAjoG,GAGA,GAFAmE,OAAAnE,EAAAuF,QAAA7qB,MAAA,UAEA,EACAslB,EAAAY,OAAe49B,aAAA0pE,QACZ,CAGH,IAAAjoG,EAAAD,EAAAppB,UAAAqpB,MACAD,EAAAppB,UAAAqpB,MAAA,SAAAhX,QACA,IAAAA,UAEAA,EAAAsR,KAAAtR,EAAAsR,MACA2tG,GAAA5/G,OAAAW,EAAAsR,MACA2tG,EACAjoG,EAAA9qB,KAAAgJ,KAAA8K,IAQA,SAAAi/G,IACA,IAAAj/G,EAAA9K,KAAAyM,SAEA3B,EAAA8qC,MACA51C,KAAAoiG,OAAA,mBAAAt3F,EAAA8qC,MACA9qC,EAAA8qC,QACA9qC,EAAA8qC,MACK9qC,EAAAhF,QAAAgF,EAAAhF,OAAAs8F,SACLpiG,KAAAoiG,OAAAt3F,EAAAhF,OAAAs8F,UAKA4nB,GACA,oBAAAloH,QACAA,OAAAqB;;;;;GAwCA,SAAA8mH,GAAA/uH,EAAAkC,GACA7F,OAAAoI,KAAAzE,GAAAgM,QAAA,SAAA9O,GAA2C,OAAAgF,EAAAlC,EAAA9C,QAe3C,IAAA8xH,GAAA,SAAAC,EAAA/sB,GACAp9F,KAAAo9F,UACAp9F,KAAAoqH,UAAA7yH,OAAAY,OAAA,MACA6H,KAAAqqH,WAAAF,EACA,IAAAG,EAAAH,EAAA14E,MACAzxC,KAAAyxC,OAAA,mBAAA64E,cAGAC,IAA4BtqD,YAAcx+D,cAAA,IAE1C8oH,GAAAtqD,WAAAvoE,IAAA,WACA,QAAAsI,KAAAqqH,WAAApqD,YAGAiqD,GAAAzxH,UAAA+xH,SAAA,SAAApyH,EAAAxB,GACAoJ,KAAAoqH,UAAAhyH,GAAAxB,GAGAszH,GAAAzxH,UAAAqxB,YAAA,SAAA1xB,UACA4H,KAAAoqH,UAAAhyH,IAGA8xH,GAAAzxH,UAAAgyH,SAAA,SAAAryH,GACA,OAAA4H,KAAAoqH,UAAAhyH,IAGA8xH,GAAAzxH,UAAAkM,OAAA,SAAAwlH,GACAnqH,KAAAqqH,WAAApqD,WAAAkqD,EAAAlqD,WACAkqD,EAAA9V,UACAr0G,KAAAqqH,WAAAhW,QAAA8V,EAAA9V,SAEA8V,EAAAhqD,YACAngE,KAAAqqH,WAAAlqD,UAAAgqD,EAAAhqD,WAEAgqD,EAAAvP,UACA56G,KAAAqqH,WAAAzP,QAAAuP,EAAAvP,UAIAsP,GAAAzxH,UAAAiyH,aAAA,SAAAttH,GACA6sH,GAAAjqH,KAAAoqH,UAAAhtH,IAGA8sH,GAAAzxH,UAAAkyH,cAAA,SAAAvtH,GACA4C,KAAAqqH,WAAAzP,SACAqP,GAAAjqH,KAAAqqH,WAAAzP,QAAAx9G,IAIA8sH,GAAAzxH,UAAAmyH,cAAA,SAAAxtH,GACA4C,KAAAqqH,WAAAhW,SACA4V,GAAAjqH,KAAAqqH,WAAAhW,QAAAj3G,IAIA8sH,GAAAzxH,UAAAoyH,gBAAA,SAAAztH,GACA4C,KAAAqqH,WAAAlqD,WACA8pD,GAAAjqH,KAAAqqH,WAAAlqD,UAAA/iE,IAIA7F,OAAAkP,iBAAAyjH,GAAAzxH,UAAA8xH,IAEA,IAAAO,GAAA,SAAAC,GAEA/qH,KAAAgrH,YAAAD,GAAA,IAGAD,GAAAryH,UAAAf,IAAA,SAAA4d,GACA,OAAAA,EAAAm5B,OAAA,SAAA73C,EAAAwB,GACA,OAAAxB,EAAA6zH,SAAAryH,IACG4H,KAAAunC,OAGHujF,GAAAryH,UAAAwyH,aAAA,SAAA31G,GACA,IAAA1e,EAAAoJ,KAAAunC,KACA,OAAAjyB,EAAAm5B,OAAA,SAAAjlB,EAAApxB,GAEA,OAAAoxB,IADA5yB,IAAA6zH,SAAAryH,IACA6nE,WAAA7nE,EAAA,SACG,KAGH0yH,GAAAryH,UAAAkM,OAAA,SAAAomH,IAoCA,SAAApmH,EAAA2Q,EAAA41G,EAAAC,GACA,EAKAD,EAAAvmH,OAAAwmH,GAGA,GAAAA,EAAAp0H,QACA,QAAAqB,KAAA+yH,EAAAp0H,QAAA,CACA,IAAAm0H,EAAAT,SAAAryH,GAOA,cAEAuM,EACA2Q,EAAAnL,OAAA/R,GACA8yH,EAAAT,SAAAryH,GACA+yH,EAAAp0H,QAAAqB,KA1DAuM,IAAA3E,KAAAunC,KAAAwjF,IAGAD,GAAAryH,UAAAuyH,SAAA,SAAA11G,EAAA60G,EAAA/sB,GACA,IAAAh3E,EAAApmB,UACA,IAAAo9F,OAAA,GAMA,IAAA+tB,EAAA,IAAAjB,GAAAC,EAAA/sB,GACA,IAAA9nF,EAAA9Y,OACAwD,KAAAunC,KAAA4jF,EAEAnrH,KAAAtI,IAAA4d,EAAAzX,MAAA,OACA2sH,SAAAl1G,IAAA9Y,OAAA,GAAA2uH,GAIAhB,EAAApzH,SACAkzH,GAAAE,EAAApzH,QAAA,SAAAq0H,EAAAhzH,GACAguB,EAAA4kG,SAAA11G,EAAAnL,OAAA/R,GAAAgzH,EAAAhuB,MAKA0tB,GAAAryH,UAAA4yH,WAAA,SAAA/1G,GACA,IAAAxP,EAAA9F,KAAAtI,IAAA4d,EAAAzX,MAAA,OACAzF,EAAAkd,IAAA9Y,OAAA,GACAsJ,EAAA2kH,SAAAryH,GAAAglG,SAEAt3F,EAAAgkB,YAAA1xB,IAgCA,IAyCAypB,GAEA,IAAAypG,GAAA,SAAAxgH,GACA,IAAAsb,EAAApmB,UACA,IAAA8K,WAKA+W,IAAA,oBAAA/f,eAAA+f,KACA0pG,GAAAzpH,OAAA+f,KASA,IAAA2pG,EAAA1gH,EAAA0gH,aAAgC,IAAAA,UAChC,IAAA/iB,EAAA39F,EAAA29F,YAA8B,IAAAA,OAAA,GAE9B,IAAAh3D,EAAA3mC,EAAA2mC,WAA4B,IAAAA,UAC5B,mBAAAA,IACAA,WAIAzxC,KAAAyrH,aAAA,EACAzrH,KAAA0rH,SAAAn0H,OAAAY,OAAA,MACA6H,KAAA2rH,sBACA3rH,KAAA4rH,WAAAr0H,OAAAY,OAAA,MACA6H,KAAA6rH,gBAAAt0H,OAAAY,OAAA,MACA6H,KAAA8rH,SAAA,IAAAhB,GAAAhgH,GACA9K,KAAA+rH,qBAAAx0H,OAAAY,OAAA,MACA6H,KAAAgsH,gBACAhsH,KAAAisH,WAAA,IAAApqG,GAGA,IAAA+zB,EAAA51C,KAEAo7G,EADAp7G,KACAo7G,SACAz6C,EAFA3gE,KAEA2gE,OACA3gE,KAAAo7G,SAAA,SAAAjiH,EAAA+yH,GACA,OAAA9Q,EAAApkH,KAAA4+C,EAAAz8C,EAAA+yH,IAEAlsH,KAAA2gE,OAAA,SAAAxnE,EAAA+yH,EAAAphH,GACA,OAAA61D,EAAA3pE,KAAA4+C,EAAAz8C,EAAA+yH,EAAAphH,IAIA9K,KAAAyoG,SAKA0jB,GAAAnsH,KAAAyxC,KAAAzxC,KAAA8rH,SAAAvkF,MAIA6kF,GAAApsH,KAAAyxC,GAGA+5E,EAAAtkH,QAAA,SAAAuf,GAAqC,OAAAA,EAAAL,KAErCvE,GAAAzhB,OAAAI,UAnTA,SAAAo1C,GACAo0E,KAEAp0E,EAAAy2E,aAAArC,GAEAA,GAAA31G,KAAA,YAAAuhC,GAEAo0E,GAAA/5G,GAAA,gCAAAq8G,GACA12E,EAAAk2D,aAAAwgB,KAGA12E,EAAA22E,UAAA,SAAAC,EAAA/6E,GACAu4E,GAAA31G,KAAA,gBAAAm4G,EAAA/6E,MAwSAg7E,CAAAzsH,OAIA0sH,IAA0Bj7E,OAAShwC,cAAA,IA+InC,SAAAkrH,GAAAvvH,EAAA+G,GAIA,OAHAA,EAAAnH,QAAAI,GAAA,GACA+G,EAAAG,KAAAlH,GAEA,WACA,IAAAvG,EAAAsN,EAAAnH,QAAAI,GACAvG,GAAA,GACAsN,EAAAlH,OAAApG,EAAA,IAKA,SAAA+1H,GAAAh3E,EAAAi3E,GACAj3E,EAAA81E,SAAAn0H,OAAAY,OAAA,MACAy9C,EAAAg2E,WAAAr0H,OAAAY,OAAA,MACAy9C,EAAAi2E,gBAAAt0H,OAAAY,OAAA,MACAy9C,EAAAm2E,qBAAAx0H,OAAAY,OAAA,MACA,IAAAs5C,EAAAmE,EAAAnE,MAEA06E,GAAAv2E,EAAAnE,KAAAmE,EAAAk2E,SAAAvkF,MAAA,GAEA6kF,GAAAx2E,EAAAnE,EAAAo7E,GAGA,SAAAT,GAAAx2E,EAAAnE,EAAAo7E,GACA,IAAAC,EAAAl3E,EAAA0kC,IAGA1kC,EAAAglE,WACA,IACAlwG,KACAu/G,GAFAr0E,EAAAi2E,gBAEA,SAAAzuH,EAAAhF,GAEAsS,EAAAtS,GAAA,WAAiC,OAAAgF,EAAAw4C,IACjCr+C,OAAAC,eAAAo+C,EAAAglE,QAAAxiH,GACAV,IAAA,WAAwB,OAAAk+C,EAAA0kC,IAAAliF,IACxBX,YAAA,MAOA,IAAA6I,EAAAuhB,GAAAzhB,OAAAE,OACAuhB,GAAAzhB,OAAAE,QAAA,EACAs1C,EAAA0kC,IAAA,IAAAz4D,IACA1c,MACA4nH,QAAAt7E,GAEA/mC,aAEAmX,GAAAzhB,OAAAE,SAGAs1C,EAAA6yD,QA4LA,SAAA7yD,GACAA,EAAA0kC,IAAA9iE,OAAA,WAAgC,OAAAxX,KAAAyW,MAAAs2G,SAA4B,WAC5D,IAGMp4G,MAAA,EAAAG,MAAA,IAhMNk4G,CAAAp3E,GAGAk3E,IACAD,GAGAj3E,EAAAq3E,YAAA,WACAH,EAAAr2G,MAAAs2G,QAAA,OAGAlrG,GAAA/S,SAAA,WAA8B,OAAAg+G,EAAA1uG,cAI9B,SAAA+tG,GAAAv2E,EAAAs3E,EAAA53G,EAAA1e,EAAAi2H,GACA,IAAAM,GAAA73G,EAAA9Y,OACAgtB,EAAAosB,EAAAk2E,SAAAb,aAAA31G,GAQA,GALA1e,EAAAqpE,aACArqB,EAAAm2E,qBAAAviG,GAAA5yB,IAIAu2H,IAAAN,EAAA,CACA,IAAAO,EAAAC,GAAAH,EAAA53G,EAAAzX,MAAA,OACAkiE,EAAAzqD,IAAA9Y,OAAA,GACAo5C,EAAAq3E,YAAA,WACAprG,GAAAle,IAAAypH,EAAArtD,EAAAnpE,EAAA66C,SAIA,IAAA67E,EAAA12H,EAAA2O,QA2BA,SAAAqwC,EAAApsB,EAAAlU,GACA,IAAAi4G,EAAA,KAAA/jG,EAEA8jG,GACAlS,SAAAmS,EAAA33E,EAAAwlE,SAAA,SAAAoS,EAAAC,EAAAC,GACA,IAAArmH,EAAAsmH,GAAAH,EAAAC,EAAAC,GACAxB,EAAA7kH,EAAA6kH,QACAphH,EAAAzD,EAAAyD,QACA3R,EAAAkO,EAAAlO,KAUA,OARA2R,KAAAy8B,OACApuC,EAAAqwB,EAAArwB,GAOAy8C,EAAAwlE,SAAAjiH,EAAA+yH,IAGAvrD,OAAA4sD,EAAA33E,EAAA+qB,OAAA,SAAA6sD,EAAAC,EAAAC,GACA,IAAArmH,EAAAsmH,GAAAH,EAAAC,EAAAC,GACAxB,EAAA7kH,EAAA6kH,QACAphH,EAAAzD,EAAAyD,QACA3R,EAAAkO,EAAAlO,KAEA2R,KAAAy8B,OACApuC,EAAAqwB,EAAArwB,GAOAy8C,EAAA+qB,OAAAxnE,EAAA+yH,EAAAphH,KAiBA,OAXAvT,OAAAkP,iBAAA6mH,GACA1S,SACAljH,IAAA61H,EACA,WAAuB,OAAA33E,EAAAglE,SACvB,WAAuB,OAUvB,SAAAhlE,EAAApsB,GACA,IAAAokG,KAEAC,EAAArkG,EAAAhtB,OAiBA,OAhBAjF,OAAAoI,KAAAi2C,EAAAglE,SAAA1zG,QAAA,SAAA/N,GAEA,GAAAA,EAAA0E,MAAA,EAAAgwH,KAAArkG,EAAA,CAGA,IAAAskG,EAAA30H,EAAA0E,MAAAgwH,GAKAt2H,OAAAC,eAAAo2H,EAAAE,GACAp2H,IAAA,WAAwB,OAAAk+C,EAAAglE,QAAAzhH,IACxB1B,YAAA,OAIAm2H,EA9BuBG,CAAAn4E,EAAApsB,KAEvBioB,OACA/5C,IAAA,WAAwB,OAAA21H,GAAAz3E,EAAAnE,MAAAn8B,OAIxBg4G,EA/EAU,CAAAp4E,EAAApsB,EAAAlU,GAEA1e,EAAAi0H,gBAAA,SAAA2B,EAAAp0H,IAuGA,SAAAw9C,EAAAz8C,EAAAge,EAAAm2G,IACA13E,EAAAg2E,WAAAzyH,KAAAy8C,EAAAg2E,WAAAzyH,QACAmL,KAAA,SAAA4nH,GACA/0G,EAAAngB,KAAA4+C,EAAA03E,EAAA77E,MAAAy6E,KAxGA+B,CAAAr4E,EADApsB,EAAApxB,EACAo0H,EAAAc,KAGA12H,EAAAg0H,cAAA,SAAAnX,EAAAr7G,GACA,IAAAe,EAAAs6G,EAAAlsE,KAAAnvC,EAAAoxB,EAAApxB,EACA+e,EAAAs8F,EAAAt8F,SAAAs8F,GAuGA,SAAA79D,EAAAz8C,EAAAge,EAAAm2G,IACA13E,EAAA81E,SAAAvyH,KAAAy8C,EAAA81E,SAAAvyH,QACAmL,KAAA,SAAA4nH,EAAAn9G,GACA,IAAAlQ,EAAAsY,EAAAngB,KAAA4+C,GACAwlE,SAAAkS,EAAAlS,SACAz6C,OAAA2sD,EAAA3sD,OACAi6C,QAAA0S,EAAA1S,QACAnpE,MAAA67E,EAAA77E,MACAy8E,YAAAt4E,EAAAglE,QACAsS,UAAAt3E,EAAAnE,OACKy6E,EAAAn9G,GAIL,OA/mBA,SAAAvT,GACA,OAAAA,GAAA,mBAAAA,EAAAqT,KA2mBAs/G,CAAAtvH,KACAA,EAAA8P,QAAAC,QAAA/P,IAEA+2C,EAAAy2E,aACAxtH,EAAAo0E,MAAA,SAAA/lE,GAEA,MADA0oC,EAAAy2E,aAAAh4G,KAAA,aAAAnH,GACAA,IAGArO,IA1HAygH,CAAA1pE,EAAAz8C,EAAAge,EAAAm2G,KAGA12H,EAAA+zH,cAAA,SAAAtzH,EAAAe,IA4HA,SAAAw9C,EAAAz8C,EAAAi1H,EAAAd,GACA,GAAA13E,EAAAi2E,gBAAA1yH,GAIA,cAEAy8C,EAAAi2E,gBAAA1yH,GAAA,SAAAy8C,GACA,OAAAw4E,EACAd,EAAA77E,MACA67E,EAAA1S,QACAhlE,EAAAnE,MACAmE,EAAAglE,UAtIAyT,CAAAz4E,EADApsB,EAAApxB,EACAf,EAAAi2H,KAGA12H,EAAA8zH,aAAA,SAAAlkH,EAAApO,GACA+zH,GAAAv2E,EAAAs3E,EAAA53G,EAAAnL,OAAA/R,GAAAoO,EAAAqmH,KA+IA,SAAAQ,GAAA57E,EAAAn8B,GACA,OAAAA,EAAA9Y,OACA8Y,EAAAm5B,OAAA,SAAAgD,EAAAr5C,GAAyC,OAAAq5C,EAAAr5C,IAAqBq5C,GAC9DA,EAGA,SAAAk8E,GAAAx0H,EAAA+yH,EAAAphH,GAWA,OAxqBA,SAAA5P,GACA,cAAAA,GAAA,iBAAAA,EA6pBAD,CAAA9B,aACA2R,EAAAohH,EACAA,EAAA/yH,EACAA,WAOUA,OAAA+yH,UAAAphH,WAGV,SAAAygH,GAAA5mB,GACA9iF,IAAA8iF,IAAA9iF,IASAioG,GADAjoG,GAAA8iF,GApaA+nB,GAAAj7E,MAAA/5C,IAAA,WACA,OAAAsI,KAAAs6E,IAAA7jE,MAAAs2G,SAGAL,GAAAj7E,MAAA9tC,IAAA,SAAA9I,GACA,GAKAywH,GAAA7yH,UAAAkoE,OAAA,SAAA6sD,EAAAC,EAAAC,GACA,IAAAtnG,EAAApmB,KAGAwlB,EAAAmoG,GAAAH,EAAAC,EAAAC,GACAv0H,EAAAqsB,EAAArsB,KACA+yH,EAAA1mG,EAAA0mG,QAGAM,GAFAhnG,EAAA1a,SAEkB3R,OAAA+yH,YAClBjuD,EAAAj+D,KAAA4rH,WAAAzyH,GACA8kE,IAMAj+D,KAAAitH,YAAA,WACAhvD,EAAA/2D,QAAA,SAAAiQ,GACAA,EAAA+0G,OAGAlsH,KAAAgsH,aAAA9kH,QAAA,SAAA7C,GAA4C,OAAAA,EAAAmoH,EAAApmG,EAAAqrB,WAa5C65E,GAAA7yH,UAAA2iH,SAAA,SAAAoS,EAAAC,GACA,IAAArnG,EAAApmB,KAGAwlB,EAAAmoG,GAAAH,EAAAC,GACAt0H,EAAAqsB,EAAArsB,KACA+yH,EAAA1mG,EAAA0mG,QAEAzY,GAAgBt6G,OAAA+yH,WAChBjuD,EAAAj+D,KAAA0rH,SAAAvyH,GACA,GAAA8kE,EASA,OAFAj+D,KAAA2rH,mBAAAzkH,QAAA,SAAA7C,GAAkD,OAAAA,EAAAovG,EAAArtF,EAAAqrB,SAElDwsB,EAAAzhE,OAAA,EACAmS,QAAA25B,IAAA21B,EAAA5hE,IAAA,SAAA8a,GAAgD,OAAAA,EAAA+0G,MAChDjuD,EAAA,GAAAiuD,IAGAZ,GAAA7yH,UAAA8zH,UAAA,SAAAnvH,GACA,OAAAuvH,GAAAvvH,EAAA4C,KAAAgsH,eAGAV,GAAA7yH,UAAA61H,gBAAA,SAAAlxH,GACA,OAAAuvH,GAAAvvH,EAAA4C,KAAA2rH,qBAGAL,GAAA7yH,UAAAmK,MAAA,SAAAvL,EAAA0X,EAAAjE,GACA,IAAAsb,EAAApmB,KAKA,OAAAA,KAAAisH,WAAAz0G,OAAA,WAA6C,OAAAngB,EAAA+uB,EAAAqrB,MAAArrB,EAAAw0F,UAA+C7rG,EAAAjE,IAG5FwgH,GAAA7yH,UAAAqzG,aAAA,SAAAr6D,GACA,IAAArrB,EAAApmB,KAEAA,KAAAitH,YAAA,WACA7mG,EAAAk0D,IAAA7jE,MAAAs2G,QAAAt7E,KAIA65E,GAAA7yH,UAAAunE,eAAA,SAAA1qD,EAAA60G,EAAAr/G,QACA,IAAAA,UAEA,iBAAAwK,IAAiCA,OAOjCtV,KAAA8rH,SAAAd,SAAA11G,EAAA60G,GACAgC,GAAAnsH,UAAAyxC,MAAAn8B,EAAAtV,KAAA8rH,SAAAp0H,IAAA4d,GAAAxK,EAAAyjH,eAEAnC,GAAApsH,UAAAyxC,QAGA65E,GAAA7yH,UAAAmoE,iBAAA,SAAAtrD,GACA,IAAA8Q,EAAApmB,KAEA,iBAAAsV,IAAiCA,OAMjCtV,KAAA8rH,SAAAT,WAAA/1G,GACAtV,KAAAitH,YAAA,WACA,IAAAG,EAAAC,GAAAjnG,EAAAqrB,MAAAn8B,EAAAzX,MAAA,OACAgkB,GAAA2E,OAAA4mG,EAAA93G,IAAA9Y,OAAA,MAEAowH,GAAA5sH,OAGAsrH,GAAA7yH,UAAA+1H,UAAA,SAAAC,GACAzuH,KAAA8rH,SAAAnnH,OAAA8pH,GACA7B,GAAA5sH,MAAA,IAGAsrH,GAAA7yH,UAAAw0H,YAAA,SAAA7vH,GACA,IAAAsxH,EAAA1uH,KAAAyrH,YACAzrH,KAAAyrH,aAAA,EACAruH,IACA4C,KAAAyrH,YAAAiD,GAGAn3H,OAAAkP,iBAAA6kH,GAAA7yH,UAAAi0H,IA6RA,IAAAiC,GAAAC,GAAA,SAAAplG,EAAAqlG,GACA,IAAAhwH,KAuBA,OAtBAiwH,GAAAD,GAAA3nH,QAAA,SAAAse,GACA,IAAAptB,EAAAotB,EAAAptB,IACAoD,EAAAgqB,EAAAhqB,IAEAqD,EAAAzG,GAAA,WACA,IAAAq5C,EAAAzxC,KAAAoiG,OAAA3wD,MACAmpE,EAAA56G,KAAAoiG,OAAAwY,QACA,GAAApxF,EAAA,CACA,IAAA5yB,EAAAm4H,GAAA/uH,KAAAoiG,OAAA,WAAA54E,GACA,IAAA5yB,EACA,OAEA66C,EAAA76C,EAAA2O,QAAAksC,MACAmpE,EAAAhkH,EAAA2O,QAAAq1G,QAEA,yBAAAp/G,EACAA,EAAAxE,KAAAgJ,KAAAyxC,EAAAmpE,GACAnpE,EAAAj2C,IAGAqD,EAAAzG,GAAA42H,MAAA,IAEAnwH,IAGAowH,GAAAL,GAAA,SAAAplG,EAAA22C,GACA,IAAAthE,KAsBA,OArBAiwH,GAAA3uD,GAAAj5D,QAAA,SAAAse,GACA,IAAAptB,EAAAotB,EAAAptB,IACAoD,EAAAgqB,EAAAhqB,IAEAqD,EAAAzG,GAAA,WAEA,IADA,IAAAiP,KAAAC,EAAApJ,UAAA1B,OACA8K,KAAAD,EAAAC,GAAApJ,UAAAoJ,GAEA,IAAAq5D,EAAA3gE,KAAAoiG,OAAAzhC,OACA,GAAAn3C,EAAA,CACA,IAAA5yB,EAAAm4H,GAAA/uH,KAAAoiG,OAAA,eAAA54E,GACA,IAAA5yB,EACA,OAEA+pE,EAAA/pE,EAAA2O,QAAAo7D,OAEA,yBAAAnlE,EACAA,EAAA2C,MAAA6B,MAAA2gE,GAAAx2D,OAAA9C,IACAs5D,EAAAxiE,MAAA6B,KAAAoiG,QAAA5mG,GAAA2O,OAAA9C,OAGAxI,IAGAqwH,GAAAN,GAAA,SAAAplG,EAAAoxF,GACA,IAAA/7G,KAmBA,OAlBAiwH,GAAAlU,GAAA1zG,QAAA,SAAAse,GACA,IAAAptB,EAAAotB,EAAAptB,IACAoD,EAAAgqB,EAAAhqB,IAEAA,EAAAguB,EAAAhuB,EACAqD,EAAAzG,GAAA,WACA,IAAAoxB,GAAAulG,GAAA/uH,KAAAoiG,OAAA,aAAA54E,GAOA,OAAAxpB,KAAAoiG,OAAAwY,QAAAp/G,IAGAqD,EAAAzG,GAAA42H,MAAA,IAEAnwH,IAGAswH,GAAAP,GAAA,SAAAplG,EAAA6qF,GACA,IAAAx1G,KAsBA,OArBAiwH,GAAAza,GAAAntG,QAAA,SAAAse,GACA,IAAAptB,EAAAotB,EAAAptB,IACAoD,EAAAgqB,EAAAhqB,IAEAqD,EAAAzG,GAAA,WAEA,IADA,IAAAiP,KAAAC,EAAApJ,UAAA1B,OACA8K,KAAAD,EAAAC,GAAApJ,UAAAoJ,GAEA,IAAA8zG,EAAAp7G,KAAAoiG,OAAAgZ,SACA,GAAA5xF,EAAA,CACA,IAAA5yB,EAAAm4H,GAAA/uH,KAAAoiG,OAAA,aAAA54E,GACA,IAAA5yB,EACA,OAEAwkH,EAAAxkH,EAAA2O,QAAA61G,SAEA,yBAAA5/G,EACAA,EAAA2C,MAAA6B,MAAAo7G,GAAAjxG,OAAA9C,IACA+zG,EAAAj9G,MAAA6B,KAAAoiG,QAAA5mG,GAAA2O,OAAA9C,OAGAxI,IAUA,SAAAiwH,GAAAzyH,GACA,OAAAmC,MAAAc,QAAAjD,GACAA,MAAA,SAAAjE,GAA8B,OAAUA,MAAAoD,IAAApD,KACxCb,OAAAoI,KAAAtD,OAAA,SAAAjE,GAA2C,OAAUA,MAAAoD,IAAAa,EAAAjE,MAGrD,SAAAw2H,GAAAxxH,GACA,gBAAAosB,EAAAntB,GAOA,MANA,iBAAAmtB,GACAntB,EAAAmtB,EACAA,EAAA,IACK,MAAAA,EAAA5rB,OAAA4rB,EAAAhtB,OAAA,KACLgtB,GAAA,KAEApsB,EAAAosB,EAAAntB,IAIA,SAAA0yH,GAAAn5E,EAAAw5E,EAAA5lG,GAKA,OAJAosB,EAAAm2E,qBAAAviG,GAOA,IAYA6lG,IAXA/D,SACAzkG,QAAA0kG,GACAnkG,QAAA,QACAunG,YACAM,gBACAC,cACAC,cACAG,wBAzCA,SAAA9lG,GAAoD,OACpDmlG,YAAAt2H,KAAA,KAAAmxB,GACA0lG,cAAA72H,KAAA,KAAAmxB,GACAylG,gBAAA52H,KAAA,KAAAmxB,GACA2lG,cAAA92H,KAAA,KAAAmxB,MCj2BM+lG,GAAc,SAAS5mB,EAAQsW,GAKpC,OAAgB,IAAZA,EACItW,EAAO90F,KAAK,SAAC5V,EAAGc,GAAJ,OAAUd,EAAEqiH,UAAUriH,EAAE07C,SAAW56C,EAAEuhH,UAAYvhH,EAAE46C,WAE/DgvD,EAAO90F,KAAK,SAAC5V,EAAGc,GAAJ,OAAUd,EAAE7G,KAAKgmH,cAAcr+G,EAAE3H,SAIhD28D,IAEJ7vD,GAAI,GACJ9M,KAAM,GACNkpH,UAAW,EACX3mE,SAAU,EACV4gE,QAAQ,EACRC,WAAW,GAodbvH,IAAiBxhE,OA/chBwhE,SACAtK,UACAsW,QAAS,EACTvI,kBAAmB,EACnB8G,YAAa,EACbE,WAAY,GACZyB,UAAW,GAycYh/C,WArcvBqvD,YADiB,SACL/9E,EAAOg+E,GAElB,IAAIxc,EAAQxhE,EAAMwhE,MAAM9oG,OAAO5S,OAAOoI,KAAK8vH,GAAUpzH,IAAI,SAAA8+G,GAAA,OAAUsU,EAAStU,MAC5E1pE,EAAM+rE,aAAe/rE,EAAMisE,WAC3BjsE,EAAMwhE,MAAQA,GAEfyc,2BAPiB,SAOUj+E,EAAOj1C,GACjCi1C,EAAMilE,kBAA6B,KAATl6G,EAAcA,EAAS,GAElDmzH,WAViB,SAUNl+E,EAVMw1B,GAU+B,IAA7B0hC,EAA6B1hC,EAA7B0hC,OAAQsW,EAAqBh4C,EAArBg4C,QAASE,EAAYl4C,EAAZk4C,UACnC1tE,EAAMk3D,OAASA,EAAOtsG,IAAI,SAAAwrG,GAAA,OAAStwG,OAAO8mE,UAAWtK,GAAgB8zC,KACrEp2D,EAAMwtE,QAAUA,EAChBxtE,EAAM0tE,UAAYA,EAClB1tE,EAAMk3D,OAAS4mB,GAAY99E,EAAMk3D,OAAQl3D,EAAMwtE,UAGhD2Q,SAjBiB,SAiBRn+E,EAjBQ21B,GAiBmB,IAAnBi0C,EAAmBj0C,EAAnBi0C,IAAKrd,EAAc52B,EAAd42B,YACrB,IACC,QAA8D,IAAnDvsD,EAAMk3D,OAAO3uD,KAAK,SAAC6tD,GAAD,OAAWA,EAAM3jG,KAAOm3G,IACpD,OAGD,IAAIxT,EAAQtwG,OAAO8mE,UAAWtK,IAC7B7vD,GAAIm3G,EACJjkH,KAAM4mG,IAEPvsD,EAAMk3D,OAAOrkG,KAAKujG,GAClBp2D,EAAMk3D,OAAS4mB,GAAY99E,EAAMk3D,OAAQl3D,EAAMwtE,SAC9C,MAAOx/G,GACRiO,QAAQ2gD,IAAI,qBAAuB5uD,KAGrCqgH,YAjCiB,SAiCLruE,EAAO4pE,GAClB,IAAIwU,EAAap+E,EAAMk3D,OAAO3/C,UAAU,SAAA8mE,GAAA,OAAeA,EAAY5rH,IAAMm3G,IACrEwU,GAAc,GACjBp+E,EAAMk3D,OAAO1rG,OAAO4yH,EAAY,IAGlCvX,aAvCiB,SAuCJ7mE,EAvCIirC,GAuCoB,IAAfy+B,EAAez+B,EAAfy+B,OAAQE,EAAO3+B,EAAP2+B,IACzBxT,EAAQp2D,EAAMk3D,OAAO3uD,KAAK,SAAA81E,GAAA,OAAeA,EAAY5rH,IAAMm3G,IAC3DzmG,EAAO68B,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAE3CtT,GAASjzF,EAAK4zD,SACjBq/B,EAAMyY,YAEM1rG,EAAK+zF,OACXrkG,KAAK+2G,GACZ5pE,EAAMk3D,OAAS4mB,GAAY99E,EAAMk3D,OAAQl3D,EAAMwtE,UAEhD1G,gBAlDiB,SAkDD9mE,EAlDCs+E,GAkDuB,IAAf5U,EAAe4U,EAAf5U,OAAQE,EAAO0U,EAAP1U,IAC5BxT,EAAQp2D,EAAMk3D,OAAO3uD,KAAK,SAAA81E,GAAA,OAAeA,EAAY5rH,IAAMm3G,IAC3DzmG,EAAO68B,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAE3CtT,GAASjzF,EAAK4zD,SACjBq/B,EAAMyY,YAEP,IAAI3X,EAAS/zF,EAAK+zF,OAClBA,EAAO1rG,OAAO0rG,EAAO3rG,QAAQq+G,GAAK,GAClC5pE,EAAMk3D,OAAS4mB,GAAY99E,EAAMk3D,OAAQl3D,EAAMwtE,UAEhDrG,gBA7DiB,SA6DDnnE,EA7DCu+E,GA6DuB,IAAf7U,EAAe6U,EAAf7U,OAAQE,EAAO2U,EAAP3U,IACnB5pE,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAAQd,SAClD/1G,KAAK+2G,IAEbxC,mBAjEiB,SAiEEpnE,EAjEFw+E,GAiE0B,IAAf9U,EAAe8U,EAAf9U,OAAQE,EAAO4U,EAAP5U,IAC/B1S,EAASl3D,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAAQd,SACzD1R,EAAO1rG,OAAO0rG,EAAO3rG,QAAQq+G,GAAK,IAEnCnB,WArEiB,SAqENzoE,EAAO0pE,GACjB,IAAI+U,EAAYz+E,EAAMwhE,MAAMjqD,UAAU,SAAAp0C,GAAA,OAAQA,EAAK1Q,IAAMi3G,IACzD1pE,EAAMwhE,MAAMh2G,OAAOizH,EAAW,IAE/BC,YAzEiB,SAyEL1+E,EAAO4mB,GAClB5mB,EAAMwhE,MAAM3uG,KAAK+zD,EAASlzD,KAAKirH,IAAIjrH,OAEpCg1G,kBA5EiB,SA4EC1oE,EA5ED4+E,GA4E6B,IAAnBlV,EAAmBkV,EAAnBlV,OAAQ3yC,EAAW6nD,EAAX7nD,QAC9B5zD,EAAQ68B,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAChDvmG,EAAK4zD,QAAUA,EAEf/2B,EAAMk3D,OAAO3uD,KAAK,SAAA6tD,GAAA,MAAqB,YAAZA,EAAM3jG,KAAkBo8G,WAAa93C,GAAW,EAAI,EAC/E/2B,EAAM0tE,WAAa32C,EAAU,GAAK,EAClC5zD,EAAK+zF,OAAOzhG,QAAQ,SAAA2gG,GAEnBp2D,EAAMk3D,OAAO3uD,KAAK,SAAA81E,GAAA,OAAeA,EAAY5rH,IAAM2jG,IAAOluD,UAAY6uB,GAAW,EAAI,KAGvF8nD,YAvFiB,SAuFL7+E,EAvFK8+E,GAuF0B,IAAtBpV,EAAsBoV,EAAtBpV,OAAQ/iH,EAAcm4H,EAAdn4H,IAAKN,EAASy4H,EAATz4H,MACjC,GAAY,UAARM,EAAiB,CACpB,IAAIo4H,EAAanX,GAAGC,KAAKwC,iBAAiBhkH,GAC1C25C,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAAQ/iH,GAAKA,GAAoB,OAAbo4H,EAAoBA,EAAa14H,OAEzF25C,EAAMwhE,MAAMj5D,KAAK,SAAAplC,GAAA,OAAQA,EAAK1Q,IAAMi3G,IAAQ/iH,GAAON,GAOrD24H,WAnGiB,SAmGNh/E,GACVA,EAAMwhE,SACNxhE,EAAM+rE,YAAc,IAiWa5C,SA5VlCuF,SADe,SACN1uE,GACR,OAAOA,EAAMwhE,OAEdsI,UAJe,SAIL9pE,GACT,OAAOA,EAAMk3D,QAEd0U,kBAPe,SAOG5rE,GAEjB,OAAOA,EAAMk3D,OAAOjxF,OAAO,SAAAmwF,GAAA,MAAsB,UAAbA,EAAM3jG,IAA+B,aAAb2jG,EAAM3jG,MAEnE22G,2BAXe,SAWYppE,GAC1B,OAAOA,EAAMilE,mBAEd+G,eAde,SAcAhsE,GACd,OAAOA,EAAM+rE,aAEdG,cAjBe,SAiBDlsE,GACb,OAAOA,EAAMisE,YAEd0C,aApBe,SAoBF3uE,GACZ,OAAOA,EAAM0tE,YAwU6B9K,SAvT3C8L,SAbe,SAaN56G,EAbMmrH,GAaqC,IAAhC/oE,EAAgC+oE,EAAhC/oE,OAAQhL,EAAwB+zE,EAAxB/zE,MAAOxF,EAAiBu5E,EAAjBv5E,OAAQ0wD,EAAS6oB,EAAT7oB,MAG1C,OAFA1wD,EAA2B,iBAAXA,EAAsBA,EAAS,GAEjC,MADd0wD,EAAyB,iBAAVA,EAAqBA,EAAQ,IAEpCuW,GAAQ/E,GAAGsX,UAAH,gBAA6B9oB,EAA7B,yBAA2DlgD,EAA3D,UAA2EhL,EAA3E,WAA2FxF,EAAU,IACnHtoC,KAAK,SAACwpD,GACN,OAAI9gE,OAAOoI,KAAK04D,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,OAAOz2G,OAAS,IACtD+I,EAAQo7D,OAAO,cAAetI,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,QAC9C,KAIRhgC,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,KAG1CywG,GAAQ/E,GAAGsX,UAAH,8BAA2ChpE,EAA3C,UAA2DhL,EAA3D,WAA2ExF,EAAU,IAClGtoC,KAAK,SAACwpD,GACN,OAAI9gE,OAAOoI,KAAK04D,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,OAAOz2G,OAAS,IACtD+I,EAAQo7D,OAAO,cAAetI,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,QAC9C,KAIRhgC,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,MAGlD4tG,UAvCe,SAuCLh2G,EAvCKqrH,GAuC+B,IAAzBjpE,EAAyBipE,EAAzBjpE,OAAQhL,EAAiBi0E,EAAjBj0E,MAAOxF,EAAUy5E,EAAVz5E,OACnCA,EAA2B,iBAAXA,EAAsBA,EAAS,GAC/C,IAAI05E,GAAwB,IAAXl0E,EAAe,GAAf,UAA8BA,EAC/C,OAAOyhE,GAAQ/E,GAAGsX,UAAH,uBAAoChpE,EAApC,WAAqDxQ,EAAS05E,EAAc,IACzFhiH,KAAK,SAACwpD,GACN,OAAI9gE,OAAOoI,KAAK04D,EAASlzD,KAAKirH,IAAIjrH,KAAKwjG,QAAQnsG,OAAS,IACvD67D,EAASlzD,KAAKirH,IAAIjrH,KAAKwjG,OAAOzhG,QAAQ,SAAS2gG,GAC9CtiG,EAAQo7D,OAAO,YAAa06C,IAAKxT,EAAO7J,YAAa6J,OAE/C,KAIR50B,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,MAYlDmjH,iBAhEe,SAgEEvrH,EAhEFwrH,GAgEsC,IAAzBppE,EAAyBopE,EAAzBppE,OAAQhL,EAAiBo0E,EAAjBp0E,MAAOxF,EAAU45E,EAAV55E,OAE1C,OADAA,EAA2B,iBAAXA,EAAsBA,EAAS,GACxCinE,GAAQ/E,GAAGsX,UAAH,8BAA2ChpE,EAA3C,UAA2DhL,EAA3D,WAA2ExF,EAAU,IAClGtoC,KAAK,SAACwpD,GACN,OAAI9gE,OAAOoI,KAAK04D,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,OAAOz2G,OAAS,IACtD+I,EAAQo7D,OAAO,cAAetI,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,QAC9C,KAIRhgC,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,MAYlDqjH,kBAtFe,SAsFGzrH,EAtFH0rH,GAsFwC,IAA1BlR,EAA0BkR,EAA1BlR,QAASp4D,EAAiBspE,EAAjBtpE,OAAQhL,EAASs0E,EAATt0E,MAC7C,OAAOyhE,GAAQ/E,GAAGsX,UAAH,eAA4B5Q,EAA5B,mBAAsDp4D,EAAtD,UAAsEhL,EAAS,IAC5F9tC,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,mBAAoBtI,EAASlzD,KAAKirH,IAAIjrH,KAAK8tG,SAC7EhgC,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,MAIlDktG,2BA7Fe,SA6FYt1G,GAC1B,SAAG2rH,gBAAgBC,kBAAmBD,gBAAgBC,gBAAgBC,aACrE7rH,EAAQo7D,OAAO,6BAA8BuwD,gBAAgBC,gBAAgBC,WACtEF,gBAAgBC,gBAAgBC,YAYzCxB,SA5Ge,SA4GNrqH,EAAS81G,GACjB,OAAO+C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAS/E,GAAGsX,UAAH,eAA6B,IAAK5Q,QAAS1E,IACzDxsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,YAAa06C,IAAKA,EAAKrd,YAAaqd,MACtEpoC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAIT,MAHApI,EAAQo7D,OAAO,eAAiB06C,MAAK1tG,UAG/BA,KAWRmyG,YAhIe,SAgIHv6G,EAAS81G,GACpB,OAAO+C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAW/E,GAAGsX,UAAH,gBAA6BtV,EAAO,IACpDxsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,cAAe06C,KACjDpoC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiB06C,MAAK1tG,aAY1D2qG,aAjJe,SAiJF/yG,EAjJE8rH,GAiJwB,IAAflW,EAAekW,EAAflW,OAAQE,EAAOgW,EAAPhW,IAC/B,OAAO+C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAS/E,GAAGsX,UAAH,eAA4BxV,EAA5B,UAA6C,IAAM4E,QAAS1E,IAC1ExsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,gBAAkBw6C,SAAQE,UAC5DpoC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,aAY7D4qG,gBAlKe,SAkKChzG,EAlKD+rH,GAkK2B,IAAfnW,EAAemW,EAAfnW,OAAQE,EAAOiW,EAAPjW,IAClC,OAAO+C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAW/E,GAAGsX,UAAH,eAA4BxV,EAA5B,UAA6C,IAAM4E,QAAS1E,IAC5ExsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,mBAAqBw6C,SAAQE,UAC/DpoC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAIT,MAHApI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,UAGlCA,KAaRirG,gBAxLe,SAwLCrzG,EAxLDgsH,GAwL2B,IAAfpW,EAAeoW,EAAfpW,OAAQE,EAAOkW,EAAPlW,IAClC,OAAO+C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAS/E,GAAGsX,UAAH,eAA4BxV,EAA5B,aAAgD,IAAO4E,QAAS1E,IAC9ExsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,mBAAqBw6C,SAAQE,UAC/DpoC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,aAY7DkrG,mBAzMe,SAyMItzG,EAzMJisH,GAyM8B,IAAfrW,EAAeqW,EAAfrW,OAAQE,EAAOmW,EAAPnW,IACrC,OAAO+C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAW/E,GAAGsX,UAAH,eAA4BxV,EAA5B,aAAgD,IAAM4E,QAAS1E,IAC/ExsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,sBAAwBw6C,SAAQE,UAClEpoC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,aAU7DusG,WAxNe,SAwNJ30G,EAAS41G,GACnB,OAAOiD,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAW/E,GAAGsX,UAAH,eAA4BxV,EAAU,IACtDtsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,aAAcw6C,KAChDloC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,aAiB7D8jH,QA9Oe,SAAAC,EAAAC,GA8O0F,IAAhGhxD,EAAgG+wD,EAAhG/wD,OAAQy6C,EAAwFsW,EAAxFtW,SAAaD,EAA2EwW,EAA3ExW,OAAQrjD,EAAmE65D,EAAnE75D,SAAUkmC,EAAyD2zB,EAAzD3zB,YAAaka,EAA4CyZ,EAA5CzZ,MAAOvP,EAAqCgpB,EAArChpB,OAAQ0R,EAA6BsX,EAA7BtX,SAAUvD,EAAmB6a,EAAnB7a,MAAOI,EAAYya,EAAZza,SAC5F,OAAOkH,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAS/E,GAAGsX,UAAH,cAA4B,IAAMxV,SAAQrjD,WAAUkmC,cAAaka,QAAOvP,SAAQ0R,WAAUvD,QAAOI,aAC/GroG,KAAK,SAACwpD,GAAD,OAAc+iD,EAAS,cAAeD,KAC3CloC,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWgzD,EAAO,eAAiBw6C,SAAQxtG,aAUrDwiH,YA7Pe,SA6PH5qH,EAAS41G,GACpB,OAAOiD,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAQ/E,GAAGsX,UAAH,eAA4BxV,EAAU,IACnDtsG,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,cAAetI,KACjD4a,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,aAW7DwsG,kBA7Qe,SA6QG50G,EA7QHqsH,GA6QwC,IAA1BzW,EAA0ByW,EAA1BzW,OAA0B0W,EAAAD,EAAlBppD,eAAkBpuE,IAAAy3H,KAClDC,EAAatpD,EAAU,SAAW,UACtC,OAAO41C,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAQ/E,GAAGsX,UAAH,eAA4BxV,EAA5B,IAAsC2W,EAAc,IACjEjjH,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,qBAAuBw6C,SAAQ3yC,cACjEyK,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,aAa7D2iH,YAhSe,SAgSH/qH,EAhSGwsH,GAgS8B,IAAtB5W,EAAsB4W,EAAtB5W,OAAQ/iH,EAAc25H,EAAd35H,IAAKN,EAASi6H,EAATj6H,MAC/Bk6H,GAAgB,QAAS,eAC7B,OAAgF,KAA3E,QAAS,WAAY,QAAS,cAAe,YAAYh1H,QAAQ5E,IAEhD,iBAAVN,KAEuB,IAA/Bk6H,EAAah1H,QAAQ5E,IAAeN,EAAM0E,OAAS,IACrB,IAA/Bw1H,EAAah1H,QAAQ5E,IAGfgmH,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAQ/E,GAAGsX,UAAH,eAA4BxV,EAAU,IAAM/iH,IAAKA,EAAKN,MAAOA,IAC1E+W,KAAK,SAACwpD,GAAD,OAAc9yD,EAAQo7D,OAAO,eAAiBw6C,SAAQ/iH,MAAKN,YAChEm7E,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,YAGvDgB,QAAQsQ,OAAO,IAAI8yC,MAAM,0BAUjCqoD,gBA3Te,SA2TC70G,EAAS41G,GACxB,OAAOiD,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAS/E,GAAGsX,UAAH,eAA4BxV,EAA5B,WAA8C,IAC5DtsG,KAAK,SAAAwpD,GAAA,OAAY,IACjB4a,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBw6C,SAAQxtG,eC9M9DskH,IAAiBxgF,OAlRhB2/D,QACAkY,cACAF,YAAa,EACbvqG,WACAkiG,aAAa,GA8QU5gD,WAzQvB+xD,iBAFiB,SAEAzgF,EAAO9jC,GACvB0rG,GAAGmD,aAAa2V,SAASp6H,EAAE,WAAW,2DAA2D,OAAO4V,EAAMA,MAAM0qD,SAASlzD,KAAKA,KAAKq0D,SAAUn6C,QAAS,IAC1J3R,QAAQ2gD,IAAI5c,EAAO9jC,IAGpBykH,eAPiB,SAOF3gF,EAPEw1B,GAOgC,IAA1BqiD,EAA0BriD,EAA1BqiD,WAAYF,EAAcniD,EAAdmiD,YAClC33E,EAAM63E,WAAaA,EACnB73E,EAAM23E,YAAcA,GAGrBiJ,eAZiB,SAYF5gF,EAAO23E,GACrB33E,EAAM23E,YAAcA,GAGrBkJ,YAhBiB,SAgBL7gF,EAAOuvE,GAClBvvE,EAAM63E,WAAWhlH,KAAK08G,IAGvBuR,iBApBiB,SAoBA9gF,EAAO+gF,GAEvB/gF,EAAM63E,WAAakJ,GAGpBC,WAzBiB,SAyBNhhF,EAAO2/D,GACjB3/D,EAAM2/D,KAAOA,GAGdshB,SA7BiB,SA6BRjhF,EA7BQ21B,GA6Be,IAAf48C,EAAe58C,EAAf48C,MAAOr2G,EAAQy5D,EAARz5D,MAClBnP,MAAMc,QAAQ0kH,KAClBA,GAASA,IAEVA,EAAM98G,QAAQ,SAACuhF,GACJh3C,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAOukF,IACxC96E,MAAQA,KAIdglH,WAvCiB,SAuCNlhF,EAvCMirC,GAuCiB,IAAfsnC,EAAetnC,EAAfsnC,MAAetnC,EAAR/uE,MACf8jC,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IACxCr2G,MAAQ,MAGbilH,UA5CiB,SA4CPnhF,EA5COs+E,GA4CiB,IAAhB/L,EAAgB+L,EAAhB/L,MAAOrb,EAASonB,EAATpnB,OACpB0D,EAAM56D,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAC5C3X,EAAIt3F,QAAS,EACbs3F,EAAI1D,OAASA,GAGdkqB,WAlDiB,SAkDNphF,EAAOuyE,GACjB,IAAI3X,EAAM56D,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAC5C3X,EAAIt3F,QAAS,EACbs3F,EAAI1D,UACA0D,EAAIymB,YACPzmB,EAAIyW,cAAe,IAIrBiQ,aA3DiB,SA2DJthF,EAAOuyE,GACnBvyE,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAAOjvG,QAAS,EAClD08B,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAAOrb,UACzCl3D,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAAOJ,eAAgB,EACzDnyE,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAAO1+B,WAAY,EACrD7zC,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAAOlB,cAAe,EACxDrxE,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IAAOf,YAAa,GAGvD+P,UApEiB,SAoEPvhF,EAAOuyE,GAChB,IAAI3X,EAAM56D,EAAM2/D,KAAKp3D,KAAK,SAAAqyD,GAAA,OAAOA,EAAInoG,KAAO8/G,IACxC58F,EAAUilF,EAAI1nG,OAClB0nG,EAAI1nG,OAAS,KACb0nG,EAAIjlF,QAAUA,EACdqqB,EAAM23E,eAIP6J,UA7EiB,SA6EPxhF,GACTA,EAAM2/D,SAEPxpB,MAhFiB,SAgFXn2C,GACLA,EAAM2/D,QACN3/D,EAAM63E,cACN73E,EAAM23E,YAAc,GAErB8J,aArFiB,SAqFJzhF,EAAOvtC,GACf1F,MAAMc,QAAQ4E,GACjBA,EAAGgD,QAAQ,SAACuhF,GACX8sB,EAAA,EAAI5xG,IAAI8tC,EAAM5yB,QAAS4pE,GAAK,KAG7B8sB,EAAA,EAAI5xG,IAAI8tC,EAAM5yB,QAAS3a,GAAI,IAG7BivH,YA9FiB,SA8FL1hF,EAAOvtC,GACd1F,MAAMc,QAAQ4E,GACjBA,EAAGgD,QAAQ,SAACuhF,GACX8sB,EAAA,EAAI5xG,IAAI8tC,EAAM5yB,QAAS4pE,GAAK,KAG7B8sB,EAAA,EAAI5xG,IAAI8tC,EAAM5yB,QAAS3a,GAAI,KAuKK02G,SAjKlC/7F,QADe,SACP4yB,GACP,OAAO,SAASvtC,GACf,OAAOutC,EAAM5yB,QAAQ3a,KAGvBqlH,cANe,SAMD93E,GACb,OAAOA,EAAM63E,YAEd3D,WATe,SASJl0E,GACV,OAAOA,EAAM2/D,MAEdoY,eAZe,SAYA/3E,GACd,OAAOA,EAAM23E,cAqJ6B/U,SA/I3Cue,UAFe,SAELrtH,EAFKyqH,GAEuB,IAAjBhM,EAAiBgM,EAAjBhM,MAAOrb,EAAUqnB,EAAVrnB,OACvByI,SAMJ,OAJCA,EADG5yG,MAAMc,QAAQ0kH,GACVA,GAECA,GAEF5F,KAAmBvvG,KAAK,SAACwpD,GAG/B,OAFA9yD,EAAQo7D,OAAO,eAAgBywC,GAC/B7rG,EAAQo7D,OAAO,eAAgB,WACxBy9C,GAAS/E,GAAG2B,YAAH,yBAAyCoY,OAAQhiB,EAAMzI,OAAQA,IAC7E95F,KAAK,SAACwpD,GAQN,OAPA9yD,EAAQo7D,OAAO,cAAeywC,GAC9B7rG,EAAQo7D,OAAO,cAAe,WAC9BywC,EAAKlqG,QAAQ,SAAAmsH,GACZ9tH,EAAQo7D,OAAO,aAAcqjD,MAAOqP,EAAQ1qB,OAAQA,MAI9CyV,GAAQ/E,GAAG2B,YAAY,eAC5BnsG,KAAK,WACDwpD,EAASlzD,KAAKmuH,kBACjBja,GAAG2G,QAAQ7yG,KACVpV,EACC,WACA,6GAEDA,EAAE,WAAW,cACb,WACC+J,OAAO0qF,SAAS+mC,WAEjB,GAEDnlH,WAAW,WACVo+E,SAAS+mC,UACP,QAGJtgD,MAAM,SAACtlE,GACFnP,MAAMc,QAAQ0kH,IAClBz+G,EAAQo7D,OAAO,YACdqjD,MAAO5S,EACPzjG,MAAO5V,EAAE,WAAY,iFAKzBk7E,MAAM,SAACtlE,GACPpI,EAAQo7D,OAAO,cAAeywC,GAC9B7rG,EAAQo7D,OAAO,cAAe,WAC9Bp7D,EAAQo7D,OAAO,YACdqjD,MAAO5S,EACPzjG,MAAOA,EAAM0qD,SAASlzD,KAAKA,KAAKq0D,UAEjCj0D,EAAQo7D,OAAO,oBAAsBqjD,QAAOr2G,cAE5CslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBqjD,QAAOr2G,aAE5DklH,WA5De,SA4DJttH,EA5DI0qH,GA4DgB,IAATjM,EAASiM,EAATjM,MACjB5S,SAMJ,OAJCA,EADG5yG,MAAMc,QAAQ0kH,GACVA,GAECA,GAEF5F,KAAmBvvG,KAAK,SAACwpD,GAE/B,OADA9yD,EAAQo7D,OAAO,eAAgBywC,GACxBgN,GAAS/E,GAAG2B,YAAH,0BAA0CoY,OAAQhiB,IAChEviG,KAAK,SAACwpD,GAKN,OAJA9yD,EAAQo7D,OAAO,cAAeywC,GAC9BA,EAAKlqG,QAAQ,SAAAmsH,GACZ9tH,EAAQo7D,OAAO,aAAc0yD,MAEvB,IAEPpgD,MAAM,SAACtlE,GACPpI,EAAQo7D,OAAO,cAAeywC,GAC9B7rG,EAAQo7D,OAAO,oBAAsBqjD,QAAOr2G,cAE5CslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBqjD,QAAOr2G,aAE5DolH,aAnFe,SAmFFxtH,EAnFE8qH,GAmFkB,IAATrM,EAASqM,EAATrM,MACvB,OAAO5F,KAAmBvvG,KAAK,SAACwpD,GAE/B,OADA9yD,EAAQo7D,OAAO,eAAgBqjD,GACxB5F,GAAQ/E,GAAG2B,YAAH,2BAA0CgJ,IACvDn1G,KAAK,SAACwpD,GAGN,OAFA9yD,EAAQo7D,OAAO,cAAeqjD,GAC9Bz+G,EAAQo7D,OAAO,eAAgBqjD,IACxB,IAEP/wC,MAAM,SAACtlE,GACPpI,EAAQo7D,OAAO,cAAeqjD,GAC9Bz+G,EAAQo7D,OAAO,oBAAsBqjD,QAAOr2G,cAE5CslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBqjD,QAAOr2G,aAG5DqlH,UAnGe,SAmGLztH,EAnGKgrH,GAmGe,IAATvM,EAASuM,EAATvM,MACpB,OAAO5F,KAAmBvvG,KAAK,SAACwpD,GAG/B,OAFA9yD,EAAQo7D,OAAO,eAAgBqjD,GAC/Bz+G,EAAQo7D,OAAO,eAAgB,WACxBy9C,GAAQ/E,GAAG2B,YAAH,wBAAuCgJ,IACpDn1G,KAAK,SAACwpD,GAIN,OAHA9yD,EAAQo7D,OAAO,cAAe,WAC9Bp7D,EAAQo7D,OAAO,cAAeqjD,GAC9Bz+G,EAAQo7D,OAAO,YAAaqjD,IACrB,IAEP/wC,MAAM,SAACtlE,GACPpI,EAAQo7D,OAAO,cAAeqjD,GAC9Bz+G,EAAQo7D,OAAO,cAAe,WAC9Bp7D,EAAQo7D,OAAO,oBAAsBqjD,QAAOr2G,cAE5CslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiBqjD,QAAOr2G,aAG5Dg4G,WAtHe,SAsHJpgH,GAEV,OADAA,EAAQo7D,OAAO,eAAgB,QACxBy9C,GAAQ/E,GAAG2B,YAAH,uBACbnsG,KAAK,SAACwpD,GAGN,OAFA9yD,EAAQo7D,OAAO,aAActI,EAASlzD,KAAKisG,MAC3C7rG,EAAQo7D,OAAO,cAAe,SACvB,IAEPsS,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,MAGlD47G,cAjIe,SAiIDhkH,GAEb,OADAA,EAAQo7D,OAAO,eAAgB,cACxBy9C,GAAQ/E,GAAG2B,YAAY,6BAC5BnsG,KAAK,SAACwpD,GACN,OAAIA,EAASlzD,KAAK3I,OAAS,IAC1B+I,EAAQo7D,OAAO,mBAAoBtI,EAASlzD,MAC5CI,EAAQo7D,OAAO,cAAe,eACvB,KAIRsS,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,cAAehzD,QCjQnDsoG,IAAgBxkE,OAdf+hF,eAcsBrzD,WAXtBszD,cADiB,SACHhiF,EAAOtsC,GACpBssC,EAAM+hF,WAAaruH,IAUay1G,SANjCoC,cADe,SACDvrE,GACb,OAAOA,EAAM+hF,aAK4Bnf,YCO3Cqf,IAAgBjiF,SAAO0uB,aAAWy6C,WAASvG,SAR1Csf,aAXe,SAWFpuH,EAXE0hE,GAW0B,IAAlBolC,EAAkBplC,EAAlBolC,IAAKj0G,EAAa6uE,EAAb7uE,IAAKN,EAAQmvE,EAARnvE,MAChC,OAAOsmH,KAAmBvvG,KAAK,SAACwpD,GAC/B,OAAO+lD,GAAS/E,GAAGsX,UAAH,4CAAyDtkB,EAAzD,IAAgEj0G,EAAO,IAAKN,MAAOA,IACjGm7E,MAAM,SAACtlE,GAAW,MAAMA,MACxBslE,MAAM,SAACtlE,GAAD,OAAWpI,EAAQo7D,OAAO,eAAiB0rC,MAAKj0G,MAAKN,QAAO6V;;;;;;;;;;;;;;;;;;;;;;;ACZvE4nG,EAAA,EAAI7yF,IAAI2sG,IAER,IAEMuE,IACLC,YADiB,SACLpiF,EAAO9jC,GAClB,IACC,IAAI6rD,EAAU7rD,EAAMA,MAAM0qD,SAASlzD,KAAKirH,IAAIjgF,KAAKqpB,QACjD6/C,GAAGmD,aAAa2V,SAASp6H,EAAE,WAAW,2DAA2D,OAAOyhE,GAAUn6C,QAAS,IAC1H,MAAM5f,GACP45G,GAAGmD,aAAaC,cAAc1kH,EAAE,WAAW,4DAE5C2V,QAAQ2gD,IAAI5c,EAAO9jC,KAIrBioC,GAAA,IAAmBy5E,GAAK/D,OACvBv0H,SACCk8G,SACA7B,KAAA6gB,GACAhc,YACAyd,OAEDjrB,QArBa,EAuBbtoC,UAAAyzD,8ECvDDn9H,EAAAU,EAAAq+C,EAAA,0BAAAI;;;;;;;;;;;;;;;;;;;;;;+pBA8BAr+C,OAAAu8H,EAAA,KAAAv8H,CAAKq+C,GAAOkqB,IAGZy1C,EAAA,EAAI98G,UAAUV,EAAIA,EAClBw9G,EAAA,EAAI98G,UAAU4gH,GAAKA,GACnB9D,EAAA,EAAI98G,UAAUokH,IAAMA,IACpBtH,EAAA,EAAI98G,UAAUwiH,cAAgBA,cAC9B1F,EAAA,EAAI98G,UAAU0kH,gBAAkBA,gBAEhC,IAAM4W,GAAM,IAAIxe,EAAA,GACfz1C,UACAlqB,SACA79B,OAAQ,SAAAuoB,GAAA,OAAKA,EAAEiiE,MACbrlF,OAAO","file":"settings-vue.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 239);\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","/*!\n * Vue.js v2.5.16\n * (c) 2014-2018 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// these helpers produces better vm code in JS engines due to their\n// explicitness and function inlining\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value e.g. [object Object]\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : typeof val === 'object'\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert a input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if a attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether the object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it... e.g.\n * PhantomJS 1.x. Technically we don't need this anymore since native bind is\n * now more performant in most browsers, but removing it would be breaking for\n * code that was able to run in PhantomJS 1.x, so this must be kept for\n * backwards compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/)\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/**\n * Return same value\n */\nvar identity = function (_) { return _; };\n\n/**\n * Generate a static keys string from compiler modules.\n */\nfunction genStaticKeys (modules) {\n return modules.reduce(function (keys, m) {\n return keys.concat(m.staticKeys || [])\n }, []).join(',')\n}\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured'\n];\n\n/* */\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n})\n\n/* */\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = /[^\\w.$]/;\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = (function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm || {};\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// the current target watcher being evaluated.\n// this is globally unique because there could be only one\n// watcher being evaluated at any time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (_target) {\n if (Dep.target) { targetStack.push(Dep.target); }\n Dep.target = _target;\n}\n\nfunction popTarget () {\n Dep.target = targetStack.pop();\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n vnode.children,\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n var augment = hasProto\n ? protoAugment\n : copyAugment;\n augment(value, arrayMethods, arrayKeys);\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through each property and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment an target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src, keys) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment an target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n if (!getter && arguments.length === 2) {\n val = obj[key];\n }\n var setter = property && property.set;\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n var keys = Object.keys(from);\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (isPlainObject(toVal) && isPlainObject(fromVal)) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n return childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!/^[a-zA-Z][\\w-]*$/.test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'can only contain alphanumeric characters and the hyphen, ' +\n 'and must start with a letter.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def = dirs[key];\n if (typeof def === 'function') {\n dirs[key] = { bind: def, update: def };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n var extendsFrom = child.extends;\n if (extendsFrom) {\n parent = mergeOptions(parent, extendsFrom, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false && isObject(value) && ('@binding' in value))\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n if (!valid) {\n warn(\n \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', ')) +\n \", got \" + (toRawType(value)) + \".\",\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n logError(e, null, 'config.errorHandler');\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n/* globals MessageChannel */\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using both microtasks and (macro) tasks.\n// In < 2.4 we used microtasks everywhere, but there are some scenarios where\n// microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690) or even between bubbling of the same\n// event (#6566). However, using (macro) tasks everywhere also has subtle problems\n// when state is changed right before repaint (e.g. #6813, out-in transitions).\n// Here we use microtask by default, but expose a way to force (macro) task when\n// needed (e.g. in event handlers attached by v-on).\nvar microTimerFunc;\nvar macroTimerFunc;\nvar useMacroTask = false;\n\n// Determine (macro) task defer implementation.\n// Technically setImmediate should be the ideal choice, but it's only available\n// in IE. The only polyfill that consistently queues the callback after all DOM\n// events triggered in the same loop is by using MessageChannel.\n/* istanbul ignore if */\nif (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n macroTimerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else if (typeof MessageChannel !== 'undefined' && (\n isNative(MessageChannel) ||\n // PhantomJS\n MessageChannel.toString() === '[object MessageChannelConstructor]'\n)) {\n var channel = new MessageChannel();\n var port = channel.port2;\n channel.port1.onmessage = flushCallbacks;\n macroTimerFunc = function () {\n port.postMessage(1);\n };\n} else {\n /* istanbul ignore next */\n macroTimerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\n// Determine microtask defer implementation.\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n microTimerFunc = function () {\n p.then(flushCallbacks);\n // in problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n} else {\n // fallback to macro\n microTimerFunc = macroTimerFunc;\n}\n\n/**\n * Wrap a function so that if any code inside triggers state change,\n * the changes are queued using a (macro) task instead of a microtask.\n */\nfunction withMacroTask (fn) {\n return fn._withTask || (fn._withTask = function () {\n useMacroTask = true;\n var res = fn.apply(null, arguments);\n useMacroTask = false;\n return res\n })\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n if (useMacroTask) {\n macroTimerFunc();\n } else {\n microTimerFunc();\n }\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n perf.clearMeasures(name);\n };\n }\n}\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) || key.charAt(0) === '_';\n if (!has && !isAllowed) {\n warnNonPresent(target, key);\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n warnNonPresent(target, key);\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n cloned[i].apply(null, arguments$1);\n }\n } else {\n // return handler return value for single handlers\n return fns.apply(null, arguments)\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n vm\n) {\n var name, def, cur, old, event;\n for (name in on) {\n def = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n /* istanbul ignore if */\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur);\n }\n add(event.name, cur, event.once, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor,\n context\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (isDef(factory.contexts)) {\n // already pending\n factory.contexts.push(context);\n } else {\n var contexts = factory.contexts = [context];\n var sync = true;\n\n var forceRender = function () {\n for (var i = 0, l = contexts.length; i < l; i++) {\n contexts[i].$forceUpdate();\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender();\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender();\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (typeof res.then === 'function') {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isDef(res.component) && typeof res.component.then === 'function') {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n setTimeout(function () {\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender();\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n setTimeout(function () {\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn, once) {\n if (once) {\n target.$once(event, fn);\n } else {\n target.$on(event, fn);\n }\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$off(event[i], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n if (fn) {\n // specific handler\n var cb;\n var i$1 = cbs.length;\n while (i$1--) {\n cb = cbs[i$1];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i$1, 1);\n break\n }\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n for (var i = 0, l = cbs.length; i < l; i++) {\n try {\n cbs[i].apply(vm, args);\n } catch (e) {\n handleError(e, vm, (\"event handler for \\\"\" + event + \"\\\"\"));\n }\n }\n }\n return vm\n };\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n var slots = {};\n if (!children) {\n return slots\n }\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res\n) {\n res = res || {};\n for (var i = 0; i < fns.length; i++) {\n if (Array.isArray(fns[i])) {\n resolveScopedSlots(fns[i], res);\n } else {\n res[fns[i].key] = fns[i].fn;\n }\n }\n return res\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n if (vm._isMounted) {\n callHook(vm, 'beforeUpdate');\n }\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(\n vm.$el, vnode, hydrating, false /* removeOnly */,\n vm.$options._parentElm,\n vm.$options._refElm\n );\n // no need for the ref nodes after initial patch\n // this prevents keeping a detached DOM tree in memory (#5851)\n vm.$options._parentElm = vm.$options._refElm = null;\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n activeInstance = prevActiveInstance;\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, null, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren\n var hasChildren = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n parentVnode.data.scopedSlots || // has new scoped slots\n vm.$scopedSlots !== emptyObject // has old scoped slots\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (hasChildren) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n try {\n handlers[i].call(vm);\n } catch (e) {\n handleError(e, vm, (hook + \" hook\"));\n }\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\nvar uid$1 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$1; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = function () {};\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n var dep = this$1.deps[i];\n if (!this$1.newDepIds.has(dep.id)) {\n dep.removeSub(this$1);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n var this$1 = this;\n\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].removeSub(this$1);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive(props, key, value, function () {\n if (vm.$parent && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : userDef;\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : userDef.get\n : noop;\n sharedPropertyDefinition.set = userDef.set\n ? userDef.set\n : noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (methods[key] == null) {\n warn(\n \"Method \\\"\" + key + \"\\\" has an undefined value in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = methods[key] == null ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function (newData) {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n cb.call(vm, watcher.value);\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject).filter(function (key) {\n /* istanbul ignore next */\n return Object.getOwnPropertyDescriptor(inject, key).enumerable\n })\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n if (isDef(ret)) {\n (ret)._isVList = true;\n }\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n var slotNodes = this.$slots[name];\n // warn duplicate slot usage\n if (slotNodes) {\n if (process.env.NODE_ENV !== 'production' && slotNodes._rendered) {\n warn(\n \"Duplicate presence of slot \\\"\" + name + \"\\\" found in the same render tree \" +\n \"- this will likely cause render errors.\",\n this\n );\n }\n slotNodes._rendered = true;\n }\n nodes = slotNodes || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n if (!(key in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () { return resolveSlots(children, parent); };\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = data.scopedSlots || emptyObject;\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n\n\n\n// Register the component hook to weex native render engine.\n// The hook will be triggered by native, not javascript.\n\n\n// Updates the state of the component to weex native render engine.\n\n/* */\n\n// https://github.com/Hanks10100/weex-native-directive/tree/master/component\n\n// listening on native callback\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (\n vnode,\n hydrating,\n parentElm,\n refElm\n ) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance,\n parentElm,\n refElm\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor, context);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n // Weex specific: invoke recycle-list optimized @render function for\n // extracting cell-slot template.\n // https://github.com/Hanks10100/weex-native-directive/tree/master/component\n /* istanbul ignore if */\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent, // activeInstance in lifecycle state\n parentElm,\n refElm\n) {\n var options = {\n _isComponent: true,\n parent: parent,\n _parentVnode: vnode,\n _parentElm: parentElm || null,\n _refElm: refElm || null\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n hooks[key] = componentVNodeHooks[key];\n }\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input';(data.props || (data.props = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n if (isDef(on[event])) {\n on[event] = [data.model.callback].concat(on[event]);\n } else {\n on[event] = data.model.callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if (isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n // reset _rendered flag on slots for duplicate slot check\n if (process.env.NODE_ENV !== 'production') {\n for (var key in vm.$slots) {\n // $flow-disable-line\n vm.$slots[key]._rendered = false;\n }\n }\n\n if (_parentVnode) {\n vm.$scopedSlots = _parentVnode.data.scopedSlots || emptyObject;\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n if (vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n opts._parentElm = options._parentElm;\n opts._refElm = options._refElm;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var extended = Ctor.extendOptions;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = dedupe(latest[key], extended[key], sealed[key]);\n }\n }\n return modified\n}\n\nfunction dedupe (latest, extended, sealed) {\n // compare latest and sealed to ensure lifecycle hooks won't be duplicated\n // between merges\n if (Array.isArray(latest)) {\n var res = [];\n sealed = Array.isArray(sealed) ? sealed : [sealed];\n extended = Array.isArray(extended) ? extended : [extended];\n for (var i = 0; i < latest.length; i++) {\n // push original options and not sealed options to exclude duplicated options\n if (extended.indexOf(latest[i]) >= 0 || sealed.indexOf(latest[i]) < 0) {\n res.push(latest[i]);\n }\n }\n return res\n } else {\n return latest\n }\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n var this$1 = this;\n\n for (var key in this$1.cache) {\n pruneCacheEntry(this$1.cache, key, this$1.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n}\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n}\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.5.16';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isPreTag = function (tag) { return tag === 'pre'; };\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\n\nvar nodeOps = Object.freeze({\n\tcreateElement: createElement$1,\n\tcreateElementNS: createElementNS,\n\tcreateTextNode: createTextNode,\n\tcreateComment: createComment,\n\tinsertBefore: insertBefore,\n\tremoveChild: removeChild,\n\tappendChild: appendChild,\n\tparentNode: parentNode,\n\tnextSibling: nextSibling,\n\ttagName: tagName,\n\tsetTextContent: setTextContent,\n\tsetStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n}\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove () {\n if (--remove.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove.listeners = listeners;\n return remove\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */, parentElm, refElm);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (ref$$1.parentNode === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (parentElm, vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(parentElm, oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (oldVnode, vnode, insertedVnodeQueue, removeOnly) {\n if (oldVnode === vnode) {\n return\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(elm, oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly, parentElm, refElm) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue, parentElm, refElm);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm$1 = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm$1,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm$1)) {\n removeVnodes(parentElm$1, [oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n}\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n]\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true');\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n}\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n}\n\n/* */\n\nvar validDivisionCharRE = /[\\w).+\\-_$\\]]/;\n\nfunction parseFilters (exp) {\n var inSingle = false;\n var inDouble = false;\n var inTemplateString = false;\n var inRegex = false;\n var curly = 0;\n var square = 0;\n var paren = 0;\n var lastFilterIndex = 0;\n var c, prev, i, expression, filters;\n\n for (i = 0; i < exp.length; i++) {\n prev = c;\n c = exp.charCodeAt(i);\n if (inSingle) {\n if (c === 0x27 && prev !== 0x5C) { inSingle = false; }\n } else if (inDouble) {\n if (c === 0x22 && prev !== 0x5C) { inDouble = false; }\n } else if (inTemplateString) {\n if (c === 0x60 && prev !== 0x5C) { inTemplateString = false; }\n } else if (inRegex) {\n if (c === 0x2f && prev !== 0x5C) { inRegex = false; }\n } else if (\n c === 0x7C && // pipe\n exp.charCodeAt(i + 1) !== 0x7C &&\n exp.charCodeAt(i - 1) !== 0x7C &&\n !curly && !square && !paren\n ) {\n if (expression === undefined) {\n // first filter, end of expression\n lastFilterIndex = i + 1;\n expression = exp.slice(0, i).trim();\n } else {\n pushFilter();\n }\n } else {\n switch (c) {\n case 0x22: inDouble = true; break // \"\n case 0x27: inSingle = true; break // '\n case 0x60: inTemplateString = true; break // `\n case 0x28: paren++; break // (\n case 0x29: paren--; break // )\n case 0x5B: square++; break // [\n case 0x5D: square--; break // ]\n case 0x7B: curly++; break // {\n case 0x7D: curly--; break // }\n }\n if (c === 0x2f) { // /\n var j = i - 1;\n var p = (void 0);\n // find first non-whitespace prev char\n for (; j >= 0; j--) {\n p = exp.charAt(j);\n if (p !== ' ') { break }\n }\n if (!p || !validDivisionCharRE.test(p)) {\n inRegex = true;\n }\n }\n }\n }\n\n if (expression === undefined) {\n expression = exp.slice(0, i).trim();\n } else if (lastFilterIndex !== 0) {\n pushFilter();\n }\n\n function pushFilter () {\n (filters || (filters = [])).push(exp.slice(lastFilterIndex, i).trim());\n lastFilterIndex = i + 1;\n }\n\n if (filters) {\n for (i = 0; i < filters.length; i++) {\n expression = wrapFilter(expression, filters[i]);\n }\n }\n\n return expression\n}\n\nfunction wrapFilter (exp, filter) {\n var i = filter.indexOf('(');\n if (i < 0) {\n // _f: resolveFilter\n return (\"_f(\\\"\" + filter + \"\\\")(\" + exp + \")\")\n } else {\n var name = filter.slice(0, i);\n var args = filter.slice(i + 1);\n return (\"_f(\\\"\" + name + \"\\\")(\" + exp + (args !== ')' ? ',' + args : args))\n }\n}\n\n/* */\n\nfunction baseWarn (msg) {\n console.error((\"[Vue compiler]: \" + msg));\n}\n\nfunction pluckModuleFunction (\n modules,\n key\n) {\n return modules\n ? modules.map(function (m) { return m[key]; }).filter(function (_) { return _; })\n : []\n}\n\nfunction addProp (el, name, value) {\n (el.props || (el.props = [])).push({ name: name, value: value });\n el.plain = false;\n}\n\nfunction addAttr (el, name, value) {\n (el.attrs || (el.attrs = [])).push({ name: name, value: value });\n el.plain = false;\n}\n\n// add a raw attr (use this in preTransforms)\nfunction addRawAttr (el, name, value) {\n el.attrsMap[name] = value;\n el.attrsList.push({ name: name, value: value });\n}\n\nfunction addDirective (\n el,\n name,\n rawName,\n value,\n arg,\n modifiers\n) {\n (el.directives || (el.directives = [])).push({ name: name, rawName: rawName, value: value, arg: arg, modifiers: modifiers });\n el.plain = false;\n}\n\nfunction addHandler (\n el,\n name,\n value,\n modifiers,\n important,\n warn\n) {\n modifiers = modifiers || emptyObject;\n // warn prevent and passive modifier\n /* istanbul ignore if */\n if (\n process.env.NODE_ENV !== 'production' && warn &&\n modifiers.prevent && modifiers.passive\n ) {\n warn(\n 'passive and prevent can\\'t be used together. ' +\n 'Passive handler can\\'t prevent default event.'\n );\n }\n\n // check capture modifier\n if (modifiers.capture) {\n delete modifiers.capture;\n name = '!' + name; // mark the event as captured\n }\n if (modifiers.once) {\n delete modifiers.once;\n name = '~' + name; // mark the event as once\n }\n /* istanbul ignore if */\n if (modifiers.passive) {\n delete modifiers.passive;\n name = '&' + name; // mark the event as passive\n }\n\n // normalize click.right and click.middle since they don't actually fire\n // this is technically browser-specific, but at least for now browsers are\n // the only target envs that have right/middle clicks.\n if (name === 'click') {\n if (modifiers.right) {\n name = 'contextmenu';\n delete modifiers.right;\n } else if (modifiers.middle) {\n name = 'mouseup';\n }\n }\n\n var events;\n if (modifiers.native) {\n delete modifiers.native;\n events = el.nativeEvents || (el.nativeEvents = {});\n } else {\n events = el.events || (el.events = {});\n }\n\n var newHandler = {\n value: value.trim()\n };\n if (modifiers !== emptyObject) {\n newHandler.modifiers = modifiers;\n }\n\n var handlers = events[name];\n /* istanbul ignore if */\n if (Array.isArray(handlers)) {\n important ? handlers.unshift(newHandler) : handlers.push(newHandler);\n } else if (handlers) {\n events[name] = important ? [newHandler, handlers] : [handlers, newHandler];\n } else {\n events[name] = newHandler;\n }\n\n el.plain = false;\n}\n\nfunction getBindingAttr (\n el,\n name,\n getStatic\n) {\n var dynamicValue =\n getAndRemoveAttr(el, ':' + name) ||\n getAndRemoveAttr(el, 'v-bind:' + name);\n if (dynamicValue != null) {\n return parseFilters(dynamicValue)\n } else if (getStatic !== false) {\n var staticValue = getAndRemoveAttr(el, name);\n if (staticValue != null) {\n return JSON.stringify(staticValue)\n }\n }\n}\n\n// note: this only removes the attr from the Array (attrsList) so that it\n// doesn't get processed by processAttrs.\n// By default it does NOT remove it from the map (attrsMap) because the map is\n// needed during codegen.\nfunction getAndRemoveAttr (\n el,\n name,\n removeFromMap\n) {\n var val;\n if ((val = el.attrsMap[name]) != null) {\n var list = el.attrsList;\n for (var i = 0, l = list.length; i < l; i++) {\n if (list[i].name === name) {\n list.splice(i, 1);\n break\n }\n }\n }\n if (removeFromMap) {\n delete el.attrsMap[name];\n }\n return val\n}\n\n/* */\n\n/**\n * Cross-platform code generation for component v-model\n */\nfunction genComponentModel (\n el,\n value,\n modifiers\n) {\n var ref = modifiers || {};\n var number = ref.number;\n var trim = ref.trim;\n\n var baseValueExpression = '$$v';\n var valueExpression = baseValueExpression;\n if (trim) {\n valueExpression =\n \"(typeof \" + baseValueExpression + \" === 'string'\" +\n \"? \" + baseValueExpression + \".trim()\" +\n \": \" + baseValueExpression + \")\";\n }\n if (number) {\n valueExpression = \"_n(\" + valueExpression + \")\";\n }\n var assignment = genAssignmentCode(value, valueExpression);\n\n el.model = {\n value: (\"(\" + value + \")\"),\n expression: (\"\\\"\" + value + \"\\\"\"),\n callback: (\"function (\" + baseValueExpression + \") {\" + assignment + \"}\")\n };\n}\n\n/**\n * Cross-platform codegen helper for generating v-model value assignment code.\n */\nfunction genAssignmentCode (\n value,\n assignment\n) {\n var res = parseModel(value);\n if (res.key === null) {\n return (value + \"=\" + assignment)\n } else {\n return (\"$set(\" + (res.exp) + \", \" + (res.key) + \", \" + assignment + \")\")\n }\n}\n\n/**\n * Parse a v-model expression into a base path and a final key segment.\n * Handles both dot-path and possible square brackets.\n *\n * Possible cases:\n *\n * - test\n * - test[key]\n * - test[test1[key]]\n * - test[\"a\"][key]\n * - xxx.test[a[a].test1[key]]\n * - test.xxx.a[\"asa\"][test1[key]]\n *\n */\n\nvar len;\nvar str;\nvar chr;\nvar index$1;\nvar expressionPos;\nvar expressionEndPos;\n\n\n\nfunction parseModel (val) {\n // Fix https://github.com/vuejs/vue/pull/7730\n // allow v-model=\"obj.val \" (trailing whitespace)\n val = val.trim();\n len = val.length;\n\n if (val.indexOf('[') < 0 || val.lastIndexOf(']') < len - 1) {\n index$1 = val.lastIndexOf('.');\n if (index$1 > -1) {\n return {\n exp: val.slice(0, index$1),\n key: '\"' + val.slice(index$1 + 1) + '\"'\n }\n } else {\n return {\n exp: val,\n key: null\n }\n }\n }\n\n str = val;\n index$1 = expressionPos = expressionEndPos = 0;\n\n while (!eof()) {\n chr = next();\n /* istanbul ignore if */\n if (isStringStart(chr)) {\n parseString(chr);\n } else if (chr === 0x5B) {\n parseBracket(chr);\n }\n }\n\n return {\n exp: val.slice(0, expressionPos),\n key: val.slice(expressionPos + 1, expressionEndPos)\n }\n}\n\nfunction next () {\n return str.charCodeAt(++index$1)\n}\n\nfunction eof () {\n return index$1 >= len\n}\n\nfunction isStringStart (chr) {\n return chr === 0x22 || chr === 0x27\n}\n\nfunction parseBracket (chr) {\n var inBracket = 1;\n expressionPos = index$1;\n while (!eof()) {\n chr = next();\n if (isStringStart(chr)) {\n parseString(chr);\n continue\n }\n if (chr === 0x5B) { inBracket++; }\n if (chr === 0x5D) { inBracket--; }\n if (inBracket === 0) {\n expressionEndPos = index$1;\n break\n }\n }\n}\n\nfunction parseString (chr) {\n var stringQuote = chr;\n while (!eof()) {\n chr = next();\n if (chr === stringQuote) {\n break\n }\n }\n}\n\n/* */\n\nvar warn$1;\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\nfunction model (\n el,\n dir,\n _warn\n) {\n warn$1 = _warn;\n var value = dir.value;\n var modifiers = dir.modifiers;\n var tag = el.tag;\n var type = el.attrsMap.type;\n\n if (process.env.NODE_ENV !== 'production') {\n // inputs with type=\"file\" are read only and setting the input's\n // value will throw an error.\n if (tag === 'input' && type === 'file') {\n warn$1(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\" type=\\\"file\\\">:\\n\" +\n \"File inputs are read only. Use a v-on:change listener instead.\"\n );\n }\n }\n\n if (el.component) {\n genComponentModel(el, value, modifiers);\n // component v-model doesn't need extra runtime\n return false\n } else if (tag === 'select') {\n genSelect(el, value, modifiers);\n } else if (tag === 'input' && type === 'checkbox') {\n genCheckboxModel(el, value, modifiers);\n } else if (tag === 'input' && type === 'radio') {\n genRadioModel(el, value, modifiers);\n } else if (tag === 'input' || tag === 'textarea') {\n genDefaultModel(el, value, modifiers);\n } else if (!config.isReservedTag(tag)) {\n genComponentModel(el, value, modifiers);\n // component v-model doesn't need extra runtime\n return false\n } else if (process.env.NODE_ENV !== 'production') {\n warn$1(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\">: \" +\n \"v-model is not supported on this element type. \" +\n 'If you are working with contenteditable, it\\'s recommended to ' +\n 'wrap a library dedicated for that purpose inside a custom component.'\n );\n }\n\n // ensure runtime directive metadata\n return true\n}\n\nfunction genCheckboxModel (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var valueBinding = getBindingAttr(el, 'value') || 'null';\n var trueValueBinding = getBindingAttr(el, 'true-value') || 'true';\n var falseValueBinding = getBindingAttr(el, 'false-value') || 'false';\n addProp(el, 'checked',\n \"Array.isArray(\" + value + \")\" +\n \"?_i(\" + value + \",\" + valueBinding + \")>-1\" + (\n trueValueBinding === 'true'\n ? (\":(\" + value + \")\")\n : (\":_q(\" + value + \",\" + trueValueBinding + \")\")\n )\n );\n addHandler(el, 'change',\n \"var $$a=\" + value + \",\" +\n '$$el=$event.target,' +\n \"$$c=$$el.checked?(\" + trueValueBinding + \"):(\" + falseValueBinding + \");\" +\n 'if(Array.isArray($$a)){' +\n \"var $$v=\" + (number ? '_n(' + valueBinding + ')' : valueBinding) + \",\" +\n '$$i=_i($$a,$$v);' +\n \"if($$el.checked){$$i<0&&(\" + (genAssignmentCode(value, '$$a.concat([$$v])')) + \")}\" +\n \"else{$$i>-1&&(\" + (genAssignmentCode(value, '$$a.slice(0,$$i).concat($$a.slice($$i+1))')) + \")}\" +\n \"}else{\" + (genAssignmentCode(value, '$$c')) + \"}\",\n null, true\n );\n}\n\nfunction genRadioModel (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var valueBinding = getBindingAttr(el, 'value') || 'null';\n valueBinding = number ? (\"_n(\" + valueBinding + \")\") : valueBinding;\n addProp(el, 'checked', (\"_q(\" + value + \",\" + valueBinding + \")\"));\n addHandler(el, 'change', genAssignmentCode(value, valueBinding), null, true);\n}\n\nfunction genSelect (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var selectedVal = \"Array.prototype.filter\" +\n \".call($event.target.options,function(o){return o.selected})\" +\n \".map(function(o){var val = \\\"_value\\\" in o ? o._value : o.value;\" +\n \"return \" + (number ? '_n(val)' : 'val') + \"})\";\n\n var assignment = '$event.target.multiple ? $$selectedVal : $$selectedVal[0]';\n var code = \"var $$selectedVal = \" + selectedVal + \";\";\n code = code + \" \" + (genAssignmentCode(value, assignment));\n addHandler(el, 'change', code, null, true);\n}\n\nfunction genDefaultModel (\n el,\n value,\n modifiers\n) {\n var type = el.attrsMap.type;\n\n // warn if v-bind:value conflicts with v-model\n // except for inputs with v-bind:type\n if (process.env.NODE_ENV !== 'production') {\n var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];\n var typeBinding = el.attrsMap['v-bind:type'] || el.attrsMap[':type'];\n if (value$1 && !typeBinding) {\n var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';\n warn$1(\n binding + \"=\\\"\" + value$1 + \"\\\" conflicts with v-model on the same element \" +\n 'because the latter already expands to a value binding internally'\n );\n }\n }\n\n var ref = modifiers || {};\n var lazy = ref.lazy;\n var number = ref.number;\n var trim = ref.trim;\n var needCompositionGuard = !lazy && type !== 'range';\n var event = lazy\n ? 'change'\n : type === 'range'\n ? RANGE_TOKEN\n : 'input';\n\n var valueExpression = '$event.target.value';\n if (trim) {\n valueExpression = \"$event.target.value.trim()\";\n }\n if (number) {\n valueExpression = \"_n(\" + valueExpression + \")\";\n }\n\n var code = genAssignmentCode(value, valueExpression);\n if (needCompositionGuard) {\n code = \"if($event.target.composing)return;\" + code;\n }\n\n addProp(el, 'value', (\"(\" + value + \")\"));\n addHandler(el, event, code, null, true);\n if (trim || number) {\n addHandler(el, 'blur', '$forceUpdate()');\n }\n}\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler (handler, event, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\nfunction add$1 (\n event,\n handler,\n once$$1,\n capture,\n passive\n) {\n handler = withMacroTask(handler);\n if (once$$1) { handler = createOnceHandler(handler, event, capture); }\n target$1.addEventListener(\n event,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n event,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n event,\n handler._withTask || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n}\n\n/* */\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (isUndef(props[key])) {\n elm[key] = '';\n }\n }\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else {\n elm[key] = cur;\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.lazy) {\n // inputs with lazy should only be updated when not in focus\n return false\n }\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n}\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n}\n\n/* */\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def) {\n if (!def) {\n return\n }\n /* istanbul ignore else */\n if (typeof def === 'object') {\n var res = {};\n if (def.css !== false) {\n extend(res, autoCssTransition(def.name || 'v'));\n }\n extend(res, def);\n return res\n } else if (typeof def === 'string') {\n return autoCssTransition(def)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n var transitionDelays = styles[transitionProp + 'Delay'].split(', ');\n var transitionDurations = styles[transitionProp + 'Duration'].split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = styles[animationProp + 'Delay'].split(', ');\n var animationDurations = styles[animationProp + 'Duration'].split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\nfunction toMs (s) {\n return Number(s.slice(0, -1)) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n transitionNode = transitionNode.parent;\n context = transitionNode.context;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {}\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n]\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n}\n\nvar platformDirectives = {\n model: directive,\n show: show\n}\n\n/* */\n\n// Provides transition support for a single element/component.\n// supports transition mode (out-in / in-out)\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(function (c) { return c.tag || isAsyncPlaceholder(c); });\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(function (d) { return d.name === 'show'; })) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n}\n\n/* */\n\n// Provides transition support for list items.\n// supports move transitions using the FLIP technique.\n\n// Because the vdom's children update algorithm is \"unstable\" - i.e.\n// it doesn't guarantee the relative positioning of removed elements,\n// we force transition-group to update its children into two passes:\n// in the first pass, we remove all nodes that need to be removed,\n// triggering their leaving transition; in the second pass, we insert/move\n// into the final desired state. This way in the second pass removed\n// nodes will remain where they should be.\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n beforeUpdate: function beforeUpdate () {\n // force removing pass\n this.__patch__(\n this._vnode,\n this.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this._vnode = this.kept;\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n}\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n}\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n isChrome\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nvar defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g;\nvar regexEscapeRE = /[-.*+?^${}()|[\\]\\/\\\\]/g;\n\nvar buildRegex = cached(function (delimiters) {\n var open = delimiters[0].replace(regexEscapeRE, '\\\\$&');\n var close = delimiters[1].replace(regexEscapeRE, '\\\\$&');\n return new RegExp(open + '((?:.|\\\\n)+?)' + close, 'g')\n});\n\n\n\nfunction parseText (\n text,\n delimiters\n) {\n var tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE;\n if (!tagRE.test(text)) {\n return\n }\n var tokens = [];\n var rawTokens = [];\n var lastIndex = tagRE.lastIndex = 0;\n var match, index, tokenValue;\n while ((match = tagRE.exec(text))) {\n index = match.index;\n // push text token\n if (index > lastIndex) {\n rawTokens.push(tokenValue = text.slice(lastIndex, index));\n tokens.push(JSON.stringify(tokenValue));\n }\n // tag token\n var exp = parseFilters(match[1].trim());\n tokens.push((\"_s(\" + exp + \")\"));\n rawTokens.push({ '@binding': exp });\n lastIndex = index + match[0].length;\n }\n if (lastIndex < text.length) {\n rawTokens.push(tokenValue = text.slice(lastIndex));\n tokens.push(JSON.stringify(tokenValue));\n }\n return {\n expression: tokens.join('+'),\n tokens: rawTokens\n }\n}\n\n/* */\n\nfunction transformNode (el, options) {\n var warn = options.warn || baseWarn;\n var staticClass = getAndRemoveAttr(el, 'class');\n if (process.env.NODE_ENV !== 'production' && staticClass) {\n var res = parseText(staticClass, options.delimiters);\n if (res) {\n warn(\n \"class=\\\"\" + staticClass + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div class=\"{{ val }}\">, use <div :class=\"val\">.'\n );\n }\n }\n if (staticClass) {\n el.staticClass = JSON.stringify(staticClass);\n }\n var classBinding = getBindingAttr(el, 'class', false /* getStatic */);\n if (classBinding) {\n el.classBinding = classBinding;\n }\n}\n\nfunction genData (el) {\n var data = '';\n if (el.staticClass) {\n data += \"staticClass:\" + (el.staticClass) + \",\";\n }\n if (el.classBinding) {\n data += \"class:\" + (el.classBinding) + \",\";\n }\n return data\n}\n\nvar klass$1 = {\n staticKeys: ['staticClass'],\n transformNode: transformNode,\n genData: genData\n}\n\n/* */\n\nfunction transformNode$1 (el, options) {\n var warn = options.warn || baseWarn;\n var staticStyle = getAndRemoveAttr(el, 'style');\n if (staticStyle) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n var res = parseText(staticStyle, options.delimiters);\n if (res) {\n warn(\n \"style=\\\"\" + staticStyle + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div style=\"{{ val }}\">, use <div :style=\"val\">.'\n );\n }\n }\n el.staticStyle = JSON.stringify(parseStyleText(staticStyle));\n }\n\n var styleBinding = getBindingAttr(el, 'style', false /* getStatic */);\n if (styleBinding) {\n el.styleBinding = styleBinding;\n }\n}\n\nfunction genData$1 (el) {\n var data = '';\n if (el.staticStyle) {\n data += \"staticStyle:\" + (el.staticStyle) + \",\";\n }\n if (el.styleBinding) {\n data += \"style:(\" + (el.styleBinding) + \"),\";\n }\n return data\n}\n\nvar style$1 = {\n staticKeys: ['staticStyle'],\n transformNode: transformNode$1,\n genData: genData$1\n}\n\n/* */\n\nvar decoder;\n\nvar he = {\n decode: function decode (html) {\n decoder = decoder || document.createElement('div');\n decoder.innerHTML = html;\n return decoder.textContent\n }\n}\n\n/* */\n\nvar isUnaryTag = makeMap(\n 'area,base,br,col,embed,frame,hr,img,input,isindex,keygen,' +\n 'link,meta,param,source,track,wbr'\n);\n\n// Elements that you can, intentionally, leave open\n// (and which close themselves)\nvar canBeLeftOpenTag = makeMap(\n 'colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source'\n);\n\n// HTML5 tags https://html.spec.whatwg.org/multipage/indices.html#elements-3\n// Phrasing Content https://html.spec.whatwg.org/multipage/dom.html#phrasing-content\nvar isNonPhrasingTag = makeMap(\n 'address,article,aside,base,blockquote,body,caption,col,colgroup,dd,' +\n 'details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,' +\n 'h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,' +\n 'optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,' +\n 'title,tr,track'\n);\n\n/**\n * Not type-checking this file because it's mostly vendor code.\n */\n\n/*!\n * HTML Parser By John Resig (ejohn.org)\n * Modified by Juriy \"kangax\" Zaytsev\n * Original code by Erik Arvidsson, Mozilla Public License\n * http://erik.eae.net/simplehtmlparser/simplehtmlparser.js\n */\n\n// Regular Expressions for parsing tags and attributes\nvar attribute = /^\\s*([^\\s\"'<>\\/=]+)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/;\n// could use https://www.w3.org/TR/1999/REC-xml-names-19990114/#NT-QName\n// but for Vue templates we can enforce a simple charset\nvar ncname = '[a-zA-Z_][\\\\w\\\\-\\\\.]*';\nvar qnameCapture = \"((?:\" + ncname + \"\\\\:)?\" + ncname + \")\";\nvar startTagOpen = new RegExp((\"^<\" + qnameCapture));\nvar startTagClose = /^\\s*(\\/?)>/;\nvar endTag = new RegExp((\"^<\\\\/\" + qnameCapture + \"[^>]*>\"));\nvar doctype = /^<!DOCTYPE [^>]+>/i;\n// #7298: escape - to avoid being pased as HTML comment when inlined in page\nvar comment = /^<!\\--/;\nvar conditionalComment = /^<!\\[/;\n\nvar IS_REGEX_CAPTURING_BROKEN = false;\n'x'.replace(/x(.)?/g, function (m, g) {\n IS_REGEX_CAPTURING_BROKEN = g === '';\n});\n\n// Special Elements (can contain anything)\nvar isPlainTextElement = makeMap('script,style,textarea', true);\nvar reCache = {};\n\nvar decodingMap = {\n '<': '<',\n '>': '>',\n '"': '\"',\n '&': '&',\n ' ': '\\n',\n '	': '\\t'\n};\nvar encodedAttr = /&(?:lt|gt|quot|amp);/g;\nvar encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10|#9);/g;\n\n// #5992\nvar isIgnoreNewlineTag = makeMap('pre,textarea', true);\nvar shouldIgnoreFirstNewline = function (tag, html) { return tag && isIgnoreNewlineTag(tag) && html[0] === '\\n'; };\n\nfunction decodeAttr (value, shouldDecodeNewlines) {\n var re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr;\n return value.replace(re, function (match) { return decodingMap[match]; })\n}\n\nfunction parseHTML (html, options) {\n var stack = [];\n var expectHTML = options.expectHTML;\n var isUnaryTag$$1 = options.isUnaryTag || no;\n var canBeLeftOpenTag$$1 = options.canBeLeftOpenTag || no;\n var index = 0;\n var last, lastTag;\n while (html) {\n last = html;\n // Make sure we're not in a plaintext content element like script/style\n if (!lastTag || !isPlainTextElement(lastTag)) {\n var textEnd = html.indexOf('<');\n if (textEnd === 0) {\n // Comment:\n if (comment.test(html)) {\n var commentEnd = html.indexOf('-->');\n\n if (commentEnd >= 0) {\n if (options.shouldKeepComment) {\n options.comment(html.substring(4, commentEnd));\n }\n advance(commentEnd + 3);\n continue\n }\n }\n\n // http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment\n if (conditionalComment.test(html)) {\n var conditionalEnd = html.indexOf(']>');\n\n if (conditionalEnd >= 0) {\n advance(conditionalEnd + 2);\n continue\n }\n }\n\n // Doctype:\n var doctypeMatch = html.match(doctype);\n if (doctypeMatch) {\n advance(doctypeMatch[0].length);\n continue\n }\n\n // End tag:\n var endTagMatch = html.match(endTag);\n if (endTagMatch) {\n var curIndex = index;\n advance(endTagMatch[0].length);\n parseEndTag(endTagMatch[1], curIndex, index);\n continue\n }\n\n // Start tag:\n var startTagMatch = parseStartTag();\n if (startTagMatch) {\n handleStartTag(startTagMatch);\n if (shouldIgnoreFirstNewline(lastTag, html)) {\n advance(1);\n }\n continue\n }\n }\n\n var text = (void 0), rest = (void 0), next = (void 0);\n if (textEnd >= 0) {\n rest = html.slice(textEnd);\n while (\n !endTag.test(rest) &&\n !startTagOpen.test(rest) &&\n !comment.test(rest) &&\n !conditionalComment.test(rest)\n ) {\n // < in plain text, be forgiving and treat it as text\n next = rest.indexOf('<', 1);\n if (next < 0) { break }\n textEnd += next;\n rest = html.slice(textEnd);\n }\n text = html.substring(0, textEnd);\n advance(textEnd);\n }\n\n if (textEnd < 0) {\n text = html;\n html = '';\n }\n\n if (options.chars && text) {\n options.chars(text);\n }\n } else {\n var endTagLength = 0;\n var stackedTag = lastTag.toLowerCase();\n var reStackedTag = reCache[stackedTag] || (reCache[stackedTag] = new RegExp('([\\\\s\\\\S]*?)(</' + stackedTag + '[^>]*>)', 'i'));\n var rest$1 = html.replace(reStackedTag, function (all, text, endTag) {\n endTagLength = endTag.length;\n if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') {\n text = text\n .replace(/<!\\--([\\s\\S]*?)-->/g, '$1') // #7298\n .replace(/<!\\[CDATA\\[([\\s\\S]*?)]]>/g, '$1');\n }\n if (shouldIgnoreFirstNewline(stackedTag, text)) {\n text = text.slice(1);\n }\n if (options.chars) {\n options.chars(text);\n }\n return ''\n });\n index += html.length - rest$1.length;\n html = rest$1;\n parseEndTag(stackedTag, index - endTagLength, index);\n }\n\n if (html === last) {\n options.chars && options.chars(html);\n if (process.env.NODE_ENV !== 'production' && !stack.length && options.warn) {\n options.warn((\"Mal-formatted tag at end of template: \\\"\" + html + \"\\\"\"));\n }\n break\n }\n }\n\n // Clean up any remaining tags\n parseEndTag();\n\n function advance (n) {\n index += n;\n html = html.substring(n);\n }\n\n function parseStartTag () {\n var start = html.match(startTagOpen);\n if (start) {\n var match = {\n tagName: start[1],\n attrs: [],\n start: index\n };\n advance(start[0].length);\n var end, attr;\n while (!(end = html.match(startTagClose)) && (attr = html.match(attribute))) {\n advance(attr[0].length);\n match.attrs.push(attr);\n }\n if (end) {\n match.unarySlash = end[1];\n advance(end[0].length);\n match.end = index;\n return match\n }\n }\n }\n\n function handleStartTag (match) {\n var tagName = match.tagName;\n var unarySlash = match.unarySlash;\n\n if (expectHTML) {\n if (lastTag === 'p' && isNonPhrasingTag(tagName)) {\n parseEndTag(lastTag);\n }\n if (canBeLeftOpenTag$$1(tagName) && lastTag === tagName) {\n parseEndTag(tagName);\n }\n }\n\n var unary = isUnaryTag$$1(tagName) || !!unarySlash;\n\n var l = match.attrs.length;\n var attrs = new Array(l);\n for (var i = 0; i < l; i++) {\n var args = match.attrs[i];\n // hackish work around FF bug https://bugzilla.mozilla.org/show_bug.cgi?id=369778\n if (IS_REGEX_CAPTURING_BROKEN && args[0].indexOf('\"\"') === -1) {\n if (args[3] === '') { delete args[3]; }\n if (args[4] === '') { delete args[4]; }\n if (args[5] === '') { delete args[5]; }\n }\n var value = args[3] || args[4] || args[5] || '';\n var shouldDecodeNewlines = tagName === 'a' && args[1] === 'href'\n ? options.shouldDecodeNewlinesForHref\n : options.shouldDecodeNewlines;\n attrs[i] = {\n name: args[1],\n value: decodeAttr(value, shouldDecodeNewlines)\n };\n }\n\n if (!unary) {\n stack.push({ tag: tagName, lowerCasedTag: tagName.toLowerCase(), attrs: attrs });\n lastTag = tagName;\n }\n\n if (options.start) {\n options.start(tagName, attrs, unary, match.start, match.end);\n }\n }\n\n function parseEndTag (tagName, start, end) {\n var pos, lowerCasedTagName;\n if (start == null) { start = index; }\n if (end == null) { end = index; }\n\n if (tagName) {\n lowerCasedTagName = tagName.toLowerCase();\n }\n\n // Find the closest opened tag of the same type\n if (tagName) {\n for (pos = stack.length - 1; pos >= 0; pos--) {\n if (stack[pos].lowerCasedTag === lowerCasedTagName) {\n break\n }\n }\n } else {\n // If no tag name is provided, clean shop\n pos = 0;\n }\n\n if (pos >= 0) {\n // Close all the open elements, up the stack\n for (var i = stack.length - 1; i >= pos; i--) {\n if (process.env.NODE_ENV !== 'production' &&\n (i > pos || !tagName) &&\n options.warn\n ) {\n options.warn(\n (\"tag <\" + (stack[i].tag) + \"> has no matching end tag.\")\n );\n }\n if (options.end) {\n options.end(stack[i].tag, start, end);\n }\n }\n\n // Remove the open elements from the stack\n stack.length = pos;\n lastTag = pos && stack[pos - 1].tag;\n } else if (lowerCasedTagName === 'br') {\n if (options.start) {\n options.start(tagName, [], true, start, end);\n }\n } else if (lowerCasedTagName === 'p') {\n if (options.start) {\n options.start(tagName, [], false, start, end);\n }\n if (options.end) {\n options.end(tagName, start, end);\n }\n }\n }\n}\n\n/* */\n\nvar onRE = /^@|^v-on:/;\nvar dirRE = /^v-|^@|^:/;\nvar forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/;\nvar forIteratorRE = /,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/;\nvar stripParensRE = /^\\(|\\)$/g;\n\nvar argRE = /:(.*)$/;\nvar bindRE = /^:|^v-bind:/;\nvar modifierRE = /\\.[^.]+/g;\n\nvar decodeHTMLCached = cached(he.decode);\n\n// configurable state\nvar warn$2;\nvar delimiters;\nvar transforms;\nvar preTransforms;\nvar postTransforms;\nvar platformIsPreTag;\nvar platformMustUseProp;\nvar platformGetTagNamespace;\n\n\n\nfunction createASTElement (\n tag,\n attrs,\n parent\n) {\n return {\n type: 1,\n tag: tag,\n attrsList: attrs,\n attrsMap: makeAttrsMap(attrs),\n parent: parent,\n children: []\n }\n}\n\n/**\n * Convert HTML string to AST.\n */\nfunction parse (\n template,\n options\n) {\n warn$2 = options.warn || baseWarn;\n\n platformIsPreTag = options.isPreTag || no;\n platformMustUseProp = options.mustUseProp || no;\n platformGetTagNamespace = options.getTagNamespace || no;\n\n transforms = pluckModuleFunction(options.modules, 'transformNode');\n preTransforms = pluckModuleFunction(options.modules, 'preTransformNode');\n postTransforms = pluckModuleFunction(options.modules, 'postTransformNode');\n\n delimiters = options.delimiters;\n\n var stack = [];\n var preserveWhitespace = options.preserveWhitespace !== false;\n var root;\n var currentParent;\n var inVPre = false;\n var inPre = false;\n var warned = false;\n\n function warnOnce (msg) {\n if (!warned) {\n warned = true;\n warn$2(msg);\n }\n }\n\n function closeElement (element) {\n // check pre state\n if (element.pre) {\n inVPre = false;\n }\n if (platformIsPreTag(element.tag)) {\n inPre = false;\n }\n // apply post-transforms\n for (var i = 0; i < postTransforms.length; i++) {\n postTransforms[i](element, options);\n }\n }\n\n parseHTML(template, {\n warn: warn$2,\n expectHTML: options.expectHTML,\n isUnaryTag: options.isUnaryTag,\n canBeLeftOpenTag: options.canBeLeftOpenTag,\n shouldDecodeNewlines: options.shouldDecodeNewlines,\n shouldDecodeNewlinesForHref: options.shouldDecodeNewlinesForHref,\n shouldKeepComment: options.comments,\n start: function start (tag, attrs, unary) {\n // check namespace.\n // inherit parent ns if there is one\n var ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag);\n\n // handle IE svg bug\n /* istanbul ignore if */\n if (isIE && ns === 'svg') {\n attrs = guardIESVGBug(attrs);\n }\n\n var element = createASTElement(tag, attrs, currentParent);\n if (ns) {\n element.ns = ns;\n }\n\n if (isForbiddenTag(element) && !isServerRendering()) {\n element.forbidden = true;\n process.env.NODE_ENV !== 'production' && warn$2(\n 'Templates should only be responsible for mapping the state to the ' +\n 'UI. Avoid placing tags with side-effects in your templates, such as ' +\n \"<\" + tag + \">\" + ', as they will not be parsed.'\n );\n }\n\n // apply pre-transforms\n for (var i = 0; i < preTransforms.length; i++) {\n element = preTransforms[i](element, options) || element;\n }\n\n if (!inVPre) {\n processPre(element);\n if (element.pre) {\n inVPre = true;\n }\n }\n if (platformIsPreTag(element.tag)) {\n inPre = true;\n }\n if (inVPre) {\n processRawAttrs(element);\n } else if (!element.processed) {\n // structural directives\n processFor(element);\n processIf(element);\n processOnce(element);\n // element-scope stuff\n processElement(element, options);\n }\n\n function checkRootConstraints (el) {\n if (process.env.NODE_ENV !== 'production') {\n if (el.tag === 'slot' || el.tag === 'template') {\n warnOnce(\n \"Cannot use <\" + (el.tag) + \"> as component root element because it may \" +\n 'contain multiple nodes.'\n );\n }\n if (el.attrsMap.hasOwnProperty('v-for')) {\n warnOnce(\n 'Cannot use v-for on stateful component root element because ' +\n 'it renders multiple elements.'\n );\n }\n }\n }\n\n // tree management\n if (!root) {\n root = element;\n checkRootConstraints(root);\n } else if (!stack.length) {\n // allow root elements with v-if, v-else-if and v-else\n if (root.if && (element.elseif || element.else)) {\n checkRootConstraints(element);\n addIfCondition(root, {\n exp: element.elseif,\n block: element\n });\n } else if (process.env.NODE_ENV !== 'production') {\n warnOnce(\n \"Component template should contain exactly one root element. \" +\n \"If you are using v-if on multiple elements, \" +\n \"use v-else-if to chain them instead.\"\n );\n }\n }\n if (currentParent && !element.forbidden) {\n if (element.elseif || element.else) {\n processIfConditions(element, currentParent);\n } else if (element.slotScope) { // scoped slot\n currentParent.plain = false;\n var name = element.slotTarget || '\"default\"';(currentParent.scopedSlots || (currentParent.scopedSlots = {}))[name] = element;\n } else {\n currentParent.children.push(element);\n element.parent = currentParent;\n }\n }\n if (!unary) {\n currentParent = element;\n stack.push(element);\n } else {\n closeElement(element);\n }\n },\n\n end: function end () {\n // remove trailing whitespace\n var element = stack[stack.length - 1];\n var lastNode = element.children[element.children.length - 1];\n if (lastNode && lastNode.type === 3 && lastNode.text === ' ' && !inPre) {\n element.children.pop();\n }\n // pop stack\n stack.length -= 1;\n currentParent = stack[stack.length - 1];\n closeElement(element);\n },\n\n chars: function chars (text) {\n if (!currentParent) {\n if (process.env.NODE_ENV !== 'production') {\n if (text === template) {\n warnOnce(\n 'Component template requires a root element, rather than just text.'\n );\n } else if ((text = text.trim())) {\n warnOnce(\n (\"text \\\"\" + text + \"\\\" outside root element will be ignored.\")\n );\n }\n }\n return\n }\n // IE textarea placeholder bug\n /* istanbul ignore if */\n if (isIE &&\n currentParent.tag === 'textarea' &&\n currentParent.attrsMap.placeholder === text\n ) {\n return\n }\n var children = currentParent.children;\n text = inPre || text.trim()\n ? isTextTag(currentParent) ? text : decodeHTMLCached(text)\n // only preserve whitespace if its not right after a starting tag\n : preserveWhitespace && children.length ? ' ' : '';\n if (text) {\n var res;\n if (!inVPre && text !== ' ' && (res = parseText(text, delimiters))) {\n children.push({\n type: 2,\n expression: res.expression,\n tokens: res.tokens,\n text: text\n });\n } else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') {\n children.push({\n type: 3,\n text: text\n });\n }\n }\n },\n comment: function comment (text) {\n currentParent.children.push({\n type: 3,\n text: text,\n isComment: true\n });\n }\n });\n return root\n}\n\nfunction processPre (el) {\n if (getAndRemoveAttr(el, 'v-pre') != null) {\n el.pre = true;\n }\n}\n\nfunction processRawAttrs (el) {\n var l = el.attrsList.length;\n if (l) {\n var attrs = el.attrs = new Array(l);\n for (var i = 0; i < l; i++) {\n attrs[i] = {\n name: el.attrsList[i].name,\n value: JSON.stringify(el.attrsList[i].value)\n };\n }\n } else if (!el.pre) {\n // non root node in pre blocks with no attributes\n el.plain = true;\n }\n}\n\nfunction processElement (element, options) {\n processKey(element);\n\n // determine whether this is a plain element after\n // removing structural attributes\n element.plain = !element.key && !element.attrsList.length;\n\n processRef(element);\n processSlot(element);\n processComponent(element);\n for (var i = 0; i < transforms.length; i++) {\n element = transforms[i](element, options) || element;\n }\n processAttrs(element);\n}\n\nfunction processKey (el) {\n var exp = getBindingAttr(el, 'key');\n if (exp) {\n if (process.env.NODE_ENV !== 'production' && el.tag === 'template') {\n warn$2(\"<template> cannot be keyed. Place the key on real elements instead.\");\n }\n el.key = exp;\n }\n}\n\nfunction processRef (el) {\n var ref = getBindingAttr(el, 'ref');\n if (ref) {\n el.ref = ref;\n el.refInFor = checkInFor(el);\n }\n}\n\nfunction processFor (el) {\n var exp;\n if ((exp = getAndRemoveAttr(el, 'v-for'))) {\n var res = parseFor(exp);\n if (res) {\n extend(el, res);\n } else if (process.env.NODE_ENV !== 'production') {\n warn$2(\n (\"Invalid v-for expression: \" + exp)\n );\n }\n }\n}\n\n\n\nfunction parseFor (exp) {\n var inMatch = exp.match(forAliasRE);\n if (!inMatch) { return }\n var res = {};\n res.for = inMatch[2].trim();\n var alias = inMatch[1].trim().replace(stripParensRE, '');\n var iteratorMatch = alias.match(forIteratorRE);\n if (iteratorMatch) {\n res.alias = alias.replace(forIteratorRE, '');\n res.iterator1 = iteratorMatch[1].trim();\n if (iteratorMatch[2]) {\n res.iterator2 = iteratorMatch[2].trim();\n }\n } else {\n res.alias = alias;\n }\n return res\n}\n\nfunction processIf (el) {\n var exp = getAndRemoveAttr(el, 'v-if');\n if (exp) {\n el.if = exp;\n addIfCondition(el, {\n exp: exp,\n block: el\n });\n } else {\n if (getAndRemoveAttr(el, 'v-else') != null) {\n el.else = true;\n }\n var elseif = getAndRemoveAttr(el, 'v-else-if');\n if (elseif) {\n el.elseif = elseif;\n }\n }\n}\n\nfunction processIfConditions (el, parent) {\n var prev = findPrevElement(parent.children);\n if (prev && prev.if) {\n addIfCondition(prev, {\n exp: el.elseif,\n block: el\n });\n } else if (process.env.NODE_ENV !== 'production') {\n warn$2(\n \"v-\" + (el.elseif ? ('else-if=\"' + el.elseif + '\"') : 'else') + \" \" +\n \"used on element <\" + (el.tag) + \"> without corresponding v-if.\"\n );\n }\n}\n\nfunction findPrevElement (children) {\n var i = children.length;\n while (i--) {\n if (children[i].type === 1) {\n return children[i]\n } else {\n if (process.env.NODE_ENV !== 'production' && children[i].text !== ' ') {\n warn$2(\n \"text \\\"\" + (children[i].text.trim()) + \"\\\" between v-if and v-else(-if) \" +\n \"will be ignored.\"\n );\n }\n children.pop();\n }\n }\n}\n\nfunction addIfCondition (el, condition) {\n if (!el.ifConditions) {\n el.ifConditions = [];\n }\n el.ifConditions.push(condition);\n}\n\nfunction processOnce (el) {\n var once$$1 = getAndRemoveAttr(el, 'v-once');\n if (once$$1 != null) {\n el.once = true;\n }\n}\n\nfunction processSlot (el) {\n if (el.tag === 'slot') {\n el.slotName = getBindingAttr(el, 'name');\n if (process.env.NODE_ENV !== 'production' && el.key) {\n warn$2(\n \"`key` does not work on <slot> because slots are abstract outlets \" +\n \"and can possibly expand into multiple elements. \" +\n \"Use the key on a wrapping element instead.\"\n );\n }\n } else {\n var slotScope;\n if (el.tag === 'template') {\n slotScope = getAndRemoveAttr(el, 'scope');\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && slotScope) {\n warn$2(\n \"the \\\"scope\\\" attribute for scoped slots have been deprecated and \" +\n \"replaced by \\\"slot-scope\\\" since 2.5. The new \\\"slot-scope\\\" attribute \" +\n \"can also be used on plain elements in addition to <template> to \" +\n \"denote scoped slots.\",\n true\n );\n }\n el.slotScope = slotScope || getAndRemoveAttr(el, 'slot-scope');\n } else if ((slotScope = getAndRemoveAttr(el, 'slot-scope'))) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && el.attrsMap['v-for']) {\n warn$2(\n \"Ambiguous combined usage of slot-scope and v-for on <\" + (el.tag) + \"> \" +\n \"(v-for takes higher priority). Use a wrapper <template> for the \" +\n \"scoped slot to make it clearer.\",\n true\n );\n }\n el.slotScope = slotScope;\n }\n var slotTarget = getBindingAttr(el, 'slot');\n if (slotTarget) {\n el.slotTarget = slotTarget === '\"\"' ? '\"default\"' : slotTarget;\n // preserve slot as an attribute for native shadow DOM compat\n // only for non-scoped slots.\n if (el.tag !== 'template' && !el.slotScope) {\n addAttr(el, 'slot', slotTarget);\n }\n }\n }\n}\n\nfunction processComponent (el) {\n var binding;\n if ((binding = getBindingAttr(el, 'is'))) {\n el.component = binding;\n }\n if (getAndRemoveAttr(el, 'inline-template') != null) {\n el.inlineTemplate = true;\n }\n}\n\nfunction processAttrs (el) {\n var list = el.attrsList;\n var i, l, name, rawName, value, modifiers, isProp;\n for (i = 0, l = list.length; i < l; i++) {\n name = rawName = list[i].name;\n value = list[i].value;\n if (dirRE.test(name)) {\n // mark element as dynamic\n el.hasBindings = true;\n // modifiers\n modifiers = parseModifiers(name);\n if (modifiers) {\n name = name.replace(modifierRE, '');\n }\n if (bindRE.test(name)) { // v-bind\n name = name.replace(bindRE, '');\n value = parseFilters(value);\n isProp = false;\n if (modifiers) {\n if (modifiers.prop) {\n isProp = true;\n name = camelize(name);\n if (name === 'innerHtml') { name = 'innerHTML'; }\n }\n if (modifiers.camel) {\n name = camelize(name);\n }\n if (modifiers.sync) {\n addHandler(\n el,\n (\"update:\" + (camelize(name))),\n genAssignmentCode(value, \"$event\")\n );\n }\n }\n if (isProp || (\n !el.component && platformMustUseProp(el.tag, el.attrsMap.type, name)\n )) {\n addProp(el, name, value);\n } else {\n addAttr(el, name, value);\n }\n } else if (onRE.test(name)) { // v-on\n name = name.replace(onRE, '');\n addHandler(el, name, value, modifiers, false, warn$2);\n } else { // normal directives\n name = name.replace(dirRE, '');\n // parse arg\n var argMatch = name.match(argRE);\n var arg = argMatch && argMatch[1];\n if (arg) {\n name = name.slice(0, -(arg.length + 1));\n }\n addDirective(el, name, rawName, value, arg, modifiers);\n if (process.env.NODE_ENV !== 'production' && name === 'model') {\n checkForAliasModel(el, value);\n }\n }\n } else {\n // literal attribute\n if (process.env.NODE_ENV !== 'production') {\n var res = parseText(value, delimiters);\n if (res) {\n warn$2(\n name + \"=\\\"\" + value + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div id=\"{{ val }}\">, use <div :id=\"val\">.'\n );\n }\n }\n addAttr(el, name, JSON.stringify(value));\n // #6887 firefox doesn't update muted state if set via attribute\n // even immediately after element creation\n if (!el.component &&\n name === 'muted' &&\n platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n addProp(el, name, 'true');\n }\n }\n }\n}\n\nfunction checkInFor (el) {\n var parent = el;\n while (parent) {\n if (parent.for !== undefined) {\n return true\n }\n parent = parent.parent;\n }\n return false\n}\n\nfunction parseModifiers (name) {\n var match = name.match(modifierRE);\n if (match) {\n var ret = {};\n match.forEach(function (m) { ret[m.slice(1)] = true; });\n return ret\n }\n}\n\nfunction makeAttrsMap (attrs) {\n var map = {};\n for (var i = 0, l = attrs.length; i < l; i++) {\n if (\n process.env.NODE_ENV !== 'production' &&\n map[attrs[i].name] && !isIE && !isEdge\n ) {\n warn$2('duplicate attribute: ' + attrs[i].name);\n }\n map[attrs[i].name] = attrs[i].value;\n }\n return map\n}\n\n// for script (e.g. type=\"x/template\") or style, do not decode content\nfunction isTextTag (el) {\n return el.tag === 'script' || el.tag === 'style'\n}\n\nfunction isForbiddenTag (el) {\n return (\n el.tag === 'style' ||\n (el.tag === 'script' && (\n !el.attrsMap.type ||\n el.attrsMap.type === 'text/javascript'\n ))\n )\n}\n\nvar ieNSBug = /^xmlns:NS\\d+/;\nvar ieNSPrefix = /^NS\\d+:/;\n\n/* istanbul ignore next */\nfunction guardIESVGBug (attrs) {\n var res = [];\n for (var i = 0; i < attrs.length; i++) {\n var attr = attrs[i];\n if (!ieNSBug.test(attr.name)) {\n attr.name = attr.name.replace(ieNSPrefix, '');\n res.push(attr);\n }\n }\n return res\n}\n\nfunction checkForAliasModel (el, value) {\n var _el = el;\n while (_el) {\n if (_el.for && _el.alias === value) {\n warn$2(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\">: \" +\n \"You are binding v-model directly to a v-for iteration alias. \" +\n \"This will not be able to modify the v-for source array because \" +\n \"writing to the alias is like modifying a function local variable. \" +\n \"Consider using an array of objects and use v-model on an object property instead.\"\n );\n }\n _el = _el.parent;\n }\n}\n\n/* */\n\n/**\n * Expand input[v-model] with dyanmic type bindings into v-if-else chains\n * Turn this:\n * <input v-model=\"data[type]\" :type=\"type\">\n * into this:\n * <input v-if=\"type === 'checkbox'\" type=\"checkbox\" v-model=\"data[type]\">\n * <input v-else-if=\"type === 'radio'\" type=\"radio\" v-model=\"data[type]\">\n * <input v-else :type=\"type\" v-model=\"data[type]\">\n */\n\nfunction preTransformNode (el, options) {\n if (el.tag === 'input') {\n var map = el.attrsMap;\n if (!map['v-model']) {\n return\n }\n\n var typeBinding;\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type');\n }\n if (!map.type && !typeBinding && map['v-bind']) {\n typeBinding = \"(\" + (map['v-bind']) + \").type\";\n }\n\n if (typeBinding) {\n var ifCondition = getAndRemoveAttr(el, 'v-if', true);\n var ifConditionExtra = ifCondition ? (\"&&(\" + ifCondition + \")\") : \"\";\n var hasElse = getAndRemoveAttr(el, 'v-else', true) != null;\n var elseIfCondition = getAndRemoveAttr(el, 'v-else-if', true);\n // 1. checkbox\n var branch0 = cloneASTElement(el);\n // process for on the main node\n processFor(branch0);\n addRawAttr(branch0, 'type', 'checkbox');\n processElement(branch0, options);\n branch0.processed = true; // prevent it from double-processed\n branch0.if = \"(\" + typeBinding + \")==='checkbox'\" + ifConditionExtra;\n addIfCondition(branch0, {\n exp: branch0.if,\n block: branch0\n });\n // 2. add radio else-if condition\n var branch1 = cloneASTElement(el);\n getAndRemoveAttr(branch1, 'v-for', true);\n addRawAttr(branch1, 'type', 'radio');\n processElement(branch1, options);\n addIfCondition(branch0, {\n exp: \"(\" + typeBinding + \")==='radio'\" + ifConditionExtra,\n block: branch1\n });\n // 3. other\n var branch2 = cloneASTElement(el);\n getAndRemoveAttr(branch2, 'v-for', true);\n addRawAttr(branch2, ':type', typeBinding);\n processElement(branch2, options);\n addIfCondition(branch0, {\n exp: ifCondition,\n block: branch2\n });\n\n if (hasElse) {\n branch0.else = true;\n } else if (elseIfCondition) {\n branch0.elseif = elseIfCondition;\n }\n\n return branch0\n }\n }\n}\n\nfunction cloneASTElement (el) {\n return createASTElement(el.tag, el.attrsList.slice(), el.parent)\n}\n\nvar model$2 = {\n preTransformNode: preTransformNode\n}\n\nvar modules$1 = [\n klass$1,\n style$1,\n model$2\n]\n\n/* */\n\nfunction text (el, dir) {\n if (dir.value) {\n addProp(el, 'textContent', (\"_s(\" + (dir.value) + \")\"));\n }\n}\n\n/* */\n\nfunction html (el, dir) {\n if (dir.value) {\n addProp(el, 'innerHTML', (\"_s(\" + (dir.value) + \")\"));\n }\n}\n\nvar directives$1 = {\n model: model,\n text: text,\n html: html\n}\n\n/* */\n\nvar baseOptions = {\n expectHTML: true,\n modules: modules$1,\n directives: directives$1,\n isPreTag: isPreTag,\n isUnaryTag: isUnaryTag,\n mustUseProp: mustUseProp,\n canBeLeftOpenTag: canBeLeftOpenTag,\n isReservedTag: isReservedTag,\n getTagNamespace: getTagNamespace,\n staticKeys: genStaticKeys(modules$1)\n};\n\n/* */\n\nvar isStaticKey;\nvar isPlatformReservedTag;\n\nvar genStaticKeysCached = cached(genStaticKeys$1);\n\n/**\n * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees that are purely static, i.e. parts of\n * the DOM that never needs to change.\n *\n * Once we detect these sub-trees, we can:\n *\n * 1. Hoist them into constants, so that we no longer need to\n * create fresh nodes for them on each re-render;\n * 2. Completely skip them in the patching process.\n */\nfunction optimize (root, options) {\n if (!root) { return }\n isStaticKey = genStaticKeysCached(options.staticKeys || '');\n isPlatformReservedTag = options.isReservedTag || no;\n // first pass: mark all non-static nodes.\n markStatic$1(root);\n // second pass: mark static roots.\n markStaticRoots(root, false);\n}\n\nfunction genStaticKeys$1 (keys) {\n return makeMap(\n 'type,tag,attrsList,attrsMap,plain,parent,children,attrs' +\n (keys ? ',' + keys : '')\n )\n}\n\nfunction markStatic$1 (node) {\n node.static = isStatic(node);\n if (node.type === 1) {\n // do not make component slot content static. this avoids\n // 1. components not able to mutate slot nodes\n // 2. static slot content fails for hot-reloading\n if (\n !isPlatformReservedTag(node.tag) &&\n node.tag !== 'slot' &&\n node.attrsMap['inline-template'] == null\n ) {\n return\n }\n for (var i = 0, l = node.children.length; i < l; i++) {\n var child = node.children[i];\n markStatic$1(child);\n if (!child.static) {\n node.static = false;\n }\n }\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n var block = node.ifConditions[i$1].block;\n markStatic$1(block);\n if (!block.static) {\n node.static = false;\n }\n }\n }\n }\n}\n\nfunction markStaticRoots (node, isInFor) {\n if (node.type === 1) {\n if (node.static || node.once) {\n node.staticInFor = isInFor;\n }\n // For a node to qualify as a static root, it should have children that\n // are not just static text. Otherwise the cost of hoisting out will\n // outweigh the benefits and it's better off to just always render it fresh.\n if (node.static && node.children.length && !(\n node.children.length === 1 &&\n node.children[0].type === 3\n )) {\n node.staticRoot = true;\n return\n } else {\n node.staticRoot = false;\n }\n if (node.children) {\n for (var i = 0, l = node.children.length; i < l; i++) {\n markStaticRoots(node.children[i], isInFor || !!node.for);\n }\n }\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n markStaticRoots(node.ifConditions[i$1].block, isInFor);\n }\n }\n }\n}\n\nfunction isStatic (node) {\n if (node.type === 2) { // expression\n return false\n }\n if (node.type === 3) { // text\n return true\n }\n return !!(node.pre || (\n !node.hasBindings && // no dynamic bindings\n !node.if && !node.for && // not v-if or v-for or v-else\n !isBuiltInTag(node.tag) && // not a built-in\n isPlatformReservedTag(node.tag) && // not a component\n !isDirectChildOfTemplateFor(node) &&\n Object.keys(node).every(isStaticKey)\n ))\n}\n\nfunction isDirectChildOfTemplateFor (node) {\n while (node.parent) {\n node = node.parent;\n if (node.tag !== 'template') {\n return false\n }\n if (node.for) {\n return true\n }\n }\n return false\n}\n\n/* */\n\nvar fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/;\nvar simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*$/;\n\n// KeyboardEvent.keyCode aliases\nvar keyCodes = {\n esc: 27,\n tab: 9,\n enter: 13,\n space: 32,\n up: 38,\n left: 37,\n right: 39,\n down: 40,\n 'delete': [8, 46]\n};\n\n// KeyboardEvent.key aliases\nvar keyNames = {\n esc: 'Escape',\n tab: 'Tab',\n enter: 'Enter',\n space: ' ',\n // #7806: IE11 uses key names without `Arrow` prefix for arrow keys.\n up: ['Up', 'ArrowUp'],\n left: ['Left', 'ArrowLeft'],\n right: ['Right', 'ArrowRight'],\n down: ['Down', 'ArrowDown'],\n 'delete': ['Backspace', 'Delete']\n};\n\n// #4868: modifiers that prevent the execution of the listener\n// need to explicitly return null so that we can determine whether to remove\n// the listener for .once\nvar genGuard = function (condition) { return (\"if(\" + condition + \")return null;\"); };\n\nvar modifierCode = {\n stop: '$event.stopPropagation();',\n prevent: '$event.preventDefault();',\n self: genGuard(\"$event.target !== $event.currentTarget\"),\n ctrl: genGuard(\"!$event.ctrlKey\"),\n shift: genGuard(\"!$event.shiftKey\"),\n alt: genGuard(\"!$event.altKey\"),\n meta: genGuard(\"!$event.metaKey\"),\n left: genGuard(\"'button' in $event && $event.button !== 0\"),\n middle: genGuard(\"'button' in $event && $event.button !== 1\"),\n right: genGuard(\"'button' in $event && $event.button !== 2\")\n};\n\nfunction genHandlers (\n events,\n isNative,\n warn\n) {\n var res = isNative ? 'nativeOn:{' : 'on:{';\n for (var name in events) {\n res += \"\\\"\" + name + \"\\\":\" + (genHandler(name, events[name])) + \",\";\n }\n return res.slice(0, -1) + '}'\n}\n\nfunction genHandler (\n name,\n handler\n) {\n if (!handler) {\n return 'function(){}'\n }\n\n if (Array.isArray(handler)) {\n return (\"[\" + (handler.map(function (handler) { return genHandler(name, handler); }).join(',')) + \"]\")\n }\n\n var isMethodPath = simplePathRE.test(handler.value);\n var isFunctionExpression = fnExpRE.test(handler.value);\n\n if (!handler.modifiers) {\n if (isMethodPath || isFunctionExpression) {\n return handler.value\n }\n /* istanbul ignore if */\n return (\"function($event){\" + (handler.value) + \"}\") // inline statement\n } else {\n var code = '';\n var genModifierCode = '';\n var keys = [];\n for (var key in handler.modifiers) {\n if (modifierCode[key]) {\n genModifierCode += modifierCode[key];\n // left/right\n if (keyCodes[key]) {\n keys.push(key);\n }\n } else if (key === 'exact') {\n var modifiers = (handler.modifiers);\n genModifierCode += genGuard(\n ['ctrl', 'shift', 'alt', 'meta']\n .filter(function (keyModifier) { return !modifiers[keyModifier]; })\n .map(function (keyModifier) { return (\"$event.\" + keyModifier + \"Key\"); })\n .join('||')\n );\n } else {\n keys.push(key);\n }\n }\n if (keys.length) {\n code += genKeyFilter(keys);\n }\n // Make sure modifiers like prevent and stop get executed after key filtering\n if (genModifierCode) {\n code += genModifierCode;\n }\n var handlerCode = isMethodPath\n ? (\"return \" + (handler.value) + \"($event)\")\n : isFunctionExpression\n ? (\"return (\" + (handler.value) + \")($event)\")\n : handler.value;\n /* istanbul ignore if */\n return (\"function($event){\" + code + handlerCode + \"}\")\n }\n}\n\nfunction genKeyFilter (keys) {\n return (\"if(!('button' in $event)&&\" + (keys.map(genFilterCode).join('&&')) + \")return null;\")\n}\n\nfunction genFilterCode (key) {\n var keyVal = parseInt(key, 10);\n if (keyVal) {\n return (\"$event.keyCode!==\" + keyVal)\n }\n var keyCode = keyCodes[key];\n var keyName = keyNames[key];\n return (\n \"_k($event.keyCode,\" +\n (JSON.stringify(key)) + \",\" +\n (JSON.stringify(keyCode)) + \",\" +\n \"$event.key,\" +\n \"\" + (JSON.stringify(keyName)) +\n \")\"\n )\n}\n\n/* */\n\nfunction on (el, dir) {\n if (process.env.NODE_ENV !== 'production' && dir.modifiers) {\n warn(\"v-on without argument does not support modifiers.\");\n }\n el.wrapListeners = function (code) { return (\"_g(\" + code + \",\" + (dir.value) + \")\"); };\n}\n\n/* */\n\nfunction bind$1 (el, dir) {\n el.wrapData = function (code) {\n return (\"_b(\" + code + \",'\" + (el.tag) + \"',\" + (dir.value) + \",\" + (dir.modifiers && dir.modifiers.prop ? 'true' : 'false') + (dir.modifiers && dir.modifiers.sync ? ',true' : '') + \")\")\n };\n}\n\n/* */\n\nvar baseDirectives = {\n on: on,\n bind: bind$1,\n cloak: noop\n}\n\n/* */\n\nvar CodegenState = function CodegenState (options) {\n this.options = options;\n this.warn = options.warn || baseWarn;\n this.transforms = pluckModuleFunction(options.modules, 'transformCode');\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData');\n this.directives = extend(extend({}, baseDirectives), options.directives);\n var isReservedTag = options.isReservedTag || no;\n this.maybeComponent = function (el) { return !isReservedTag(el.tag); };\n this.onceId = 0;\n this.staticRenderFns = [];\n};\n\n\n\nfunction generate (\n ast,\n options\n) {\n var state = new CodegenState(options);\n var code = ast ? genElement(ast, state) : '_c(\"div\")';\n return {\n render: (\"with(this){return \" + code + \"}\"),\n staticRenderFns: state.staticRenderFns\n }\n}\n\nfunction genElement (el, state) {\n if (el.staticRoot && !el.staticProcessed) {\n return genStatic(el, state)\n } else if (el.once && !el.onceProcessed) {\n return genOnce(el, state)\n } else if (el.for && !el.forProcessed) {\n return genFor(el, state)\n } else if (el.if && !el.ifProcessed) {\n return genIf(el, state)\n } else if (el.tag === 'template' && !el.slotTarget) {\n return genChildren(el, state) || 'void 0'\n } else if (el.tag === 'slot') {\n return genSlot(el, state)\n } else {\n // component or element\n var code;\n if (el.component) {\n code = genComponent(el.component, el, state);\n } else {\n var data = el.plain ? undefined : genData$2(el, state);\n\n var children = el.inlineTemplate ? null : genChildren(el, state, true);\n code = \"_c('\" + (el.tag) + \"'\" + (data ? (\",\" + data) : '') + (children ? (\",\" + children) : '') + \")\";\n }\n // module transforms\n for (var i = 0; i < state.transforms.length; i++) {\n code = state.transforms[i](el, code);\n }\n return code\n }\n}\n\n// hoist static sub-trees out\nfunction genStatic (el, state) {\n el.staticProcessed = true;\n state.staticRenderFns.push((\"with(this){return \" + (genElement(el, state)) + \"}\"));\n return (\"_m(\" + (state.staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + \")\")\n}\n\n// v-once\nfunction genOnce (el, state) {\n el.onceProcessed = true;\n if (el.if && !el.ifProcessed) {\n return genIf(el, state)\n } else if (el.staticInFor) {\n var key = '';\n var parent = el.parent;\n while (parent) {\n if (parent.for) {\n key = parent.key;\n break\n }\n parent = parent.parent;\n }\n if (!key) {\n process.env.NODE_ENV !== 'production' && state.warn(\n \"v-once can only be used inside v-for that is keyed. \"\n );\n return genElement(el, state)\n }\n return (\"_o(\" + (genElement(el, state)) + \",\" + (state.onceId++) + \",\" + key + \")\")\n } else {\n return genStatic(el, state)\n }\n}\n\nfunction genIf (\n el,\n state,\n altGen,\n altEmpty\n) {\n el.ifProcessed = true; // avoid recursion\n return genIfConditions(el.ifConditions.slice(), state, altGen, altEmpty)\n}\n\nfunction genIfConditions (\n conditions,\n state,\n altGen,\n altEmpty\n) {\n if (!conditions.length) {\n return altEmpty || '_e()'\n }\n\n var condition = conditions.shift();\n if (condition.exp) {\n return (\"(\" + (condition.exp) + \")?\" + (genTernaryExp(condition.block)) + \":\" + (genIfConditions(conditions, state, altGen, altEmpty)))\n } else {\n return (\"\" + (genTernaryExp(condition.block)))\n }\n\n // v-if with v-once should generate code like (a)?_m(0):_m(1)\n function genTernaryExp (el) {\n return altGen\n ? altGen(el, state)\n : el.once\n ? genOnce(el, state)\n : genElement(el, state)\n }\n}\n\nfunction genFor (\n el,\n state,\n altGen,\n altHelper\n) {\n var exp = el.for;\n var alias = el.alias;\n var iterator1 = el.iterator1 ? (\",\" + (el.iterator1)) : '';\n var iterator2 = el.iterator2 ? (\",\" + (el.iterator2)) : '';\n\n if (process.env.NODE_ENV !== 'production' &&\n state.maybeComponent(el) &&\n el.tag !== 'slot' &&\n el.tag !== 'template' &&\n !el.key\n ) {\n state.warn(\n \"<\" + (el.tag) + \" v-for=\\\"\" + alias + \" in \" + exp + \"\\\">: component lists rendered with \" +\n \"v-for should have explicit keys. \" +\n \"See https://vuejs.org/guide/list.html#key for more info.\",\n true /* tip */\n );\n }\n\n el.forProcessed = true; // avoid recursion\n return (altHelper || '_l') + \"((\" + exp + \"),\" +\n \"function(\" + alias + iterator1 + iterator2 + \"){\" +\n \"return \" + ((altGen || genElement)(el, state)) +\n '})'\n}\n\nfunction genData$2 (el, state) {\n var data = '{';\n\n // directives first.\n // directives may mutate the el's other properties before they are generated.\n var dirs = genDirectives(el, state);\n if (dirs) { data += dirs + ','; }\n\n // key\n if (el.key) {\n data += \"key:\" + (el.key) + \",\";\n }\n // ref\n if (el.ref) {\n data += \"ref:\" + (el.ref) + \",\";\n }\n if (el.refInFor) {\n data += \"refInFor:true,\";\n }\n // pre\n if (el.pre) {\n data += \"pre:true,\";\n }\n // record original tag name for components using \"is\" attribute\n if (el.component) {\n data += \"tag:\\\"\" + (el.tag) + \"\\\",\";\n }\n // module data generation functions\n for (var i = 0; i < state.dataGenFns.length; i++) {\n data += state.dataGenFns[i](el);\n }\n // attributes\n if (el.attrs) {\n data += \"attrs:{\" + (genProps(el.attrs)) + \"},\";\n }\n // DOM props\n if (el.props) {\n data += \"domProps:{\" + (genProps(el.props)) + \"},\";\n }\n // event handlers\n if (el.events) {\n data += (genHandlers(el.events, false, state.warn)) + \",\";\n }\n if (el.nativeEvents) {\n data += (genHandlers(el.nativeEvents, true, state.warn)) + \",\";\n }\n // slot target\n // only for non-scoped slots\n if (el.slotTarget && !el.slotScope) {\n data += \"slot:\" + (el.slotTarget) + \",\";\n }\n // scoped slots\n if (el.scopedSlots) {\n data += (genScopedSlots(el.scopedSlots, state)) + \",\";\n }\n // component v-model\n if (el.model) {\n data += \"model:{value:\" + (el.model.value) + \",callback:\" + (el.model.callback) + \",expression:\" + (el.model.expression) + \"},\";\n }\n // inline-template\n if (el.inlineTemplate) {\n var inlineTemplate = genInlineTemplate(el, state);\n if (inlineTemplate) {\n data += inlineTemplate + \",\";\n }\n }\n data = data.replace(/,$/, '') + '}';\n // v-bind data wrap\n if (el.wrapData) {\n data = el.wrapData(data);\n }\n // v-on data wrap\n if (el.wrapListeners) {\n data = el.wrapListeners(data);\n }\n return data\n}\n\nfunction genDirectives (el, state) {\n var dirs = el.directives;\n if (!dirs) { return }\n var res = 'directives:[';\n var hasRuntime = false;\n var i, l, dir, needRuntime;\n for (i = 0, l = dirs.length; i < l; i++) {\n dir = dirs[i];\n needRuntime = true;\n var gen = state.directives[dir.name];\n if (gen) {\n // compile-time directive that manipulates AST.\n // returns true if it also needs a runtime counterpart.\n needRuntime = !!gen(el, dir, state.warn);\n }\n if (needRuntime) {\n hasRuntime = true;\n res += \"{name:\\\"\" + (dir.name) + \"\\\",rawName:\\\"\" + (dir.rawName) + \"\\\"\" + (dir.value ? (\",value:(\" + (dir.value) + \"),expression:\" + (JSON.stringify(dir.value))) : '') + (dir.arg ? (\",arg:\\\"\" + (dir.arg) + \"\\\"\") : '') + (dir.modifiers ? (\",modifiers:\" + (JSON.stringify(dir.modifiers))) : '') + \"},\";\n }\n }\n if (hasRuntime) {\n return res.slice(0, -1) + ']'\n }\n}\n\nfunction genInlineTemplate (el, state) {\n var ast = el.children[0];\n if (process.env.NODE_ENV !== 'production' && (\n el.children.length !== 1 || ast.type !== 1\n )) {\n state.warn('Inline-template components must have exactly one child element.');\n }\n if (ast.type === 1) {\n var inlineRenderFns = generate(ast, state.options);\n return (\"inlineTemplate:{render:function(){\" + (inlineRenderFns.render) + \"},staticRenderFns:[\" + (inlineRenderFns.staticRenderFns.map(function (code) { return (\"function(){\" + code + \"}\"); }).join(',')) + \"]}\")\n }\n}\n\nfunction genScopedSlots (\n slots,\n state\n) {\n return (\"scopedSlots:_u([\" + (Object.keys(slots).map(function (key) {\n return genScopedSlot(key, slots[key], state)\n }).join(',')) + \"])\")\n}\n\nfunction genScopedSlot (\n key,\n el,\n state\n) {\n if (el.for && !el.forProcessed) {\n return genForScopedSlot(key, el, state)\n }\n var fn = \"function(\" + (String(el.slotScope)) + \"){\" +\n \"return \" + (el.tag === 'template'\n ? el.if\n ? ((el.if) + \"?\" + (genChildren(el, state) || 'undefined') + \":undefined\")\n : genChildren(el, state) || 'undefined'\n : genElement(el, state)) + \"}\";\n return (\"{key:\" + key + \",fn:\" + fn + \"}\")\n}\n\nfunction genForScopedSlot (\n key,\n el,\n state\n) {\n var exp = el.for;\n var alias = el.alias;\n var iterator1 = el.iterator1 ? (\",\" + (el.iterator1)) : '';\n var iterator2 = el.iterator2 ? (\",\" + (el.iterator2)) : '';\n el.forProcessed = true; // avoid recursion\n return \"_l((\" + exp + \"),\" +\n \"function(\" + alias + iterator1 + iterator2 + \"){\" +\n \"return \" + (genScopedSlot(key, el, state)) +\n '})'\n}\n\nfunction genChildren (\n el,\n state,\n checkSkip,\n altGenElement,\n altGenNode\n) {\n var children = el.children;\n if (children.length) {\n var el$1 = children[0];\n // optimize single v-for\n if (children.length === 1 &&\n el$1.for &&\n el$1.tag !== 'template' &&\n el$1.tag !== 'slot'\n ) {\n return (altGenElement || genElement)(el$1, state)\n }\n var normalizationType = checkSkip\n ? getNormalizationType(children, state.maybeComponent)\n : 0;\n var gen = altGenNode || genNode;\n return (\"[\" + (children.map(function (c) { return gen(c, state); }).join(',')) + \"]\" + (normalizationType ? (\",\" + normalizationType) : ''))\n }\n}\n\n// determine the normalization needed for the children array.\n// 0: no normalization needed\n// 1: simple normalization needed (possible 1-level deep nested array)\n// 2: full normalization needed\nfunction getNormalizationType (\n children,\n maybeComponent\n) {\n var res = 0;\n for (var i = 0; i < children.length; i++) {\n var el = children[i];\n if (el.type !== 1) {\n continue\n }\n if (needsNormalization(el) ||\n (el.ifConditions && el.ifConditions.some(function (c) { return needsNormalization(c.block); }))) {\n res = 2;\n break\n }\n if (maybeComponent(el) ||\n (el.ifConditions && el.ifConditions.some(function (c) { return maybeComponent(c.block); }))) {\n res = 1;\n }\n }\n return res\n}\n\nfunction needsNormalization (el) {\n return el.for !== undefined || el.tag === 'template' || el.tag === 'slot'\n}\n\nfunction genNode (node, state) {\n if (node.type === 1) {\n return genElement(node, state)\n } if (node.type === 3 && node.isComment) {\n return genComment(node)\n } else {\n return genText(node)\n }\n}\n\nfunction genText (text) {\n return (\"_v(\" + (text.type === 2\n ? text.expression // no need for () because already wrapped in _s()\n : transformSpecialNewlines(JSON.stringify(text.text))) + \")\")\n}\n\nfunction genComment (comment) {\n return (\"_e(\" + (JSON.stringify(comment.text)) + \")\")\n}\n\nfunction genSlot (el, state) {\n var slotName = el.slotName || '\"default\"';\n var children = genChildren(el, state);\n var res = \"_t(\" + slotName + (children ? (\",\" + children) : '');\n var attrs = el.attrs && (\"{\" + (el.attrs.map(function (a) { return ((camelize(a.name)) + \":\" + (a.value)); }).join(',')) + \"}\");\n var bind$$1 = el.attrsMap['v-bind'];\n if ((attrs || bind$$1) && !children) {\n res += \",null\";\n }\n if (attrs) {\n res += \",\" + attrs;\n }\n if (bind$$1) {\n res += (attrs ? '' : ',null') + \",\" + bind$$1;\n }\n return res + ')'\n}\n\n// componentName is el.component, take it as argument to shun flow's pessimistic refinement\nfunction genComponent (\n componentName,\n el,\n state\n) {\n var children = el.inlineTemplate ? null : genChildren(el, state, true);\n return (\"_c(\" + componentName + \",\" + (genData$2(el, state)) + (children ? (\",\" + children) : '') + \")\")\n}\n\nfunction genProps (props) {\n var res = '';\n for (var i = 0; i < props.length; i++) {\n var prop = props[i];\n /* istanbul ignore if */\n {\n res += \"\\\"\" + (prop.name) + \"\\\":\" + (transformSpecialNewlines(prop.value)) + \",\";\n }\n }\n return res.slice(0, -1)\n}\n\n// #3895, #4268\nfunction transformSpecialNewlines (text) {\n return text\n .replace(/\\u2028/g, '\\\\u2028')\n .replace(/\\u2029/g, '\\\\u2029')\n}\n\n/* */\n\n// these keywords should not appear inside expressions, but operators like\n// typeof, instanceof and in are allowed\nvar prohibitedKeywordRE = new RegExp('\\\\b' + (\n 'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +\n 'super,throw,while,yield,delete,export,import,return,switch,default,' +\n 'extends,finally,continue,debugger,function,arguments'\n).split(',').join('\\\\b|\\\\b') + '\\\\b');\n\n// these unary operators should not be used as property/method names\nvar unaryOperatorsRE = new RegExp('\\\\b' + (\n 'delete,typeof,void'\n).split(',').join('\\\\s*\\\\([^\\\\)]*\\\\)|\\\\b') + '\\\\s*\\\\([^\\\\)]*\\\\)');\n\n// strip strings in expressions\nvar stripStringRE = /'(?:[^'\\\\]|\\\\.)*'|\"(?:[^\"\\\\]|\\\\.)*\"|`(?:[^`\\\\]|\\\\.)*\\$\\{|\\}(?:[^`\\\\]|\\\\.)*`|`(?:[^`\\\\]|\\\\.)*`/g;\n\n// detect problematic expressions in a template\nfunction detectErrors (ast) {\n var errors = [];\n if (ast) {\n checkNode(ast, errors);\n }\n return errors\n}\n\nfunction checkNode (node, errors) {\n if (node.type === 1) {\n for (var name in node.attrsMap) {\n if (dirRE.test(name)) {\n var value = node.attrsMap[name];\n if (value) {\n if (name === 'v-for') {\n checkFor(node, (\"v-for=\\\"\" + value + \"\\\"\"), errors);\n } else if (onRE.test(name)) {\n checkEvent(value, (name + \"=\\\"\" + value + \"\\\"\"), errors);\n } else {\n checkExpression(value, (name + \"=\\\"\" + value + \"\\\"\"), errors);\n }\n }\n }\n }\n if (node.children) {\n for (var i = 0; i < node.children.length; i++) {\n checkNode(node.children[i], errors);\n }\n }\n } else if (node.type === 2) {\n checkExpression(node.expression, node.text, errors);\n }\n}\n\nfunction checkEvent (exp, text, errors) {\n var stipped = exp.replace(stripStringRE, '');\n var keywordMatch = stipped.match(unaryOperatorsRE);\n if (keywordMatch && stipped.charAt(keywordMatch.index - 1) !== '$') {\n errors.push(\n \"avoid using JavaScript unary operator as property name: \" +\n \"\\\"\" + (keywordMatch[0]) + \"\\\" in expression \" + (text.trim())\n );\n }\n checkExpression(exp, text, errors);\n}\n\nfunction checkFor (node, text, errors) {\n checkExpression(node.for || '', text, errors);\n checkIdentifier(node.alias, 'v-for alias', text, errors);\n checkIdentifier(node.iterator1, 'v-for iterator', text, errors);\n checkIdentifier(node.iterator2, 'v-for iterator', text, errors);\n}\n\nfunction checkIdentifier (\n ident,\n type,\n text,\n errors\n) {\n if (typeof ident === 'string') {\n try {\n new Function((\"var \" + ident + \"=_\"));\n } catch (e) {\n errors.push((\"invalid \" + type + \" \\\"\" + ident + \"\\\" in expression: \" + (text.trim())));\n }\n }\n}\n\nfunction checkExpression (exp, text, errors) {\n try {\n new Function((\"return \" + exp));\n } catch (e) {\n var keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE);\n if (keywordMatch) {\n errors.push(\n \"avoid using JavaScript keyword as property name: \" +\n \"\\\"\" + (keywordMatch[0]) + \"\\\"\\n Raw expression: \" + (text.trim())\n );\n } else {\n errors.push(\n \"invalid expression: \" + (e.message) + \" in\\n\\n\" +\n \" \" + exp + \"\\n\\n\" +\n \" Raw expression: \" + (text.trim()) + \"\\n\"\n );\n }\n }\n}\n\n/* */\n\nfunction createFunction (code, errors) {\n try {\n return new Function(code)\n } catch (err) {\n errors.push({ err: err, code: code });\n return noop\n }\n}\n\nfunction createCompileToFunctionFn (compile) {\n var cache = Object.create(null);\n\n return function compileToFunctions (\n template,\n options,\n vm\n ) {\n options = extend({}, options);\n var warn$$1 = options.warn || warn;\n delete options.warn;\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n // detect possible CSP restriction\n try {\n new Function('return 1');\n } catch (e) {\n if (e.toString().match(/unsafe-eval|CSP/)) {\n warn$$1(\n 'It seems you are using the standalone build of Vue.js in an ' +\n 'environment with Content Security Policy that prohibits unsafe-eval. ' +\n 'The template compiler cannot work in this environment. Consider ' +\n 'relaxing the policy to allow unsafe-eval or pre-compiling your ' +\n 'templates into render functions.'\n );\n }\n }\n }\n\n // check cache\n var key = options.delimiters\n ? String(options.delimiters) + template\n : template;\n if (cache[key]) {\n return cache[key]\n }\n\n // compile\n var compiled = compile(template, options);\n\n // check compilation errors/tips\n if (process.env.NODE_ENV !== 'production') {\n if (compiled.errors && compiled.errors.length) {\n warn$$1(\n \"Error compiling template:\\n\\n\" + template + \"\\n\\n\" +\n compiled.errors.map(function (e) { return (\"- \" + e); }).join('\\n') + '\\n',\n vm\n );\n }\n if (compiled.tips && compiled.tips.length) {\n compiled.tips.forEach(function (msg) { return tip(msg, vm); });\n }\n }\n\n // turn code into functions\n var res = {};\n var fnGenErrors = [];\n res.render = createFunction(compiled.render, fnGenErrors);\n res.staticRenderFns = compiled.staticRenderFns.map(function (code) {\n return createFunction(code, fnGenErrors)\n });\n\n // check function generation errors.\n // this should only happen if there is a bug in the compiler itself.\n // mostly for codegen development use\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {\n warn$$1(\n \"Failed to generate render function:\\n\\n\" +\n fnGenErrors.map(function (ref) {\n var err = ref.err;\n var code = ref.code;\n\n return ((err.toString()) + \" in\\n\\n\" + code + \"\\n\");\n }).join('\\n'),\n vm\n );\n }\n }\n\n return (cache[key] = res)\n }\n}\n\n/* */\n\nfunction createCompilerCreator (baseCompile) {\n return function createCompiler (baseOptions) {\n function compile (\n template,\n options\n ) {\n var finalOptions = Object.create(baseOptions);\n var errors = [];\n var tips = [];\n finalOptions.warn = function (msg, tip) {\n (tip ? tips : errors).push(msg);\n };\n\n if (options) {\n // merge custom modules\n if (options.modules) {\n finalOptions.modules =\n (baseOptions.modules || []).concat(options.modules);\n }\n // merge custom directives\n if (options.directives) {\n finalOptions.directives = extend(\n Object.create(baseOptions.directives || null),\n options.directives\n );\n }\n // copy other options\n for (var key in options) {\n if (key !== 'modules' && key !== 'directives') {\n finalOptions[key] = options[key];\n }\n }\n }\n\n var compiled = baseCompile(template, finalOptions);\n if (process.env.NODE_ENV !== 'production') {\n errors.push.apply(errors, detectErrors(compiled.ast));\n }\n compiled.errors = errors;\n compiled.tips = tips;\n return compiled\n }\n\n return {\n compile: compile,\n compileToFunctions: createCompileToFunctionFn(compile)\n }\n }\n}\n\n/* */\n\n// `createCompilerCreator` allows creating compilers that use alternative\n// parser/optimizer/codegen, e.g the SSR optimizing compiler.\n// Here we just export a default compiler using the default parts.\nvar createCompiler = createCompilerCreator(function baseCompile (\n template,\n options\n) {\n var ast = parse(template.trim(), options);\n if (options.optimize !== false) {\n optimize(ast, options);\n }\n var code = generate(ast, options);\n return {\n ast: ast,\n render: code.render,\n staticRenderFns: code.staticRenderFns\n }\n});\n\n/* */\n\nvar ref$1 = createCompiler(baseOptions);\nvar compileToFunctions = ref$1.compileToFunctions;\n\n/* */\n\n// check whether current browser encodes a char inside attribute values\nvar div;\nfunction getShouldDecode (href) {\n div = div || document.createElement('div');\n div.innerHTML = href ? \"<a href=\\\"\\n\\\"/>\" : \"<div a=\\\"\\n\\\"/>\";\n return div.innerHTML.indexOf(' ') > 0\n}\n\n// #3663: IE encodes newlines inside attribute values while other browsers don't\nvar shouldDecodeNewlines = inBrowser ? getShouldDecode(false) : false;\n// #6828: chrome encodes content in a[href]\nvar shouldDecodeNewlinesForHref = inBrowser ? getShouldDecode(true) : false;\n\n/* */\n\nvar idToTemplate = cached(function (id) {\n var el = query(id);\n return el && el.innerHTML\n});\n\nvar mount = Vue.prototype.$mount;\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && query(el);\n\n /* istanbul ignore if */\n if (el === document.body || el === document.documentElement) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Do not mount Vue to <html> or <body> - mount to normal elements instead.\"\n );\n return this\n }\n\n var options = this.$options;\n // resolve template/el and convert to render function\n if (!options.render) {\n var template = options.template;\n if (template) {\n if (typeof template === 'string') {\n if (template.charAt(0) === '#') {\n template = idToTemplate(template);\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && !template) {\n warn(\n (\"Template element not found or is empty: \" + (options.template)),\n this\n );\n }\n }\n } else if (template.nodeType) {\n template = template.innerHTML;\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn('invalid template option:' + template, this);\n }\n return this\n }\n } else if (el) {\n template = getOuterHTML(el);\n }\n if (template) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n mark('compile');\n }\n\n var ref = compileToFunctions(template, {\n shouldDecodeNewlines: shouldDecodeNewlines,\n shouldDecodeNewlinesForHref: shouldDecodeNewlinesForHref,\n delimiters: options.delimiters,\n comments: options.comments\n }, this);\n var render = ref.render;\n var staticRenderFns = ref.staticRenderFns;\n options.render = render;\n options.staticRenderFns = staticRenderFns;\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n mark('compile end');\n measure((\"vue \" + (this._name) + \" compile\"), 'compile', 'compile end');\n }\n }\n }\n return mount.call(this, el, hydrating)\n};\n\n/**\n * Get outerHTML of elements, taking care\n * of SVG elements in IE as well.\n */\nfunction getOuterHTML (el) {\n if (el.outerHTML) {\n return el.outerHTML\n } else {\n var container = document.createElement('div');\n container.appendChild(el.cloneNode(true));\n return container.innerHTML\n }\n}\n\nVue.compile = compileToFunctions;\n\nexport default Vue;\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.VueMultiselect=e():t.VueMultiselect=e()}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,\"a\",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p=\"/\",e(e.s=66)}([function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e,n){t.exports=!n(12)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var i=n(10),r=n(43),o=n(31),s=Object.defineProperty;e.f=n(1)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(77),r=n(21);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(9),r=n(52),o=n(18),s=n(55),u=n(53),a=function(t,e,n){var l,c,f,p,h=t&a.F,d=t&a.G,v=t&a.S,y=t&a.P,g=t&a.B,b=d?i:v?i[e]||(i[e]={}):(i[e]||{}).prototype,m=d?r:r[e]||(r[e]={}),_=m.prototype||(m.prototype={});d&&(n=e);for(l in n)c=!h&&b&&void 0!==b[l],f=(c?b:n)[l],p=g&&c?u(f,i):y&&\"function\"==typeof f?u(Function.call,f):f,b&&s(b,l,f,t&a.U),m[l]!=f&&o(m,l,p),y&&_[l]!=f&&(_[l]=f)};i.core=r,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,e,n){var i=n(3),r=n(15);t.exports=n(1)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(29)(\"wks\"),r=n(16),o=n(0).Symbol,s=\"function\"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)(\"Symbol.\"+t))}).store=i},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e,n){var i=n(13);t.exports=function(t){if(!i(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e){var n=t.exports={version:\"2.4.0\"};\"number\"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var i=n(48),r=n(22);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+i).toString(36))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e,n){var i=n(109),r=n(110);t.exports=n(35)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var i=n(8);t.exports=function(t,e){return!!t&&i(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e){t.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(t,e,n){var i=n(0),r=n(11),o=n(74),s=n(6),u=function(t,e,n){var a,l,c,f=t&u.F,p=t&u.G,h=t&u.S,d=t&u.P,v=t&u.B,y=t&u.W,g=p?r:r[e]||(r[e]={}),b=g.prototype,m=p?i:h?i[e]:(i[e]||{}).prototype;p&&(n=e);for(a in n)(l=!f&&m&&void 0!==m[a])&&a in g||(c=l?m[a]:n[a],g[a]=p&&\"function\"!=typeof m[a]?n[a]:v&&l?o(c,i):y&&m[a]==c?function(t){var e=function(e,n,i){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return t.apply(this,arguments)};return e.prototype=t.prototype,e}(c):d&&\"function\"==typeof c?o(Function.call,c):c,d&&((g.virtual||(g.virtual={}))[a]=c,t&u.R&&b&&!b[a]&&s(b,a,c)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports={}},function(t,e){t.exports=!0},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(3).f,r=n(2),o=n(7)(\"toStringTag\");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(29)(\"keys\"),r=n(16);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(0),r=i[\"__core-js_shared__\"]||(i[\"__core-js_shared__\"]={});t.exports=function(t){return r[t]||(r[t]={})}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(13);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if(\"function\"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e,n){var i=n(0),r=n(11),o=n(25),s=n(33),u=n(3).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=o?{}:i.Symbol||{});\"_\"==t.charAt(0)||t in e||u(e,t,{value:s.f(t)})}},function(t,e,n){e.f=n(7)},function(t,e,n){var i=n(53),r=n(36),o=n(57),s=n(37),u=n(104);t.exports=function(t,e){var n=1==t,a=2==t,l=3==t,c=4==t,f=6==t,p=5==t||f,h=e||u;return function(e,u,d){for(var v,y,g=o(e),b=r(g),m=i(u,d,3),_=s(b.length),x=0,w=n?h(e,_):a?h(e,0):void 0;_>x;x++)if((p||x in b)&&(v=b[x],y=m(v,x,g),t))if(n)w[x]=y;else if(y)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:w.push(v)}else if(c)return!1;return f?-1:l||c?c:w}}},function(t,e,n){t.exports=!n(8)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e,n){var i=n(51);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==i(t)?t.split(\"\"):Object(t)}},function(t,e,n){var i=n(56),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(111)(\"wks\"),r=n(58),o=n(9).Symbol,s=\"function\"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)(\"Symbol.\"+t))}).store=i},function(t,e,n){\"use strict\";function i(t){return 0!==t&&(!(!Array.isArray(t)||0!==t.length)||!t)}function r(t){return function(){return!t.apply(void 0,arguments)}}function o(t,e){return void 0===t&&(t=\"undefined\"),null===t&&(t=\"null\"),!1===t&&(t=\"false\"),-1!==t.toString().toLowerCase().indexOf(e.trim())}function s(t,e,n,i){return t.filter(function(t){return o(i(t,n),e)})}function u(t){return t.filter(function(t){return!t.$isLabel})}function a(t,e){return function(n){return n.reduce(function(n,i){return i[t]&&i[t].length?(n.push({$groupLabel:i[e],$isLabel:!0}),n.concat(i[t])):n},[])}}function l(t,e,n,i,r){return function(o){return o.map(function(o){var u;if(!o[n])return console.warn(\"Options passed to vue-multiselect do not contain groups, despite the config.\"),[];var a=s(o[n],t,e,r);return a.length?(u={},v()(u,i,o[i]),v()(u,n,a),u):[]})}}var c=n(65),f=n.n(c),p=n(59),h=(n.n(p),n(122)),d=(n.n(h),n(64)),v=n.n(d),y=n(120),g=(n.n(y),n(121)),b=(n.n(g),n(117)),m=(n.n(b),n(123)),_=(n.n(m),n(118)),x=(n.n(_),n(119)),w=(n.n(x),function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce(function(t,e){return e(t)},t)}});e.a={data:function(){return{search:\"\",isOpen:!1,prefferedOpenDirection:\"below\",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},value:{type:null,default:function(){return[]}},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:\"Select option\"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default:function(t,e){return i(t)?\"\":e?t[e]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:\"Press enter to create a tag\"},tagPosition:{type:String,default:\"top\"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default:function(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1}},mounted:function(){this.multiple||this.clearOnSelect||console.warn(\"[Vue-Multiselect warn]: ClearOnSelect and Multiple props can’t be both set to false.\"),!this.multiple&&this.max&&console.warn(\"[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false.\"),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue:function(){return this.value||0===this.value?Array.isArray(this.value)?this.value:[this.value]:[]},filteredOptions:function(){var t=this.search||\"\",e=t.toLowerCase().trim(),n=this.options.concat();return n=this.internalSearch?this.groupValues?this.filterAndFlat(n,e,this.label):s(n,e,this.label,this.customLabel):this.groupValues?a(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(r(this.isSelected)):n,this.taggable&&e.length&&!this.isExistingOption(e)&&(\"bottom\"===this.tagPosition?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys:function(){var t=this;return this.trackBy?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue},optionKeys:function(){var t=this;return(this.groupValues?this.flatAndStrip(this.options):this.options).map(function(e){return t.customLabel(e,t.label).toString().toLowerCase()})},currentOptionLabel:function(){return this.multiple?this.searchable?\"\":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?\"\":this.placeholder}},watch:{internalValue:function(){this.resetAfter&&this.internalValue.length&&(this.search=\"\",this.$emit(\"input\",this.multiple?[]:null))},search:function(){this.$emit(\"search-change\",this.search,this.id)}},methods:{getValue:function(){return this.multiple?this.internalValue:0===this.internalValue.length?null:this.internalValue[0]},filterAndFlat:function(t,e,n){return w(l(e,n,this.groupValues,this.groupLabel,this.customLabel),a(this.groupValues,this.groupLabel))(t)},flatAndStrip:function(t){return w(a(this.groupValues,this.groupLabel),u)(t)},updateSearch:function(t){this.search=t},isExistingOption:function(t){return!!this.options&&this.optionKeys.indexOf(t)>-1},isSelected:function(t){var e=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(e)>-1},getOptionLabel:function(t){if(i(t))return\"\";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;var e=this.customLabel(t,this.label);return i(e)?\"\":e},select:function(t,e){if(t.$isLabel&&this.groupSelect)return void this.selectGroup(t);if(!(-1!==this.blockKeys.indexOf(e)||this.disabled||t.$isDisabled||t.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&(\"Tab\"!==e||this.pointerDirty)){if(t.isTag)this.$emit(\"tag\",t.label,this.id),this.search=\"\",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t))return void(\"Tab\"!==e&&this.removeElement(t));this.$emit(\"select\",t,this.id),this.multiple?this.$emit(\"input\",this.internalValue.concat([t]),this.id):this.$emit(\"input\",t,this.id),this.clearOnSelect&&(this.search=\"\")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(t){var e=this,n=this.options.find(function(n){return n[e.groupLabel]===t.$groupLabel});if(n)if(this.wholeGroupSelected(n)){this.$emit(\"remove\",n[this.groupValues],this.id);var i=this.internalValue.filter(function(t){return-1===n[e.groupValues].indexOf(t)});this.$emit(\"input\",i,this.id)}else{var o=n[this.groupValues].filter(r(this.isSelected));this.$emit(\"select\",o,this.id),this.$emit(\"input\",this.internalValue.concat(o),this.id)}},wholeGroupSelected:function(t){return t[this.groupValues].every(this.isSelected)},removeElement:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var n=\"object\"===f()(t)?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.$emit(\"remove\",t,this.id),this.multiple){var i=this.internalValue.slice(0,n).concat(this.internalValue.slice(n+1));this.$emit(\"input\",i,this.id)}else this.$emit(\"input\",null,this.id);this.closeOnSelect&&e&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf(\"Delete\")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var t=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=\"\"),this.$nextTick(function(){return t.$refs.search.focus()})):this.$el.focus(),this.$emit(\"open\",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=\"\"),this.$emit(\"close\",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if(\"undefined\"!=typeof window){var t=this.$el.getBoundingClientRect().top,e=window.innerHeight-this.$el.getBoundingClientRect().bottom;e>this.maxHeight||e>t||\"below\"===this.openDirection||\"bottom\"===this.openDirection?(this.prefferedOpenDirection=\"below\",this.optimizedHeight=Math.min(e-40,this.maxHeight)):(this.prefferedOpenDirection=\"above\",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}}}},function(t,e,n){\"use strict\";var i=n(59);n.n(i);e.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(t,e){return{\"multiselect__option--highlight\":t===this.pointer&&this.showPointer,\"multiselect__option--selected\":this.isSelected(e)}},groupHighlight:function(t,e){var n=this;if(!this.groupSelect)return[\"multiselect__option--disabled\"];var i=this.options.find(function(t){return t[n.groupLabel]===e.$groupLabel});return[this.groupSelect?\"multiselect__option--group\":\"multiselect__option--disabled\",{\"multiselect__option--highlight\":t===this.pointer&&this.showPointer},{\"multiselect__option--group-selected\":this.wholeGroupSelected(i)}]},addPointerElement:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"Enter\",e=t.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],e),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward:function(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(t){this.pointer=t,this.pointerDirty=!0}}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(13),r=n(0).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){t.exports=!n(1)&&!n(12)(function(){return 7!=Object.defineProperty(n(42)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){\"use strict\";var i=n(25),r=n(23),o=n(49),s=n(6),u=n(2),a=n(24),l=n(79),c=n(27),f=n(86),p=n(7)(\"iterator\"),h=!([].keys&&\"next\"in[].keys()),d=function(){return this};t.exports=function(t,e,n,v,y,g,b){l(n,e,v);var m,_,x,w=function(t){if(!h&&t in P)return P[t];switch(t){case\"keys\":case\"values\":return function(){return new n(this,t)}}return function(){return new n(this,t)}},S=e+\" Iterator\",O=\"values\"==y,L=!1,P=t.prototype,k=P[p]||P[\"@@iterator\"]||y&&P[y],E=k||w(y),j=y?O?w(\"entries\"):E:void 0,V=\"Array\"==e?P.entries||k:k;if(V&&(x=f(V.call(new t)))!==Object.prototype&&(c(x,S,!0),i||u(x,p)||s(x,p,d)),O&&k&&\"values\"!==k.name&&(L=!0,E=function(){return k.call(this)}),i&&!b||!h&&!L&&P[p]||s(P,p,E),a[e]=E,a[S]=d,y)if(m={values:O?E:w(\"values\"),keys:g?E:w(\"keys\"),entries:j},b)for(_ in m)_ in P||o(P,_,m[_]);else r(r.P+r.F*(h||L),e,m);return m}},function(t,e,n){var i=n(10),r=n(83),o=n(22),s=n(28)(\"IE_PROTO\"),u=function(){},a=function(){var t,e=n(42)(\"iframe\"),i=o.length;for(e.style.display=\"none\",n(76).appendChild(e),e.src=\"javascript:\",t=e.contentWindow.document,t.open(),t.write(\"<script>document.F=Object<\\/script>\"),t.close(),a=t.F;i--;)delete a.prototype[o[i]];return a()};t.exports=Object.create||function(t,e){var n;return null!==t?(u.prototype=i(t),n=new u,u.prototype=null,n[s]=t):n=a(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(48),r=n(22).concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var i=n(2),r=n(4),o=n(73)(!1),s=n(28)(\"IE_PROTO\");t.exports=function(t,e){var n,u=r(t),a=0,l=[];for(n in u)n!=s&&i(u,n)&&l.push(n);for(;e.length>a;)i(u,n=e[a++])&&(~o(l,n)||l.push(n));return l}},function(t,e,n){t.exports=n(6)},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){var n=t.exports={version:\"2.4.0\"};\"number\"==typeof __e&&(__e=n)},function(t,e,n){var i=n(50);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(51);t.exports=Array.isArray||function(t){return\"Array\"==i(t)}},function(t,e,n){var i=n(9),r=n(18),o=n(107),s=n(58)(\"src\"),u=Function.toString,a=(\"\"+u).split(\"toString\");n(52).inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,u){var l=\"function\"==typeof n;l&&(o(n,\"name\")||r(n,\"name\",e)),t[e]!==n&&(l&&(o(n,s)||r(n,s,t[e]?\"\"+t[e]:a.join(String(e)))),t===i?t[e]=n:u?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,\"toString\",function(){return\"function\"==typeof this&&this[s]||u.call(this)})},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(17);t.exports=function(t){return Object(i(t))}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+i).toString(36))}},function(t,e,n){\"use strict\";var i=n(5),r=n(34)(5),o=!0;\"find\"in[]&&Array(1).find(function(){o=!1}),i(i.P+i.F*o,\"Array\",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(99)(\"find\")},function(t,e,n){\"use strict\";function i(t){n(124)}var r=n(67),o=n(126),s=n(125),u=i,a=s(r.a,o.a,!1,u,null,null);e.a=a.exports},function(t,e,n){t.exports=n(68)},function(t,e,n){t.exports=n(69)},function(t,e,n){t.exports=n(70)},function(t,e,n){function i(t,e,n){return e in t?r(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var r=n(61);t.exports=i},function(t,e,n){function i(t){return(i=\"function\"==typeof s&&\"symbol\"==typeof o?function(t){return typeof t}:function(t){return t&&\"function\"==typeof s&&t.constructor===s&&t!==s.prototype?\"symbol\":typeof t})(t)}function r(e){return\"function\"==typeof s&&\"symbol\"===i(o)?t.exports=r=function(t){return i(t)}:t.exports=r=function(t){return t&&\"function\"==typeof s&&t.constructor===s&&t!==s.prototype?\"symbol\":i(t)},r(e)}var o=n(63),s=n(62);t.exports=r},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var i=n(60),r=n(39),o=n(40);n.d(e,\"Multiselect\",function(){return i.a}),n.d(e,\"multiselectMixin\",function(){return r.a}),n.d(e,\"pointerMixin\",function(){return o.a}),e.default=i.a},function(t,e,n){\"use strict\";var i=n(39),r=n(40);e.a={name:\"vue-multiselect\",mixins:[i.a,r.a],props:{name:{type:String,default:\"\"},selectLabel:{type:String,default:\"Press enter to select\"},selectGroupLabel:{type:String,default:\"Press enter to select group\"},selectedLabel:{type:String,default:\"Selected\"},deselectLabel:{type:String,default:\"Press enter to remove\"},deselectGroupLabel:{type:String,default:\"Press enter to deselect group\"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(t){return\"and \".concat(t,\" more\")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:\"\"},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return this.singleValue&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:\"\"},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:\"\"},selectLabelText:function(){return this.showLabels?this.selectLabel:\"\"},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:\"\"},selectedLabelText:function(){return this.showLabels?this.selectedLabel:\"\"},inputStyle:function(){if(this.multiple&&this.value&&this.value.length)return this.isOpen?{width:\"auto\"}:{width:\"0\",position:\"absolute\",padding:\"0\"}},contentStyle:function(){return this.options.length?{display:\"inline-block\"}:{display:\"block\"}},isAbove:function(){return\"above\"===this.openDirection||\"top\"===this.openDirection||\"below\"!==this.openDirection&&\"bottom\"!==this.openDirection&&\"above\"===this.prefferedOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(t,e,n){n(92);var i=n(11).Object;t.exports=function(t,e,n){return i.defineProperty(t,e,n)}},function(t,e,n){n(95),n(93),n(96),n(97),t.exports=n(11).Symbol},function(t,e,n){n(94),n(98),t.exports=n(33).f(\"iterator\")},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){t.exports=function(){}},function(t,e,n){var i=n(4),r=n(89),o=n(88);t.exports=function(t){return function(e,n,s){var u,a=i(e),l=r(a.length),c=o(s,l);if(t&&n!=n){for(;l>c;)if((u=a[c++])!=u)return!0}else for(;l>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(71);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(14),r=n(47),o=n(26);t.exports=function(t){var e=i(t),n=r.f;if(n)for(var s,u=n(t),a=o.f,l=0;u.length>l;)a.call(t,s=u[l++])&&e.push(s);return e}},function(t,e,n){t.exports=n(0).document&&document.documentElement},function(t,e,n){var i=n(41);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==i(t)?t.split(\"\"):Object(t)}},function(t,e,n){var i=n(41);t.exports=Array.isArray||function(t){return\"Array\"==i(t)}},function(t,e,n){\"use strict\";var i=n(45),r=n(15),o=n(27),s={};n(6)(s,n(7)(\"iterator\"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+\" Iterator\")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(14),r=n(4);t.exports=function(t,e){for(var n,o=r(t),s=i(o),u=s.length,a=0;u>a;)if(o[n=s[a++]]===e)return n}},function(t,e,n){var i=n(16)(\"meta\"),r=n(13),o=n(2),s=n(3).f,u=0,a=Object.isExtensible||function(){return!0},l=!n(12)(function(){return a(Object.preventExtensions({}))}),c=function(t){s(t,i,{value:{i:\"O\"+ ++u,w:{}}})},f=function(t,e){if(!r(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!o(t,i)){if(!a(t))return\"F\";if(!e)return\"E\";c(t)}return t[i].i},p=function(t,e){if(!o(t,i)){if(!a(t))return!0;if(!e)return!1;c(t)}return t[i].w},h=function(t){return l&&d.NEED&&a(t)&&!o(t,i)&&c(t),t},d=t.exports={KEY:i,NEED:!1,fastKey:f,getWeak:p,onFreeze:h}},function(t,e,n){var i=n(3),r=n(10),o=n(14);t.exports=n(1)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),u=s.length,a=0;u>a;)i.f(t,n=s[a++],e[n]);return t}},function(t,e,n){var i=n(26),r=n(15),o=n(4),s=n(31),u=n(2),a=n(43),l=Object.getOwnPropertyDescriptor;e.f=n(1)?l:function(t,e){if(t=o(t),e=s(e,!0),a)try{return l(t,e)}catch(t){}if(u(t,e))return r(!i.f.call(t,e),t[e])}},function(t,e,n){var i=n(4),r=n(46).f,o={}.toString,s=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],u=function(t){try{return r(t)}catch(t){return s.slice()}};t.exports.f=function(t){return s&&\"[object Window]\"==o.call(t)?u(t):r(i(t))}},function(t,e,n){var i=n(2),r=n(90),o=n(28)(\"IE_PROTO\"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){var i=n(30),r=n(21);t.exports=function(t){return function(e,n){var o,s,u=String(r(e)),a=i(n),l=u.length;return a<0||a>=l?t?\"\":void 0:(o=u.charCodeAt(a),o<55296||o>56319||a+1===l||(s=u.charCodeAt(a+1))<56320||s>57343?t?u.charAt(a):o:t?u.slice(a,a+2):s-56320+(o-55296<<10)+65536)}}},function(t,e,n){var i=n(30),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(30),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(21);t.exports=function(t){return Object(i(t))}},function(t,e,n){\"use strict\";var i=n(72),r=n(80),o=n(24),s=n(4);t.exports=n(44)(Array,\"Array\",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):\"keys\"==e?r(0,n):\"values\"==e?r(0,t[n]):r(0,[n,t[n]])},\"values\"),o.Arguments=o.Array,i(\"keys\"),i(\"values\"),i(\"entries\")},function(t,e,n){var i=n(23);i(i.S+i.F*!n(1),\"Object\",{defineProperty:n(3).f})},function(t,e){},function(t,e,n){\"use strict\";var i=n(87)(!0);n(44)(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=i(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){\"use strict\";var i=n(0),r=n(2),o=n(1),s=n(23),u=n(49),a=n(82).KEY,l=n(12),c=n(29),f=n(27),p=n(16),h=n(7),d=n(33),v=n(32),y=n(81),g=n(75),b=n(78),m=n(10),_=n(4),x=n(31),w=n(15),S=n(45),O=n(85),L=n(84),P=n(3),k=n(14),E=L.f,j=P.f,V=O.f,C=i.Symbol,T=i.JSON,A=T&&T.stringify,$=h(\"_hidden\"),D=h(\"toPrimitive\"),F={}.propertyIsEnumerable,M=c(\"symbol-registry\"),B=c(\"symbols\"),N=c(\"op-symbols\"),R=Object.prototype,H=\"function\"==typeof C,G=i.QObject,I=!G||!G.prototype||!G.prototype.findChild,K=o&&l(function(){return 7!=S(j({},\"a\",{get:function(){return j(this,\"a\",{value:7}).a}})).a})?function(t,e,n){var i=E(R,e);i&&delete R[e],j(t,e,n),i&&t!==R&&j(R,e,i)}:j,z=function(t){var e=B[t]=S(C.prototype);return e._k=t,e},U=H&&\"symbol\"==typeof C.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof C},W=function(t,e,n){return t===R&&W(N,e,n),m(t),e=x(e,!0),m(n),r(B,e)?(n.enumerable?(r(t,$)&&t[$][e]&&(t[$][e]=!1),n=S(n,{enumerable:w(0,!1)})):(r(t,$)||j(t,$,w(1,{})),t[$][e]=!0),K(t,e,n)):j(t,e,n)},J=function(t,e){m(t);for(var n,i=g(e=_(e)),r=0,o=i.length;o>r;)W(t,n=i[r++],e[n]);return t},q=function(t,e){return void 0===e?S(t):J(S(t),e)},X=function(t){var e=F.call(this,t=x(t,!0));return!(this===R&&r(B,t)&&!r(N,t))&&(!(e||!r(this,t)||!r(B,t)||r(this,$)&&this[$][t])||e)},Y=function(t,e){if(t=_(t),e=x(e,!0),t!==R||!r(B,e)||r(N,e)){var n=E(t,e);return!n||!r(B,e)||r(t,$)&&t[$][e]||(n.enumerable=!0),n}},Q=function(t){for(var e,n=V(_(t)),i=[],o=0;n.length>o;)r(B,e=n[o++])||e==$||e==a||i.push(e);return i},Z=function(t){for(var e,n=t===R,i=V(n?N:_(t)),o=[],s=0;i.length>s;)!r(B,e=i[s++])||n&&!r(R,e)||o.push(B[e]);return o};H||(C=function(){if(this instanceof C)throw TypeError(\"Symbol is not a constructor!\");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===R&&e.call(N,n),r(this,$)&&r(this[$],t)&&(this[$][t]=!1),K(this,t,w(1,n))};return o&&I&&K(R,t,{configurable:!0,set:e}),z(t)},u(C.prototype,\"toString\",function(){return this._k}),L.f=Y,P.f=W,n(46).f=O.f=Q,n(26).f=X,n(47).f=Z,o&&!n(25)&&u(R,\"propertyIsEnumerable\",X,!0),d.f=function(t){return z(h(t))}),s(s.G+s.W+s.F*!H,{Symbol:C});for(var tt=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),et=0;tt.length>et;)h(tt[et++]);for(var tt=k(h.store),et=0;tt.length>et;)v(tt[et++]);s(s.S+s.F*!H,\"Symbol\",{for:function(t){return r(M,t+=\"\")?M[t]:M[t]=C(t)},keyFor:function(t){if(U(t))return y(M,t);throw TypeError(t+\" is not a symbol!\")},useSetter:function(){I=!0},useSimple:function(){I=!1}}),s(s.S+s.F*!H,\"Object\",{create:q,defineProperty:W,defineProperties:J,getOwnPropertyDescriptor:Y,getOwnPropertyNames:Q,getOwnPropertySymbols:Z}),T&&s(s.S+s.F*(!H||l(function(){var t=C();return\"[null]\"!=A([t])||\"{}\"!=A({a:t})||\"{}\"!=A(Object(t))})),\"JSON\",{stringify:function(t){if(void 0!==t&&!U(t)){for(var e,n,i=[t],r=1;arguments.length>r;)i.push(arguments[r++]);return e=i[1],\"function\"==typeof e&&(n=e),!n&&b(e)||(e=function(t,e){if(n&&(e=n.call(this,t,e)),!U(e))return e}),i[1]=e,A.apply(T,i)}}}),C.prototype[D]||n(6)(C.prototype,D,C.prototype.valueOf),f(C,\"Symbol\"),f(Math,\"Math\",!0),f(i.JSON,\"JSON\",!0)},function(t,e,n){n(32)(\"asyncIterator\")},function(t,e,n){n(32)(\"observable\")},function(t,e,n){n(91);for(var i=n(0),r=n(6),o=n(24),s=n(7)(\"toStringTag\"),u=[\"NodeList\",\"DOMTokenList\",\"MediaList\",\"StyleSheetList\",\"CSSRuleList\"],a=0;a<5;a++){var l=u[a],c=i[l],f=c&&c.prototype;f&&!f[s]&&r(f,s,l),o[l]=o.Array}},function(t,e,n){var i=n(38)(\"unscopables\"),r=Array.prototype;void 0==r[i]&&n(18)(r,i,{}),t.exports=function(t){r[i][t]=!0}},function(t,e,n){var i=n(19);t.exports=function(t){if(!i(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e,n){var i=n(115),r=n(37),o=n(114);t.exports=function(t){return function(e,n,s){var u,a=i(e),l=r(a.length),c=o(s,l);if(t&&n!=n){for(;l>c;)if((u=a[c++])!=u)return!0}else for(;l>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(50),r=n(57),o=n(36),s=n(37);t.exports=function(t,e,n,u,a){i(e);var l=r(t),c=o(l),f=s(l.length),p=a?f-1:0,h=a?-1:1;if(n<2)for(;;){if(p in c){u=c[p],p+=h;break}if(p+=h,a?p<0:f<=p)throw TypeError(\"Reduce of empty array with no initial value\")}for(;a?p>=0:f>p;p+=h)p in c&&(u=e(u,c[p],p,l));return u}},function(t,e,n){var i=n(19),r=n(54),o=n(38)(\"species\");t.exports=function(t){var e;return r(t)&&(e=t.constructor,\"function\"!=typeof e||e!==Array&&!r(e.prototype)||(e=void 0),i(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var i=n(103);t.exports=function(t,e){return new(i(t))(e)}},function(t,e,n){var i=n(19),r=n(9).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){\"use strict\";var i=n(18),r=n(55),o=n(8),s=n(17),u=n(38);t.exports=function(t,e,n){var a=u(t),l=n(s,a,\"\"[t]),c=l[0],f=l[1];o(function(){var e={};return e[a]=function(){return 7},7!=\"\"[t](e)})&&(r(String.prototype,t,c),i(RegExp.prototype,a,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){t.exports=!n(35)&&!n(8)(function(){return 7!=Object.defineProperty(n(105)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){var i=n(100),r=n(108),o=n(116),s=Object.defineProperty;e.f=n(35)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var i=n(9),r=i[\"__core-js_shared__\"]||(i[\"__core-js_shared__\"]={});t.exports=function(t){return r[t]||(r[t]={})}},function(t,e,n){var i=n(5),r=n(17),o=n(8),s=n(113),u=\"[\"+s+\"]\",a=\"
\",l=RegExp(\"^\"+u+u+\"*\"),c=RegExp(u+u+\"*$\"),f=function(t,e,n){var r={},u=o(function(){return!!s[t]()||a[t]()!=a}),l=r[t]=u?e(p):s[t];n&&(r[n]=l),i(i.P+i.F*u,\"String\",r)},p=f.trim=function(t,e){return t=String(r(t)),1&e&&(t=t.replace(l,\"\")),2&e&&(t=t.replace(c,\"\")),t};t.exports=f},function(t,e){t.exports=\"\\t\\n\\v\\f\\r \\u2028\\u2029\\ufeff\"},function(t,e,n){var i=n(56),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(36),r=n(17);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(19);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if(\"function\"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e,n){\"use strict\";var i=n(5),r=n(34)(2);i(i.P+i.F*!n(20)([].filter,!0),\"Array\",{filter:function(t){return r(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var i=n(5),r=n(101)(!1),o=[].indexOf,s=!!o&&1/[1].indexOf(1,-0)<0;i(i.P+i.F*(s||!n(20)(o)),\"Array\",{indexOf:function(t){return s?o.apply(this,arguments)||0:r(this,t,arguments[1])}})},function(t,e,n){var i=n(5);i(i.S,\"Array\",{isArray:n(54)})},function(t,e,n){\"use strict\";var i=n(5),r=n(34)(1);i(i.P+i.F*!n(20)([].map,!0),\"Array\",{map:function(t){return r(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var i=n(5),r=n(102);i(i.P+i.F*!n(20)([].reduce,!0),\"Array\",{reduce:function(t){return r(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){n(106)(\"search\",1,function(t,e,n){return[function(n){\"use strict\";var i=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,i):new RegExp(n)[e](String(i))},n]})},function(t,e,n){\"use strict\";n(112)(\"trim\",function(t){return function(){return t(this,3)}})},function(t,e){},function(t,e){t.exports=function(t,e,n,i,r,o){var s,u=t=t||{},a=typeof t.default;\"object\"!==a&&\"function\"!==a||(s=t,u=t.default);var l=\"function\"==typeof u?u.options:u;e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0),n&&(l.functional=!0),r&&(l._scopeId=r);var c;if(o?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=i),c){var f=l.functional,p=f?l.render:l.beforeCreate;f?(l._injectStyles=c,l.render=function(t,e){return c.call(e),p(t,e)}):l.beforeCreate=p?[].concat(p,c):[c]}return{esModule:s,exports:u,options:l}}},function(t,e,n){\"use strict\";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"multiselect\",class:{\"multiselect--active\":t.isOpen,\"multiselect--disabled\":t.disabled,\"multiselect--above\":t.isAbove},attrs:{tabindex:t.searchable?-1:t.tabindex},on:{focus:function(e){t.activate()},blur:function(e){!t.searchable&&t.deactivate()},keydown:[function(e){return\"button\"in e||!t._k(e.keyCode,\"down\",40,e.key,\"ArrowDown\")?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerForward()):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"up\",38,e.key,\"ArrowUp\")?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerBackward()):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")||!t._k(e.keyCode,\"tab\",9,e.key,\"Tab\")?(e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null}],keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key,\"Escape\"))return null;t.deactivate()}}},[t._t(\"caret\",[n(\"div\",{staticClass:\"multiselect__select\",on:{mousedown:function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}}})],{toggle:t.toggle}),t._v(\" \"),t._t(\"clear\",null,{search:t.search}),t._v(\" \"),n(\"div\",{ref:\"tags\",staticClass:\"multiselect__tags\"},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.visibleValues.length>0,expression:\"visibleValues.length > 0\"}],staticClass:\"multiselect__tags-wrap\"},[t._l(t.visibleValues,function(e){return[t._t(\"tag\",[n(\"span\",{staticClass:\"multiselect__tag\"},[n(\"span\",{domProps:{textContent:t._s(t.getOptionLabel(e))}}),t._v(\" \"),n(\"i\",{staticClass:\"multiselect__tag-icon\",attrs:{\"aria-hidden\":\"true\",tabindex:\"1\"},on:{keydown:function(n){if(!(\"button\"in n)&&t._k(n.keyCode,\"enter\",13,n.key,\"Enter\"))return null;n.preventDefault(),t.removeElement(e)},mousedown:function(n){n.preventDefault(),t.removeElement(e)}}})])],{option:e,search:t.search,remove:t.removeElement})]})],2),t._v(\" \"),t.internalValue&&t.internalValue.length>t.limit?[t._t(\"limit\",[n(\"strong\",{staticClass:\"multiselect__strong\",domProps:{textContent:t._s(t.limitText(t.internalValue.length-t.limit))}})])]:t._e(),t._v(\" \"),n(\"transition\",{attrs:{name:\"multiselect__loading\"}},[t._t(\"loading\",[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.loading,expression:\"loading\"}],staticClass:\"multiselect__spinner\"})])],2),t._v(\" \"),n(\"input\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isOpen&&t.searchable,expression:\"isOpen && searchable\"}],ref:\"search\",staticClass:\"multiselect__input\",style:t.inputStyle,attrs:{name:t.name,id:t.id,type:\"text\",autocomplete:\"off\",placeholder:t.placeholder,disabled:t.disabled,tabindex:t.tabindex},domProps:{value:t.search},on:{input:function(e){t.updateSearch(e.target.value)},focus:function(e){e.preventDefault(),t.activate()},blur:function(e){e.preventDefault(),t.deactivate()},keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key,\"Escape\"))return null;t.deactivate()},keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key,\"ArrowDown\"))return null;e.preventDefault(),t.pointerForward()},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key,\"ArrowUp\"))return null;e.preventDefault(),t.pointerBackward()},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?(e.preventDefault(),e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"delete\",[8,46],e.key,[\"Backspace\",\"Delete\"]))return null;e.stopPropagation(),t.removeLastElement()}]}}),t._v(\" \"),t.isSingleLabelVisible?n(\"span\",{staticClass:\"multiselect__single\",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t(\"singleLabel\",[[t._v(t._s(t.currentOptionLabel))]],{option:t.singleValue})],2):t._e(),t._v(\" \"),t.isPlaceholderVisible?n(\"span\",{on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t(\"placeholder\",[n(\"span\",{staticClass:\"multiselect__single\"},[t._v(\"\\n \"+t._s(t.placeholder)+\"\\n \")])])],2):t._e()],2),t._v(\" \"),n(\"transition\",{attrs:{name:\"multiselect\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isOpen,expression:\"isOpen\"}],ref:\"list\",staticClass:\"multiselect__content-wrapper\",style:{maxHeight:t.optimizedHeight+\"px\"},on:{focus:t.activate,mousedown:function(t){t.preventDefault()}}},[n(\"ul\",{staticClass:\"multiselect__content\",style:t.contentStyle},[t._t(\"beforeList\"),t._v(\" \"),t.multiple&&t.max===t.internalValue.length?n(\"li\",[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"maxElements\",[t._v(\"Maximum of \"+t._s(t.max)+\" options selected. First remove a selected option to select another.\")])],2)]):t._e(),t._v(\" \"),!t.max||t.internalValue.length<t.max?t._l(t.filteredOptions,function(e,i){return n(\"li\",{key:i,staticClass:\"multiselect__element\"},[e&&(e.$isLabel||e.$isDisabled)?t._e():n(\"span\",{staticClass:\"multiselect__option\",class:t.optionHighlight(i,e),attrs:{\"data-select\":e&&e.isTag?t.tagPlaceholder:t.selectLabelText,\"data-selected\":t.selectedLabelText,\"data-deselect\":t.deselectLabelText},on:{click:function(n){n.stopPropagation(),t.select(e)},mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.pointerSet(i)}}},[t._t(\"option\",[n(\"span\",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2),t._v(\" \"),e&&(e.$isLabel||e.$isDisabled)?n(\"span\",{staticClass:\"multiselect__option\",class:t.groupHighlight(i,e),attrs:{\"data-select\":t.groupSelect&&t.selectGroupLabelText,\"data-deselect\":t.groupSelect&&t.deselectGroupLabelText},on:{mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.groupSelect&&t.pointerSet(i)},mousedown:function(n){n.preventDefault(),t.selectGroup(e)}}},[t._t(\"option\",[n(\"span\",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2):t._e()])}):t._e(),t._v(\" \"),n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.showNoResults&&0===t.filteredOptions.length&&t.search&&!t.loading,expression:\"showNoResults && (filteredOptions.length === 0 && search && !loading)\"}]},[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"noResult\",[t._v(\"No elements found. Consider changing the search query.\")])],2)]),t._v(\" \"),t._t(\"afterList\")],2)])])],2)},r=[],o={render:i,staticRenderFns:r};e.a=o}])});","'use strict';\n\nvar bind = require('./helpers/bind');\nvar isBuffer = require('is-buffer');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = merge(result[key], val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","'use strict';\nif (require('./_descriptors')) {\n var LIBRARY = require('./_library');\n var global = require('./_global');\n var fails = require('./_fails');\n var $export = require('./_export');\n var $typed = require('./_typed');\n var $buffer = require('./_typed-buffer');\n var ctx = require('./_ctx');\n var anInstance = require('./_an-instance');\n var propertyDesc = require('./_property-desc');\n var hide = require('./_hide');\n var redefineAll = require('./_redefine-all');\n var toInteger = require('./_to-integer');\n var toLength = require('./_to-length');\n var toIndex = require('./_to-index');\n var toAbsoluteIndex = require('./_to-absolute-index');\n var toPrimitive = require('./_to-primitive');\n var has = require('./_has');\n var classof = require('./_classof');\n var isObject = require('./_is-object');\n var toObject = require('./_to-object');\n var isArrayIter = require('./_is-array-iter');\n var create = require('./_object-create');\n var getPrototypeOf = require('./_object-gpo');\n var gOPN = require('./_object-gopn').f;\n var getIterFn = require('./core.get-iterator-method');\n var uid = require('./_uid');\n var wks = require('./_wks');\n var createArrayMethod = require('./_array-methods');\n var createArrayIncludes = require('./_array-includes');\n var speciesConstructor = require('./_species-constructor');\n var ArrayIterators = require('./es6.array.iterator');\n var Iterators = require('./_iterators');\n var $iterDetect = require('./_iter-detect');\n var setSpecies = require('./_set-species');\n var arrayFill = require('./_array-fill');\n var arrayCopyWithin = require('./_array-copy-within');\n var $DP = require('./_object-dp');\n var $GOPD = require('./_object-gopd');\n var dP = $DP.f;\n var gOPD = $GOPD.f;\n var RangeError = global.RangeError;\n var TypeError = global.TypeError;\n var Uint8Array = global.Uint8Array;\n var ARRAY_BUFFER = 'ArrayBuffer';\n var SHARED_BUFFER = 'Shared' + ARRAY_BUFFER;\n var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT';\n var PROTOTYPE = 'prototype';\n var ArrayProto = Array[PROTOTYPE];\n var $ArrayBuffer = $buffer.ArrayBuffer;\n var $DataView = $buffer.DataView;\n var arrayForEach = createArrayMethod(0);\n var arrayFilter = createArrayMethod(2);\n var arraySome = createArrayMethod(3);\n var arrayEvery = createArrayMethod(4);\n var arrayFind = createArrayMethod(5);\n var arrayFindIndex = createArrayMethod(6);\n var arrayIncludes = createArrayIncludes(true);\n var arrayIndexOf = createArrayIncludes(false);\n var arrayValues = ArrayIterators.values;\n var arrayKeys = ArrayIterators.keys;\n var arrayEntries = ArrayIterators.entries;\n var arrayLastIndexOf = ArrayProto.lastIndexOf;\n var arrayReduce = ArrayProto.reduce;\n var arrayReduceRight = ArrayProto.reduceRight;\n var arrayJoin = ArrayProto.join;\n var arraySort = ArrayProto.sort;\n var arraySlice = ArrayProto.slice;\n var arrayToString = ArrayProto.toString;\n var arrayToLocaleString = ArrayProto.toLocaleString;\n var ITERATOR = wks('iterator');\n var TAG = wks('toStringTag');\n var TYPED_CONSTRUCTOR = uid('typed_constructor');\n var DEF_CONSTRUCTOR = uid('def_constructor');\n var ALL_CONSTRUCTORS = $typed.CONSTR;\n var TYPED_ARRAY = $typed.TYPED;\n var VIEW = $typed.VIEW;\n var WRONG_LENGTH = 'Wrong length!';\n\n var $map = createArrayMethod(1, function (O, length) {\n return allocate(speciesConstructor(O, O[DEF_CONSTRUCTOR]), length);\n });\n\n var LITTLE_ENDIAN = fails(function () {\n // eslint-disable-next-line no-undef\n return new Uint8Array(new Uint16Array([1]).buffer)[0] === 1;\n });\n\n var FORCED_SET = !!Uint8Array && !!Uint8Array[PROTOTYPE].set && fails(function () {\n new Uint8Array(1).set({});\n });\n\n var toOffset = function (it, BYTES) {\n var offset = toInteger(it);\n if (offset < 0 || offset % BYTES) throw RangeError('Wrong offset!');\n return offset;\n };\n\n var validate = function (it) {\n if (isObject(it) && TYPED_ARRAY in it) return it;\n throw TypeError(it + ' is not a typed array!');\n };\n\n var allocate = function (C, length) {\n if (!(isObject(C) && TYPED_CONSTRUCTOR in C)) {\n throw TypeError('It is not a typed array constructor!');\n } return new C(length);\n };\n\n var speciesFromList = function (O, list) {\n return fromList(speciesConstructor(O, O[DEF_CONSTRUCTOR]), list);\n };\n\n var fromList = function (C, list) {\n var index = 0;\n var length = list.length;\n var result = allocate(C, length);\n while (length > index) result[index] = list[index++];\n return result;\n };\n\n var addGetter = function (it, key, internal) {\n dP(it, key, { get: function () { return this._d[internal]; } });\n };\n\n var $from = function from(source /* , mapfn, thisArg */) {\n var O = toObject(source);\n var aLen = arguments.length;\n var mapfn = aLen > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var iterFn = getIterFn(O);\n var i, length, values, result, step, iterator;\n if (iterFn != undefined && !isArrayIter(iterFn)) {\n for (iterator = iterFn.call(O), values = [], i = 0; !(step = iterator.next()).done; i++) {\n values.push(step.value);\n } O = values;\n }\n if (mapping && aLen > 2) mapfn = ctx(mapfn, arguments[2], 2);\n for (i = 0, length = toLength(O.length), result = allocate(this, length); length > i; i++) {\n result[i] = mapping ? mapfn(O[i], i) : O[i];\n }\n return result;\n };\n\n var $of = function of(/* ...items */) {\n var index = 0;\n var length = arguments.length;\n var result = allocate(this, length);\n while (length > index) result[index] = arguments[index++];\n return result;\n };\n\n // iOS Safari 6.x fails here\n var TO_LOCALE_BUG = !!Uint8Array && fails(function () { arrayToLocaleString.call(new Uint8Array(1)); });\n\n var $toLocaleString = function toLocaleString() {\n return arrayToLocaleString.apply(TO_LOCALE_BUG ? arraySlice.call(validate(this)) : validate(this), arguments);\n };\n\n var proto = {\n copyWithin: function copyWithin(target, start /* , end */) {\n return arrayCopyWithin.call(validate(this), target, start, arguments.length > 2 ? arguments[2] : undefined);\n },\n every: function every(callbackfn /* , thisArg */) {\n return arrayEvery(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n fill: function fill(value /* , start, end */) { // eslint-disable-line no-unused-vars\n return arrayFill.apply(validate(this), arguments);\n },\n filter: function filter(callbackfn /* , thisArg */) {\n return speciesFromList(this, arrayFilter(validate(this), callbackfn,\n arguments.length > 1 ? arguments[1] : undefined));\n },\n find: function find(predicate /* , thisArg */) {\n return arrayFind(validate(this), predicate, arguments.length > 1 ? arguments[1] : undefined);\n },\n findIndex: function findIndex(predicate /* , thisArg */) {\n return arrayFindIndex(validate(this), predicate, arguments.length > 1 ? arguments[1] : undefined);\n },\n forEach: function forEach(callbackfn /* , thisArg */) {\n arrayForEach(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n indexOf: function indexOf(searchElement /* , fromIndex */) {\n return arrayIndexOf(validate(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);\n },\n includes: function includes(searchElement /* , fromIndex */) {\n return arrayIncludes(validate(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);\n },\n join: function join(separator) { // eslint-disable-line no-unused-vars\n return arrayJoin.apply(validate(this), arguments);\n },\n lastIndexOf: function lastIndexOf(searchElement /* , fromIndex */) { // eslint-disable-line no-unused-vars\n return arrayLastIndexOf.apply(validate(this), arguments);\n },\n map: function map(mapfn /* , thisArg */) {\n return $map(validate(this), mapfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n reduce: function reduce(callbackfn /* , initialValue */) { // eslint-disable-line no-unused-vars\n return arrayReduce.apply(validate(this), arguments);\n },\n reduceRight: function reduceRight(callbackfn /* , initialValue */) { // eslint-disable-line no-unused-vars\n return arrayReduceRight.apply(validate(this), arguments);\n },\n reverse: function reverse() {\n var that = this;\n var length = validate(that).length;\n var middle = Math.floor(length / 2);\n var index = 0;\n var value;\n while (index < middle) {\n value = that[index];\n that[index++] = that[--length];\n that[length] = value;\n } return that;\n },\n some: function some(callbackfn /* , thisArg */) {\n return arraySome(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n sort: function sort(comparefn) {\n return arraySort.call(validate(this), comparefn);\n },\n subarray: function subarray(begin, end) {\n var O = validate(this);\n var length = O.length;\n var $begin = toAbsoluteIndex(begin, length);\n return new (speciesConstructor(O, O[DEF_CONSTRUCTOR]))(\n O.buffer,\n O.byteOffset + $begin * O.BYTES_PER_ELEMENT,\n toLength((end === undefined ? length : toAbsoluteIndex(end, length)) - $begin)\n );\n }\n };\n\n var $slice = function slice(start, end) {\n return speciesFromList(this, arraySlice.call(validate(this), start, end));\n };\n\n var $set = function set(arrayLike /* , offset */) {\n validate(this);\n var offset = toOffset(arguments[1], 1);\n var length = this.length;\n var src = toObject(arrayLike);\n var len = toLength(src.length);\n var index = 0;\n if (len + offset > length) throw RangeError(WRONG_LENGTH);\n while (index < len) this[offset + index] = src[index++];\n };\n\n var $iterators = {\n entries: function entries() {\n return arrayEntries.call(validate(this));\n },\n keys: function keys() {\n return arrayKeys.call(validate(this));\n },\n values: function values() {\n return arrayValues.call(validate(this));\n }\n };\n\n var isTAIndex = function (target, key) {\n return isObject(target)\n && target[TYPED_ARRAY]\n && typeof key != 'symbol'\n && key in target\n && String(+key) == String(key);\n };\n var $getDesc = function getOwnPropertyDescriptor(target, key) {\n return isTAIndex(target, key = toPrimitive(key, true))\n ? propertyDesc(2, target[key])\n : gOPD(target, key);\n };\n var $setDesc = function defineProperty(target, key, desc) {\n if (isTAIndex(target, key = toPrimitive(key, true))\n && isObject(desc)\n && has(desc, 'value')\n && !has(desc, 'get')\n && !has(desc, 'set')\n // TODO: add validation descriptor w/o calling accessors\n && !desc.configurable\n && (!has(desc, 'writable') || desc.writable)\n && (!has(desc, 'enumerable') || desc.enumerable)\n ) {\n target[key] = desc.value;\n return target;\n } return dP(target, key, desc);\n };\n\n if (!ALL_CONSTRUCTORS) {\n $GOPD.f = $getDesc;\n $DP.f = $setDesc;\n }\n\n $export($export.S + $export.F * !ALL_CONSTRUCTORS, 'Object', {\n getOwnPropertyDescriptor: $getDesc,\n defineProperty: $setDesc\n });\n\n if (fails(function () { arrayToString.call({}); })) {\n arrayToString = arrayToLocaleString = function toString() {\n return arrayJoin.call(this);\n };\n }\n\n var $TypedArrayPrototype$ = redefineAll({}, proto);\n redefineAll($TypedArrayPrototype$, $iterators);\n hide($TypedArrayPrototype$, ITERATOR, $iterators.values);\n redefineAll($TypedArrayPrototype$, {\n slice: $slice,\n set: $set,\n constructor: function () { /* noop */ },\n toString: arrayToString,\n toLocaleString: $toLocaleString\n });\n addGetter($TypedArrayPrototype$, 'buffer', 'b');\n addGetter($TypedArrayPrototype$, 'byteOffset', 'o');\n addGetter($TypedArrayPrototype$, 'byteLength', 'l');\n addGetter($TypedArrayPrototype$, 'length', 'e');\n dP($TypedArrayPrototype$, TAG, {\n get: function () { return this[TYPED_ARRAY]; }\n });\n\n // eslint-disable-next-line max-statements\n module.exports = function (KEY, BYTES, wrapper, CLAMPED) {\n CLAMPED = !!CLAMPED;\n var NAME = KEY + (CLAMPED ? 'Clamped' : '') + 'Array';\n var GETTER = 'get' + KEY;\n var SETTER = 'set' + KEY;\n var TypedArray = global[NAME];\n var Base = TypedArray || {};\n var TAC = TypedArray && getPrototypeOf(TypedArray);\n var FORCED = !TypedArray || !$typed.ABV;\n var O = {};\n var TypedArrayPrototype = TypedArray && TypedArray[PROTOTYPE];\n var getter = function (that, index) {\n var data = that._d;\n return data.v[GETTER](index * BYTES + data.o, LITTLE_ENDIAN);\n };\n var setter = function (that, index, value) {\n var data = that._d;\n if (CLAMPED) value = (value = Math.round(value)) < 0 ? 0 : value > 0xff ? 0xff : value & 0xff;\n data.v[SETTER](index * BYTES + data.o, value, LITTLE_ENDIAN);\n };\n var addElement = function (that, index) {\n dP(that, index, {\n get: function () {\n return getter(this, index);\n },\n set: function (value) {\n return setter(this, index, value);\n },\n enumerable: true\n });\n };\n if (FORCED) {\n TypedArray = wrapper(function (that, data, $offset, $length) {\n anInstance(that, TypedArray, NAME, '_d');\n var index = 0;\n var offset = 0;\n var buffer, byteLength, length, klass;\n if (!isObject(data)) {\n length = toIndex(data);\n byteLength = length * BYTES;\n buffer = new $ArrayBuffer(byteLength);\n } else if (data instanceof $ArrayBuffer || (klass = classof(data)) == ARRAY_BUFFER || klass == SHARED_BUFFER) {\n buffer = data;\n offset = toOffset($offset, BYTES);\n var $len = data.byteLength;\n if ($length === undefined) {\n if ($len % BYTES) throw RangeError(WRONG_LENGTH);\n byteLength = $len - offset;\n if (byteLength < 0) throw RangeError(WRONG_LENGTH);\n } else {\n byteLength = toLength($length) * BYTES;\n if (byteLength + offset > $len) throw RangeError(WRONG_LENGTH);\n }\n length = byteLength / BYTES;\n } else if (TYPED_ARRAY in data) {\n return fromList(TypedArray, data);\n } else {\n return $from.call(TypedArray, data);\n }\n hide(that, '_d', {\n b: buffer,\n o: offset,\n l: byteLength,\n e: length,\n v: new $DataView(buffer)\n });\n while (index < length) addElement(that, index++);\n });\n TypedArrayPrototype = TypedArray[PROTOTYPE] = create($TypedArrayPrototype$);\n hide(TypedArrayPrototype, 'constructor', TypedArray);\n } else if (!fails(function () {\n TypedArray(1);\n }) || !fails(function () {\n new TypedArray(-1); // eslint-disable-line no-new\n }) || !$iterDetect(function (iter) {\n new TypedArray(); // eslint-disable-line no-new\n new TypedArray(null); // eslint-disable-line no-new\n new TypedArray(1.5); // eslint-disable-line no-new\n new TypedArray(iter); // eslint-disable-line no-new\n }, true)) {\n TypedArray = wrapper(function (that, data, $offset, $length) {\n anInstance(that, TypedArray, NAME);\n var klass;\n // `ws` module bug, temporarily remove validation length for Uint8Array\n // https://github.com/websockets/ws/pull/645\n if (!isObject(data)) return new Base(toIndex(data));\n if (data instanceof $ArrayBuffer || (klass = classof(data)) == ARRAY_BUFFER || klass == SHARED_BUFFER) {\n return $length !== undefined\n ? new Base(data, toOffset($offset, BYTES), $length)\n : $offset !== undefined\n ? new Base(data, toOffset($offset, BYTES))\n : new Base(data);\n }\n if (TYPED_ARRAY in data) return fromList(TypedArray, data);\n return $from.call(TypedArray, data);\n });\n arrayForEach(TAC !== Function.prototype ? gOPN(Base).concat(gOPN(TAC)) : gOPN(Base), function (key) {\n if (!(key in TypedArray)) hide(TypedArray, key, Base[key]);\n });\n TypedArray[PROTOTYPE] = TypedArrayPrototype;\n if (!LIBRARY) TypedArrayPrototype.constructor = TypedArray;\n }\n var $nativeIterator = TypedArrayPrototype[ITERATOR];\n var CORRECT_ITER_NAME = !!$nativeIterator\n && ($nativeIterator.name == 'values' || $nativeIterator.name == undefined);\n var $iterator = $iterators.values;\n hide(TypedArray, TYPED_CONSTRUCTOR, true);\n hide(TypedArrayPrototype, TYPED_ARRAY, NAME);\n hide(TypedArrayPrototype, VIEW, true);\n hide(TypedArrayPrototype, DEF_CONSTRUCTOR, TypedArray);\n\n if (CLAMPED ? new TypedArray(1)[TAG] != NAME : !(TAG in TypedArrayPrototype)) {\n dP(TypedArrayPrototype, TAG, {\n get: function () { return NAME; }\n });\n }\n\n O[NAME] = TypedArray;\n\n $export($export.G + $export.W + $export.F * (TypedArray != Base), O);\n\n $export($export.S, NAME, {\n BYTES_PER_ELEMENT: BYTES\n });\n\n $export($export.S + $export.F * fails(function () { Base.of.call(TypedArray, 1); }), NAME, {\n from: $from,\n of: $of\n });\n\n if (!(BYTES_PER_ELEMENT in TypedArrayPrototype)) hide(TypedArrayPrototype, BYTES_PER_ELEMENT, BYTES);\n\n $export($export.P, NAME, proto);\n\n setSpecies(NAME);\n\n $export($export.P + $export.F * FORCED_SET, NAME, { set: $set });\n\n $export($export.P + $export.F * !CORRECT_ITER_NAME, NAME, $iterators);\n\n if (!LIBRARY && TypedArrayPrototype.toString != arrayToString) TypedArrayPrototype.toString = arrayToString;\n\n $export($export.P + $export.F * fails(function () {\n new TypedArray(1).slice();\n }), NAME, { slice: $slice });\n\n $export($export.P + $export.F * (fails(function () {\n return [1, 2].toLocaleString() != new TypedArray([1, 2]).toLocaleString();\n }) || !fails(function () {\n TypedArrayPrototype.toLocaleString.call([1, 2]);\n })), NAME, { toLocaleString: $toLocaleString });\n\n Iterators[NAME] = CORRECT_ITER_NAME ? $nativeIterator : $iterator;\n if (!LIBRARY && !CORRECT_ITER_NAME) hide(TypedArrayPrototype, ITERATOR, $iterator);\n };\n} else module.exports = function () { /* empty */ };\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","var META = require('./_uid')('meta');\nvar isObject = require('./_is-object');\nvar has = require('./_has');\nvar setDesc = require('./_object-dp').f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\nvar FREEZE = !require('./_fails')(function () {\n return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n setDesc(it, META, { value: {\n i: 'O' + ++id, // object ID\n w: {} // weak collections IDs\n } });\n};\nvar fastKey = function (it, create) {\n // return primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMeta(it);\n // return object ID\n } return it[META].i;\n};\nvar getWeak = function (it, create) {\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMeta(it);\n // return hash weak collections IDs\n } return it[META].w;\n};\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n return it;\n};\nvar meta = module.exports = {\n KEY: META,\n NEED: false,\n fastKey: fastKey,\n getWeak: getWeak,\n onFreeze: onFreeze\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","module.exports = require('./lib/axios');","var core = module.exports = { version: '2.5.5' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","module.exports = false;\n","var redefine = require('./_redefine');\nmodule.exports = function (target, src, safe) {\n for (var key in src) redefine(target, key, src[key], safe);\n return target;\n};\n","module.exports = function (it, Constructor, name, forbiddenField) {\n if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) {\n throw TypeError(name + ': incorrect invocation!');\n } return it;\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","module.exports = {};\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it, TYPE) {\n if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');\n return it;\n};\n","/**\n * vue-local-storage v0.6.0\n * (c) 2017 Alexander Avakov\n * @license MIT\n */\n(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n\ttypeof define === 'function' && define.amd ? define(factory) :\n\t(global.VueLocalStorage = factory());\n}(this, (function () { 'use strict';\n\nvar VueLocalStorage = function VueLocalStorage () {\n this._properties = {};\n this._namespace = '';\n this._isSupported = true;\n};\n\nvar prototypeAccessors = { namespace: {} };\n\n/**\n * Namespace getter.\n *\n * @returns {string}\n */\nprototypeAccessors.namespace.get = function () {\n return this._namespace\n};\n\n/**\n * Namespace setter.\n *\n * @param {string} value\n */\nprototypeAccessors.namespace.set = function (value) {\n this._namespace = value ? (value + \".\") : '';\n};\n\n/**\n * Concatenates localStorage key with namespace prefix.\n *\n * @param {string} lsKey\n * @returns {string}\n * @private\n */\nVueLocalStorage.prototype._getLsKey = function _getLsKey (lsKey) {\n return (\"\" + (this._namespace) + lsKey)\n};\n\n/**\n * Set a value to localStorage giving respect to the namespace.\n *\n * @param {string} lsKey\n * @param {*} rawValue\n * @param {*} type\n * @private\n */\nVueLocalStorage.prototype._lsSet = function _lsSet (lsKey, rawValue, type) {\n var key = this._getLsKey(lsKey);\n var value = type && [Array, Object].includes(type)\n ? JSON.stringify(rawValue)\n : rawValue;\n\n window.localStorage.setItem(key, value);\n};\n\n/**\n * Get value from localStorage giving respect to the namespace.\n *\n * @param {string} lsKey\n * @returns {any}\n * @private\n */\nVueLocalStorage.prototype._lsGet = function _lsGet (lsKey) {\n var key = this._getLsKey(lsKey);\n\n return window.localStorage[key]\n};\n\n/**\n * Get value from localStorage\n *\n * @param {String} lsKey\n * @param {*} defaultValue\n * @param {*} defaultType\n * @returns {*}\n */\nVueLocalStorage.prototype.get = function get (lsKey, defaultValue, defaultType) {\n var this$1 = this;\n if ( defaultValue === void 0 ) defaultValue = null;\n if ( defaultType === void 0 ) defaultType = String;\n\n if (!this._isSupported) {\n return null\n }\n\n if (this._lsGet(lsKey)) {\n var type = defaultType;\n\n for (var key in this$1._properties) {\n if (key === lsKey) {\n type = this$1._properties[key].type;\n break\n }\n }\n\n return this._process(type, this._lsGet(lsKey))\n }\n\n return defaultValue !== null ? defaultValue : null\n};\n\n/**\n * Set localStorage value\n *\n * @param {String} lsKey\n * @param {*} value\n * @returns {*}\n */\nVueLocalStorage.prototype.set = function set (lsKey, value) {\n var this$1 = this;\n\n if (!this._isSupported) {\n return null\n }\n\n for (var key in this$1._properties) {\n var type = this$1._properties[key].type;\n\n if ((key === lsKey)) {\n this$1._lsSet(lsKey, value, type);\n\n return value\n }\n }\n\n this._lsSet(lsKey, value);\n\n return value\n};\n\n/**\n * Remove value from localStorage\n *\n * @param {String} lsKey\n */\nVueLocalStorage.prototype.remove = function remove (lsKey) {\n if (!this._isSupported) {\n return null\n }\n\n return window.localStorage.removeItem(lsKey)\n};\n\n/**\n * Add new property to localStorage\n *\n * @param {String} key\n * @param {function} type\n * @param {*} defaultValue\n */\nVueLocalStorage.prototype.addProperty = function addProperty (key, type, defaultValue) {\n if ( defaultValue === void 0 ) defaultValue = undefined;\n\n type = type || String;\n\n this._properties[key] = { type: type };\n\n if (!this._lsGet(key) && defaultValue !== null) {\n this._lsSet(key, defaultValue, type);\n }\n};\n\n/**\n * Process the value before return it from localStorage\n *\n * @param {String} type\n * @param {*} value\n * @returns {*}\n * @private\n */\nVueLocalStorage.prototype._process = function _process (type, value) {\n switch (type) {\n case Boolean:\n return value === 'true'\n case Number:\n return parseFloat(value)\n case Array:\n try {\n var array = JSON.parse(value);\n\n return Array.isArray(array) ? array : []\n } catch (e) {\n return []\n }\n case Object:\n try {\n return JSON.parse(value)\n } catch (e) {\n return {}\n }\n default:\n return value\n }\n};\n\nObject.defineProperties( VueLocalStorage.prototype, prototypeAccessors );\n\nvar vueLocalStorage = new VueLocalStorage();\n\nvar index = {\n /**\n * Install vue-local-storage plugin\n *\n * @param {Vue} Vue\n * @param {Object} options\n */\n install: function (Vue, options) {\n if ( options === void 0 ) options = {};\n\n if (typeof process !== 'undefined' &&\n (\n process.server ||\n process.SERVER_BUILD ||\n (process.env && process.env.VUE_ENV === 'server')\n )\n ) {\n return\n }\n\n var isSupported = true;\n\n try {\n var test = '__vue-localstorage-test__';\n\n window.localStorage.setItem(test, test);\n window.localStorage.removeItem(test);\n } catch (e) {\n isSupported = false;\n vueLocalStorage._isSupported = false;\n\n console.error('Local storage is not supported');\n }\n\n var name = options.name || 'localStorage';\n var bind = options.bind;\n\n if (options.namespace) {\n vueLocalStorage.namespace = options.namespace;\n }\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n var this$1 = this;\n\n if (!isSupported) {\n return\n }\n\n if (this.$options[name]) {\n Object.keys(this.$options[name]).forEach(function (key) {\n var config = this$1.$options[name][key];\n var ref = [config.type, config.default];\n var type = ref[0];\n var defaultValue = ref[1];\n\n vueLocalStorage.addProperty(key, type, defaultValue);\n\n var existingProp = Object.getOwnPropertyDescriptor(vueLocalStorage, key);\n\n if (!existingProp) {\n var prop = {\n get: function () { return Vue.localStorage.get(key, defaultValue); },\n set: function (val) { return Vue.localStorage.set(key, val); },\n configurable: true\n };\n\n Object.defineProperty(vueLocalStorage, key, prop);\n Vue.util.defineReactive(vueLocalStorage, key, defaultValue);\n } else if (!Vue.config.silent) {\n console.log((key + \": is already defined and will be reused\"));\n }\n\n if ((bind || config.bind) && config.bind !== false) {\n this$1.$options.computed = this$1.$options.computed || {};\n\n if (!this$1.$options.computed[key]) {\n this$1.$options.computed[key] = {\n get: function () { return Vue.localStorage[key]; },\n set: function (val) { Vue.localStorage[key] = val; }\n };\n }\n }\n });\n }\n }\n });\n\n Vue[name] = vueLocalStorage;\n Vue.prototype[(\"$\" + name)] = vueLocalStorage;\n }\n};\n\nreturn index;\n\n})));\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","// 0 -> Array#forEach\n// 1 -> Array#map\n// 2 -> Array#filter\n// 3 -> Array#some\n// 4 -> Array#every\n// 5 -> Array#find\n// 6 -> Array#findIndex\nvar ctx = require('./_ctx');\nvar IObject = require('./_iobject');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar asc = require('./_array-species-create');\nmodule.exports = function (TYPE, $create) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n var create = $create || asc;\n return function ($this, callbackfn, that) {\n var O = toObject($this);\n var self = IObject(O);\n var f = ctx(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var val, res;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n val = self[index];\n res = f(val, index, O);\n if (TYPE) {\n if (IS_MAP) result[index] = res; // map\n else if (res) switch (TYPE) {\n case 3: return true; // some\n case 5: return val; // find\n case 6: return index; // findIndex\n case 2: result.push(val); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n };\n};\n","exports.f = {}.propertyIsEnumerable;\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || Function(\"return this\")() || (1, eval)(\"this\");\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","'use strict';\nvar global = require('./_global');\nvar dP = require('./_object-dp');\nvar DESCRIPTORS = require('./_descriptors');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (KEY) {\n var C = global[KEY];\n if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n};\n","var ITERATOR = require('./_wks')('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var riter = [7][ITERATOR]();\n riter['return'] = function () { SAFE_CLOSING = true; };\n // eslint-disable-next-line no-throw-literal\n Array.from(riter, function () { throw 2; });\n} catch (e) { /* empty */ }\n\nmodule.exports = function (exec, skipClosing) {\n if (!skipClosing && !SAFE_CLOSING) return false;\n var safe = false;\n try {\n var arr = [7];\n var iter = arr[ITERATOR]();\n iter.next = function () { return { done: safe = true }; };\n arr[ITERATOR] = function () { return iter; };\n exec(arr);\n } catch (e) { /* empty */ }\n return safe;\n};\n","var ctx = require('./_ctx');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar anObject = require('./_an-object');\nvar toLength = require('./_to-length');\nvar getIterFn = require('./core.get-iterator-method');\nvar BREAK = {};\nvar RETURN = {};\nvar exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {\n var iterFn = ITERATOR ? function () { return iterable; } : getIterFn(iterable);\n var f = ctx(fn, that, entries ? 2 : 1);\n var index = 0;\n var length, step, iterator, result;\n if (typeof iterFn != 'function') throw TypeError(iterable + ' is not iterable!');\n // fast case for arrays with default iterator\n if (isArrayIter(iterFn)) for (length = toLength(iterable.length); length > index; index++) {\n result = entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);\n if (result === BREAK || result === RETURN) return result;\n } else for (iterator = iterFn.call(iterable); !(step = iterator.next()).done;) {\n result = call(iterator, f, step.value, entries);\n if (result === BREAK || result === RETURN) return result;\n }\n};\nexports.BREAK = BREAK;\nexports.RETURN = RETURN;\n","'use strict';\nvar global = require('./_global');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar redefineAll = require('./_redefine-all');\nvar meta = require('./_meta');\nvar forOf = require('./_for-of');\nvar anInstance = require('./_an-instance');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar $iterDetect = require('./_iter-detect');\nvar setToStringTag = require('./_set-to-string-tag');\nvar inheritIfRequired = require('./_inherit-if-required');\n\nmodule.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {\n var Base = global[NAME];\n var C = Base;\n var ADDER = IS_MAP ? 'set' : 'add';\n var proto = C && C.prototype;\n var O = {};\n var fixMethod = function (KEY) {\n var fn = proto[KEY];\n redefine(proto, KEY,\n KEY == 'delete' ? function (a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'has' ? function has(a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'get' ? function get(a) {\n return IS_WEAK && !isObject(a) ? undefined : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'add' ? function add(a) { fn.call(this, a === 0 ? 0 : a); return this; }\n : function set(a, b) { fn.call(this, a === 0 ? 0 : a, b); return this; }\n );\n };\n if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {\n new C().entries().next();\n }))) {\n // create collection constructor\n C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);\n redefineAll(C.prototype, methods);\n meta.NEED = true;\n } else {\n var instance = new C();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n var ACCEPT_ITERABLES = $iterDetect(function (iter) { new C(iter); }); // eslint-disable-line no-new\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new C();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n if (!ACCEPT_ITERABLES) {\n C = wrapper(function (target, iterable) {\n anInstance(target, C, NAME);\n var that = inheritIfRequired(new Base(), target, C);\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n return that;\n });\n C.prototype = proto;\n proto.constructor = C;\n }\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n // weak collections should not contains .clear method\n if (IS_WEAK && proto.clear) delete proto.clear;\n }\n\n setToStringTag(C, NAME);\n\n O[NAME] = C;\n $export($export.G + $export.W + $export.F * (C != Base), O);\n\n if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);\n\n return C;\n};\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","function validate(binding) {\r\n if (typeof binding.value !== 'function') {\r\n console.warn('[Vue-click-outside:] provided expression', binding.expression, 'is not a function.')\r\n return false\r\n }\r\n\r\n return true\r\n}\r\n\r\nfunction isPopup(popupItem, elements) {\r\n if (!popupItem || !elements)\r\n return false\r\n\r\n for (var i = 0, len = elements.length; i < len; i++) {\r\n try {\r\n if (popupItem.contains(elements[i])) {\r\n return true\r\n }\r\n if (elements[i].contains(popupItem)) {\r\n return false\r\n }\r\n } catch(e) {\r\n return false\r\n }\r\n }\r\n\r\n return false\r\n}\r\n\r\nfunction isServer(vNode) {\r\n return typeof vNode.componentInstance !== 'undefined' && vNode.componentInstance.$isServer\r\n}\r\n\r\nexports = module.exports = {\r\n bind: function (el, binding, vNode) {\r\n if (!validate(binding)) return\r\n\r\n // Define Handler and cache it on the element\r\n function handler(e) {\r\n if (!vNode.context) return\r\n\r\n // some components may have related popup item, on which we shall prevent the click outside event handler.\r\n var elements = e.path || (e.composedPath && e.composedPath())\r\n elements && elements.length > 0 && elements.unshift(e.target)\r\n \r\n if (el.contains(e.target) || isPopup(vNode.context.popupItem, elements)) return\r\n\r\n el.__vueClickOutside__.callback(e)\r\n }\r\n\r\n // add Event Listeners\r\n el.__vueClickOutside__ = {\r\n handler: handler,\r\n callback: binding.value\r\n }\r\n !isServer(vNode) && document.addEventListener('click', handler)\r\n },\r\n\r\n update: function (el, binding) {\r\n if (validate(binding)) el.__vueClickOutside__.callback = binding.value\r\n },\r\n \r\n unbind: function (el, binding, vNode) {\r\n // Remove Event Listeners\r\n !isServer(vNode) && document.removeEventListener('click', el.__vueClickOutside__.handler)\r\n delete el.__vueClickOutside__\r\n }\r\n}\r\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar uid = require('./_uid');\nvar TYPED = uid('typed_array');\nvar VIEW = uid('view');\nvar ABV = !!(global.ArrayBuffer && global.DataView);\nvar CONSTR = ABV;\nvar i = 0;\nvar l = 9;\nvar Typed;\n\nvar TypedArrayConstructors = (\n 'Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array'\n).split(',');\n\nwhile (i < l) {\n if (Typed = global[TypedArrayConstructors[i++]]) {\n hide(Typed.prototype, TYPED, true);\n hide(Typed.prototype, VIEW, true);\n } else CONSTR = false;\n}\n\nmodule.exports = {\n ABV: ABV,\n CONSTR: CONSTR,\n TYPED: TYPED,\n VIEW: VIEW\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","var global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\nmodule.exports = function (key) {\n return store[key] || (store[key] = {});\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nmodule.exports = function fill(value /* , start = 0, end = @length */) {\n var O = toObject(this);\n var length = toLength(O.length);\n var aLen = arguments.length;\n var index = toAbsoluteIndex(aLen > 1 ? arguments[1] : undefined, length);\n var end = aLen > 2 ? arguments[2] : undefined;\n var endPos = end === undefined ? length : toAbsoluteIndex(end, length);\n while (endPos > index) O[index++] = value;\n return O;\n};\n","// 7.3.20 SpeciesConstructor(O, defaultConstructor)\nvar anObject = require('./_an-object');\nvar aFunction = require('./_a-function');\nvar SPECIES = require('./_wks')('species');\nmodule.exports = function (O, D) {\n var C = anObject(O).constructor;\n var S;\n return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);\n};\n","// getting tag from 19.1.3.6 Object.prototype.toString()\nvar cof = require('./_cof');\nvar TAG = require('./_wks')('toStringTag');\n// ES3 wrong here\nvar ARG = cof(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (e) { /* empty */ }\n};\n\nmodule.exports = function (it) {\n var O, T, B;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n // builtinTag case\n : ARG ? cof(O)\n // ES3 arguments fallback\n : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n};\n","// check on default Array iterator\nvar Iterators = require('./_iterators');\nvar ITERATOR = require('./_wks')('iterator');\nvar ArrayProto = Array.prototype;\n\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);\n};\n","var classof = require('./_classof');\nvar ITERATOR = require('./_wks')('iterator');\nvar Iterators = require('./_iterators');\nmodule.exports = require('./_core').getIteratorMethod = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","var ctx = require('./_ctx');\nvar invoke = require('./_invoke');\nvar html = require('./_html');\nvar cel = require('./_dom-create');\nvar global = require('./_global');\nvar process = global.process;\nvar setTask = global.setImmediate;\nvar clearTask = global.clearImmediate;\nvar MessageChannel = global.MessageChannel;\nvar Dispatch = global.Dispatch;\nvar counter = 0;\nvar queue = {};\nvar ONREADYSTATECHANGE = 'onreadystatechange';\nvar defer, channel, port;\nvar run = function () {\n var id = +this;\n // eslint-disable-next-line no-prototype-builtins\n if (queue.hasOwnProperty(id)) {\n var fn = queue[id];\n delete queue[id];\n fn();\n }\n};\nvar listener = function (event) {\n run.call(event.data);\n};\n// Node.js 0.9+ & IE10+ has setImmediate, otherwise:\nif (!setTask || !clearTask) {\n setTask = function setImmediate(fn) {\n var args = [];\n var i = 1;\n while (arguments.length > i) args.push(arguments[i++]);\n queue[++counter] = function () {\n // eslint-disable-next-line no-new-func\n invoke(typeof fn == 'function' ? fn : Function(fn), args);\n };\n defer(counter);\n return counter;\n };\n clearTask = function clearImmediate(id) {\n delete queue[id];\n };\n // Node.js 0.8-\n if (require('./_cof')(process) == 'process') {\n defer = function (id) {\n process.nextTick(ctx(run, id, 1));\n };\n // Sphere (JS game engine) Dispatch API\n } else if (Dispatch && Dispatch.now) {\n defer = function (id) {\n Dispatch.now(ctx(run, id, 1));\n };\n // Browsers with MessageChannel, includes WebWorkers\n } else if (MessageChannel) {\n channel = new MessageChannel();\n port = channel.port2;\n channel.port1.onmessage = listener;\n defer = ctx(port.postMessage, port, 1);\n // Browsers with postMessage, skip WebWorkers\n // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'\n } else if (global.addEventListener && typeof postMessage == 'function' && !global.importScripts) {\n defer = function (id) {\n global.postMessage(id + '', '*');\n };\n global.addEventListener('message', listener, false);\n // IE8-\n } else if (ONREADYSTATECHANGE in cel('script')) {\n defer = function (id) {\n html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function () {\n html.removeChild(this);\n run.call(id);\n };\n };\n // Rest old browsers\n } else {\n defer = function (id) {\n setTimeout(ctx(run, id, 1), 0);\n };\n }\n}\nmodule.exports = {\n set: setTask,\n clear: clearTask\n};\n","// helper for String#{startsWith, endsWith, includes}\nvar isRegExp = require('./_is-regexp');\nvar defined = require('./_defined');\n\nmodule.exports = function (that, searchString, NAME) {\n if (isRegExp(searchString)) throw TypeError('String#' + NAME + \" doesn't accept regex!\");\n return String(defined(that));\n};\n","var MATCH = require('./_wks')('match');\nmodule.exports = function (KEY) {\n var re = /./;\n try {\n '/./'[KEY](re);\n } catch (e) {\n try {\n re[MATCH] = false;\n return !'/./'[KEY](re);\n } catch (f) { /* empty */ }\n } return true;\n};\n","'use strict';\nvar $defineProperty = require('./_object-dp');\nvar createDesc = require('./_property-desc');\n\nmodule.exports = function (object, index, value) {\n if (index in object) $defineProperty.f(object, index, createDesc(0, value));\n else object[index] = value;\n};\n","// 20.2.2.28 Math.sign(x)\nmodule.exports = Math.sign || function sign(x) {\n // eslint-disable-next-line no-self-compare\n return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;\n};\n","// 20.2.2.14 Math.expm1(x)\nvar $expm1 = Math.expm1;\nmodule.exports = (!$expm1\n // Old FF bug\n || $expm1(10) > 22025.465794806719 || $expm1(10) < 22025.4657948067165168\n // Tor Browser bug\n || $expm1(-2e-17) != -2e-17\n) ? function expm1(x) {\n return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;\n} : $expm1;\n","var global = require('./_global');\nvar navigator = global.navigator;\n\nmodule.exports = navigator && navigator.userAgent || '';\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar buildURL = require('./../helpers/buildURL');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\nvar btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || require('./../helpers/btoa');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n var loadEvent = 'onreadystatechange';\n var xDomain = false;\n\n // For IE 8/9 CORS support\n // Only supports POST and GET calls and doesn't returns the response headers.\n // DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest.\n if (process.env.NODE_ENV !== 'test' &&\n typeof window !== 'undefined' &&\n window.XDomainRequest && !('withCredentials' in request) &&\n !isURLSameOrigin(config.url)) {\n request = new window.XDomainRequest();\n loadEvent = 'onload';\n xDomain = true;\n request.onprogress = function handleProgress() {};\n request.ontimeout = function handleTimeout() {};\n }\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password || '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n request.open(config.method.toUpperCase(), buildURL(config.url, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request[loadEvent] = function handleLoad() {\n if (!request || (request.readyState !== 4 && !xDomain)) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n // IE sends 1223 instead of 204 (https://github.com/axios/axios/issues/201)\n status: request.status === 1223 ? 204 : request.status,\n statusText: request.status === 1223 ? 'No Content' : request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n reject(createError('timeout of ' + config.timeout + 'ms exceeded', config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n var cookies = require('./../helpers/cookies');\n\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (config.withCredentials) {\n request.withCredentials = true;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (requestData === undefined) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","'use strict';\nvar global = require('./_global');\nvar DESCRIPTORS = require('./_descriptors');\nvar LIBRARY = require('./_library');\nvar $typed = require('./_typed');\nvar hide = require('./_hide');\nvar redefineAll = require('./_redefine-all');\nvar fails = require('./_fails');\nvar anInstance = require('./_an-instance');\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nvar toIndex = require('./_to-index');\nvar gOPN = require('./_object-gopn').f;\nvar dP = require('./_object-dp').f;\nvar arrayFill = require('./_array-fill');\nvar setToStringTag = require('./_set-to-string-tag');\nvar ARRAY_BUFFER = 'ArrayBuffer';\nvar DATA_VIEW = 'DataView';\nvar PROTOTYPE = 'prototype';\nvar WRONG_LENGTH = 'Wrong length!';\nvar WRONG_INDEX = 'Wrong index!';\nvar $ArrayBuffer = global[ARRAY_BUFFER];\nvar $DataView = global[DATA_VIEW];\nvar Math = global.Math;\nvar RangeError = global.RangeError;\n// eslint-disable-next-line no-shadow-restricted-names\nvar Infinity = global.Infinity;\nvar BaseBuffer = $ArrayBuffer;\nvar abs = Math.abs;\nvar pow = Math.pow;\nvar floor = Math.floor;\nvar log = Math.log;\nvar LN2 = Math.LN2;\nvar BUFFER = 'buffer';\nvar BYTE_LENGTH = 'byteLength';\nvar BYTE_OFFSET = 'byteOffset';\nvar $BUFFER = DESCRIPTORS ? '_b' : BUFFER;\nvar $LENGTH = DESCRIPTORS ? '_l' : BYTE_LENGTH;\nvar $OFFSET = DESCRIPTORS ? '_o' : BYTE_OFFSET;\n\n// IEEE754 conversions based on https://github.com/feross/ieee754\nfunction packIEEE754(value, mLen, nBytes) {\n var buffer = new Array(nBytes);\n var eLen = nBytes * 8 - mLen - 1;\n var eMax = (1 << eLen) - 1;\n var eBias = eMax >> 1;\n var rt = mLen === 23 ? pow(2, -24) - pow(2, -77) : 0;\n var i = 0;\n var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0;\n var e, m, c;\n value = abs(value);\n // eslint-disable-next-line no-self-compare\n if (value != value || value === Infinity) {\n // eslint-disable-next-line no-self-compare\n m = value != value ? 1 : 0;\n e = eMax;\n } else {\n e = floor(log(value) / LN2);\n if (value * (c = pow(2, -e)) < 1) {\n e--;\n c *= 2;\n }\n if (e + eBias >= 1) {\n value += rt / c;\n } else {\n value += rt * pow(2, 1 - eBias);\n }\n if (value * c >= 2) {\n e++;\n c /= 2;\n }\n if (e + eBias >= eMax) {\n m = 0;\n e = eMax;\n } else if (e + eBias >= 1) {\n m = (value * c - 1) * pow(2, mLen);\n e = e + eBias;\n } else {\n m = value * pow(2, eBias - 1) * pow(2, mLen);\n e = 0;\n }\n }\n for (; mLen >= 8; buffer[i++] = m & 255, m /= 256, mLen -= 8);\n e = e << mLen | m;\n eLen += mLen;\n for (; eLen > 0; buffer[i++] = e & 255, e /= 256, eLen -= 8);\n buffer[--i] |= s * 128;\n return buffer;\n}\nfunction unpackIEEE754(buffer, mLen, nBytes) {\n var eLen = nBytes * 8 - mLen - 1;\n var eMax = (1 << eLen) - 1;\n var eBias = eMax >> 1;\n var nBits = eLen - 7;\n var i = nBytes - 1;\n var s = buffer[i--];\n var e = s & 127;\n var m;\n s >>= 7;\n for (; nBits > 0; e = e * 256 + buffer[i], i--, nBits -= 8);\n m = e & (1 << -nBits) - 1;\n e >>= -nBits;\n nBits += mLen;\n for (; nBits > 0; m = m * 256 + buffer[i], i--, nBits -= 8);\n if (e === 0) {\n e = 1 - eBias;\n } else if (e === eMax) {\n return m ? NaN : s ? -Infinity : Infinity;\n } else {\n m = m + pow(2, mLen);\n e = e - eBias;\n } return (s ? -1 : 1) * m * pow(2, e - mLen);\n}\n\nfunction unpackI32(bytes) {\n return bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];\n}\nfunction packI8(it) {\n return [it & 0xff];\n}\nfunction packI16(it) {\n return [it & 0xff, it >> 8 & 0xff];\n}\nfunction packI32(it) {\n return [it & 0xff, it >> 8 & 0xff, it >> 16 & 0xff, it >> 24 & 0xff];\n}\nfunction packF64(it) {\n return packIEEE754(it, 52, 8);\n}\nfunction packF32(it) {\n return packIEEE754(it, 23, 4);\n}\n\nfunction addGetter(C, key, internal) {\n dP(C[PROTOTYPE], key, { get: function () { return this[internal]; } });\n}\n\nfunction get(view, bytes, index, isLittleEndian) {\n var numIndex = +index;\n var intIndex = toIndex(numIndex);\n if (intIndex + bytes > view[$LENGTH]) throw RangeError(WRONG_INDEX);\n var store = view[$BUFFER]._b;\n var start = intIndex + view[$OFFSET];\n var pack = store.slice(start, start + bytes);\n return isLittleEndian ? pack : pack.reverse();\n}\nfunction set(view, bytes, index, conversion, value, isLittleEndian) {\n var numIndex = +index;\n var intIndex = toIndex(numIndex);\n if (intIndex + bytes > view[$LENGTH]) throw RangeError(WRONG_INDEX);\n var store = view[$BUFFER]._b;\n var start = intIndex + view[$OFFSET];\n var pack = conversion(+value);\n for (var i = 0; i < bytes; i++) store[start + i] = pack[isLittleEndian ? i : bytes - i - 1];\n}\n\nif (!$typed.ABV) {\n $ArrayBuffer = function ArrayBuffer(length) {\n anInstance(this, $ArrayBuffer, ARRAY_BUFFER);\n var byteLength = toIndex(length);\n this._b = arrayFill.call(new Array(byteLength), 0);\n this[$LENGTH] = byteLength;\n };\n\n $DataView = function DataView(buffer, byteOffset, byteLength) {\n anInstance(this, $DataView, DATA_VIEW);\n anInstance(buffer, $ArrayBuffer, DATA_VIEW);\n var bufferLength = buffer[$LENGTH];\n var offset = toInteger(byteOffset);\n if (offset < 0 || offset > bufferLength) throw RangeError('Wrong offset!');\n byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength);\n if (offset + byteLength > bufferLength) throw RangeError(WRONG_LENGTH);\n this[$BUFFER] = buffer;\n this[$OFFSET] = offset;\n this[$LENGTH] = byteLength;\n };\n\n if (DESCRIPTORS) {\n addGetter($ArrayBuffer, BYTE_LENGTH, '_l');\n addGetter($DataView, BUFFER, '_b');\n addGetter($DataView, BYTE_LENGTH, '_l');\n addGetter($DataView, BYTE_OFFSET, '_o');\n }\n\n redefineAll($DataView[PROTOTYPE], {\n getInt8: function getInt8(byteOffset) {\n return get(this, 1, byteOffset)[0] << 24 >> 24;\n },\n getUint8: function getUint8(byteOffset) {\n return get(this, 1, byteOffset)[0];\n },\n getInt16: function getInt16(byteOffset /* , littleEndian */) {\n var bytes = get(this, 2, byteOffset, arguments[1]);\n return (bytes[1] << 8 | bytes[0]) << 16 >> 16;\n },\n getUint16: function getUint16(byteOffset /* , littleEndian */) {\n var bytes = get(this, 2, byteOffset, arguments[1]);\n return bytes[1] << 8 | bytes[0];\n },\n getInt32: function getInt32(byteOffset /* , littleEndian */) {\n return unpackI32(get(this, 4, byteOffset, arguments[1]));\n },\n getUint32: function getUint32(byteOffset /* , littleEndian */) {\n return unpackI32(get(this, 4, byteOffset, arguments[1])) >>> 0;\n },\n getFloat32: function getFloat32(byteOffset /* , littleEndian */) {\n return unpackIEEE754(get(this, 4, byteOffset, arguments[1]), 23, 4);\n },\n getFloat64: function getFloat64(byteOffset /* , littleEndian */) {\n return unpackIEEE754(get(this, 8, byteOffset, arguments[1]), 52, 8);\n },\n setInt8: function setInt8(byteOffset, value) {\n set(this, 1, byteOffset, packI8, value);\n },\n setUint8: function setUint8(byteOffset, value) {\n set(this, 1, byteOffset, packI8, value);\n },\n setInt16: function setInt16(byteOffset, value /* , littleEndian */) {\n set(this, 2, byteOffset, packI16, value, arguments[2]);\n },\n setUint16: function setUint16(byteOffset, value /* , littleEndian */) {\n set(this, 2, byteOffset, packI16, value, arguments[2]);\n },\n setInt32: function setInt32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packI32, value, arguments[2]);\n },\n setUint32: function setUint32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packI32, value, arguments[2]);\n },\n setFloat32: function setFloat32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packF32, value, arguments[2]);\n },\n setFloat64: function setFloat64(byteOffset, value /* , littleEndian */) {\n set(this, 8, byteOffset, packF64, value, arguments[2]);\n }\n });\n} else {\n if (!fails(function () {\n $ArrayBuffer(1);\n }) || !fails(function () {\n new $ArrayBuffer(-1); // eslint-disable-line no-new\n }) || fails(function () {\n new $ArrayBuffer(); // eslint-disable-line no-new\n new $ArrayBuffer(1.5); // eslint-disable-line no-new\n new $ArrayBuffer(NaN); // eslint-disable-line no-new\n return $ArrayBuffer.name != ARRAY_BUFFER;\n })) {\n $ArrayBuffer = function ArrayBuffer(length) {\n anInstance(this, $ArrayBuffer);\n return new BaseBuffer(toIndex(length));\n };\n var ArrayBufferProto = $ArrayBuffer[PROTOTYPE] = BaseBuffer[PROTOTYPE];\n for (var keys = gOPN(BaseBuffer), j = 0, key; keys.length > j;) {\n if (!((key = keys[j++]) in $ArrayBuffer)) hide($ArrayBuffer, key, BaseBuffer[key]);\n }\n if (!LIBRARY) ArrayBufferProto.constructor = $ArrayBuffer;\n }\n // iOS Safari 7.x bug\n var view = new $DataView(new $ArrayBuffer(2));\n var $setInt8 = $DataView[PROTOTYPE].setInt8;\n view.setInt8(0, 2147483648);\n view.setInt8(1, 2147483649);\n if (view.getInt8(0) || !view.getInt8(1)) redefineAll($DataView[PROTOTYPE], {\n setInt8: function setInt8(byteOffset, value) {\n $setInt8.call(this, byteOffset, value << 24 >> 24);\n },\n setUint8: function setUint8(byteOffset, value) {\n $setInt8.call(this, byteOffset, value << 24 >> 24);\n }\n }, true);\n}\nsetToStringTag($ArrayBuffer, ARRAY_BUFFER);\nsetToStringTag($DataView, DATA_VIEW);\nhide($DataView[PROTOTYPE], $typed.VIEW, true);\nexports[ARRAY_BUFFER] = $ArrayBuffer;\nexports[DATA_VIEW] = $DataView;\n","// https://tc39.github.io/ecma262/#sec-toindex\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nmodule.exports = function (it) {\n if (it === undefined) return 0;\n var number = toInteger(it);\n var length = toLength(number);\n if (number !== length) throw RangeError('Wrong length!');\n return length;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\n\nmodule.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {\n var O = toObject(this);\n var len = toLength(O.length);\n var to = toAbsoluteIndex(target, len);\n var from = toAbsoluteIndex(start, len);\n var end = arguments.length > 2 ? arguments[2] : undefined;\n var count = Math.min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);\n var inc = 1;\n if (from < to && to < from + count) {\n inc = -1;\n from += count - 1;\n to += count - 1;\n }\n while (count-- > 0) {\n if (from in O) O[to] = O[from];\n else delete O[to];\n to += inc;\n from += inc;\n } return O;\n};\n","'use strict';\nvar dP = require('./_object-dp').f;\nvar create = require('./_object-create');\nvar redefineAll = require('./_redefine-all');\nvar ctx = require('./_ctx');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar $iterDefine = require('./_iter-define');\nvar step = require('./_iter-step');\nvar setSpecies = require('./_set-species');\nvar DESCRIPTORS = require('./_descriptors');\nvar fastKey = require('./_meta').fastKey;\nvar validate = require('./_validate-collection');\nvar SIZE = DESCRIPTORS ? '_s' : 'size';\n\nvar getEntry = function (that, key) {\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return that._i[index];\n // frozen object case\n for (entry = that._f; entry; entry = entry.n) {\n if (entry.k == key) return entry;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = create(null); // index\n that._f = undefined; // first entry\n that._l = undefined; // last entry\n that[SIZE] = 0; // size\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n for (var that = validate(this, NAME), data = that._i, entry = that._f; entry; entry = entry.n) {\n entry.r = true;\n if (entry.p) entry.p = entry.p.n = undefined;\n delete data[entry.i];\n }\n that._f = that._l = undefined;\n that[SIZE] = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = validate(this, NAME);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.n;\n var prev = entry.p;\n delete that._i[entry.i];\n entry.r = true;\n if (prev) prev.n = next;\n if (next) next.p = prev;\n if (that._f == entry) that._f = next;\n if (that._l == entry) that._l = prev;\n that[SIZE]--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n validate(this, NAME);\n var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.n : this._f) {\n f(entry.v, entry.k, this);\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(validate(this, NAME), key);\n }\n });\n if (DESCRIPTORS) dP(C.prototype, 'size', {\n get: function () {\n return validate(this, NAME)[SIZE];\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var entry = getEntry(that, key);\n var prev, index;\n // change existing entry\n if (entry) {\n entry.v = value;\n // create new entry\n } else {\n that._l = entry = {\n i: index = fastKey(key, true), // <- index\n k: key, // <- key\n v: value, // <- value\n p: prev = that._l, // <- previous entry\n n: undefined, // <- next entry\n r: false // <- removed\n };\n if (!that._f) that._f = entry;\n if (prev) prev.n = entry;\n that[SIZE]++;\n // add to index\n if (index !== 'F') that._i[index] = entry;\n } return that;\n },\n getEntry: getEntry,\n setStrong: function (C, NAME, IS_MAP) {\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n $iterDefine(C, NAME, function (iterated, kind) {\n this._t = validate(iterated, NAME); // target\n this._k = kind; // kind\n this._l = undefined; // previous\n }, function () {\n var that = this;\n var kind = that._k;\n var entry = that._l;\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n // get next entry\n if (!that._t || !(that._l = entry = entry ? entry.n : that._t._f)) {\n // or finish the iteration\n that._t = undefined;\n return step(1);\n }\n // return step by kind\n if (kind == 'keys') return step(0, entry.k);\n if (kind == 'values') return step(0, entry.v);\n return step(0, [entry.k, entry.v]);\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(NAME);\n }\n};\n","// call something on iterator step with safe closing on error\nvar anObject = require('./_an-object');\nmodule.exports = function (iterator, fn, value, entries) {\n try {\n return entries ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (e) {\n var ret = iterator['return'];\n if (ret !== undefined) anObject(ret.call(iterator));\n throw e;\n }\n};\n","'use strict';\n// 19.1.2.1 Object.assign(target, source, ...)\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nvar toObject = require('./_to-object');\nvar IObject = require('./_iobject');\nvar $assign = Object.assign;\n\n// should work with symbols and should have deterministic property order (V8 bug)\nmodule.exports = !$assign || require('./_fails')(function () {\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var S = Symbol();\n var K = 'abcdefghijklmnopqrst';\n A[S] = 7;\n K.split('').forEach(function (k) { B[k] = k; });\n return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var aLen = arguments.length;\n var index = 1;\n var getSymbols = gOPS.f;\n var isEnum = pIE.f;\n while (aLen > index) {\n var S = IObject(arguments[index++]);\n var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) if (isEnum.call(S, key = keys[j++])) T[key] = S[key];\n } return T;\n} : $assign;\n","'use strict';\nvar redefineAll = require('./_redefine-all');\nvar getWeak = require('./_meta').getWeak;\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar createArrayMethod = require('./_array-methods');\nvar $has = require('./_has');\nvar validate = require('./_validate-collection');\nvar arrayFind = createArrayMethod(5);\nvar arrayFindIndex = createArrayMethod(6);\nvar id = 0;\n\n// fallback for uncaught frozen keys\nvar uncaughtFrozenStore = function (that) {\n return that._l || (that._l = new UncaughtFrozenStore());\n};\nvar UncaughtFrozenStore = function () {\n this.a = [];\n};\nvar findUncaughtFrozen = function (store, key) {\n return arrayFind(store.a, function (it) {\n return it[0] === key;\n });\n};\nUncaughtFrozenStore.prototype = {\n get: function (key) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) return entry[1];\n },\n has: function (key) {\n return !!findUncaughtFrozen(this, key);\n },\n set: function (key, value) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) entry[1] = value;\n else this.a.push([key, value]);\n },\n 'delete': function (key) {\n var index = arrayFindIndex(this.a, function (it) {\n return it[0] === key;\n });\n if (~index) this.a.splice(index, 1);\n return !!~index;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = id++; // collection id\n that._l = undefined; // leak store for uncaught frozen objects\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.3.3.2 WeakMap.prototype.delete(key)\n // 23.4.3.3 WeakSet.prototype.delete(value)\n 'delete': function (key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME))['delete'](key);\n return data && $has(data, this._i) && delete data[this._i];\n },\n // 23.3.3.4 WeakMap.prototype.has(key)\n // 23.4.3.4 WeakSet.prototype.has(value)\n has: function has(key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME)).has(key);\n return data && $has(data, this._i);\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var data = getWeak(anObject(key), true);\n if (data === true) uncaughtFrozenStore(that).set(key, value);\n else data[that._i] = value;\n return that;\n },\n ufstore: uncaughtFrozenStore\n};\n","// fast apply, http://jsperf.lnkit.com/fast-apply/5\nmodule.exports = function (fn, args, that) {\n var un = that === undefined;\n switch (args.length) {\n case 0: return un ? fn()\n : fn.call(that);\n case 1: return un ? fn(args[0])\n : fn.call(that, args[0]);\n case 2: return un ? fn(args[0], args[1])\n : fn.call(that, args[0], args[1]);\n case 3: return un ? fn(args[0], args[1], args[2])\n : fn.call(that, args[0], args[1], args[2]);\n case 4: return un ? fn(args[0], args[1], args[2], args[3])\n : fn.call(that, args[0], args[1], args[2], args[3]);\n } return fn.apply(that, args);\n};\n","// all object keys, includes non-enumerable and symbols\nvar gOPN = require('./_object-gopn');\nvar gOPS = require('./_object-gops');\nvar anObject = require('./_an-object');\nvar Reflect = require('./_global').Reflect;\nmodule.exports = Reflect && Reflect.ownKeys || function ownKeys(it) {\n var keys = gOPN.f(anObject(it));\n var getSymbols = gOPS.f;\n return getSymbols ? keys.concat(getSymbols(it)) : keys;\n};\n","'use strict';\n// 25.4.1.5 NewPromiseCapability(C)\nvar aFunction = require('./_a-function');\n\nfunction PromiseCapability(C) {\n var resolve, reject;\n this.promise = new C(function ($$resolve, $$reject) {\n if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');\n resolve = $$resolve;\n reject = $$reject;\n });\n this.resolve = aFunction(resolve);\n this.reject = aFunction(reject);\n}\n\nmodule.exports.f = function (C) {\n return new PromiseCapability(C);\n};\n","exports.f = require('./_wks');\n","// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nvar toIObject = require('./_to-iobject');\nvar gOPN = require('./_object-gopn').f;\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return gOPN(it);\n } catch (e) {\n return windowNames.slice();\n }\n};\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n};\n","'use strict';\nvar toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n\nmodule.exports = function repeat(count) {\n var str = String(defined(this));\n var res = '';\n var n = toInteger(count);\n if (n < 0 || n == Infinity) throw RangeError(\"Count can't be negative\");\n for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) res += str;\n return res;\n};\n","// 7.2.8 IsRegExp(argument)\nvar isObject = require('./_is-object');\nvar cof = require('./_cof');\nvar MATCH = require('./_wks')('match');\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');\n};\n","// 20.1.2.3 Number.isInteger(number)\nvar isObject = require('./_is-object');\nvar floor = Math.floor;\nmodule.exports = function isInteger(it) {\n return !isObject(it) && isFinite(it) && floor(it) === it;\n};\n","// 20.2.2.20 Math.log1p(x)\nmodule.exports = Math.log1p || function log1p(x) {\n return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);\n};\n","var getKeys = require('./_object-keys');\nvar toIObject = require('./_to-iobject');\nvar isEnum = require('./_object-pie').f;\nmodule.exports = function (isEntries) {\n return function (it) {\n var O = toIObject(it);\n var keys = getKeys(O);\n var length = keys.length;\n var i = 0;\n var result = [];\n var key;\n while (length > i) if (isEnum.call(O, key = keys[i++])) {\n result.push(isEntries ? [key, O[key]] : O[key]);\n } return result;\n };\n};\n","// https://github.com/tc39/proposal-string-pad-start-end\nvar toLength = require('./_to-length');\nvar repeat = require('./_string-repeat');\nvar defined = require('./_defined');\n\nmodule.exports = function (that, maxLength, fillString, left) {\n var S = String(defined(that));\n var stringLength = S.length;\n var fillStr = fillString === undefined ? ' ' : String(fillString);\n var intMaxLength = toLength(maxLength);\n if (intMaxLength <= stringLength || fillStr == '') return S;\n var fillLen = intMaxLength - stringLength;\n var stringFiller = repeat.call(fillStr, Math.ceil(fillLen / fillStr.length));\n if (stringFiller.length > fillLen) stringFiller = stringFiller.slice(0, fillLen);\n return left ? stringFiller + S : S + stringFiller;\n};\n","exports.sync = function (store, router, options) {\n var moduleName = (options || {}).moduleName || 'route'\n\n store.registerModule(moduleName, {\n namespaced: true,\n state: cloneRoute(router.currentRoute),\n mutations: {\n 'ROUTE_CHANGED': function ROUTE_CHANGED (state, transition) {\n store.state[moduleName] = cloneRoute(transition.to, transition.from)\n }\n }\n })\n\n var isTimeTraveling = false\n var currentPath\n\n // sync router on store change\n var storeUnwatch = store.watch(\n function (state) { return state[moduleName]; },\n function (route) {\n var fullPath = route.fullPath;\n if (fullPath === currentPath) {\n return\n }\n if (currentPath != null) {\n isTimeTraveling = true\n router.push(route)\n }\n currentPath = fullPath\n },\n { sync: true }\n )\n\n // sync store on router navigation\n var afterEachUnHook = router.afterEach(function (to, from) {\n if (isTimeTraveling) {\n isTimeTraveling = false\n return\n }\n currentPath = to.fullPath\n store.commit(moduleName + '/ROUTE_CHANGED', { to: to, from: from })\n })\n\n return function unsync () {\n // On unsync, remove router hook\n if (afterEachUnHook != null) {\n afterEachUnHook()\n }\n\n // On unsync, remove store watch\n if (storeUnwatch != null) {\n storeUnwatch()\n }\n\n // On unsync, unregister Module with store\n store.unregisterModule(moduleName)\n }\n}\n\nfunction cloneRoute (to, from) {\n var clone = {\n name: to.name,\n path: to.path,\n hash: to.hash,\n query: to.query,\n params: to.params,\n fullPath: to.fullPath,\n meta: to.meta\n }\n if (from) {\n clone.from = cloneRoute(from)\n }\n return Object.freeze(clone)\n}\n\n","/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.14.3\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';\n\nvar longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\nvar timeoutDuration = 0;\nfor (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n timeoutDuration = 1;\n break;\n }\n}\n\nfunction microtaskDebounce(fn) {\n var called = false;\n return function () {\n if (called) {\n return;\n }\n called = true;\n window.Promise.resolve().then(function () {\n called = false;\n fn();\n });\n };\n}\n\nfunction taskDebounce(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n setTimeout(function () {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nvar supportsMicroTasks = isBrowser && window.Promise;\n\n/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*/\nvar debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;\n\n/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nfunction isFunction(functionToCheck) {\n var getType = {};\n return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';\n}\n\n/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nfunction getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n // NOTE: 1 DOM access here\n var css = getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n\n/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n */\nfunction getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n\n/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n */\nfunction getScrollParent(element) {\n // Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return document.body;\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body;\n case '#document':\n return element.body;\n }\n\n // Firefox want us to check `-x` and `-y` variations as well\n\n var _getStyleComputedProp = getStyleComputedProperty(element),\n overflow = _getStyleComputedProp.overflow,\n overflowX = _getStyleComputedProp.overflowX,\n overflowY = _getStyleComputedProp.overflowY;\n\n if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n\nvar isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);\nvar isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);\n\n/**\n * Determines if the browser is Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nfunction isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n */\nfunction getOffsetParent(element) {\n if (!element) {\n return document.documentElement;\n }\n\n var noOffsetParent = isIE(10) ? document.body : null;\n\n // NOTE: 1 DOM access here\n var offsetParent = element.offsetParent;\n // Skip hidden elements which don't have an offsetParent\n while (offsetParent === noOffsetParent && element.nextElementSibling) {\n offsetParent = (element = element.nextElementSibling).offsetParent;\n }\n\n var nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n return element ? element.ownerDocument.documentElement : document.documentElement;\n }\n\n // .offsetParent will return the closest TD or TABLE in case\n // no offsetParent is present, I hate this job...\n if (['TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n\nfunction isOffsetContainer(element) {\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY') {\n return false;\n }\n return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;\n}\n\n/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nfunction getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nfunction findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to give as \"start\" the element that comes first in the DOM\n var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;\n var start = order ? element1 : element2;\n var end = order ? element2 : element1;\n\n // Get common ancestor container\n var range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n var commonAncestorContainer = range.commonAncestorContainer;\n\n // Both nodes are inside #document\n\n if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n // one of the nodes is inside shadowDOM, find which one\n var element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n\n/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n */\nfunction getScroll(element) {\n var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';\n\n var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n var html = element.ownerDocument.documentElement;\n var scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n */\nfunction includeScroll(rect, element) {\n var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n var modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n\n/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nfunction getBordersSize(styles, axis) {\n var sideA = axis === 'x' ? 'Left' : 'Top';\n var sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return parseFloat(styles['border' + sideA + 'Width'], 10) + parseFloat(styles['border' + sideB + 'Width'], 10);\n}\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? html['offset' + axis] + computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')] + computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')] : 0);\n}\n\nfunction getWindowSizes() {\n var body = document.body;\n var html = document.documentElement;\n var computedStyle = isIE(10) && getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle)\n };\n}\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n */\nfunction getClientRect(offsets) {\n return _extends({}, offsets, {\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height\n });\n}\n\n/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n */\nfunction getBoundingClientRect(element) {\n var rect = {};\n\n // IE10 10 FIX: Please, don't ask, the element isn't\n // considered in DOM in some circumstances...\n // This isn't reproducible in IE10 compatibility mode of IE11\n try {\n if (isIE(10)) {\n rect = element.getBoundingClientRect();\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n } else {\n rect = element.getBoundingClientRect();\n }\n } catch (e) {}\n\n var result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top\n };\n\n // subtract scrollbar size from sizes\n var sizes = element.nodeName === 'HTML' ? getWindowSizes() : {};\n var width = sizes.width || element.clientWidth || result.right - result.left;\n var height = sizes.height || element.clientHeight || result.bottom - result.top;\n\n var horizScrollbar = element.offsetWidth - width;\n var vertScrollbar = element.offsetHeight - height;\n\n // if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n // we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n var styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n\nfunction getOffsetRectRelativeToArbitraryNode(children, parent) {\n var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var isIE10 = isIE(10);\n var isHTML = parent.nodeName === 'HTML';\n var childrenRect = getBoundingClientRect(children);\n var parentRect = getBoundingClientRect(parent);\n var scrollParent = getScrollParent(children);\n\n var styles = getStyleComputedProperty(parent);\n var borderTopWidth = parseFloat(styles.borderTopWidth, 10);\n var borderLeftWidth = parseFloat(styles.borderLeftWidth, 10);\n\n // In cases where the parent is fixed, we must ignore negative scroll in offset calc\n if (fixedPosition && parent.nodeName === 'HTML') {\n parentRect.top = Math.max(parentRect.top, 0);\n parentRect.left = Math.max(parentRect.left, 0);\n }\n var offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n // Subtract margins of documentElement in case it's being used as parent\n // we do this only on HTML because it's the only element that behaves\n // differently when margins are applied to it. The margins are included in\n // the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n var marginTop = parseFloat(styles.marginTop, 10);\n var marginLeft = parseFloat(styles.marginLeft, 10);\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n // Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n\nfunction getViewportOffsetRectRelativeToArtbitraryNode(element) {\n var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var html = element.ownerDocument.documentElement;\n var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n var width = Math.max(html.clientWidth, window.innerWidth || 0);\n var height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n var scrollTop = !excludeScroll ? getScroll(html) : 0;\n var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;\n\n var offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width: width,\n height: height\n };\n\n return getClientRect(offset);\n}\n\n/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n */\nfunction isFixed(element) {\n var nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n return isFixed(getParentNode(element));\n}\n\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nfunction getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n }\n var el = element.parentElement;\n while (el && getStyleComputedProperty(el, 'transform') === 'none') {\n el = el.parentElement;\n }\n return el || document.documentElement;\n}\n\n/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @param {Boolean} fixedPosition - Is in fixed position mode\n * @returns {Object} Coordinates of the boundaries\n */\nfunction getBoundaries(popper, reference, padding, boundariesElement) {\n var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n // NOTE: 1 DOM access here\n\n var boundaries = { top: 0, left: 0 };\n var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference);\n\n // Handle viewport case\n if (boundariesElement === 'viewport') {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n } else {\n // Handle other cases based on DOM element used as boundaries\n var boundariesNode = void 0;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(reference));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition);\n\n // In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n var _getWindowSizes = getWindowSizes(),\n height = _getWindowSizes.height,\n width = _getWindowSizes.width;\n\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n // for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n // Add paddings\n boundaries.left += padding;\n boundaries.top += padding;\n boundaries.right -= padding;\n boundaries.bottom -= padding;\n\n return boundaries;\n}\n\nfunction getArea(_ref) {\n var width = _ref.width,\n height = _ref.height;\n\n return width * height;\n}\n\n/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {\n var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;\n\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n var boundaries = getBoundaries(popper, reference, padding, boundariesElement);\n\n var rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height\n }\n };\n\n var sortedAreas = Object.keys(rects).map(function (key) {\n return _extends({\n key: key\n }, rects[key], {\n area: getArea(rects[key])\n });\n }).sort(function (a, b) {\n return b.area - a.area;\n });\n\n var filteredAreas = sortedAreas.filter(function (_ref2) {\n var width = _ref2.width,\n height = _ref2.height;\n return width >= popper.clientWidth && height >= popper.clientHeight;\n });\n\n var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;\n\n var variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? '-' + variation : '');\n}\n\n/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @param {Element} fixedPosition - is in fixed position mode\n * @returns {Object} An object containing the offsets which will be applied to the popper\n */\nfunction getReferenceOffsets(state, popper, reference) {\n var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;\n\n var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference);\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);\n}\n\n/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n */\nfunction getOuterSizes(element) {\n var styles = getComputedStyle(element);\n var x = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);\n var y = parseFloat(styles.marginLeft) + parseFloat(styles.marginRight);\n var result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x\n };\n return result;\n}\n\n/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n */\nfunction getOppositePlacement(placement) {\n var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}\n\n/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n */\nfunction getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n // Get popper node sizes\n var popperRect = getOuterSizes(popper);\n\n // Add position, width and height to our offsets object\n var popperOffsets = {\n width: popperRect.width,\n height: popperRect.height\n };\n\n // depending by the popper placement we have to compute its offsets slightly differently\n var isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n var mainSide = isHoriz ? 'top' : 'left';\n var secondarySide = isHoriz ? 'left' : 'top';\n var measurement = isHoriz ? 'height' : 'width';\n var secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n\n/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction find(arr, check) {\n // use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n // use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction findIndex(arr, prop, value) {\n // use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(function (cur) {\n return cur[prop] === value;\n });\n }\n\n // use `find` + `indexOf` if `findIndex` isn't supported\n var match = find(arr, function (obj) {\n return obj[prop] === value;\n });\n return arr.indexOf(match);\n}\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n */\nfunction runModifiers(modifiers, data, ends) {\n var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(function (modifier) {\n if (modifier['function']) {\n // eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n // Add properties to offsets to make them a complete clientRect object\n // we do this before each modifier to make sure the previous one doesn't\n // mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n\n/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style.<br />\n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n */\nfunction update() {\n // if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n var data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {}\n };\n\n // compute reference element offsets\n data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding);\n\n // store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n data.positionFixed = this.options.positionFixed;\n\n // compute the popper offsets\n data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);\n\n data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n\n/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n */\nfunction isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(function (_ref) {\n var name = _ref.name,\n enabled = _ref.enabled;\n return enabled && name === modifierName;\n });\n}\n\n/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nfunction getSupportedPropertyName(property) {\n var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n var upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (var i = 0; i < prefixes.length; i++) {\n var prefix = prefixes[i];\n var toCheck = prefix ? '' + prefix + upperProp : property;\n if (typeof document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n\n/**\n * Destroy the popper\n * @method\n * @memberof Popper\n */\nfunction destroy() {\n this.state.isDestroyed = true;\n\n // touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style.left = '';\n this.popper.style.right = '';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicity asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n\n/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nfunction getWindow(element) {\n var ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n var isBody = scrollParent.nodeName === 'BODY';\n var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);\n }\n scrollParents.push(target);\n}\n\n/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction setupEventListeners(reference, options, state, updateBound) {\n // Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n // Scroll event listener on scroll parents\n var scrollElement = getScrollParent(reference);\n attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n\n/**\n * It will add resize/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n */\nfunction enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);\n }\n}\n\n/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction removeEventListeners(reference, state) {\n // Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n // Remove scroll event listener on scroll parents\n state.scrollParents.forEach(function (target) {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n // Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n\n/**\n * It will remove resize/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger onUpdate callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n */\nfunction disableEventListeners() {\n if (this.state.eventsEnabled) {\n cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n\n/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n */\nfunction isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n\n/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setStyles(element, styles) {\n Object.keys(styles).forEach(function (prop) {\n var unit = '';\n // add unit if the value is numeric and is one of the following\n if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n\n/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function (prop) {\n var value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n */\nfunction applyStyle(data) {\n // any property present in `data.styles` will be applied to the popper,\n // in this way we can make the 3rd party modifiers add custom styles to it\n // Be aware, modifiers could override the properties defined in the previous\n // lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n // any property present in `data.attributes` will be applied to the popper,\n // they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n // if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper\n * @param {Object} options - Popper.js options\n */\nfunction applyStyleOnLoad(reference, popper, options, modifierOptions, state) {\n // compute reference element offsets\n var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);\n\n popper.setAttribute('x-placement', placement);\n\n // Apply `position` to popper before anything else because\n // without the position applied we can't guarantee correct computations\n setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' });\n\n return options;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeStyle(data, options) {\n var x = options.x,\n y = options.y;\n var popper = data.offsets.popper;\n\n // Remove this legacy support in Popper.js v2\n\n var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'applyStyle';\n }).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');\n }\n var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;\n\n var offsetParent = getOffsetParent(data.instance.popper);\n var offsetParentRect = getBoundingClientRect(offsetParent);\n\n // Styles\n var styles = {\n position: popper.position\n };\n\n // Avoid blurry text by using full pixel integers.\n // For pixel-perfect positioning, top/bottom prefers rounded\n // values, while left/right prefers floored values.\n var offsets = {\n left: Math.floor(popper.left),\n top: Math.round(popper.top),\n bottom: Math.round(popper.bottom),\n right: Math.floor(popper.right)\n };\n\n var sideA = x === 'bottom' ? 'top' : 'bottom';\n var sideB = y === 'right' ? 'left' : 'right';\n\n // if gpuAcceleration is set to `true` and transform is supported,\n // we use `translate3d` to apply the position to the popper we\n // automatically use the supported prefixed version if needed\n var prefixedProperty = getSupportedPropertyName('transform');\n\n // now, let's make a step back and look at this code closely (wtf?)\n // If the content of the popper grows once it's been positioned, it\n // may happen that the popper gets misplaced because of the new content\n // overflowing its reference element\n // To avoid this problem, we provide two options (x and y), which allow\n // the consumer to define the offset origin.\n // If we position a popper on top of a reference element, we can set\n // `x` to `top` to make the popper grow towards its top instead of\n // its bottom.\n var left = void 0,\n top = void 0;\n if (sideA === 'bottom') {\n top = -offsetParentRect.height + offsets.bottom;\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n left = -offsetParentRect.width + offsets.right;\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n var invertTop = sideA === 'bottom' ? -1 : 1;\n var invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = sideA + ', ' + sideB;\n }\n\n // Attributes\n var attributes = {\n 'x-placement': data.placement\n };\n\n // Update `data` attributes, styles and arrowStyles\n data.attributes = _extends({}, attributes, data.attributes);\n data.styles = _extends({}, styles, data.styles);\n data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles);\n\n return data;\n}\n\n/**\n * Helper used to know if the given modifier depends from another one.<br />\n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n */\nfunction isModifierRequired(modifiers, requestingName, requestedName) {\n var requesting = find(modifiers, function (_ref) {\n var name = _ref.name;\n return name === requestingName;\n });\n\n var isRequired = !!requesting && modifiers.some(function (modifier) {\n return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;\n });\n\n if (!isRequired) {\n var _requesting = '`' + requestingName + '`';\n var requested = '`' + requestedName + '`';\n console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');\n }\n return isRequired;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction arrow(data, options) {\n var _data$offsets$arrow;\n\n // arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n var arrowElement = options.element;\n\n // if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n // if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n // if the arrowElement isn't a query selector we must check that the\n // provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn('WARNING: `arrow.element` must be child of its popper element!');\n return data;\n }\n }\n\n var placement = data.placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n var len = isVertical ? 'height' : 'width';\n var sideCapitalized = isVertical ? 'Top' : 'Left';\n var side = sideCapitalized.toLowerCase();\n var altSide = isVertical ? 'left' : 'top';\n var opSide = isVertical ? 'bottom' : 'right';\n var arrowElementSize = getOuterSizes(arrowElement)[len];\n\n //\n // extends keepTogether behavior making sure the popper and its\n // reference have enough pixels in conjuction\n //\n\n // top/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);\n }\n // bottom/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];\n }\n data.offsets.popper = getClientRect(data.offsets.popper);\n\n // compute center of the popper\n var center = reference[side] + reference[len] / 2 - arrowElementSize / 2;\n\n // Compute the sideValue using the updated popper offsets\n // take popper margin in account because we don't have this info available\n var css = getStyleComputedProperty(data.instance.popper);\n var popperMarginSide = parseFloat(css['margin' + sideCapitalized], 10);\n var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width'], 10);\n var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n // prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow);\n\n return data;\n}\n\n/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n */\nfunction getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n\n/**\n * List of accepted placements to use as values of the `placement` option.<br />\n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right.<br />\n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-right` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n */\nvar placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];\n\n// Get rid of `auto` `auto-start` and `auto-end`\nvar validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nfunction clockwise(placement) {\n var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var index = validPlacements.indexOf(placement);\n var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n\nvar BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise'\n};\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction flip(data, options) {\n // if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed);\n\n var placement = data.placement.split('-')[0];\n var placementOpposite = getOppositePlacement(placement);\n var variation = data.placement.split('-')[1] || '';\n\n var flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach(function (step, index) {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n var popperOffsets = data.offsets.popper;\n var refOffsets = data.offsets.reference;\n\n // using floor because the reference offsets may contain decimals we are not going to consider here\n var floor = Math.floor;\n var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);\n\n var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom;\n\n // flip the variation if required\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom);\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n // this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n // this object contains `position`, we want to preserve it along with\n // any additional property we may add in the future\n data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction keepTogether(data) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var placement = data.placement.split('-')[0];\n var floor = Math.floor;\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var side = isVertical ? 'right' : 'bottom';\n var opSide = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n\n/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nfunction toValue(str, measurement, popperOffsets, referenceOffsets) {\n // separate value from unit\n var split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n var value = +split[1];\n var unit = split[2];\n\n // If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n var element = void 0;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n var rect = getClientRect(element);\n return rect[measurement] / 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n // if is a vh or vw, we calculate the size based on the viewport\n var size = void 0;\n if (unit === 'vh') {\n size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);\n } else {\n size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);\n }\n return size / 100 * value;\n } else {\n // if is an explicit pixel unit, we get rid of the unit and keep the value\n // if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n */\nfunction parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {\n var offsets = [0, 0];\n\n // Use height if placement is left or right and index is 0 otherwise use width\n // in this way the first offset will use an axis and the second one\n // will use the other one\n var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n // Split the offset string to obtain a list of values and operands\n // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n var fragments = offset.split(/(\\+|\\-)/).map(function (frag) {\n return frag.trim();\n });\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n var divider = fragments.indexOf(find(fragments, function (frag) {\n return frag.search(/,|\\s/) !== -1;\n }));\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');\n }\n\n // If divider is found, we divide the list of values and operands to divide\n // them by ofset X and Y.\n var splitRegex = /\\s*,\\s*|\\s+/;\n var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments];\n\n // Convert the values with units to absolute pixels to allow our computations\n ops = ops.map(function (op, index) {\n // Most of the units rely on the orientation of the popper\n var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';\n var mergeWithPrevious = false;\n return op\n // This aggregates any `+` or `-` sign that aren't considered operators\n // e.g.: 10 + +5 => [10, +, +5]\n .reduce(function (a, b) {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n // Here we convert the string values into number values (in px)\n .map(function (str) {\n return toValue(str, measurement, popperOffsets, referenceOffsets);\n });\n });\n\n // Loop trough the offsets arrays and execute the operations\n ops.forEach(function (op, index) {\n op.forEach(function (frag, index2) {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n */\nfunction offset(data, _ref) {\n var offset = _ref.offset;\n var placement = data.placement,\n _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var basePlacement = placement.split('-')[0];\n\n var offsets = void 0;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction preventOverflow(data, options) {\n var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper);\n\n // If offsetParent is the reference element, we really want to\n // go one step up and use the next offsetParent as reference to\n // avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n // NOTE: DOM access here\n // resets the popper's position so that the document size can be calculated excluding\n // the size of the popper element itself\n var transformProp = getSupportedPropertyName('transform');\n var popperStyles = data.instance.popper.style; // assignment to help minification\n var top = popperStyles.top,\n left = popperStyles.left,\n transform = popperStyles[transformProp];\n\n popperStyles.top = '';\n popperStyles.left = '';\n popperStyles[transformProp] = '';\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed);\n\n // NOTE: DOM access here\n // restores the original style properties after the offsets have been computed\n popperStyles.top = top;\n popperStyles.left = left;\n popperStyles[transformProp] = transform;\n\n options.boundaries = boundaries;\n\n var order = options.priority;\n var popper = data.offsets.popper;\n\n var check = {\n primary: function primary(placement) {\n var value = popper[placement];\n if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return defineProperty({}, placement, value);\n },\n secondary: function secondary(placement) {\n var mainSide = placement === 'right' ? 'left' : 'top';\n var value = popper[mainSide];\n if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {\n value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));\n }\n return defineProperty({}, mainSide, value);\n }\n };\n\n order.forEach(function (placement) {\n var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = _extends({}, popper, check[side](placement));\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction shift(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var shiftvariation = placement.split('-')[1];\n\n // if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n var _data$offsets = data.offsets,\n reference = _data$offsets.reference,\n popper = _data$offsets.popper;\n\n var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n var side = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n var shiftOffsets = {\n start: defineProperty({}, side, reference[side]),\n end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement])\n };\n\n data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]);\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n var refRect = data.offsets.reference;\n var bound = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'preventOverflow';\n }).boundaries;\n\n if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction inner(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n\n/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property.<br />\n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n */\n\n/**\n * Modifiers are plugins used to alter the behavior of your poppers.<br />\n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nvar modifiers = {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element.<br />\n * It will read the variation of the `placement` property.<br />\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order: 100,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: shift\n },\n\n /**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unitless, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper.<br />\n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the height.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces.<br />\n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2.<br />\n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > More on this [reading this issue](https://github.com/FezVrasta/popper.js/issues/373)\n *\n * @memberof modifiers\n * @inner\n */\n offset: {\n /** @prop {number} order=200 - Index used to define the order of execution */\n order: 200,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: offset,\n /** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n */\n offset: 0\n },\n\n /**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * An scenario exists where the reference itself is not within the boundaries.<br />\n * We can say it has \"escaped the boundaries\" — or just \"escaped\".<br />\n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n */\n preventOverflow: {\n /** @prop {number} order=300 - Index used to define the order of execution */\n order: 300,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: preventOverflow,\n /**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n */\n priority: ['left', 'right', 'top', 'bottom'],\n /**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper this makes sure the popper has always a little padding\n * between the edges of its container\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier, can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n */\n boundariesElement: 'scrollParent'\n },\n\n /**\n * Modifier used to make sure the reference and its popper stay near eachothers\n * without leaving any gap between the two. Expecially useful when the arrow is\n * enabled and you want to assure it to point to its reference element.\n * It cares only about the first axis, you can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n */\n keepTogether: {\n /** @prop {number} order=400 - Index used to define the order of execution */\n order: 400,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: keepTogether\n },\n\n /**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjuction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n */\n arrow: {\n /** @prop {number} order=500 - Index used to define the order of execution */\n order: 500,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: arrow,\n /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */\n element: '[x-arrow]'\n },\n\n /**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n */\n flip: {\n /** @prop {number} order=600 - Index used to define the order of execution */\n order: 600,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: flip,\n /**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations).\n */\n behavior: 'flip',\n /**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position,\n * the popper will never be placed outside of the defined boundaries\n * (except if keepTogether is enabled)\n */\n boundariesElement: 'viewport'\n },\n\n /**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n */\n inner: {\n /** @prop {number} order=700 - Index used to define the order of execution */\n order: 700,\n /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */\n enabled: false,\n /** @prop {ModifierFn} */\n fn: inner\n },\n\n /**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n */\n hide: {\n /** @prop {number} order=800 - Index used to define the order of execution */\n order: 800,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: hide\n },\n\n /**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n */\n computeStyle: {\n /** @prop {number} order=850 - Index used to define the order of execution */\n order: 850,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: computeStyle,\n /**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n */\n gpuAcceleration: true,\n /**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n */\n x: 'bottom',\n /**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n */\n y: 'right'\n },\n\n /**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define you own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n */\n applyStyle: {\n /** @prop {number} order=900 - Index used to define the order of execution */\n order: 900,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: applyStyle,\n /** @prop {Function} */\n onLoad: applyStyleOnLoad,\n /**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n */\n gpuAcceleration: undefined\n }\n};\n\n/**\n * The `dataObject` is an object containing all the informations used by Popper.js\n * this object get passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper.\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements.\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n */\n\n/**\n * Default options provided to Popper.js constructor.<br />\n * These can be overriden using the `options` argument of Popper.js.<br />\n * To override an option, simply pass as 3rd argument an object with the same\n * structure of this object, example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n */\nvar Defaults = {\n /**\n * Popper's placement\n * @prop {Popper.placements} placement='bottom'\n */\n placement: 'bottom',\n\n /**\n * Set this to true if you want popper to position it self in 'fixed' mode\n * @prop {Boolean} positionFixed=false\n */\n positionFixed: false,\n\n /**\n * Whether events (resize, scroll) are initially enabled\n * @prop {Boolean} eventsEnabled=true\n */\n eventsEnabled: true,\n\n /**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n */\n removeOnDestroy: false,\n\n /**\n * Callback called when the popper is created.<br />\n * By default, is set to no-op.<br />\n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n */\n onCreate: function onCreate() {},\n\n /**\n * Callback called when the popper is updated, this callback is not called\n * on the initialization/creation of the popper, but only on subsequent\n * updates.<br />\n * By default, is set to no-op.<br />\n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n */\n onUpdate: function onUpdate() {},\n\n /**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js\n * @prop {modifiers}\n */\n modifiers: modifiers\n};\n\n/**\n * @callback onCreate\n * @param {dataObject} data\n */\n\n/**\n * @callback onUpdate\n * @param {dataObject} data\n */\n\n// Utils\n// Methods\nvar Popper = function () {\n /**\n * Create a new Popper.js instance\n * @class Popper\n * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper.\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n */\n function Popper(reference, popper) {\n var _this = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n classCallCheck(this, Popper);\n\n this.scheduleUpdate = function () {\n return requestAnimationFrame(_this.update);\n };\n\n // make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n // with {} we create a new object with the options inside it\n this.options = _extends({}, Popper.Defaults, options);\n\n // init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: []\n };\n\n // get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n // Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {\n _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});\n });\n\n // Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers).map(function (name) {\n return _extends({\n name: name\n }, _this.options.modifiers[name]);\n })\n // sort the modifiers by order\n .sort(function (a, b) {\n return a.order - b.order;\n });\n\n // modifiers have the ability to execute arbitrary code when Popper.js get inited\n // such code is executed in the same order of its modifier\n // they could add new properties to their options configuration\n // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(function (modifierOptions) {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);\n }\n });\n\n // fire the first update to position the popper in the right place\n this.update();\n\n var eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n // setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n // We can't use class properties because they don't get listed in the\n // class prototype and break stuff like Sinon stubs\n\n\n createClass(Popper, [{\n key: 'update',\n value: function update$$1() {\n return update.call(this);\n }\n }, {\n key: 'destroy',\n value: function destroy$$1() {\n return destroy.call(this);\n }\n }, {\n key: 'enableEventListeners',\n value: function enableEventListeners$$1() {\n return enableEventListeners.call(this);\n }\n }, {\n key: 'disableEventListeners',\n value: function disableEventListeners$$1() {\n return disableEventListeners.call(this);\n }\n\n /**\n * Schedule an update, it will run on the next UI update available\n * @method scheduleUpdate\n * @memberof Popper\n */\n\n\n /**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n */\n\n }]);\n return Popper;\n}();\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.<br />\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n\n\nPopper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\nPopper.placements = placements;\nPopper.Defaults = Defaults;\n\nvar SVGAnimatedString = function SVGAnimatedString() {};\nif (typeof window !== 'undefined') {\n\tSVGAnimatedString = window.SVGAnimatedString;\n}\n\nfunction convertToArray(value) {\n\tif (typeof value === 'string') {\n\t\tvalue = value.split(' ');\n\t}\n\treturn value;\n}\n\n/**\n * Add classes to an element.\n * This method checks to ensure that the classes don't already exist before adding them.\n * It uses el.className rather than classList in order to be IE friendly.\n * @param {object} el - The element to add the classes to.\n * @param {classes} string - List of space separated classes to be added to the element.\n */\nfunction addClasses(el, classes) {\n\tvar newClasses = convertToArray(classes);\n\tvar classList = void 0;\n\tif (el.className instanceof SVGAnimatedString) {\n\t\tclassList = convertToArray(el.className.baseVal);\n\t} else {\n\t\tclassList = convertToArray(el.className);\n\t}\n\tnewClasses.forEach(function (newClass) {\n\t\tif (classList.indexOf(newClass) === -1) {\n\t\t\tclassList.push(newClass);\n\t\t}\n\t});\n\tif (el instanceof SVGElement) {\n\t\tel.setAttribute('class', classList.join(' '));\n\t} else {\n\t\tel.className = classList.join(' ');\n\t}\n}\n\n/**\n * Remove classes from an element.\n * It uses el.className rather than classList in order to be IE friendly.\n * @export\n * @param {any} el The element to remove the classes from.\n * @param {any} classes List of space separated classes to be removed from the element.\n */\nfunction removeClasses(el, classes) {\n\tvar newClasses = convertToArray(classes);\n\tvar classList = void 0;\n\tif (el.className instanceof SVGAnimatedString) {\n\t\tclassList = convertToArray(el.className.baseVal);\n\t} else {\n\t\tclassList = convertToArray(el.className);\n\t}\n\tnewClasses.forEach(function (newClass) {\n\t\tvar index = classList.indexOf(newClass);\n\t\tif (index !== -1) {\n\t\t\tclassList.splice(index, 1);\n\t\t}\n\t});\n\tif (el instanceof SVGElement) {\n\t\tel.setAttribute('class', classList.join(' '));\n\t} else {\n\t\tel.className = classList.join(' ');\n\t}\n}\n\nvar supportsPassive = false;\n\nif (typeof window !== 'undefined') {\n\tsupportsPassive = false;\n\ttry {\n\t\tvar opts = Object.defineProperty({}, 'passive', {\n\t\t\tget: function get() {\n\t\t\t\tsupportsPassive = true;\n\t\t\t}\n\t\t});\n\t\twindow.addEventListener('test', null, opts);\n\t} catch (e) {}\n}\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) {\n return typeof obj;\n} : function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar classCallCheck$1 = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass$1 = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\n\n\nvar _extends$1 = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/* Forked from https://github.com/FezVrasta/popper.js/blob/master/packages/tooltip/src/index.js */\n\nvar DEFAULT_OPTIONS = {\n\tcontainer: false,\n\tdelay: 0,\n\thtml: false,\n\tplacement: 'top',\n\ttitle: '',\n\ttemplate: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n\ttrigger: 'hover focus',\n\toffset: 0\n};\n\nvar openTooltips = [];\n\nvar Tooltip = function () {\n\t/**\n * Create a new Tooltip.js instance\n * @class Tooltip\n * @param {HTMLElement} reference - The DOM node used as reference of the tooltip (it can be a jQuery element).\n * @param {Object} options\n * @param {String} options.placement=bottom\n *\t\t\tPlacement of the popper accepted values: `top(-start, -end), right(-start, -end), bottom(-start, -end),\n *\t\t\tleft(-start, -end)`\n * @param {HTMLElement|String|false} options.container=false - Append the tooltip to a specific element.\n * @param {Number|Object} options.delay=0\n *\t\t\tDelay showing and hiding the tooltip (ms) - does not apply to manual trigger type.\n *\t\t\tIf a number is supplied, delay is applied to both hide/show.\n *\t\t\tObject structure is: `{ show: 500, hide: 100 }`\n * @param {Boolean} options.html=false - Insert HTML into the tooltip. If false, the content will inserted with `innerText`.\n * @param {String|PlacementFunction} options.placement='top' - One of the allowed placements, or a function returning one of them.\n * @param {String} [options.template='<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>']\n *\t\t\tBase HTML to used when creating the tooltip.\n *\t\t\tThe tooltip's `title` will be injected into the `.tooltip-inner` or `.tooltip__inner`.\n *\t\t\t`.tooltip-arrow` or `.tooltip__arrow` will become the tooltip's arrow.\n *\t\t\tThe outermost wrapper element should have the `.tooltip` class.\n * @param {String|HTMLElement|TitleFunction} options.title='' - Default title value if `title` attribute isn't present.\n * @param {String} [options.trigger='hover focus']\n *\t\t\tHow tooltip is triggered - click, hover, focus, manual.\n *\t\t\tYou may pass multiple triggers; separate them with a space. `manual` cannot be combined with any other trigger.\n * @param {HTMLElement} options.boundariesElement\n *\t\t\tThe element used as boundaries for the tooltip. For more information refer to Popper.js'\n *\t\t\t[boundariesElement docs](https://popper.js.org/popper-documentation.html)\n * @param {Number|String} options.offset=0 - Offset of the tooltip relative to its reference. For more information refer to Popper.js'\n *\t\t\t[offset docs](https://popper.js.org/popper-documentation.html)\n * @param {Object} options.popperOptions={} - Popper options, will be passed directly to popper instance. For more information refer to Popper.js'\n *\t\t\t[options docs](https://popper.js.org/popper-documentation.html)\n * @return {Object} instance - The generated tooltip instance\n */\n\tfunction Tooltip(reference, options) {\n\t\tclassCallCheck$1(this, Tooltip);\n\n\t\t_initialiseProps.call(this);\n\n\t\t// apply user options over default ones\n\t\toptions = _extends$1({}, DEFAULT_OPTIONS, options);\n\n\t\treference.jquery && (reference = reference[0]);\n\n\t\t// cache reference and options\n\t\tthis.reference = reference;\n\t\tthis.options = options;\n\n\t\t// set initial state\n\t\tthis._isOpen = false;\n\n\t\tthis._init();\n\t}\n\n\t//\n\t// Public methods\n\t//\n\n\t/**\n * Reveals an element's tooltip. This is considered a \"manual\" triggering of the tooltip.\n * Tooltips with zero-length titles are never displayed.\n * @method Tooltip#show\n * @memberof Tooltip\n */\n\n\n\t/**\n * Hides an element’s tooltip. This is considered a “manual” triggering of the tooltip.\n * @method Tooltip#hide\n * @memberof Tooltip\n */\n\n\n\t/**\n * Hides and destroys an element’s tooltip.\n * @method Tooltip#dispose\n * @memberof Tooltip\n */\n\n\n\t/**\n * Toggles an element’s tooltip. This is considered a “manual” triggering of the tooltip.\n * @method Tooltip#toggle\n * @memberof Tooltip\n */\n\n\n\tcreateClass$1(Tooltip, [{\n\t\tkey: 'setClasses',\n\t\tvalue: function setClasses(classes) {\n\t\t\tthis._classes = classes;\n\t\t}\n\t}, {\n\t\tkey: 'setContent',\n\t\tvalue: function setContent(content) {\n\t\t\tthis.options.title = content;\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._setContent(content, this.options);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'setOptions',\n\t\tvalue: function setOptions(options) {\n\t\t\tvar classesUpdated = false;\n\t\t\tvar classes = options && options.classes || directive.options.defaultClass;\n\t\t\tif (this._classes !== classes) {\n\t\t\t\tthis.setClasses(classes);\n\t\t\t\tclassesUpdated = true;\n\t\t\t}\n\n\t\t\toptions = getOptions(options);\n\n\t\t\tvar needPopperUpdate = false;\n\t\t\tvar needRestart = false;\n\n\t\t\tif (this.options.offset !== options.offset || this.options.placement !== options.placement) {\n\t\t\t\tneedPopperUpdate = true;\n\t\t\t}\n\n\t\t\tif (this.options.template !== options.template || this.options.trigger !== options.trigger || this.options.container !== options.container || classesUpdated) {\n\t\t\t\tneedRestart = true;\n\t\t\t}\n\n\t\t\tfor (var key in options) {\n\t\t\t\tthis.options[key] = options[key];\n\t\t\t}\n\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tif (needRestart) {\n\t\t\t\t\tvar isOpen = this._isOpen;\n\n\t\t\t\t\tthis.dispose();\n\t\t\t\t\tthis._init();\n\n\t\t\t\t\tif (isOpen) {\n\t\t\t\t\t\tthis.show();\n\t\t\t\t\t}\n\t\t\t\t} else if (needPopperUpdate) {\n\t\t\t\t\tthis.popperInstance.update();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t//\n\t\t// Private methods\n\t\t//\n\n\t}, {\n\t\tkey: '_init',\n\t\tvalue: function _init() {\n\t\t\t// get events list\n\t\t\tvar events = typeof this.options.trigger === 'string' ? this.options.trigger.split(' ').filter(function (trigger) {\n\t\t\t\treturn ['click', 'hover', 'focus'].indexOf(trigger) !== -1;\n\t\t\t}) : [];\n\t\t\tthis._isDisposed = false;\n\t\t\tthis._enableDocumentTouch = events.indexOf('manual') === -1;\n\n\t\t\t// set event listeners\n\t\t\tthis._setEventListeners(this.reference, events, this.options);\n\t\t}\n\n\t\t/**\n * Creates a new tooltip node\n * @memberof Tooltip\n * @private\n * @param {HTMLElement} reference\n * @param {String} template\n * @param {String|HTMLElement|TitleFunction} title\n * @param {Boolean} allowHtml\n * @return {HTMLelement} tooltipNode\n */\n\n\t}, {\n\t\tkey: '_create',\n\t\tvalue: function _create(reference, template) {\n\t\t\t// create tooltip element\n\t\t\tvar tooltipGenerator = window.document.createElement('div');\n\t\t\ttooltipGenerator.innerHTML = template.trim();\n\t\t\tvar tooltipNode = tooltipGenerator.childNodes[0];\n\n\t\t\t// add unique ID to our tooltip (needed for accessibility reasons)\n\t\t\ttooltipNode.id = 'tooltip_' + Math.random().toString(36).substr(2, 10);\n\n\t\t\t// Initially hide the tooltip\n\t\t\t// The attribute will be switched in a next frame so\n\t\t\t// CSS transitions can play\n\t\t\ttooltipNode.setAttribute('aria-hidden', 'true');\n\n\t\t\tif (this.options.autoHide && this.options.trigger.indexOf('hover') !== -1) {\n\t\t\t\ttooltipNode.addEventListener('mouseenter', this.hide);\n\t\t\t\ttooltipNode.addEventListener('click', this.hide);\n\t\t\t}\n\n\t\t\t// return the generated tooltip node\n\t\t\treturn tooltipNode;\n\t\t}\n\t}, {\n\t\tkey: '_setContent',\n\t\tvalue: function _setContent(content, options) {\n\t\t\tvar _this = this;\n\n\t\t\tthis.asyncContent = false;\n\t\t\tthis._applyContent(content, options).then(function () {\n\t\t\t\t_this.popperInstance.update();\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_applyContent',\n\t\tvalue: function _applyContent(title, options) {\n\t\t\tvar _this2 = this;\n\n\t\t\treturn new Promise(function (resolve, reject) {\n\t\t\t\tvar allowHtml = options.html;\n\t\t\t\tvar rootNode = _this2._tooltipNode;\n\t\t\t\tif (!rootNode) return;\n\t\t\t\tvar titleNode = rootNode.querySelector(_this2.options.innerSelector);\n\t\t\t\tif (title.nodeType === 1) {\n\t\t\t\t\t// if title is a node, append it only if allowHtml is true\n\t\t\t\t\tif (allowHtml) {\n\t\t\t\t\t\twhile (titleNode.firstChild) {\n\t\t\t\t\t\t\ttitleNode.removeChild(titleNode.firstChild);\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttitleNode.appendChild(title);\n\t\t\t\t\t}\n\t\t\t\t} else if (typeof title === 'function') {\n\t\t\t\t\t// if title is a function, call it and set innerText or innerHtml depending by `allowHtml` value\n\t\t\t\t\tvar result = title();\n\t\t\t\t\tif (result && typeof result.then === 'function') {\n\t\t\t\t\t\t_this2.asyncContent = true;\n\t\t\t\t\t\toptions.loadingClass && addClasses(rootNode, options.loadingClass);\n\t\t\t\t\t\tif (options.loadingContent) {\n\t\t\t\t\t\t\t_this2._applyContent(options.loadingContent, options);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult.then(function (asyncResult) {\n\t\t\t\t\t\t\toptions.loadingClass && removeClasses(rootNode, options.loadingClass);\n\t\t\t\t\t\t\treturn _this2._applyContent(asyncResult, options);\n\t\t\t\t\t\t}).then(resolve).catch(reject);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this2._applyContent(result, options).then(resolve).catch(reject);\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t} else {\n\t\t\t\t\t// if it's just a simple text, set innerText or innerHtml depending by `allowHtml` value\n\t\t\t\t\tallowHtml ? titleNode.innerHTML = title : titleNode.innerText = title;\n\t\t\t\t}\n\t\t\t\tresolve();\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_show',\n\t\tvalue: function _show(reference, options) {\n\t\t\tif (options && typeof options.container === 'string') {\n\t\t\t\tvar container = document.querySelector(options.container);\n\t\t\t\tif (!container) return;\n\t\t\t}\n\n\t\t\tclearTimeout(this._disposeTimer);\n\n\t\t\toptions = Object.assign({}, options);\n\t\t\tdelete options.offset;\n\n\t\t\tvar updateClasses = true;\n\t\t\tif (this._tooltipNode) {\n\t\t\t\taddClasses(this._tooltipNode, this._classes);\n\t\t\t\tupdateClasses = false;\n\t\t\t}\n\n\t\t\tvar result = this._ensureShown(reference, options);\n\n\t\t\tif (updateClasses && this._tooltipNode) {\n\t\t\t\taddClasses(this._tooltipNode, this._classes);\n\t\t\t}\n\n\t\t\taddClasses(reference, ['v-tooltip-open']);\n\n\t\t\treturn result;\n\t\t}\n\t}, {\n\t\tkey: '_ensureShown',\n\t\tvalue: function _ensureShown(reference, options) {\n\t\t\tvar _this3 = this;\n\n\t\t\t// don't show if it's already visible\n\t\t\tif (this._isOpen) {\n\t\t\t\treturn this;\n\t\t\t}\n\t\t\tthis._isOpen = true;\n\n\t\t\topenTooltips.push(this);\n\n\t\t\t// if the tooltipNode already exists, just show it\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._tooltipNode.style.display = '';\n\t\t\t\tthis._tooltipNode.setAttribute('aria-hidden', 'false');\n\t\t\t\tthis.popperInstance.enableEventListeners();\n\t\t\t\tthis.popperInstance.update();\n\t\t\t\tif (this.asyncContent) {\n\t\t\t\t\tthis._setContent(options.title, options);\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// get title\n\t\t\tvar title = reference.getAttribute('title') || options.title;\n\n\t\t\t// don't show tooltip if no title is defined\n\t\t\tif (!title) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// create tooltip node\n\t\t\tvar tooltipNode = this._create(reference, options.template);\n\t\t\tthis._tooltipNode = tooltipNode;\n\n\t\t\tthis._setContent(title, options);\n\n\t\t\t// Add `aria-describedby` to our reference element for accessibility reasons\n\t\t\treference.setAttribute('aria-describedby', tooltipNode.id);\n\n\t\t\t// append tooltip to container\n\t\t\tvar container = this._findContainer(options.container, reference);\n\n\t\t\tthis._append(tooltipNode, container);\n\n\t\t\tvar popperOptions = _extends$1({}, options.popperOptions, {\n\t\t\t\tplacement: options.placement\n\t\t\t});\n\n\t\t\tpopperOptions.modifiers = _extends$1({}, popperOptions.modifiers, {\n\t\t\t\tarrow: {\n\t\t\t\t\telement: this.options.arrowSelector\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tif (options.boundariesElement) {\n\t\t\t\tpopperOptions.modifiers.preventOverflow = {\n\t\t\t\t\tboundariesElement: options.boundariesElement\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tthis.popperInstance = new Popper(reference, tooltipNode, popperOptions);\n\n\t\t\t// Fix position\n\t\t\trequestAnimationFrame(function () {\n\t\t\t\tif (!_this3._isDisposed && _this3.popperInstance) {\n\t\t\t\t\t_this3.popperInstance.update();\n\n\t\t\t\t\t// Show the tooltip\n\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\tif (!_this3._isDisposed) {\n\t\t\t\t\t\t\t_this3._isOpen && tooltipNode.setAttribute('aria-hidden', 'false');\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t_this3.dispose();\n\t\t\t\t}\n\t\t\t});\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_noLongerOpen',\n\t\tvalue: function _noLongerOpen() {\n\t\t\tvar index = openTooltips.indexOf(this);\n\t\t\tif (index !== -1) {\n\t\t\t\topenTooltips.splice(index, 1);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_hide',\n\t\tvalue: function _hide() /* reference, options */{\n\t\t\tvar _this4 = this;\n\n\t\t\t// don't hide if it's already hidden\n\t\t\tif (!this._isOpen) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\tthis._isOpen = false;\n\t\t\tthis._noLongerOpen();\n\n\t\t\t// hide tooltipNode\n\t\t\tthis._tooltipNode.style.display = 'none';\n\t\t\tthis._tooltipNode.setAttribute('aria-hidden', 'true');\n\n\t\t\tthis.popperInstance.disableEventListeners();\n\n\t\t\tclearTimeout(this._disposeTimer);\n\t\t\tvar disposeTime = directive.options.disposeTimeout;\n\t\t\tif (disposeTime !== null) {\n\t\t\t\tthis._disposeTimer = setTimeout(function () {\n\t\t\t\t\tif (_this4._tooltipNode) {\n\t\t\t\t\t\t_this4._tooltipNode.removeEventListener('mouseenter', _this4.hide);\n\t\t\t\t\t\t_this4._tooltipNode.removeEventListener('click', _this4.hide);\n\t\t\t\t\t\t// Don't remove popper instance, just the HTML element\n\t\t\t\t\t\t_this4._tooltipNode.parentNode.removeChild(_this4._tooltipNode);\n\t\t\t\t\t\t_this4._tooltipNode = null;\n\t\t\t\t\t}\n\t\t\t\t}, disposeTime);\n\t\t\t}\n\n\t\t\tremoveClasses(this.reference, ['v-tooltip-open']);\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_dispose',\n\t\tvalue: function _dispose() {\n\t\t\tvar _this5 = this;\n\n\t\t\tthis._isDisposed = true;\n\n\t\t\t// remove event listeners first to prevent any unexpected behaviour\n\t\t\tthis._events.forEach(function (_ref) {\n\t\t\t\tvar func = _ref.func,\n\t\t\t\t event = _ref.event;\n\n\t\t\t\t_this5.reference.removeEventListener(event, func);\n\t\t\t});\n\t\t\tthis._events = [];\n\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._hide();\n\n\t\t\t\tthis._tooltipNode.removeEventListener('mouseenter', this.hide);\n\t\t\t\tthis._tooltipNode.removeEventListener('click', this.hide);\n\n\t\t\t\t// destroy instance\n\t\t\t\tthis.popperInstance.destroy();\n\n\t\t\t\t// destroy tooltipNode if removeOnDestroy is not set, as popperInstance.destroy() already removes the element\n\t\t\t\tif (!this.popperInstance.options.removeOnDestroy) {\n\t\t\t\t\tthis._tooltipNode.parentNode.removeChild(this._tooltipNode);\n\t\t\t\t\tthis._tooltipNode = null;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tthis._noLongerOpen();\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_findContainer',\n\t\tvalue: function _findContainer(container, reference) {\n\t\t\t// if container is a query, get the relative element\n\t\t\tif (typeof container === 'string') {\n\t\t\t\tcontainer = window.document.querySelector(container);\n\t\t\t} else if (container === false) {\n\t\t\t\t// if container is `false`, set it to reference parent\n\t\t\t\tcontainer = reference.parentNode;\n\t\t\t}\n\t\t\treturn container;\n\t\t}\n\n\t\t/**\n * Append tooltip to container\n * @memberof Tooltip\n * @private\n * @param {HTMLElement} tooltip\n * @param {HTMLElement|String|false} container\n */\n\n\t}, {\n\t\tkey: '_append',\n\t\tvalue: function _append(tooltipNode, container) {\n\t\t\tcontainer.appendChild(tooltipNode);\n\t\t}\n\t}, {\n\t\tkey: '_setEventListeners',\n\t\tvalue: function _setEventListeners(reference, events, options) {\n\t\t\tvar _this6 = this;\n\n\t\t\tvar directEvents = [];\n\t\t\tvar oppositeEvents = [];\n\n\t\t\tevents.forEach(function (event) {\n\t\t\t\tswitch (event) {\n\t\t\t\t\tcase 'hover':\n\t\t\t\t\t\tdirectEvents.push('mouseenter');\n\t\t\t\t\t\toppositeEvents.push('mouseleave');\n\t\t\t\t\t\tif (_this6.options.hideOnTargetClick) oppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'focus':\n\t\t\t\t\t\tdirectEvents.push('focus');\n\t\t\t\t\t\toppositeEvents.push('blur');\n\t\t\t\t\t\tif (_this6.options.hideOnTargetClick) oppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'click':\n\t\t\t\t\t\tdirectEvents.push('click');\n\t\t\t\t\t\toppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// schedule show tooltip\n\t\t\tdirectEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(evt) {\n\t\t\t\t\tif (_this6._isOpen === true) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tevt.usedByTooltip = true;\n\t\t\t\t\t_this6._scheduleShow(reference, options.delay, options, evt);\n\t\t\t\t};\n\t\t\t\t_this6._events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\n\t\t\t// schedule hide tooltip\n\t\t\toppositeEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(evt) {\n\t\t\t\t\tif (evt.usedByTooltip === true) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this6._scheduleHide(reference, options.delay, options, evt);\n\t\t\t\t};\n\t\t\t\t_this6._events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_onDocumentTouch',\n\t\tvalue: function _onDocumentTouch(event) {\n\t\t\tif (this._enableDocumentTouch) {\n\t\t\t\tthis._scheduleHide(this.reference, this.options.delay, this.options, event);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_scheduleShow',\n\t\tvalue: function _scheduleShow(reference, delay, options /*, evt */) {\n\t\t\tvar _this7 = this;\n\n\t\t\t// defaults to 0\n\t\t\tvar computedDelay = delay && delay.show || delay || 0;\n\t\t\tclearTimeout(this._scheduleTimer);\n\t\t\tthis._scheduleTimer = window.setTimeout(function () {\n\t\t\t\treturn _this7._show(reference, options);\n\t\t\t}, computedDelay);\n\t\t}\n\t}, {\n\t\tkey: '_scheduleHide',\n\t\tvalue: function _scheduleHide(reference, delay, options, evt) {\n\t\t\tvar _this8 = this;\n\n\t\t\t// defaults to 0\n\t\t\tvar computedDelay = delay && delay.hide || delay || 0;\n\t\t\tclearTimeout(this._scheduleTimer);\n\t\t\tthis._scheduleTimer = window.setTimeout(function () {\n\t\t\t\tif (_this8._isOpen === false) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (!document.body.contains(_this8._tooltipNode)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// if we are hiding because of a mouseleave, we must check that the new\n\t\t\t\t// reference isn't the tooltip, because in this case we don't want to hide it\n\t\t\t\tif (evt.type === 'mouseleave') {\n\t\t\t\t\tvar isSet = _this8._setTooltipNodeEvent(evt, reference, delay, options);\n\n\t\t\t\t\t// if we set the new event, don't hide the tooltip yet\n\t\t\t\t\t// the new event will take care to hide it if necessary\n\t\t\t\t\tif (isSet) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t_this8._hide(reference, options);\n\t\t\t}, computedDelay);\n\t\t}\n\t}]);\n\treturn Tooltip;\n}();\n\n// Hide tooltips on touch devices\n\n\nvar _initialiseProps = function _initialiseProps() {\n\tvar _this9 = this;\n\n\tthis.show = function () {\n\t\t_this9._show(_this9.reference, _this9.options);\n\t};\n\n\tthis.hide = function () {\n\t\t_this9._hide();\n\t};\n\n\tthis.dispose = function () {\n\t\t_this9._dispose();\n\t};\n\n\tthis.toggle = function () {\n\t\tif (_this9._isOpen) {\n\t\t\treturn _this9.hide();\n\t\t} else {\n\t\t\treturn _this9.show();\n\t\t}\n\t};\n\n\tthis._events = [];\n\n\tthis._setTooltipNodeEvent = function (evt, reference, delay, options) {\n\t\tvar relatedreference = evt.relatedreference || evt.toElement || evt.relatedTarget;\n\n\t\tvar callback = function callback(evt2) {\n\t\t\tvar relatedreference2 = evt2.relatedreference || evt2.toElement || evt2.relatedTarget;\n\n\t\t\t// Remove event listener after call\n\t\t\t_this9._tooltipNode.removeEventListener(evt.type, callback);\n\n\t\t\t// If the new reference is not the reference element\n\t\t\tif (!reference.contains(relatedreference2)) {\n\t\t\t\t// Schedule to hide tooltip\n\t\t\t\t_this9._scheduleHide(reference, options.delay, options, evt2);\n\t\t\t}\n\t\t};\n\n\t\tif (_this9._tooltipNode.contains(relatedreference)) {\n\t\t\t// listen to mouseleave on the tooltip element to be able to hide the tooltip\n\t\t\t_this9._tooltipNode.addEventListener(evt.type, callback);\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t};\n};\n\nif (typeof document !== 'undefined') {\n\tdocument.addEventListener('touchstart', function (event) {\n\t\tfor (var i = 0; i < openTooltips.length; i++) {\n\t\t\topenTooltips[i]._onDocumentTouch(event);\n\t\t}\n\t}, supportsPassive ? {\n\t\tpassive: true,\n\t\tcapture: true\n\t} : true);\n}\n\n/**\n * Placement function, its context is the Tooltip instance.\n * @memberof Tooltip\n * @callback PlacementFunction\n * @param {HTMLElement} tooltip - tooltip DOM node.\n * @param {HTMLElement} reference - reference DOM node.\n * @return {String} placement - One of the allowed placement options.\n */\n\n/**\n * Title function, its context is the Tooltip instance.\n * @memberof Tooltip\n * @callback TitleFunction\n * @return {String} placement - The desired title.\n */\n\nvar state = {\n\tenabled: true\n};\n\nvar positions = ['top', 'top-start', 'top-end', 'right', 'right-start', 'right-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end'];\n\nvar defaultOptions = {\n\t// Default tooltip placement relative to target element\n\tdefaultPlacement: 'top',\n\t// Default CSS classes applied to the tooltip element\n\tdefaultClass: 'vue-tooltip-theme',\n\t// Default CSS classes applied to the target element of the tooltip\n\tdefaultTargetClass: 'has-tooltip',\n\t// Is the content HTML by default?\n\tdefaultHtml: true,\n\t// Default HTML template of the tooltip element\n\t// It must include `tooltip-arrow` & `tooltip-inner` CSS classes (can be configured, see below)\n\t// Change if the classes conflict with other libraries (for example bootstrap)\n\tdefaultTemplate: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n\t// Selector used to get the arrow element in the tooltip template\n\tdefaultArrowSelector: '.tooltip-arrow, .tooltip__arrow',\n\t// Selector used to get the inner content element in the tooltip template\n\tdefaultInnerSelector: '.tooltip-inner, .tooltip__inner',\n\t// Delay (ms)\n\tdefaultDelay: 0,\n\t// Default events that trigger the tooltip\n\tdefaultTrigger: 'hover focus',\n\t// Default position offset (px)\n\tdefaultOffset: 0,\n\t// Default container where the tooltip will be appended\n\tdefaultContainer: 'body',\n\tdefaultBoundariesElement: undefined,\n\tdefaultPopperOptions: {},\n\t// Class added when content is loading\n\tdefaultLoadingClass: 'tooltip-loading',\n\t// Displayed when tooltip content is loading\n\tdefaultLoadingContent: '...',\n\t// Hide on mouseover tooltip\n\tautoHide: true,\n\t// Close tooltip on click on tooltip target?\n\tdefaultHideOnTargetClick: true,\n\t// Auto destroy tooltip DOM nodes (ms)\n\tdisposeTimeout: 5000,\n\t// Options for popover\n\tpopover: {\n\t\tdefaultPlacement: 'bottom',\n\t\t// Use the `popoverClass` prop for theming\n\t\tdefaultClass: 'vue-popover-theme',\n\t\t// Base class (change if conflicts with other libraries)\n\t\tdefaultBaseClass: 'tooltip popover',\n\t\t// Wrapper class (contains arrow and inner)\n\t\tdefaultWrapperClass: 'wrapper',\n\t\t// Inner content class\n\t\tdefaultInnerClass: 'tooltip-inner popover-inner',\n\t\t// Arrow class\n\t\tdefaultArrowClass: 'tooltip-arrow popover-arrow',\n\t\tdefaultDelay: 0,\n\t\tdefaultTrigger: 'click',\n\t\tdefaultOffset: 0,\n\t\tdefaultContainer: 'body',\n\t\tdefaultBoundariesElement: undefined,\n\t\tdefaultPopperOptions: {},\n\t\t// Hides if clicked outside of popover\n\t\tdefaultAutoHide: true,\n\t\t// Update popper on content resize\n\t\tdefaultHandleResize: true\n\t}\n};\n\nfunction getOptions(options) {\n\tvar result = {\n\t\tplacement: typeof options.placement !== 'undefined' ? options.placement : directive.options.defaultPlacement,\n\t\tdelay: typeof options.delay !== 'undefined' ? options.delay : directive.options.defaultDelay,\n\t\thtml: typeof options.html !== 'undefined' ? options.html : directive.options.defaultHtml,\n\t\ttemplate: typeof options.template !== 'undefined' ? options.template : directive.options.defaultTemplate,\n\t\tarrowSelector: typeof options.arrowSelector !== 'undefined' ? options.arrowSelector : directive.options.defaultArrowSelector,\n\t\tinnerSelector: typeof options.innerSelector !== 'undefined' ? options.innerSelector : directive.options.defaultInnerSelector,\n\t\ttrigger: typeof options.trigger !== 'undefined' ? options.trigger : directive.options.defaultTrigger,\n\t\toffset: typeof options.offset !== 'undefined' ? options.offset : directive.options.defaultOffset,\n\t\tcontainer: typeof options.container !== 'undefined' ? options.container : directive.options.defaultContainer,\n\t\tboundariesElement: typeof options.boundariesElement !== 'undefined' ? options.boundariesElement : directive.options.defaultBoundariesElement,\n\t\tautoHide: typeof options.autoHide !== 'undefined' ? options.autoHide : directive.options.autoHide,\n\t\thideOnTargetClick: typeof options.hideOnTargetClick !== 'undefined' ? options.hideOnTargetClick : directive.options.defaultHideOnTargetClick,\n\t\tloadingClass: typeof options.loadingClass !== 'undefined' ? options.loadingClass : directive.options.defaultLoadingClass,\n\t\tloadingContent: typeof options.loadingContent !== 'undefined' ? options.loadingContent : directive.options.defaultLoadingContent,\n\t\tpopperOptions: _extends$1({}, typeof options.popperOptions !== 'undefined' ? options.popperOptions : directive.options.defaultPopperOptions)\n\t};\n\n\tif (result.offset) {\n\t\tvar typeofOffset = _typeof(result.offset);\n\t\tvar offset = result.offset;\n\n\t\t// One value -> switch\n\t\tif (typeofOffset === 'number' || typeofOffset === 'string' && offset.indexOf(',') === -1) {\n\t\t\toffset = '0, ' + offset;\n\t\t}\n\n\t\tif (!result.popperOptions.modifiers) {\n\t\t\tresult.popperOptions.modifiers = {};\n\t\t}\n\t\tresult.popperOptions.modifiers.offset = {\n\t\t\toffset: offset\n\t\t};\n\t}\n\n\tif (result.trigger && result.trigger.indexOf('click') !== -1) {\n\t\tresult.hideOnTargetClick = false;\n\t}\n\n\treturn result;\n}\n\nfunction getPlacement(value, modifiers) {\n\tvar placement = value.placement;\n\tfor (var i = 0; i < positions.length; i++) {\n\t\tvar pos = positions[i];\n\t\tif (modifiers[pos]) {\n\t\t\tplacement = pos;\n\t\t}\n\t}\n\treturn placement;\n}\n\nfunction getContent(value) {\n\tvar type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\tif (type === 'string') {\n\t\treturn value;\n\t} else if (value && type === 'object') {\n\t\treturn value.content;\n\t} else {\n\t\treturn false;\n\t}\n}\n\nfunction createTooltip(el, value) {\n\tvar modifiers = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\tvar content = getContent(value);\n\tvar classes = typeof value.classes !== 'undefined' ? value.classes : directive.options.defaultClass;\n\tvar opts = _extends$1({\n\t\ttitle: content\n\t}, getOptions(_extends$1({}, value, {\n\t\tplacement: getPlacement(value, modifiers)\n\t})));\n\tvar tooltip = el._tooltip = new Tooltip(el, opts);\n\ttooltip.setClasses(classes);\n\ttooltip._vueEl = el;\n\n\t// Class on target\n\tvar targetClasses = typeof value.targetClasses !== 'undefined' ? value.targetClasses : directive.options.defaultTargetClass;\n\tel._tooltipTargetClasses = targetClasses;\n\taddClasses(el, targetClasses);\n\n\treturn tooltip;\n}\n\nfunction destroyTooltip(el) {\n\tif (el._tooltip) {\n\t\tel._tooltip.dispose();\n\t\tdelete el._tooltip;\n\t\tdelete el._tooltipOldShow;\n\t}\n\n\tif (el._tooltipTargetClasses) {\n\t\tremoveClasses(el, el._tooltipTargetClasses);\n\t\tdelete el._tooltipTargetClasses;\n\t}\n}\n\nfunction bind(el, _ref) {\n\tvar value = _ref.value,\n\t oldValue = _ref.oldValue,\n\t modifiers = _ref.modifiers;\n\n\tvar content = getContent(value);\n\tif (!content || !state.enabled) {\n\t\tdestroyTooltip(el);\n\t} else {\n\t\tvar tooltip = void 0;\n\t\tif (el._tooltip) {\n\t\t\ttooltip = el._tooltip;\n\t\t\t// Content\n\t\t\ttooltip.setContent(content);\n\t\t\t// Options\n\t\t\ttooltip.setOptions(_extends$1({}, value, {\n\t\t\t\tplacement: getPlacement(value, modifiers)\n\t\t\t}));\n\t\t} else {\n\t\t\ttooltip = createTooltip(el, value, modifiers);\n\t\t}\n\n\t\t// Manual show\n\t\tif (typeof value.show !== 'undefined' && value.show !== el._tooltipOldShow) {\n\t\t\tel._tooltipOldShow = value.show;\n\t\t\tvalue.show ? tooltip.show() : tooltip.hide();\n\t\t}\n\t}\n}\n\nvar directive = {\n\toptions: defaultOptions,\n\tbind: bind,\n\tupdate: bind,\n\tunbind: function unbind(el) {\n\t\tdestroyTooltip(el);\n\t}\n};\n\nfunction addListeners(el) {\n\tel.addEventListener('click', onClick);\n\tel.addEventListener('touchstart', onTouchStart, supportsPassive ? {\n\t\tpassive: true\n\t} : false);\n}\n\nfunction removeListeners(el) {\n\tel.removeEventListener('click', onClick);\n\tel.removeEventListener('touchstart', onTouchStart);\n\tel.removeEventListener('touchend', onTouchEnd);\n\tel.removeEventListener('touchcancel', onTouchCancel);\n}\n\nfunction onClick(event) {\n\tvar el = event.currentTarget;\n\tevent.closePopover = !el.$_vclosepopover_touch;\n\tevent.closeAllPopover = el.$_closePopoverModifiers && !!el.$_closePopoverModifiers.all;\n}\n\nfunction onTouchStart(event) {\n\tif (event.changedTouches.length === 1) {\n\t\tvar el = event.currentTarget;\n\t\tel.$_vclosepopover_touch = true;\n\t\tvar touch = event.changedTouches[0];\n\t\tel.$_vclosepopover_touchPoint = touch;\n\t\tel.addEventListener('touchend', onTouchEnd);\n\t\tel.addEventListener('touchcancel', onTouchCancel);\n\t}\n}\n\nfunction onTouchEnd(event) {\n\tvar el = event.currentTarget;\n\tel.$_vclosepopover_touch = false;\n\tif (event.changedTouches.length === 1) {\n\t\tvar touch = event.changedTouches[0];\n\t\tvar firstTouch = el.$_vclosepopover_touchPoint;\n\t\tevent.closePopover = Math.abs(touch.screenY - firstTouch.screenY) < 20 && Math.abs(touch.screenX - firstTouch.screenX) < 20;\n\t\tevent.closeAllPopover = el.$_closePopoverModifiers && !!el.$_closePopoverModifiers.all;\n\t}\n}\n\nfunction onTouchCancel(event) {\n\tvar el = event.currentTarget;\n\tel.$_vclosepopover_touch = false;\n}\n\nvar vclosepopover = {\n\tbind: function bind(el, _ref) {\n\t\tvar value = _ref.value,\n\t\t modifiers = _ref.modifiers;\n\n\t\tel.$_closePopoverModifiers = modifiers;\n\t\tif (typeof value === 'undefined' || value) {\n\t\t\taddListeners(el);\n\t\t}\n\t},\n\tupdate: function update(el, _ref2) {\n\t\tvar value = _ref2.value,\n\t\t oldValue = _ref2.oldValue,\n\t\t modifiers = _ref2.modifiers;\n\n\t\tel.$_closePopoverModifiers = modifiers;\n\t\tif (value !== oldValue) {\n\t\t\tif (typeof value === 'undefined' || value) {\n\t\t\t\taddListeners(el);\n\t\t\t} else {\n\t\t\t\tremoveListeners(el);\n\t\t\t}\n\t\t}\n\t},\n\tunbind: function unbind(el) {\n\t\tremoveListeners(el);\n\t}\n};\n\nfunction getInternetExplorerVersion() {\n\tvar ua = window.navigator.userAgent;\n\n\tvar msie = ua.indexOf('MSIE ');\n\tif (msie > 0) {\n\t\t// IE 10 or older => return version number\n\t\treturn parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);\n\t}\n\n\tvar trident = ua.indexOf('Trident/');\n\tif (trident > 0) {\n\t\t// IE 11 => return version number\n\t\tvar rv = ua.indexOf('rv:');\n\t\treturn parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10);\n\t}\n\n\tvar edge = ua.indexOf('Edge/');\n\tif (edge > 0) {\n\t\t// Edge (IE 12+) => return version number\n\t\treturn parseInt(ua.substring(edge + 5, ua.indexOf('.', edge)), 10);\n\t}\n\n\t// other browser\n\treturn -1;\n}\n\nvar isIE$1 = void 0;\n\nfunction initCompat() {\n\tif (!initCompat.init) {\n\t\tinitCompat.init = true;\n\t\tisIE$1 = getInternetExplorerVersion() !== -1;\n\t}\n}\n\nvar ResizeObserver = { render: function render() {\n\t\tvar _vm = this;var _h = _vm.$createElement;var _c = _vm._self._c || _h;return _c('div', { staticClass: \"resize-observer\", attrs: { \"tabindex\": \"-1\" } });\n\t}, staticRenderFns: [], _scopeId: 'data-v-b329ee4c',\n\tname: 'resize-observer',\n\n\tmethods: {\n\t\tnotify: function notify() {\n\t\t\tthis.$emit('notify');\n\t\t},\n\t\taddResizeHandlers: function addResizeHandlers() {\n\t\t\tthis._resizeObject.contentDocument.defaultView.addEventListener('resize', this.notify);\n\t\t\tif (this._w !== this.$el.offsetWidth || this._h !== this.$el.offsetHeight) {\n\t\t\t\tthis.notify();\n\t\t\t}\n\t\t},\n\t\tremoveResizeHandlers: function removeResizeHandlers() {\n\t\t\tif (this._resizeObject && this._resizeObject.onload) {\n\t\t\t\tif (!isIE$1 && this._resizeObject.contentDocument) {\n\t\t\t\t\tthis._resizeObject.contentDocument.defaultView.removeEventListener('resize', this.notify);\n\t\t\t\t}\n\t\t\t\tdelete this._resizeObject.onload;\n\t\t\t}\n\t\t}\n\t},\n\n\tmounted: function mounted() {\n\t\tvar _this = this;\n\n\t\tinitCompat();\n\t\tthis.$nextTick(function () {\n\t\t\t_this._w = _this.$el.offsetWidth;\n\t\t\t_this._h = _this.$el.offsetHeight;\n\t\t});\n\t\tvar object = document.createElement('object');\n\t\tthis._resizeObject = object;\n\t\tobject.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;');\n\t\tobject.setAttribute('aria-hidden', 'true');\n\t\tobject.setAttribute('tabindex', -1);\n\t\tobject.onload = this.addResizeHandlers;\n\t\tobject.type = 'text/html';\n\t\tif (isIE$1) {\n\t\t\tthis.$el.appendChild(object);\n\t\t}\n\t\tobject.data = 'about:blank';\n\t\tif (!isIE$1) {\n\t\t\tthis.$el.appendChild(object);\n\t\t}\n\t},\n\tbeforeDestroy: function beforeDestroy() {\n\t\tthis.removeResizeHandlers();\n\t}\n};\n\n// Install the components\nfunction install$1(Vue) {\n\tVue.component('resize-observer', ResizeObserver);\n\t/* -- Add more components here -- */\n}\n\n/* -- Plugin definition & Auto-install -- */\n/* You shouldn't have to modify the code below */\n\n// Plugin\nvar plugin$2 = {\n\t// eslint-disable-next-line no-undef\n\tversion: \"0.4.4\",\n\tinstall: install$1\n};\n\n// Auto-install\nvar GlobalVue$1 = null;\nif (typeof window !== 'undefined') {\n\tGlobalVue$1 = window.Vue;\n} else if (typeof global !== 'undefined') {\n\tGlobalVue$1 = global.Vue;\n}\nif (GlobalVue$1) {\n\tGlobalVue$1.use(plugin$2);\n}\n\nfunction getDefault(key) {\n\tvar value = directive.options.popover[key];\n\tif (typeof value === 'undefined') {\n\t\treturn directive.options[key];\n\t}\n\treturn value;\n}\n\nvar isIOS = false;\nif (typeof window !== 'undefined' && typeof navigator !== 'undefined') {\n\tisIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;\n}\n\nvar openPopovers = [];\n\nvar Element = function Element() {};\nif (typeof window !== 'undefined') {\n\tElement = window.Element;\n}\n\nvar Popover = { render: function render() {\n\t\tvar _vm = this;var _h = _vm.$createElement;var _c = _vm._self._c || _h;return _c('div', { staticClass: \"v-popover\", class: _vm.cssClass }, [_c('span', { ref: \"trigger\", staticClass: \"trigger\", staticStyle: { \"display\": \"inline-block\" }, attrs: { \"aria-describedby\": _vm.popoverId, \"tabindex\": _vm.trigger.indexOf('focus') !== -1 ? 0 : -1 } }, [_vm._t(\"default\")], 2), _vm._v(\" \"), _c('div', { ref: \"popover\", class: [_vm.popoverBaseClass, _vm.popoverClass, _vm.cssClass], style: {\n\t\t\t\tvisibility: _vm.isOpen ? 'visible' : 'hidden'\n\t\t\t}, attrs: { \"id\": _vm.popoverId, \"aria-hidden\": _vm.isOpen ? 'false' : 'true' } }, [_c('div', { class: _vm.popoverWrapperClass }, [_c('div', { ref: \"inner\", class: _vm.popoverInnerClass, staticStyle: { \"position\": \"relative\" } }, [_c('div', [_vm._t(\"popover\")], 2), _vm._v(\" \"), _vm.handleResize ? _c('ResizeObserver', { on: { \"notify\": _vm.$_handleResize } }) : _vm._e()], 1), _vm._v(\" \"), _c('div', { ref: \"arrow\", class: _vm.popoverArrowClass })])])]);\n\t}, staticRenderFns: [],\n\tname: 'VPopover',\n\n\tcomponents: {\n\t\tResizeObserver: ResizeObserver\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false\n\t\t},\n\t\tdisabled: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false\n\t\t},\n\t\tplacement: {\n\t\t\ttype: String,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultPlacement');\n\t\t\t}\n\t\t},\n\t\tdelay: {\n\t\t\ttype: [String, Number, Object],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultDelay');\n\t\t\t}\n\t\t},\n\t\toffset: {\n\t\t\ttype: [String, Number],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultOffset');\n\t\t\t}\n\t\t},\n\t\ttrigger: {\n\t\t\ttype: String,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultTrigger');\n\t\t\t}\n\t\t},\n\t\tcontainer: {\n\t\t\ttype: [String, Object, Element, Boolean],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultContainer');\n\t\t\t}\n\t\t},\n\t\tboundariesElement: {\n\t\t\ttype: [String, Element],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultBoundariesElement');\n\t\t\t}\n\t\t},\n\t\tpopperOptions: {\n\t\t\ttype: Object,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultPopperOptions');\n\t\t\t}\n\t\t},\n\t\tpopoverClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultClass');\n\t\t\t}\n\t\t},\n\t\tpopoverBaseClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultBaseClass;\n\t\t\t}\n\t\t},\n\t\tpopoverInnerClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultInnerClass;\n\t\t\t}\n\t\t},\n\t\tpopoverWrapperClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultWrapperClass;\n\t\t\t}\n\t\t},\n\t\tpopoverArrowClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultArrowClass;\n\t\t\t}\n\t\t},\n\t\tautoHide: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultAutoHide;\n\t\t\t}\n\t\t},\n\t\thandleResize: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultHandleResize;\n\t\t\t}\n\t\t},\n\t\topenGroup: {\n\t\t\ttype: String,\n\t\t\tdefault: null\n\t\t}\n\t},\n\n\tdata: function data() {\n\t\treturn {\n\t\t\tisOpen: false,\n\t\t\tid: Math.random().toString(36).substr(2, 10)\n\t\t};\n\t},\n\n\n\tcomputed: {\n\t\tcssClass: function cssClass() {\n\t\t\treturn {\n\t\t\t\t'open': this.isOpen\n\t\t\t};\n\t\t},\n\t\tpopoverId: function popoverId() {\n\t\t\treturn 'popover_' + this.id;\n\t\t}\n\t},\n\n\twatch: {\n\t\topen: function open(val) {\n\t\t\tif (val) {\n\t\t\t\tthis.show();\n\t\t\t} else {\n\t\t\t\tthis.hide();\n\t\t\t}\n\t\t},\n\t\tdisabled: function disabled(val, oldVal) {\n\t\t\tif (val !== oldVal) {\n\t\t\t\tif (val) {\n\t\t\t\t\tthis.hide();\n\t\t\t\t} else if (this.open) {\n\t\t\t\t\tthis.show();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tcontainer: function container(val) {\n\t\t\tif (this.isOpen && this.popperInstance) {\n\t\t\t\tvar popoverNode = this.$refs.popover;\n\t\t\t\tvar reference = this.$refs.trigger;\n\n\t\t\t\tvar container = this.$_findContainer(this.container, reference);\n\t\t\t\tif (!container) {\n\t\t\t\t\tconsole.warn('No container for popover', this);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tcontainer.appendChild(popoverNode);\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t}\n\t\t},\n\t\ttrigger: function trigger(val) {\n\t\t\tthis.$_removeEventListeners();\n\t\t\tthis.$_addEventListeners();\n\t\t},\n\t\tplacement: function placement(val) {\n\t\t\tvar _this = this;\n\n\t\t\tthis.$_updatePopper(function () {\n\t\t\t\t_this.popperInstance.options.placement = val;\n\t\t\t});\n\t\t},\n\n\n\t\toffset: '$_restartPopper',\n\n\t\tboundariesElement: '$_restartPopper',\n\n\t\tpopperOptions: {\n\t\t\thandler: '$_restartPopper',\n\t\t\tdeep: true\n\t\t}\n\t},\n\n\tcreated: function created() {\n\t\tthis.$_isDisposed = false;\n\t\tthis.$_mounted = false;\n\t\tthis.$_events = [];\n\t\tthis.$_preventOpen = false;\n\t},\n\tmounted: function mounted() {\n\t\tvar popoverNode = this.$refs.popover;\n\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\n\t\tthis.$_init();\n\n\t\tif (this.open) {\n\t\t\tthis.show();\n\t\t}\n\t},\n\tbeforeDestroy: function beforeDestroy() {\n\t\tthis.dispose();\n\t},\n\n\n\tmethods: {\n\t\tshow: function show() {\n\t\t\tvar _this2 = this;\n\n\t\t\tvar _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n\t\t\t event = _ref.event,\n\t\t\t _ref$skipDelay = _ref.skipDelay,\n\t\t\t skipDelay = _ref$skipDelay === undefined ? false : _ref$skipDelay,\n\t\t\t _ref$force = _ref.force,\n\t\t\t force = _ref$force === undefined ? false : _ref$force;\n\n\t\t\tif (force || !this.disabled) {\n\t\t\t\tthis.$_scheduleShow(event);\n\t\t\t\tthis.$emit('show');\n\t\t\t}\n\t\t\tthis.$emit('update:open', true);\n\t\t\tthis.$_beingShowed = true;\n\t\t\trequestAnimationFrame(function () {\n\t\t\t\t_this2.$_beingShowed = false;\n\t\t\t});\n\t\t},\n\t\thide: function hide() {\n\t\t\tvar _ref2 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n\t\t\t event = _ref2.event,\n\t\t\t _ref2$skipDelay = _ref2.skipDelay;\n\n\t\t\tthis.$_scheduleHide(event);\n\n\t\t\tthis.$emit('hide');\n\t\t\tthis.$emit('update:open', false);\n\t\t},\n\t\tdispose: function dispose() {\n\t\t\tthis.$_isDisposed = true;\n\t\t\tthis.$_removeEventListeners();\n\t\t\tthis.hide({ skipDelay: true });\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.popperInstance.destroy();\n\n\t\t\t\t// destroy tooltipNode if removeOnDestroy is not set, as popperInstance.destroy() already removes the element\n\t\t\t\tif (!this.popperInstance.options.removeOnDestroy) {\n\t\t\t\t\tvar popoverNode = this.$refs.popover;\n\t\t\t\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.$_mounted = false;\n\t\t\tthis.popperInstance = null;\n\t\t\tthis.isOpen = false;\n\n\t\t\tthis.$emit('dispose');\n\t\t},\n\t\t$_init: function $_init() {\n\t\t\tif (this.trigger.indexOf('manual') === -1) {\n\t\t\t\tthis.$_addEventListeners();\n\t\t\t}\n\t\t},\n\t\t$_show: function $_show() {\n\t\t\tvar _this3 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar popoverNode = this.$refs.popover;\n\n\t\t\tclearTimeout(this.$_disposeTimer);\n\n\t\t\t// Already open\n\t\t\tif (this.isOpen) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Popper is already initialized\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.isOpen = true;\n\t\t\t\tthis.popperInstance.enableEventListeners();\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t}\n\n\t\t\tif (!this.$_mounted) {\n\t\t\t\tvar container = this.$_findContainer(this.container, reference);\n\t\t\t\tif (!container) {\n\t\t\t\t\tconsole.warn('No container for popover', this);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tcontainer.appendChild(popoverNode);\n\t\t\t\tthis.$_mounted = true;\n\t\t\t}\n\n\t\t\tif (!this.popperInstance) {\n\t\t\t\tvar popperOptions = _extends$1({}, this.popperOptions, {\n\t\t\t\t\tplacement: this.placement\n\t\t\t\t});\n\n\t\t\t\tpopperOptions.modifiers = _extends$1({}, popperOptions.modifiers, {\n\t\t\t\t\tarrow: _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.arrow, {\n\t\t\t\t\t\telement: this.$refs.arrow\n\t\t\t\t\t})\n\t\t\t\t});\n\n\t\t\t\tif (this.offset) {\n\t\t\t\t\tvar offset = this.$_getOffset();\n\n\t\t\t\t\tpopperOptions.modifiers.offset = _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.offset, {\n\t\t\t\t\t\toffset: offset\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (this.boundariesElement) {\n\t\t\t\t\tpopperOptions.modifiers.preventOverflow = _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.preventOverflow, {\n\t\t\t\t\t\tboundariesElement: this.boundariesElement\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tthis.popperInstance = new Popper(reference, popoverNode, popperOptions);\n\n\t\t\t\t// Fix position\n\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\tif (!_this3.$_isDisposed && _this3.popperInstance) {\n\t\t\t\t\t\t_this3.popperInstance.scheduleUpdate();\n\n\t\t\t\t\t\t// Show the tooltip\n\t\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\t\tif (!_this3.$_isDisposed) {\n\t\t\t\t\t\t\t\t_this3.isOpen = true;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tvar openGroup = this.openGroup;\n\t\t\tif (openGroup) {\n\t\t\t\tvar popover = void 0;\n\t\t\t\tfor (var i = 0; i < openPopovers.length; i++) {\n\t\t\t\t\tpopover = openPopovers[i];\n\t\t\t\t\tif (popover.openGroup !== openGroup) {\n\t\t\t\t\t\tpopover.hide();\n\t\t\t\t\t\tpopover.$emit('close-group');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\topenPopovers.push(this);\n\n\t\t\tthis.$emit('apply-show');\n\t\t},\n\t\t$_hide: function $_hide() {\n\t\t\tvar _this4 = this;\n\n\t\t\t// Already hidden\n\t\t\tif (!this.isOpen) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar index = openPopovers.indexOf(this);\n\t\t\tif (index !== -1) {\n\t\t\t\topenPopovers.splice(index, 1);\n\t\t\t}\n\n\t\t\tthis.isOpen = false;\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.popperInstance.disableEventListeners();\n\t\t\t}\n\n\t\t\tclearTimeout(this.$_disposeTimer);\n\t\t\tvar disposeTime = directive.options.popover.disposeTimeout || directive.options.disposeTimeout;\n\t\t\tif (disposeTime !== null) {\n\t\t\t\tthis.$_disposeTimer = setTimeout(function () {\n\t\t\t\t\tvar popoverNode = _this4.$refs.popover;\n\t\t\t\t\tif (popoverNode) {\n\t\t\t\t\t\t// Don't remove popper instance, just the HTML element\n\t\t\t\t\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\t\t\t\t\t\t_this4.$_mounted = false;\n\t\t\t\t\t}\n\t\t\t\t}, disposeTime);\n\t\t\t}\n\n\t\t\tthis.$emit('apply-hide');\n\t\t},\n\t\t$_findContainer: function $_findContainer(container, reference) {\n\t\t\t// if container is a query, get the relative element\n\t\t\tif (typeof container === 'string') {\n\t\t\t\tcontainer = window.document.querySelector(container);\n\t\t\t} else if (container === false) {\n\t\t\t\t// if container is `false`, set it to reference parent\n\t\t\t\tcontainer = reference.parentNode;\n\t\t\t}\n\t\t\treturn container;\n\t\t},\n\t\t$_getOffset: function $_getOffset() {\n\t\t\tvar typeofOffset = _typeof(this.offset);\n\t\t\tvar offset = this.offset;\n\n\t\t\t// One value -> switch\n\t\t\tif (typeofOffset === 'number' || typeofOffset === 'string' && offset.indexOf(',') === -1) {\n\t\t\t\toffset = '0, ' + offset;\n\t\t\t}\n\n\t\t\treturn offset;\n\t\t},\n\t\t$_addEventListeners: function $_addEventListeners() {\n\t\t\tvar _this5 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar directEvents = [];\n\t\t\tvar oppositeEvents = [];\n\n\t\t\tvar events = typeof this.trigger === 'string' ? this.trigger.split(' ').filter(function (trigger) {\n\t\t\t\treturn ['click', 'hover', 'focus'].indexOf(trigger) !== -1;\n\t\t\t}) : [];\n\n\t\t\tevents.forEach(function (event) {\n\t\t\t\tswitch (event) {\n\t\t\t\t\tcase 'hover':\n\t\t\t\t\t\tdirectEvents.push('mouseenter');\n\t\t\t\t\t\toppositeEvents.push('mouseleave');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'focus':\n\t\t\t\t\t\tdirectEvents.push('focus');\n\t\t\t\t\t\toppositeEvents.push('blur');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'click':\n\t\t\t\t\t\tdirectEvents.push('click');\n\t\t\t\t\t\toppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// schedule show tooltip\n\t\t\tdirectEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(event) {\n\t\t\t\t\tif (_this5.isOpen) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tevent.usedByTooltip = true;\n\t\t\t\t\t!_this5.$_preventOpen && _this5.show({ event: event });\n\t\t\t\t};\n\t\t\t\t_this5.$_events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\n\t\t\t// schedule hide tooltip\n\t\t\toppositeEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(event) {\n\t\t\t\t\tif (event.usedByTooltip) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this5.hide({ event: event });\n\t\t\t\t};\n\t\t\t\t_this5.$_events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\t\t},\n\t\t$_scheduleShow: function $_scheduleShow() {\n\t\t\tvar skipDelay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tclearTimeout(this.$_scheduleTimer);\n\t\t\tif (skipDelay) {\n\t\t\t\tthis.$_show();\n\t\t\t} else {\n\t\t\t\t// defaults to 0\n\t\t\t\tvar computedDelay = parseInt(this.delay && this.delay.show || this.delay || 0);\n\t\t\t\tthis.$_scheduleTimer = setTimeout(this.$_show.bind(this), computedDelay);\n\t\t\t}\n\t\t},\n\t\t$_scheduleHide: function $_scheduleHide() {\n\t\t\tvar _this6 = this;\n\n\t\t\tvar event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\t\t\tvar skipDelay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tclearTimeout(this.$_scheduleTimer);\n\t\t\tif (skipDelay) {\n\t\t\t\tthis.$_hide();\n\t\t\t} else {\n\t\t\t\t// defaults to 0\n\t\t\t\tvar computedDelay = parseInt(this.delay && this.delay.hide || this.delay || 0);\n\t\t\t\tthis.$_scheduleTimer = setTimeout(function () {\n\t\t\t\t\tif (!_this6.isOpen) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// if we are hiding because of a mouseleave, we must check that the new\n\t\t\t\t\t// reference isn't the tooltip, because in this case we don't want to hide it\n\t\t\t\t\tif (event && event.type === 'mouseleave') {\n\t\t\t\t\t\tvar isSet = _this6.$_setTooltipNodeEvent(event);\n\n\t\t\t\t\t\t// if we set the new event, don't hide the tooltip yet\n\t\t\t\t\t\t// the new event will take care to hide it if necessary\n\t\t\t\t\t\tif (isSet) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t_this6.$_hide();\n\t\t\t\t}, computedDelay);\n\t\t\t}\n\t\t},\n\t\t$_setTooltipNodeEvent: function $_setTooltipNodeEvent(event) {\n\t\t\tvar _this7 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar popoverNode = this.$refs.popover;\n\n\t\t\tvar relatedreference = event.relatedreference || event.toElement || event.relatedTarget;\n\n\t\t\tvar callback = function callback(event2) {\n\t\t\t\tvar relatedreference2 = event2.relatedreference || event2.toElement || event2.relatedTarget;\n\n\t\t\t\t// Remove event listener after call\n\t\t\t\tpopoverNode.removeEventListener(event.type, callback);\n\n\t\t\t\t// If the new reference is not the reference element\n\t\t\t\tif (!reference.contains(relatedreference2)) {\n\t\t\t\t\t// Schedule to hide tooltip\n\t\t\t\t\t_this7.hide({ event: event2 });\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tif (popoverNode.contains(relatedreference)) {\n\t\t\t\t// listen to mouseleave on the tooltip element to be able to hide the tooltip\n\t\t\t\tpopoverNode.addEventListener(event.type, callback);\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\t\t$_removeEventListeners: function $_removeEventListeners() {\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tthis.$_events.forEach(function (_ref3) {\n\t\t\t\tvar func = _ref3.func,\n\t\t\t\t event = _ref3.event;\n\n\t\t\t\treference.removeEventListener(event, func);\n\t\t\t});\n\t\t\tthis.$_events = [];\n\t\t},\n\t\t$_updatePopper: function $_updatePopper(cb) {\n\t\t\tif (this.popperInstance) {\n\t\t\t\tcb();\n\t\t\t\tif (this.isOpen) this.popperInstance.scheduleUpdate();\n\t\t\t}\n\t\t},\n\t\t$_restartPopper: function $_restartPopper() {\n\t\t\tif (this.popperInstance) {\n\t\t\t\tvar isOpen = this.isOpen;\n\t\t\t\tthis.dispose();\n\t\t\t\tthis.$_isDisposed = false;\n\t\t\t\tthis.$_init();\n\t\t\t\tif (isOpen) {\n\t\t\t\t\tthis.show({ skipDelay: true, force: true });\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t$_handleGlobalClose: function $_handleGlobalClose(event) {\n\t\t\tvar _this8 = this;\n\n\t\t\tvar touch = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tif (this.$_beingShowed) return;\n\n\t\t\tthis.hide({ event: event });\n\n\t\t\tif (event.closePopover) {\n\t\t\t\tthis.$emit('close-directive');\n\t\t\t} else {\n\t\t\t\tthis.$emit('auto-hide');\n\t\t\t}\n\n\t\t\tif (touch) {\n\t\t\t\tthis.$_preventOpen = true;\n\t\t\t\tsetTimeout(function () {\n\t\t\t\t\t_this8.$_preventOpen = false;\n\t\t\t\t}, 300);\n\t\t\t}\n\t\t},\n\t\t$_handleResize: function $_handleResize() {\n\t\t\tif (this.isOpen && this.popperInstance) {\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t\tthis.$emit('resize');\n\t\t\t}\n\t\t}\n\t}\n};\n\nif (typeof document !== 'undefined' && typeof window !== 'undefined') {\n\tif (isIOS) {\n\t\tdocument.addEventListener('touchend', handleGlobalTouchend, supportsPassive ? {\n\t\t\tpassive: true,\n\t\t\tcapture: true\n\t\t} : true);\n\t} else {\n\t\twindow.addEventListener('click', handleGlobalClick, true);\n\t}\n}\n\nfunction handleGlobalClick(event) {\n\thandleGlobalClose(event);\n}\n\nfunction handleGlobalTouchend(event) {\n\thandleGlobalClose(event, true);\n}\n\nfunction handleGlobalClose(event) {\n\tvar touch = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t// Delay so that close directive has time to set values\n\trequestAnimationFrame(function () {\n\t\tvar popover = void 0;\n\t\tfor (var i = 0; i < openPopovers.length; i++) {\n\t\t\tpopover = openPopovers[i];\n\t\t\tif (popover.$refs.popover) {\n\t\t\t\tvar contains = popover.$refs.popover.contains(event.target);\n\t\t\t\tif (event.closeAllPopover || event.closePopover && contains || popover.autoHide && !contains) {\n\t\t\t\t\tpopover.$_handleGlobalClose(event, touch);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nvar commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n\n\n\n\nfunction createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nvar lodash_merge = createCommonjsModule(function (module, exports) {\n/**\n * Lodash (Custom Build) <https://lodash.com/>\n * Build: `lodash modularize exports=\"npm\" -o ./`\n * Copyright JS Foundation and other contributors <https://js.foundation/>\n * Released under MIT license <https://lodash.com/license>\n * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n\n/** Used as the size to enable large array optimizations. */\nvar LARGE_ARRAY_SIZE = 200;\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/** Used to detect hot functions by number of calls within a span of milliseconds. */\nvar HOT_COUNT = 800,\n HOT_SPAN = 16;\n\n/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n asyncTag = '[object AsyncFunction]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n nullTag = '[object Null]',\n objectTag = '[object Object]',\n proxyTag = '[object Proxy]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n undefinedTag = '[object Undefined]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\nvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n/** Used to detect host constructors (Safari). */\nvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n/** Used to detect unsigned integer values. */\nvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n/** Used to identify `toStringTag` values of typed arrays. */\nvar typedArrayTags = {};\ntypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\ntypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\ntypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\ntypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\ntypedArrayTags[uint32Tag] = true;\ntypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\ntypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\ntypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\ntypedArrayTags[errorTag] = typedArrayTags[funcTag] =\ntypedArrayTags[mapTag] = typedArrayTags[numberTag] =\ntypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\ntypedArrayTags[setTag] = typedArrayTags[stringTag] =\ntypedArrayTags[weakMapTag] = false;\n\n/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\n/** Detect free variable `exports`. */\nvar freeExports = 'object' == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Detect free variable `process` from Node.js. */\nvar freeProcess = moduleExports && freeGlobal.process;\n\n/** Used to access faster Node.js helpers. */\nvar nodeUtil = (function() {\n try {\n return freeProcess && freeProcess.binding && freeProcess.binding('util');\n } catch (e) {}\n}());\n\n/* Node.js helper references. */\nvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n/**\n * A faster alternative to `Function#apply`, this function invokes `func`\n * with the `this` binding of `thisArg` and the arguments of `args`.\n *\n * @private\n * @param {Function} func The function to invoke.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} args The arguments to invoke `func` with.\n * @returns {*} Returns the result of `func`.\n */\nfunction apply(func, thisArg, args) {\n switch (args.length) {\n case 0: return func.call(thisArg);\n case 1: return func.call(thisArg, args[0]);\n case 2: return func.call(thisArg, args[0], args[1]);\n case 3: return func.call(thisArg, args[0], args[1], args[2]);\n }\n return func.apply(thisArg, args);\n}\n\n/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n}\n\n/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\nfunction baseUnary(func) {\n return function(value) {\n return func(value);\n };\n}\n\n/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\n/**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\nfunction overArg(func, transform) {\n return function(arg) {\n return func(transform(arg));\n };\n}\n\n/**\n * Gets the value at `key`, unless `key` is \"__proto__\".\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction safeGet(object, key) {\n return key == '__proto__'\n ? undefined\n : object[key];\n}\n\n/** Used for built-in method references. */\nvar arrayProto = Array.prototype,\n funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to detect overreaching core-js shims. */\nvar coreJsData = root['__core-js_shared__'];\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to detect methods masquerading as native. */\nvar maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n}());\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Used to infer the `Object` constructor. */\nvar objectCtorString = funcToString.call(Object);\n\n/** Used to detect if a method is native. */\nvar reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n);\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined,\n Symbol = root.Symbol,\n Uint8Array = root.Uint8Array,\n allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined,\n getPrototype = overArg(Object.getPrototypeOf, Object),\n objectCreate = Object.create,\n propertyIsEnumerable = objectProto.propertyIsEnumerable,\n splice = arrayProto.splice,\n symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\nvar defineProperty = (function() {\n try {\n var func = getNative(Object, 'defineProperty');\n func({}, '', {});\n return func;\n } catch (e) {}\n}());\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined,\n nativeMax = Math.max,\n nativeNow = Date.now;\n\n/* Built-in method references that are verified to be native. */\nvar Map = getNative(root, 'Map'),\n nativeCreate = getNative(Object, 'create');\n\n/**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\nvar baseCreate = (function() {\n function object() {}\n return function(proto) {\n if (!isObject(proto)) {\n return {};\n }\n if (objectCreate) {\n return objectCreate(proto);\n }\n object.prototype = proto;\n var result = new object;\n object.prototype = undefined;\n return result;\n };\n}());\n\n/**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\nfunction hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\n\n/**\n * Gets the hash value for `key`.\n *\n * @private\n * @name get\n * @memberOf Hash\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction hashGet(key) {\n var data = this.__data__;\n if (nativeCreate) {\n var result = data[key];\n return result === HASH_UNDEFINED ? undefined : result;\n }\n return hasOwnProperty.call(data, key) ? data[key] : undefined;\n}\n\n/**\n * Checks if a hash value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Hash\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction hashHas(key) {\n var data = this.__data__;\n return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n}\n\n/**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\nfunction hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n}\n\n// Add methods to `Hash`.\nHash.prototype.clear = hashClear;\nHash.prototype['delete'] = hashDelete;\nHash.prototype.get = hashGet;\nHash.prototype.has = hashHas;\nHash.prototype.set = hashSet;\n\n/**\n * Creates an list cache object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction ListCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\nfunction listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the list cache.\n *\n * @private\n * @name delete\n * @memberOf ListCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction listCacheDelete(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n return false;\n }\n var lastIndex = data.length - 1;\n if (index == lastIndex) {\n data.pop();\n } else {\n splice.call(data, index, 1);\n }\n --this.size;\n return true;\n}\n\n/**\n * Gets the list cache value for `key`.\n *\n * @private\n * @name get\n * @memberOf ListCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction listCacheGet(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n return index < 0 ? undefined : data[index][1];\n}\n\n/**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n}\n\n/**\n * Sets the list cache `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf ListCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the list cache instance.\n */\nfunction listCacheSet(key, value) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n ++this.size;\n data.push([key, value]);\n } else {\n data[index][1] = value;\n }\n return this;\n}\n\n// Add methods to `ListCache`.\nListCache.prototype.clear = listCacheClear;\nListCache.prototype['delete'] = listCacheDelete;\nListCache.prototype.get = listCacheGet;\nListCache.prototype.has = listCacheHas;\nListCache.prototype.set = listCacheSet;\n\n/**\n * Creates a map cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction MapCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the map.\n *\n * @private\n * @name clear\n * @memberOf MapCache\n */\nfunction mapCacheClear() {\n this.size = 0;\n this.__data__ = {\n 'hash': new Hash,\n 'map': new (Map || ListCache),\n 'string': new Hash\n };\n}\n\n/**\n * Removes `key` and its value from the map.\n *\n * @private\n * @name delete\n * @memberOf MapCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction mapCacheDelete(key) {\n var result = getMapData(this, key)['delete'](key);\n this.size -= result ? 1 : 0;\n return result;\n}\n\n/**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction mapCacheGet(key) {\n return getMapData(this, key).get(key);\n}\n\n/**\n * Checks if a map value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf MapCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction mapCacheHas(key) {\n return getMapData(this, key).has(key);\n}\n\n/**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\nfunction mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n}\n\n// Add methods to `MapCache`.\nMapCache.prototype.clear = mapCacheClear;\nMapCache.prototype['delete'] = mapCacheDelete;\nMapCache.prototype.get = mapCacheGet;\nMapCache.prototype.has = mapCacheHas;\nMapCache.prototype.set = mapCacheSet;\n\n/**\n * Creates a stack cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Stack(entries) {\n var data = this.__data__ = new ListCache(entries);\n this.size = data.size;\n}\n\n/**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\nfunction stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n}\n\n/**\n * Gets the stack value for `key`.\n *\n * @private\n * @name get\n * @memberOf Stack\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction stackGet(key) {\n return this.__data__.get(key);\n}\n\n/**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction stackHas(key) {\n return this.__data__.has(key);\n}\n\n/**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\nfunction stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n}\n\n// Add methods to `Stack`.\nStack.prototype.clear = stackClear;\nStack.prototype['delete'] = stackDelete;\nStack.prototype.get = stackGet;\nStack.prototype.has = stackHas;\nStack.prototype.set = stackSet;\n\n/**\n * Creates an array of the enumerable property names of the array-like `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @param {boolean} inherited Specify returning inherited property names.\n * @returns {Array} Returns the array of property names.\n */\nfunction arrayLikeKeys(value, inherited) {\n var isArr = isArray(value),\n isArg = !isArr && isArguments(value),\n isBuff = !isArr && !isArg && isBuffer(value),\n isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n skipIndexes = isArr || isArg || isBuff || isType,\n result = skipIndexes ? baseTimes(value.length, String) : [],\n length = result.length;\n\n for (var key in value) {\n if ((inherited || hasOwnProperty.call(value, key)) &&\n !(skipIndexes && (\n // Safari 9 has enumerable `arguments.length` in strict mode.\n key == 'length' ||\n // Node.js 0.10 has enumerable non-index properties on buffers.\n (isBuff && (key == 'offset' || key == 'parent')) ||\n // PhantomJS 2 has enumerable non-index properties on typed arrays.\n (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n // Skip index properties.\n isIndex(key, length)\n ))) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * This function is like `assignValue` except that it doesn't assign\n * `undefined` values.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignMergeValue(object, key, value) {\n if ((value !== undefined && !eq(object[key], value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\n/**\n * Assigns `value` to `key` of `object` if the existing value is not equivalent\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignValue(object, key, value) {\n var objValue = object[key];\n if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\n/**\n * Gets the index at which the `key` is found in `array` of key-value pairs.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} key The key to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction assocIndexOf(array, key) {\n var length = array.length;\n while (length--) {\n if (eq(array[length][0], key)) {\n return length;\n }\n }\n return -1;\n}\n\n/**\n * The base implementation of `assignValue` and `assignMergeValue` without\n * value checks.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction baseAssignValue(object, key, value) {\n if (key == '__proto__' && defineProperty) {\n defineProperty(object, key, {\n 'configurable': true,\n 'enumerable': true,\n 'value': value,\n 'writable': true\n });\n } else {\n object[key] = value;\n }\n}\n\n/**\n * The base implementation of `baseForOwn` which iterates over `object`\n * properties returned by `keysFunc` and invokes `iteratee` for each property.\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\nvar baseFor = createBaseFor();\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\n/**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\nfunction baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n}\n\n/**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\nfunction baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n}\n\n/**\n * The base implementation of `_.isTypedArray` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n */\nfunction baseIsTypedArray(value) {\n return isObjectLike(value) &&\n isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n}\n\n/**\n * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeysIn(object) {\n if (!isObject(object)) {\n return nativeKeysIn(object);\n }\n var isProto = isPrototype(object),\n result = [];\n\n for (var key in object) {\n if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * The base implementation of `_.merge` without support for multiple sources.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} [customizer] The function to customize merged values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\nfunction baseMerge(object, source, srcIndex, customizer, stack) {\n if (object === source) {\n return;\n }\n baseFor(source, function(srcValue, key) {\n if (isObject(srcValue)) {\n stack || (stack = new Stack);\n baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\n }\n else {\n var newValue = customizer\n ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)\n : undefined;\n\n if (newValue === undefined) {\n newValue = srcValue;\n }\n assignMergeValue(object, key, newValue);\n }\n }, keysIn);\n}\n\n/**\n * A specialized version of `baseMerge` for arrays and objects which performs\n * deep merges and tracks traversed objects enabling objects with circular\n * references to be merged.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {string} key The key of the value to merge.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} mergeFunc The function to merge values.\n * @param {Function} [customizer] The function to customize assigned values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\nfunction baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\n var objValue = safeGet(object, key),\n srcValue = safeGet(source, key),\n stacked = stack.get(srcValue);\n\n if (stacked) {\n assignMergeValue(object, key, stacked);\n return;\n }\n var newValue = customizer\n ? customizer(objValue, srcValue, (key + ''), object, source, stack)\n : undefined;\n\n var isCommon = newValue === undefined;\n\n if (isCommon) {\n var isArr = isArray(srcValue),\n isBuff = !isArr && isBuffer(srcValue),\n isTyped = !isArr && !isBuff && isTypedArray(srcValue);\n\n newValue = srcValue;\n if (isArr || isBuff || isTyped) {\n if (isArray(objValue)) {\n newValue = objValue;\n }\n else if (isArrayLikeObject(objValue)) {\n newValue = copyArray(objValue);\n }\n else if (isBuff) {\n isCommon = false;\n newValue = cloneBuffer(srcValue, true);\n }\n else if (isTyped) {\n isCommon = false;\n newValue = cloneTypedArray(srcValue, true);\n }\n else {\n newValue = [];\n }\n }\n else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n newValue = objValue;\n if (isArguments(objValue)) {\n newValue = toPlainObject(objValue);\n }\n else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {\n newValue = initCloneObject(srcValue);\n }\n }\n else {\n isCommon = false;\n }\n }\n if (isCommon) {\n // Recursively merge objects and arrays (susceptible to call stack limits).\n stack.set(srcValue, newValue);\n mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\n stack['delete'](srcValue);\n }\n assignMergeValue(object, key, newValue);\n}\n\n/**\n * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @returns {Function} Returns the new function.\n */\nfunction baseRest(func, start) {\n return setToString(overRest(func, start, identity), func + '');\n}\n\n/**\n * The base implementation of `setToString` without support for hot loop shorting.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar baseSetToString = !defineProperty ? identity : function(func, string) {\n return defineProperty(func, 'toString', {\n 'configurable': true,\n 'enumerable': false,\n 'value': constant(string),\n 'writable': true\n });\n};\n\n/**\n * Creates a clone of `buffer`.\n *\n * @private\n * @param {Buffer} buffer The buffer to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Buffer} Returns the cloned buffer.\n */\nfunction cloneBuffer(buffer, isDeep) {\n if (isDeep) {\n return buffer.slice();\n }\n var length = buffer.length,\n result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n buffer.copy(result);\n return result;\n}\n\n/**\n * Creates a clone of `arrayBuffer`.\n *\n * @private\n * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\nfunction cloneArrayBuffer(arrayBuffer) {\n var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n return result;\n}\n\n/**\n * Creates a clone of `typedArray`.\n *\n * @private\n * @param {Object} typedArray The typed array to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned typed array.\n */\nfunction cloneTypedArray(typedArray, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n}\n\n/**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\nfunction copyArray(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n}\n\n/**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property identifiers to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @param {Function} [customizer] The function to customize copied values.\n * @returns {Object} Returns `object`.\n */\nfunction copyObject(source, props, object, customizer) {\n var isNew = !object;\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n\n var newValue = customizer\n ? customizer(object[key], source[key], key, object, source)\n : undefined;\n\n if (newValue === undefined) {\n newValue = source[key];\n }\n if (isNew) {\n baseAssignValue(object, key, newValue);\n } else {\n assignValue(object, key, newValue);\n }\n }\n return object;\n}\n\n/**\n * Creates a function like `_.assign`.\n *\n * @private\n * @param {Function} assigner The function to assign values.\n * @returns {Function} Returns the new assigner function.\n */\nfunction createAssigner(assigner) {\n return baseRest(function(object, sources) {\n var index = -1,\n length = sources.length,\n customizer = length > 1 ? sources[length - 1] : undefined,\n guard = length > 2 ? sources[2] : undefined;\n\n customizer = (assigner.length > 3 && typeof customizer == 'function')\n ? (length--, customizer)\n : undefined;\n\n if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n customizer = length < 3 ? undefined : customizer;\n length = 1;\n }\n object = Object(object);\n while (++index < length) {\n var source = sources[index];\n if (source) {\n assigner(object, source, index, customizer);\n }\n }\n return object;\n });\n}\n\n/**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n}\n\n/**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\nfunction getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n}\n\n/**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\nfunction getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n}\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\n/**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\nfunction initCloneObject(object) {\n return (typeof object.constructor == 'function' && !isPrototype(object))\n ? baseCreate(getPrototype(object))\n : {};\n}\n\n/**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\nfunction isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n}\n\n/**\n * Checks if the given arguments are from an iteratee call.\n *\n * @private\n * @param {*} value The potential iteratee value argument.\n * @param {*} index The potential iteratee index or key argument.\n * @param {*} object The potential iteratee object argument.\n * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n * else `false`.\n */\nfunction isIterateeCall(value, index, object) {\n if (!isObject(object)) {\n return false;\n }\n var type = typeof index;\n if (type == 'number'\n ? (isArrayLike(object) && isIndex(index, object.length))\n : (type == 'string' && index in object)\n ) {\n return eq(object[index], value);\n }\n return false;\n}\n\n/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\nfunction isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n}\n\n/**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\nfunction isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n}\n\n/**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\nfunction isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n}\n\n/**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction nativeKeysIn(object) {\n var result = [];\n if (object != null) {\n for (var key in Object(object)) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\n/**\n * A specialized version of `baseRest` which transforms the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @param {Function} transform The rest array transform.\n * @returns {Function} Returns the new function.\n */\nfunction overRest(func, start, transform) {\n start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n array = Array(length);\n\n while (++index < length) {\n array[index] = args[start + index];\n }\n index = -1;\n var otherArgs = Array(start + 1);\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = transform(array);\n return apply(func, this, otherArgs);\n };\n}\n\n/**\n * Sets the `toString` method of `func` to return `string`.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar setToString = shortOut(baseSetToString);\n\n/**\n * Creates a function that'll short out and invoke `identity` instead\n * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n * milliseconds.\n *\n * @private\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new shortable function.\n */\nfunction shortOut(func) {\n var count = 0,\n lastCalled = 0;\n\n return function() {\n var stamp = nativeNow(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return arguments[0];\n }\n } else {\n count = 0;\n }\n return func.apply(undefined, arguments);\n };\n}\n\n/**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\nfunction toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n}\n\n/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\nfunction eq(value, other) {\n return value === other || (value !== value && other !== other);\n}\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\n/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\n/**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\nfunction isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n}\n\n/**\n * This method is like `_.isArrayLike` except that it also checks if `value`\n * is an object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array-like object,\n * else `false`.\n * @example\n *\n * _.isArrayLikeObject([1, 2, 3]);\n * // => true\n *\n * _.isArrayLikeObject(document.body.children);\n * // => true\n *\n * _.isArrayLikeObject('abc');\n * // => false\n *\n * _.isArrayLikeObject(_.noop);\n * // => false\n */\nfunction isArrayLikeObject(value) {\n return isObjectLike(value) && isArrayLike(value);\n}\n\n/**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\nvar isBuffer = nativeIsBuffer || stubFalse;\n\n/**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\nfunction isFunction(value) {\n if (!isObject(value)) {\n return false;\n }\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in Safari 9 which returns 'object' for typed arrays and other constructors.\n var tag = baseGetTag(value);\n return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n}\n\n/**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\nfunction isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n}\n\n/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\n/**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * @static\n * @memberOf _\n * @since 0.8.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\nfunction isPlainObject(value) {\n if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n return false;\n }\n var proto = getPrototype(value);\n if (proto === null) {\n return true;\n }\n var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n funcToString.call(Ctor) == objectCtorString;\n}\n\n/**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\nvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n/**\n * Converts `value` to a plain object flattening inherited enumerable string\n * keyed properties of `value` to own properties of the plain object.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Object} Returns the converted plain object.\n * @example\n *\n * function Foo() {\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.assign({ 'a': 1 }, new Foo);\n * // => { 'a': 1, 'b': 2 }\n *\n * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n * // => { 'a': 1, 'b': 2, 'c': 3 }\n */\nfunction toPlainObject(value) {\n return copyObject(value, keysIn(value));\n}\n\n/**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\nfunction keysIn(object) {\n return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n}\n\n/**\n * This method is like `_.assign` except that it recursively merges own and\n * inherited enumerable string keyed properties of source objects into the\n * destination object. Source properties that resolve to `undefined` are\n * skipped if a destination value exists. Array and plain object properties\n * are merged recursively. Other objects and value types are overridden by\n * assignment. Source objects are applied from left to right. Subsequent\n * sources overwrite property assignments of previous sources.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 0.5.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {\n * 'a': [{ 'b': 2 }, { 'd': 4 }]\n * };\n *\n * var other = {\n * 'a': [{ 'c': 3 }, { 'e': 5 }]\n * };\n *\n * _.merge(object, other);\n * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }\n */\nvar merge = createAssigner(function(object, source, srcIndex) {\n baseMerge(object, source, srcIndex);\n});\n\n/**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Util\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new constant function.\n * @example\n *\n * var objects = _.times(2, _.constant({ 'a': 1 }));\n *\n * console.log(objects);\n * // => [{ 'a': 1 }, { 'a': 1 }]\n *\n * console.log(objects[0] === objects[1]);\n * // => true\n */\nfunction constant(value) {\n return function() {\n return value;\n };\n}\n\n/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\n/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\nfunction stubFalse() {\n return false;\n}\n\nmodule.exports = merge;\n});\n\nfunction install(Vue) {\n\tvar options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\tif (install.installed) return;\n\tinstall.installed = true;\n\n\tvar finalOptions = {};\n\tlodash_merge(finalOptions, defaultOptions, options);\n\n\tplugin.options = finalOptions;\n\tdirective.options = finalOptions;\n\n\tVue.directive('tooltip', directive);\n\tVue.directive('close-popover', vclosepopover);\n\tVue.component('v-popover', Popover);\n}\n\nvar VTooltip = directive;\nvar VClosePopover = vclosepopover;\nvar VPopover = Popover;\n\nvar plugin = {\n\tinstall: install,\n\n\tget enabled() {\n\t\treturn state.enabled;\n\t},\n\n\tset enabled(value) {\n\t\tstate.enabled = value;\n\t}\n};\n\n// Auto-install\nvar GlobalVue = null;\nif (typeof window !== 'undefined') {\n\tGlobalVue = window.Vue;\n} else if (typeof global !== 'undefined') {\n\tGlobalVue = global.Vue;\n}\nif (GlobalVue) {\n\tGlobalVue.use(plugin);\n}\n\nexport { install, VTooltip, VClosePopover, VPopover, createTooltip, destroyTooltip };\nexport default plugin;\n","!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.VueInfiniteLoading=t():e.VueInfiniteLoading=t()}(\"undefined\"!=typeof self?self:this,function(){return function(e){function t(n){if(i[n])return i[n].exports;var a=i[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,n){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,\"a\",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p=\"/\",t(t.s=3)}([function(e,t){function i(e,t){var i=e[1]||\"\",a=e[3];if(!a)return i;if(t&&\"function\"==typeof btoa){var r=n(a);return[i].concat(a.sources.map(function(e){return\"/*# sourceURL=\"+a.sourceRoot+e+\" */\"})).concat([r]).join(\"\\n\")}return[i].join(\"\\n\")}function n(e){return\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+\" */\"}e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n=i(t,e);return t[2]?\"@media \"+t[2]+\"{\"+n+\"}\":n}).join(\"\")},t.i=function(e,i){\"string\"==typeof e&&(e=[[null,e,\"\"]]);for(var n={},a=0;a<this.length;a++){var r=this[a][0];\"number\"==typeof r&&(n[r]=!0)}for(a=0;a<e.length;a++){var o=e[a];\"number\"==typeof o[0]&&n[o[0]]||(i&&!o[2]?o[2]=i:i&&(o[2]=\"(\"+o[2]+\") and (\"+i+\")\"),t.push(o))}},t}},function(e,t,i){function n(e){for(var t=0;t<e.length;t++){var i=e[t],n=f[i.id];if(n){n.refs++;for(var a=0;a<n.parts.length;a++)n.parts[a](i.parts[a]);for(;a<i.parts.length;a++)n.parts.push(r(i.parts[a]));n.parts.length>i.parts.length&&(n.parts.length=i.parts.length)}else{for(var o=[],a=0;a<i.parts.length;a++)o.push(r(i.parts[a]));f[i.id]={id:i.id,refs:1,parts:o}}}}function a(){var e=document.createElement(\"style\");return e.type=\"text/css\",c.appendChild(e),e}function r(e){var t,i,n=document.querySelector('style[data-vue-ssr-id~=\"'+e.id+'\"]');if(n){if(m)return h;n.parentNode.removeChild(n)}if(b){var r=p++;n=u||(u=a()),t=o.bind(null,n,r,!1),i=o.bind(null,n,r,!0)}else n=a(),t=s.bind(null,n),i=function(){n.parentNode.removeChild(n)};return t(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;t(e=n)}else i()}}function o(e,t,i,n){var a=i?\"\":n.css;if(e.styleSheet)e.styleSheet.cssText=g(t,a);else{var r=document.createTextNode(a),o=e.childNodes;o[t]&&e.removeChild(o[t]),o.length?e.insertBefore(r,o[t]):e.appendChild(r)}}function s(e,t){var i=t.css,n=t.media,a=t.sourceMap;if(n&&e.setAttribute(\"media\",n),a&&(i+=\"\\n/*# sourceURL=\"+a.sources[0]+\" */\",i+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(a))))+\" */\"),e.styleSheet)e.styleSheet.cssText=i;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(i))}}var l=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!l)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var d=i(7),f={},c=l&&(document.head||document.getElementsByTagName(\"head\")[0]),u=null,p=0,m=!1,h=function(){},b=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());e.exports=function(e,t,i){m=i;var a=d(e,t);return n(a),function(t){for(var i=[],r=0;r<a.length;r++){var o=a[r],s=f[o.id];s.refs--,i.push(s)}t?(a=d(e,t),n(a)):a=[];for(var r=0;r<i.length;r++){var s=i[r];if(0===s.refs){for(var l=0;l<s.parts.length;l++)s.parts[l]();delete f[s.id]}}}};var g=function(){var e=[];return function(t,i){return e[t]=i,e.filter(Boolean).join(\"\\n\")}}()},function(e,t){e.exports=function(e,t,i,n,a,r){var o,s=e=e||{},l=typeof e.default;\"object\"!==l&&\"function\"!==l||(o=e,s=e.default);var d=\"function\"==typeof s?s.options:s;t&&(d.render=t.render,d.staticRenderFns=t.staticRenderFns,d._compiled=!0),i&&(d.functional=!0),a&&(d._scopeId=a);var f;if(r?(f=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},d._ssrRegister=f):n&&(f=n),f){var c=d.functional,u=c?d.render:d.beforeCreate;c?(d._injectStyles=f,d.render=function(e,t){return f.call(t),u(e,t)}):d.beforeCreate=u?[].concat(u,f):[f]}return{esModule:o,exports:s,options:d}}},function(e,t,i){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=i(4);t.default=n.a,\"undefined\"!=typeof window&&window.Vue&&window.Vue.component(\"infinite-loading\",n.a)},function(e,t,i){\"use strict\";function n(e){i(5)}var a=i(8),r=i(14),o=i(2),s=n,l=o(a.a,r.a,!1,s,\"data-v-fb2c869e\",null);t.a=l.exports},function(e,t,i){var n=i(6);\"string\"==typeof n&&(n=[[e.i,n,\"\"]]),n.locals&&(e.exports=n.locals);i(1)(\"2249d7a7\",n,!0)},function(e,t,i){t=e.exports=i(0)(void 0),t.push([e.i,\".infinite-loading-container[data-v-fb2c869e]{clear:both;text-align:center}.infinite-loading-container[data-v-fb2c869e] [class^=loading-]{display:inline-block;margin:15px 0;width:28px;height:28px;font-size:28px;line-height:28px;border-radius:50%}.infinite-status-prompt[data-v-fb2c869e]{color:#666;font-size:14px;text-align:center;padding:10px 0}\",\"\"])},function(e,t){e.exports=function(e,t){for(var i=[],n={},a=0;a<t.length;a++){var r=t[a],o=r[0],s=r[1],l=r[2],d=r[3],f={id:e+\":\"+a,css:s,media:l,sourceMap:d};n[o]?n[o].parts.push(f):i.push(n[o]={id:o,parts:[f]})}return i}},function(e,t,i){\"use strict\";var n=i(9),a={STATE_CHANGER:[\"[Vue-infinite-loading warn]: emit `loaded` and `complete` event through component instance of `$refs` may cause error, so it will be deprecated soon, please use the `$state` argument instead (`$state` just the special `$event` variable):\",\"\\ntemplate:\",'<infinite-loading @infinite=\"infiniteHandler\"></infinite-loading>',\"\\nscript:\\n...\\ninfiniteHandler($state) {\\n ajax('https://www.example.com/api/news')\\n .then((res) => {\\n if (res.data.length) {\\n $state.loaded();\\n } else {\\n $state.complete();\\n }\\n });\\n}\\n...\",\"\",\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/57#issuecomment-324370549\"].join(\"\\n\"),INFINITE_EVENT:\"[Vue-infinite-loading warn]: `:on-infinite` property will be deprecated soon, please use `@infinite` event instead.\"},r={INFINITE_LOOP:[\"[Vue-infinite-loading error]: executed the callback function more than 10 times for a short time, it looks like searched a wrong scroll wrapper that doest not has fixed height or maximum height, please check it. If you want to force to set a element as scroll wrapper ranther than automatic searching, you can do this:\",'\\n\\x3c!-- add a special attribute for the real scroll wrapper --\\x3e\\n<div infinite-wrapper>\\n ...\\n \\x3c!-- set force-use-infinite-wrapper to true --\\x3e\\n <infinite-loading force-use-infinite-wrapper=\"true\"></infinite-loading>\\n</div>\\n ',\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/55#issuecomment-316934169\"].join(\"\\n\")};t.a={name:\"InfiniteLoading\",data:function(){return{scrollParent:null,scrollHandler:null,isLoading:!1,isComplete:!1,isFirstLoad:!0,debounceTimer:null,debounceDuration:50,infiniteLoopChecked:!1,infiniteLoopTimer:null,continuousCallTimes:0}},components:{Spinner:n.a},computed:{isNoResults:{cache:!1,get:function(){var e=this.$slots[\"no-results\"],t=e&&e[0].elm&&\"\"===e[0].elm.textContent;return!this.isLoading&&this.isComplete&&this.isFirstLoad&&!t}},isNoMore:{cache:!1,get:function(){var e=this.$slots[\"no-more\"],t=e&&e[0].elm&&\"\"===e[0].elm.textContent;return!this.isLoading&&this.isComplete&&!this.isFirstLoad&&!t}}},props:{distance:{type:Number,default:100},onInfinite:Function,spinner:String,direction:{type:String,default:\"bottom\"},forceUseInfiniteWrapper:null},mounted:function(){var e=this;this.scrollParent=this.getScrollParent(),this.scrollHandler=function(e){this.isLoading||(clearTimeout(this.debounceTimer),e&&e.constructor===Event?this.debounceTimer=setTimeout(this.attemptLoad,this.debounceDuration):this.attemptLoad())}.bind(this),setTimeout(this.scrollHandler,1),this.scrollParent.addEventListener(\"scroll\",this.scrollHandler),this.$on(\"$InfiniteLoading:loaded\",function(t){e.isFirstLoad=!1,e.isLoading&&e.$nextTick(e.attemptLoad.bind(null,!0)),t&&t.target===e||console.warn(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:complete\",function(t){e.isLoading=!1,e.isComplete=!0,e.$nextTick(function(){e.$forceUpdate()}),e.scrollParent.removeEventListener(\"scroll\",e.scrollHandler),t&&t.target===e||console.warn(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:reset\",function(){e.isLoading=!1,e.isComplete=!1,e.isFirstLoad=!0,e.scrollParent.addEventListener(\"scroll\",e.scrollHandler),setTimeout(e.scrollHandler,1)}),this.onInfinite&&console.warn(a.INFINITE_EVENT),this.stateChanger={loaded:function(){e.$emit(\"$InfiniteLoading:loaded\",{target:e})},complete:function(){e.$emit(\"$InfiniteLoading:complete\",{target:e})},reset:function(){e.$emit(\"$InfiniteLoading:reset\",{target:e})}},this.$watch(\"forceUseInfiniteWrapper\",function(){e.scrollParent=e.getScrollParent()})},deactivated:function(){this.isLoading=!1,this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler)},activated:function(){this.scrollParent.addEventListener(\"scroll\",this.scrollHandler)},methods:{attemptLoad:function(e){var t=this,i=this.getCurrentDistance();!this.isComplete&&i<=this.distance&&this.$el.offsetWidth+this.$el.offsetHeight>0?(this.isLoading=!0,\"function\"==typeof this.onInfinite?this.onInfinite.call(null,this.stateChanger):this.$emit(\"infinite\",this.stateChanger),!e||this.forceUseInfiniteWrapper||this.infiniteLoopChecked||(this.continuousCallTimes+=1,clearTimeout(this.infiniteLoopTimer),this.infiniteLoopTimer=setTimeout(function(){t.infiniteLoopChecked=!0},1e3),this.continuousCallTimes>10&&(console.error(r.INFINITE_LOOP),this.infiniteLoopChecked=!0))):this.isLoading=!1},getCurrentDistance:function(){var e=void 0;if(\"top\"===this.direction)e=isNaN(this.scrollParent.scrollTop)?this.scrollParent.pageYOffset:this.scrollParent.scrollTop;else{e=this.$el.getBoundingClientRect().top-(this.scrollParent===window?window.innerHeight:this.scrollParent.getBoundingClientRect().bottom)}return e},getScrollParent:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.$el,t=void 0;return\"BODY\"===e.tagName?t=window:!this.forceUseInfiniteWrapper&&[\"scroll\",\"auto\"].indexOf(getComputedStyle(e).overflowY)>-1?t=e:(e.hasAttribute(\"infinite-wrapper\")||e.hasAttribute(\"data-infinite-wrapper\"))&&(t=e),t||this.getScrollParent(e.parentNode)}},destroyed:function(){this.isComplete||this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler)}}},function(e,t,i){\"use strict\";function n(e){i(10)}var a=i(12),r=i(13),o=i(2),s=n,l=o(a.a,r.a,!1,s,\"data-v-6e1fd88f\",null);t.a=l.exports},function(e,t,i){var n=i(11);\"string\"==typeof n&&(n=[[e.i,n,\"\"]]),n.locals&&(e.exports=n.locals);i(1)(\"29881045\",n,!0)},function(e,t,i){t=e.exports=i(0)(void 0),t.push([e.i,'.loading-wave-dots[data-v-6e1fd88f]{position:relative}.loading-wave-dots[data-v-6e1fd88f] .wave-item{position:absolute;top:50%;left:50%;display:inline-block;margin-top:-4px;width:8px;height:8px;border-radius:50%;-webkit-animation:loading-wave-dots-data-v-6e1fd88f linear 2.8s infinite;animation:loading-wave-dots-data-v-6e1fd88f linear 2.8s infinite}.loading-wave-dots[data-v-6e1fd88f] .wave-item:first-child{margin-left:-36px}.loading-wave-dots[data-v-6e1fd88f] .wave-item:nth-child(2){margin-left:-20px;-webkit-animation-delay:.14s;animation-delay:.14s}.loading-wave-dots[data-v-6e1fd88f] .wave-item:nth-child(3){margin-left:-4px;-webkit-animation-delay:.28s;animation-delay:.28s}.loading-wave-dots[data-v-6e1fd88f] .wave-item:nth-child(4){margin-left:12px;-webkit-animation-delay:.42s;animation-delay:.42s}.loading-wave-dots[data-v-6e1fd88f] .wave-item:last-child{margin-left:28px;-webkit-animation-delay:.56s;animation-delay:.56s}@-webkit-keyframes loading-wave-dots-data-v-6e1fd88f{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}@keyframes loading-wave-dots-data-v-6e1fd88f{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}.loading-circles[data-v-6e1fd88f] .circle-item{width:5px;height:5px;-webkit-animation:loading-circles-data-v-6e1fd88f linear .75s infinite;animation:loading-circles-data-v-6e1fd88f linear .75s infinite}.loading-circles[data-v-6e1fd88f] .circle-item:first-child{margin-top:-14.5px;margin-left:-2.5px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(2){margin-top:-11.26px;margin-left:6.26px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(3){margin-top:-2.5px;margin-left:9.5px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(4){margin-top:6.26px;margin-left:6.26px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(5){margin-top:9.5px;margin-left:-2.5px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(6){margin-top:6.26px;margin-left:-11.26px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(7){margin-top:-2.5px;margin-left:-14.5px}.loading-circles[data-v-6e1fd88f] .circle-item:last-child{margin-top:-11.26px;margin-left:-11.26px}@-webkit-keyframes loading-circles-data-v-6e1fd88f{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}@keyframes loading-circles-data-v-6e1fd88f{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}.loading-bubbles[data-v-6e1fd88f] .bubble-item{background:#666;-webkit-animation:loading-bubbles-data-v-6e1fd88f linear .75s infinite;animation:loading-bubbles-data-v-6e1fd88f linear .75s infinite}.loading-bubbles[data-v-6e1fd88f] .bubble-item:first-child{margin-top:-12.5px;margin-left:-.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(2){margin-top:-9.26px;margin-left:8.26px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(3){margin-top:-.5px;margin-left:11.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(4){margin-top:8.26px;margin-left:8.26px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(5){margin-top:11.5px;margin-left:-.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(6){margin-top:8.26px;margin-left:-9.26px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(7){margin-top:-.5px;margin-left:-12.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:last-child{margin-top:-9.26px;margin-left:-9.26px}@-webkit-keyframes loading-bubbles-data-v-6e1fd88f{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}@keyframes loading-bubbles-data-v-6e1fd88f{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}.loading-default[data-v-6e1fd88f]{position:relative;border:1px solid #999;-webkit-animation:loading-rotating-data-v-6e1fd88f ease 1.5s infinite;animation:loading-rotating-data-v-6e1fd88f ease 1.5s infinite}.loading-default[data-v-6e1fd88f]:before{content:\"\";position:absolute;display:block;top:0;left:50%;margin-top:-3px;margin-left:-3px;width:6px;height:6px;background-color:#999;border-radius:50%}.loading-spiral[data-v-6e1fd88f]{border:2px solid #777;border-right-color:transparent;-webkit-animation:loading-rotating-data-v-6e1fd88f linear .85s infinite;animation:loading-rotating-data-v-6e1fd88f linear .85s infinite}@-webkit-keyframes loading-rotating-data-v-6e1fd88f{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loading-rotating-data-v-6e1fd88f{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loading-bubbles[data-v-6e1fd88f],.loading-circles[data-v-6e1fd88f]{position:relative}.loading-bubbles[data-v-6e1fd88f] .bubble-item,.loading-circles[data-v-6e1fd88f] .circle-item{position:absolute;top:50%;left:50%;display:inline-block;border-radius:50%}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(2),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(2){-webkit-animation-delay:93ms;animation-delay:93ms}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(3),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(3){-webkit-animation-delay:.186s;animation-delay:.186s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(4),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(4){-webkit-animation-delay:.279s;animation-delay:.279s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(5),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(5){-webkit-animation-delay:.372s;animation-delay:.372s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(6),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(6){-webkit-animation-delay:.465s;animation-delay:.465s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(7),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(7){-webkit-animation-delay:.558s;animation-delay:.558s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:last-child,.loading-circles[data-v-6e1fd88f] .circle-item:last-child{-webkit-animation-delay:.651s;animation-delay:.651s}',\"\"])},function(e,t,i){\"use strict\";var n={BUBBLES:{render:function(e){return e(\"span\",{attrs:{class:\"loading-bubbles\"}},Array.apply(Array,Array(8)).map(function(){return e(\"span\",{attrs:{class:\"bubble-item\"}})}))}},CIRCLES:{render:function(e){return e(\"span\",{attrs:{class:\"loading-circles\"}},Array.apply(Array,Array(8)).map(function(){return e(\"span\",{attrs:{class:\"circle-item\"}})}))}},DEFAULT:{render:function(e){return e(\"i\",{attrs:{class:\"loading-default\"}})}},SPIRAL:{render:function(e){return e(\"i\",{attrs:{class:\"loading-spiral\"}})}},WAVEDOTS:{render:function(e){return e(\"span\",{attrs:{class:\"loading-wave-dots\"}},Array.apply(Array,Array(5)).map(function(){return e(\"span\",{attrs:{class:\"wave-item\"}})}))}}};t.a={name:\"spinner\",computed:{spinnerView:function(){return n[(this.spinner||\"\").toUpperCase()]||n.DEFAULT}},props:{spinner:String}}},function(e,t,i){\"use strict\";var n=function(){var e=this,t=e.$createElement;return(e._self._c||t)(e.spinnerView,{tag:\"component\"})},a=[],r={render:n,staticRenderFns:a};t.a=r},function(e,t,i){\"use strict\";var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i(\"div\",{staticClass:\"infinite-loading-container\"},[i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isLoading,expression:\"isLoading\"}]},[e._t(\"spinner\",[i(\"spinner\",{attrs:{spinner:e.spinner}})])],2),e._v(\" \"),i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isNoResults,expression:\"isNoResults\"}],staticClass:\"infinite-status-prompt\"},[e._t(\"no-results\",[e._v(\"No results :(\")])],2),e._v(\" \"),i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isNoMore,expression:\"isNoMore\"}],staticClass:\"infinite-status-prompt\"},[e._t(\"no-more\",[e._v(\"No more data :)\")])],2)])},a=[],r={render:n,staticRenderFns:a};t.a=r}])});","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(utils.merge(defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","/*!\n * Determine if an object is a Buffer\n *\n * @author Feross Aboukhadijeh <https://feross.org>\n * @license MIT\n */\n\n// The _isBuffer check is for Safari 5-7 support, because it's missing\n// Object.prototype.constructor. Remove this eventually\nmodule.exports = function (obj) {\n return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)\n}\n\nfunction isBuffer (obj) {\n return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)\n}\n\n// For Node v0.10 support. Remove this eventually.\nfunction isSlowBuffer (obj) {\n return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))\n}\n","'use strict';\n\nvar defaults = require('./../defaults');\nvar utils = require('./../utils');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = utils.merge({\n url: arguments[0]\n }, arguments[1]);\n }\n\n config = utils.merge(defaults, {method: 'get'}, this.defaults, config);\n config.method = config.method.toLowerCase();\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n // Note: status is not exposed by XDomainRequest\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n error.request = request;\n error.response = response;\n return error;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%40/gi, '@').\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\n// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js\n\nvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n\nfunction E() {\n this.message = 'String contains an invalid character';\n}\nE.prototype = new Error;\nE.prototype.code = 5;\nE.prototype.name = 'InvalidCharacterError';\n\nfunction btoa(input) {\n var str = String(input);\n var output = '';\n for (\n // initialize result and counter\n var block, charCode, idx = 0, map = chars;\n // if the next str index does not exist:\n // change the mapping table to \"=\"\n // check if d has no fractional digits\n str.charAt(idx | 0) || (map = '=', idx % 1);\n // \"8 - idx % 1 * 8\" generates the sequence 2, 4, 6, 8\n output += map.charAt(63 & block >> 8 - idx % 1 * 8)\n ) {\n charCode = str.charCodeAt(idx += 3 / 4);\n if (charCode > 0xFF) {\n throw new E();\n }\n block = block << 8 | charCode;\n }\n return output;\n}\n\nmodule.exports = btoa;\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\nvar isAbsoluteURL = require('./../helpers/isAbsoluteURL');\nvar combineURLs = require('./../helpers/combineURLs');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Support baseURL config\n if (config.baseURL && !isAbsoluteURL(config.url)) {\n config.url = combineURLs(config.baseURL, config.url);\n }\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers || {}\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","'use strict';\nvar $export = require('./_export');\nvar $typed = require('./_typed');\nvar buffer = require('./_typed-buffer');\nvar anObject = require('./_an-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nvar isObject = require('./_is-object');\nvar ArrayBuffer = require('./_global').ArrayBuffer;\nvar speciesConstructor = require('./_species-constructor');\nvar $ArrayBuffer = buffer.ArrayBuffer;\nvar $DataView = buffer.DataView;\nvar $isView = $typed.ABV && ArrayBuffer.isView;\nvar $slice = $ArrayBuffer.prototype.slice;\nvar VIEW = $typed.VIEW;\nvar ARRAY_BUFFER = 'ArrayBuffer';\n\n$export($export.G + $export.W + $export.F * (ArrayBuffer !== $ArrayBuffer), { ArrayBuffer: $ArrayBuffer });\n\n$export($export.S + $export.F * !$typed.CONSTR, ARRAY_BUFFER, {\n // 24.1.3.1 ArrayBuffer.isView(arg)\n isView: function isView(it) {\n return $isView && $isView(it) || isObject(it) && VIEW in it;\n }\n});\n\n$export($export.P + $export.U + $export.F * require('./_fails')(function () {\n return !new $ArrayBuffer(2).slice(1, undefined).byteLength;\n}), ARRAY_BUFFER, {\n // 24.1.4.3 ArrayBuffer.prototype.slice(start, end)\n slice: function slice(start, end) {\n if ($slice !== undefined && end === undefined) return $slice.call(anObject(this), start); // FF fix\n var len = anObject(this).byteLength;\n var first = toAbsoluteIndex(start, len);\n var final = toAbsoluteIndex(end === undefined ? len : end, len);\n var result = new (speciesConstructor(this, $ArrayBuffer))(toLength(final - first));\n var viewS = new $DataView(this);\n var viewT = new $DataView(result);\n var index = 0;\n while (first < final) {\n viewT.setUint8(index++, viewS.getUint8(first++));\n } return result;\n }\n});\n\nrequire('./_set-species')(ARRAY_BUFFER);\n","require('./_typed-array')('Int8', 1, function (init) {\n return function Int8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\nvar speciesConstructor = require('./_array-species-constructor');\n\nmodule.exports = function (original, length) {\n return new (speciesConstructor(original))(length);\n};\n","var isObject = require('./_is-object');\nvar isArray = require('./_is-array');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (original) {\n var C;\n if (isArray(original)) {\n C = original.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return C === undefined ? Array : C;\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8ClampedArray(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n}, true);\n","require('./_typed-array')('Int16', 2, function (init) {\n return function Int16Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint16', 2, function (init) {\n return function Uint16Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Int32', 4, function (init) {\n return function Int32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint32', 4, function (init) {\n return function Uint32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Float32', 4, function (init) {\n return function Float32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Float64', 8, function (init) {\n return function Float64Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","'use strict';\nvar strong = require('./_collection-strong');\nvar validate = require('./_validate-collection');\nvar MAP = 'Map';\n\n// 23.1 Map Objects\nmodule.exports = require('./_collection')(MAP, function (get) {\n return function Map() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = strong.getEntry(validate(this, MAP), key);\n return entry && entry.v;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return strong.def(validate(this, MAP), key === 0 ? 0 : key, value);\n }\n}, strong, true);\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","'use strict';\nvar strong = require('./_collection-strong');\nvar validate = require('./_validate-collection');\nvar SET = 'Set';\n\n// 23.2 Set Objects\nmodule.exports = require('./_collection')(SET, function (get) {\n return function Set() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return strong.def(validate(this, SET), value = value === 0 ? 0 : value, value);\n }\n}, strong);\n","'use strict';\nvar each = require('./_array-methods')(0);\nvar redefine = require('./_redefine');\nvar meta = require('./_meta');\nvar assign = require('./_object-assign');\nvar weak = require('./_collection-weak');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar validate = require('./_validate-collection');\nvar WEAK_MAP = 'WeakMap';\nvar getWeak = meta.getWeak;\nvar isExtensible = Object.isExtensible;\nvar uncaughtFrozenStore = weak.ufstore;\nvar tmp = {};\nvar InternalMap;\n\nvar wrapper = function (get) {\n return function WeakMap() {\n return get(this, arguments.length > 0 ? arguments[0] : undefined);\n };\n};\n\nvar methods = {\n // 23.3.3.3 WeakMap.prototype.get(key)\n get: function get(key) {\n if (isObject(key)) {\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, WEAK_MAP)).get(key);\n return data ? data[this._i] : undefined;\n }\n },\n // 23.3.3.5 WeakMap.prototype.set(key, value)\n set: function set(key, value) {\n return weak.def(validate(this, WEAK_MAP), key, value);\n }\n};\n\n// 23.3 WeakMap Objects\nvar $WeakMap = module.exports = require('./_collection')(WEAK_MAP, wrapper, methods, weak, true, true);\n\n// IE11 WeakMap frozen keys fix\nif (fails(function () { return new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7; })) {\n InternalMap = weak.getConstructor(wrapper, WEAK_MAP);\n assign(InternalMap.prototype, methods);\n meta.NEED = true;\n each(['delete', 'has', 'get', 'set'], function (key) {\n var proto = $WeakMap.prototype;\n var method = proto[key];\n redefine(proto, key, function (a, b) {\n // store frozen objects on internal weakmap shim\n if (isObject(a) && !isExtensible(a)) {\n if (!this._f) this._f = new InternalMap();\n var result = this._f[key](a, b);\n return key == 'set' ? this : result;\n // store all the rest on native weakmap\n } return method.call(this, a, b);\n });\n });\n}\n","'use strict';\nvar weak = require('./_collection-weak');\nvar validate = require('./_validate-collection');\nvar WEAK_SET = 'WeakSet';\n\n// 23.4 WeakSet Objects\nrequire('./_collection')(WEAK_SET, function (get) {\n return function WeakSet() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.4.3.1 WeakSet.prototype.add(value)\n add: function add(value) {\n return weak.def(validate(this, WEAK_SET), value, true);\n }\n}, weak, false, true);\n","// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)\nvar $export = require('./_export');\nvar aFunction = require('./_a-function');\nvar anObject = require('./_an-object');\nvar rApply = (require('./_global').Reflect || {}).apply;\nvar fApply = Function.apply;\n// MS Edge argumentsList argument is optional\n$export($export.S + $export.F * !require('./_fails')(function () {\n rApply(function () { /* empty */ });\n}), 'Reflect', {\n apply: function apply(target, thisArgument, argumentsList) {\n var T = aFunction(target);\n var L = anObject(argumentsList);\n return rApply ? rApply(T, thisArgument, L) : fApply.call(T, thisArgument, L);\n }\n});\n","// 26.1.2 Reflect.construct(target, argumentsList [, newTarget])\nvar $export = require('./_export');\nvar create = require('./_object-create');\nvar aFunction = require('./_a-function');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar bind = require('./_bind');\nvar rConstruct = (require('./_global').Reflect || {}).construct;\n\n// MS Edge supports only 2 arguments and argumentsList argument is optional\n// FF Nightly sets third argument as `new.target`, but does not create `this` from it\nvar NEW_TARGET_BUG = fails(function () {\n function F() { /* empty */ }\n return !(rConstruct(function () { /* empty */ }, [], F) instanceof F);\n});\nvar ARGS_BUG = !fails(function () {\n rConstruct(function () { /* empty */ });\n});\n\n$export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', {\n construct: function construct(Target, args /* , newTarget */) {\n aFunction(Target);\n anObject(args);\n var newTarget = arguments.length < 3 ? Target : aFunction(arguments[2]);\n if (ARGS_BUG && !NEW_TARGET_BUG) return rConstruct(Target, args, newTarget);\n if (Target == newTarget) {\n // w/o altered newTarget, optimization for 0-4 arguments\n switch (args.length) {\n case 0: return new Target();\n case 1: return new Target(args[0]);\n case 2: return new Target(args[0], args[1]);\n case 3: return new Target(args[0], args[1], args[2]);\n case 4: return new Target(args[0], args[1], args[2], args[3]);\n }\n // w/o altered newTarget, lot of arguments case\n var $args = [null];\n $args.push.apply($args, args);\n return new (bind.apply(Target, $args))();\n }\n // with altered newTarget, not support built-in constructors\n var proto = newTarget.prototype;\n var instance = create(isObject(proto) ? proto : Object.prototype);\n var result = Function.apply.call(Target, instance, args);\n return isObject(result) ? result : instance;\n }\n});\n","'use strict';\nvar aFunction = require('./_a-function');\nvar isObject = require('./_is-object');\nvar invoke = require('./_invoke');\nvar arraySlice = [].slice;\nvar factories = {};\n\nvar construct = function (F, len, args) {\n if (!(len in factories)) {\n for (var n = [], i = 0; i < len; i++) n[i] = 'a[' + i + ']';\n // eslint-disable-next-line no-new-func\n factories[len] = Function('F,a', 'return new F(' + n.join(',') + ')');\n } return factories[len](F, args);\n};\n\nmodule.exports = Function.bind || function bind(that /* , ...args */) {\n var fn = aFunction(this);\n var partArgs = arraySlice.call(arguments, 1);\n var bound = function (/* args... */) {\n var args = partArgs.concat(arraySlice.call(arguments));\n return this instanceof bound ? construct(fn, args.length, args) : invoke(fn, args, that);\n };\n if (isObject(fn.prototype)) bound.prototype = fn.prototype;\n return bound;\n};\n","// 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)\nvar dP = require('./_object-dp');\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar toPrimitive = require('./_to-primitive');\n\n// MS Edge has broken Reflect.defineProperty - throwing instead of returning false\n$export($export.S + $export.F * require('./_fails')(function () {\n // eslint-disable-next-line no-undef\n Reflect.defineProperty(dP.f({}, 1, { value: 1 }), 1, { value: 2 });\n}), 'Reflect', {\n defineProperty: function defineProperty(target, propertyKey, attributes) {\n anObject(target);\n propertyKey = toPrimitive(propertyKey, true);\n anObject(attributes);\n try {\n dP.f(target, propertyKey, attributes);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.4 Reflect.deleteProperty(target, propertyKey)\nvar $export = require('./_export');\nvar gOPD = require('./_object-gopd').f;\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n deleteProperty: function deleteProperty(target, propertyKey) {\n var desc = gOPD(anObject(target), propertyKey);\n return desc && !desc.configurable ? false : delete target[propertyKey];\n }\n});\n","// 26.1.6 Reflect.get(target, propertyKey [, receiver])\nvar gOPD = require('./_object-gopd');\nvar getPrototypeOf = require('./_object-gpo');\nvar has = require('./_has');\nvar $export = require('./_export');\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\n\nfunction get(target, propertyKey /* , receiver */) {\n var receiver = arguments.length < 3 ? target : arguments[2];\n var desc, proto;\n if (anObject(target) === receiver) return target[propertyKey];\n if (desc = gOPD.f(target, propertyKey)) return has(desc, 'value')\n ? desc.value\n : desc.get !== undefined\n ? desc.get.call(receiver)\n : undefined;\n if (isObject(proto = getPrototypeOf(target))) return get(proto, propertyKey, receiver);\n}\n\n$export($export.S, 'Reflect', { get: get });\n","// 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)\nvar gOPD = require('./_object-gopd');\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey) {\n return gOPD.f(anObject(target), propertyKey);\n }\n});\n","// 26.1.8 Reflect.getPrototypeOf(target)\nvar $export = require('./_export');\nvar getProto = require('./_object-gpo');\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n getPrototypeOf: function getPrototypeOf(target) {\n return getProto(anObject(target));\n }\n});\n","// 26.1.9 Reflect.has(target, propertyKey)\nvar $export = require('./_export');\n\n$export($export.S, 'Reflect', {\n has: function has(target, propertyKey) {\n return propertyKey in target;\n }\n});\n","// 26.1.10 Reflect.isExtensible(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar $isExtensible = Object.isExtensible;\n\n$export($export.S, 'Reflect', {\n isExtensible: function isExtensible(target) {\n anObject(target);\n return $isExtensible ? $isExtensible(target) : true;\n }\n});\n","// 26.1.11 Reflect.ownKeys(target)\nvar $export = require('./_export');\n\n$export($export.S, 'Reflect', { ownKeys: require('./_own-keys') });\n","// 26.1.12 Reflect.preventExtensions(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar $preventExtensions = Object.preventExtensions;\n\n$export($export.S, 'Reflect', {\n preventExtensions: function preventExtensions(target) {\n anObject(target);\n try {\n if ($preventExtensions) $preventExtensions(target);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.13 Reflect.set(target, propertyKey, V [, receiver])\nvar dP = require('./_object-dp');\nvar gOPD = require('./_object-gopd');\nvar getPrototypeOf = require('./_object-gpo');\nvar has = require('./_has');\nvar $export = require('./_export');\nvar createDesc = require('./_property-desc');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\n\nfunction set(target, propertyKey, V /* , receiver */) {\n var receiver = arguments.length < 4 ? target : arguments[3];\n var ownDesc = gOPD.f(anObject(target), propertyKey);\n var existingDescriptor, proto;\n if (!ownDesc) {\n if (isObject(proto = getPrototypeOf(target))) {\n return set(proto, propertyKey, V, receiver);\n }\n ownDesc = createDesc(0);\n }\n if (has(ownDesc, 'value')) {\n if (ownDesc.writable === false || !isObject(receiver)) return false;\n if (existingDescriptor = gOPD.f(receiver, propertyKey)) {\n if (existingDescriptor.get || existingDescriptor.set || existingDescriptor.writable === false) return false;\n existingDescriptor.value = V;\n dP.f(receiver, propertyKey, existingDescriptor);\n } else dP.f(receiver, propertyKey, createDesc(0, V));\n return true;\n }\n return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true);\n}\n\n$export($export.S, 'Reflect', { set: set });\n","// 26.1.14 Reflect.setPrototypeOf(target, proto)\nvar $export = require('./_export');\nvar setProto = require('./_set-proto');\n\nif (setProto) $export($export.S, 'Reflect', {\n setPrototypeOf: function setPrototypeOf(target, proto) {\n setProto.check(target, proto);\n try {\n setProto.set(target, proto);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","'use strict';\nvar LIBRARY = require('./_library');\nvar global = require('./_global');\nvar ctx = require('./_ctx');\nvar classof = require('./_classof');\nvar $export = require('./_export');\nvar isObject = require('./_is-object');\nvar aFunction = require('./_a-function');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar speciesConstructor = require('./_species-constructor');\nvar task = require('./_task').set;\nvar microtask = require('./_microtask')();\nvar newPromiseCapabilityModule = require('./_new-promise-capability');\nvar perform = require('./_perform');\nvar promiseResolve = require('./_promise-resolve');\nvar PROMISE = 'Promise';\nvar TypeError = global.TypeError;\nvar process = global.process;\nvar $Promise = global[PROMISE];\nvar isNode = classof(process) == 'process';\nvar empty = function () { /* empty */ };\nvar Internal, newGenericPromiseCapability, OwnPromiseCapability, Wrapper;\nvar newPromiseCapability = newGenericPromiseCapability = newPromiseCapabilityModule.f;\n\nvar USE_NATIVE = !!function () {\n try {\n // correct subclassing with @@species support\n var promise = $Promise.resolve(1);\n var FakePromise = (promise.constructor = {})[require('./_wks')('species')] = function (exec) {\n exec(empty, empty);\n };\n // unhandled rejections tracking support, NodeJS Promise without it fails @@species test\n return (isNode || typeof PromiseRejectionEvent == 'function') && promise.then(empty) instanceof FakePromise;\n } catch (e) { /* empty */ }\n}();\n\n// helpers\nvar isThenable = function (it) {\n var then;\n return isObject(it) && typeof (then = it.then) == 'function' ? then : false;\n};\nvar notify = function (promise, isReject) {\n if (promise._n) return;\n promise._n = true;\n var chain = promise._c;\n microtask(function () {\n var value = promise._v;\n var ok = promise._s == 1;\n var i = 0;\n var run = function (reaction) {\n var handler = ok ? reaction.ok : reaction.fail;\n var resolve = reaction.resolve;\n var reject = reaction.reject;\n var domain = reaction.domain;\n var result, then, exited;\n try {\n if (handler) {\n if (!ok) {\n if (promise._h == 2) onHandleUnhandled(promise);\n promise._h = 1;\n }\n if (handler === true) result = value;\n else {\n if (domain) domain.enter();\n result = handler(value); // may throw\n if (domain) {\n domain.exit();\n exited = true;\n }\n }\n if (result === reaction.promise) {\n reject(TypeError('Promise-chain cycle'));\n } else if (then = isThenable(result)) {\n then.call(result, resolve, reject);\n } else resolve(result);\n } else reject(value);\n } catch (e) {\n if (domain && !exited) domain.exit();\n reject(e);\n }\n };\n while (chain.length > i) run(chain[i++]); // variable length - can't use forEach\n promise._c = [];\n promise._n = false;\n if (isReject && !promise._h) onUnhandled(promise);\n });\n};\nvar onUnhandled = function (promise) {\n task.call(global, function () {\n var value = promise._v;\n var unhandled = isUnhandled(promise);\n var result, handler, console;\n if (unhandled) {\n result = perform(function () {\n if (isNode) {\n process.emit('unhandledRejection', value, promise);\n } else if (handler = global.onunhandledrejection) {\n handler({ promise: promise, reason: value });\n } else if ((console = global.console) && console.error) {\n console.error('Unhandled promise rejection', value);\n }\n });\n // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should\n promise._h = isNode || isUnhandled(promise) ? 2 : 1;\n } promise._a = undefined;\n if (unhandled && result.e) throw result.v;\n });\n};\nvar isUnhandled = function (promise) {\n return promise._h !== 1 && (promise._a || promise._c).length === 0;\n};\nvar onHandleUnhandled = function (promise) {\n task.call(global, function () {\n var handler;\n if (isNode) {\n process.emit('rejectionHandled', promise);\n } else if (handler = global.onrejectionhandled) {\n handler({ promise: promise, reason: promise._v });\n }\n });\n};\nvar $reject = function (value) {\n var promise = this;\n if (promise._d) return;\n promise._d = true;\n promise = promise._w || promise; // unwrap\n promise._v = value;\n promise._s = 2;\n if (!promise._a) promise._a = promise._c.slice();\n notify(promise, true);\n};\nvar $resolve = function (value) {\n var promise = this;\n var then;\n if (promise._d) return;\n promise._d = true;\n promise = promise._w || promise; // unwrap\n try {\n if (promise === value) throw TypeError(\"Promise can't be resolved itself\");\n if (then = isThenable(value)) {\n microtask(function () {\n var wrapper = { _w: promise, _d: false }; // wrap\n try {\n then.call(value, ctx($resolve, wrapper, 1), ctx($reject, wrapper, 1));\n } catch (e) {\n $reject.call(wrapper, e);\n }\n });\n } else {\n promise._v = value;\n promise._s = 1;\n notify(promise, false);\n }\n } catch (e) {\n $reject.call({ _w: promise, _d: false }, e); // wrap\n }\n};\n\n// constructor polyfill\nif (!USE_NATIVE) {\n // 25.4.3.1 Promise(executor)\n $Promise = function Promise(executor) {\n anInstance(this, $Promise, PROMISE, '_h');\n aFunction(executor);\n Internal.call(this);\n try {\n executor(ctx($resolve, this, 1), ctx($reject, this, 1));\n } catch (err) {\n $reject.call(this, err);\n }\n };\n // eslint-disable-next-line no-unused-vars\n Internal = function Promise(executor) {\n this._c = []; // <- awaiting reactions\n this._a = undefined; // <- checked in isUnhandled reactions\n this._s = 0; // <- state\n this._d = false; // <- done\n this._v = undefined; // <- value\n this._h = 0; // <- rejection state, 0 - default, 1 - handled, 2 - unhandled\n this._n = false; // <- notify\n };\n Internal.prototype = require('./_redefine-all')($Promise.prototype, {\n // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)\n then: function then(onFulfilled, onRejected) {\n var reaction = newPromiseCapability(speciesConstructor(this, $Promise));\n reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;\n reaction.fail = typeof onRejected == 'function' && onRejected;\n reaction.domain = isNode ? process.domain : undefined;\n this._c.push(reaction);\n if (this._a) this._a.push(reaction);\n if (this._s) notify(this, false);\n return reaction.promise;\n },\n // 25.4.5.1 Promise.prototype.catch(onRejected)\n 'catch': function (onRejected) {\n return this.then(undefined, onRejected);\n }\n });\n OwnPromiseCapability = function () {\n var promise = new Internal();\n this.promise = promise;\n this.resolve = ctx($resolve, promise, 1);\n this.reject = ctx($reject, promise, 1);\n };\n newPromiseCapabilityModule.f = newPromiseCapability = function (C) {\n return C === $Promise || C === Wrapper\n ? new OwnPromiseCapability(C)\n : newGenericPromiseCapability(C);\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Promise: $Promise });\nrequire('./_set-to-string-tag')($Promise, PROMISE);\nrequire('./_set-species')(PROMISE);\nWrapper = require('./_core')[PROMISE];\n\n// statics\n$export($export.S + $export.F * !USE_NATIVE, PROMISE, {\n // 25.4.4.5 Promise.reject(r)\n reject: function reject(r) {\n var capability = newPromiseCapability(this);\n var $$reject = capability.reject;\n $$reject(r);\n return capability.promise;\n }\n});\n$export($export.S + $export.F * (LIBRARY || !USE_NATIVE), PROMISE, {\n // 25.4.4.6 Promise.resolve(x)\n resolve: function resolve(x) {\n return promiseResolve(LIBRARY && this === Wrapper ? $Promise : this, x);\n }\n});\n$export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(function (iter) {\n $Promise.all(iter)['catch'](empty);\n})), PROMISE, {\n // 25.4.4.1 Promise.all(iterable)\n all: function all(iterable) {\n var C = this;\n var capability = newPromiseCapability(C);\n var resolve = capability.resolve;\n var reject = capability.reject;\n var result = perform(function () {\n var values = [];\n var index = 0;\n var remaining = 1;\n forOf(iterable, false, function (promise) {\n var $index = index++;\n var alreadyCalled = false;\n values.push(undefined);\n remaining++;\n C.resolve(promise).then(function (value) {\n if (alreadyCalled) return;\n alreadyCalled = true;\n values[$index] = value;\n --remaining || resolve(values);\n }, reject);\n });\n --remaining || resolve(values);\n });\n if (result.e) reject(result.v);\n return capability.promise;\n },\n // 25.4.4.4 Promise.race(iterable)\n race: function race(iterable) {\n var C = this;\n var capability = newPromiseCapability(C);\n var reject = capability.reject;\n var result = perform(function () {\n forOf(iterable, false, function (promise) {\n C.resolve(promise).then(capability.resolve, reject);\n });\n });\n if (result.e) reject(result.v);\n return capability.promise;\n }\n});\n","var global = require('./_global');\nvar macrotask = require('./_task').set;\nvar Observer = global.MutationObserver || global.WebKitMutationObserver;\nvar process = global.process;\nvar Promise = global.Promise;\nvar isNode = require('./_cof')(process) == 'process';\n\nmodule.exports = function () {\n var head, last, notify;\n\n var flush = function () {\n var parent, fn;\n if (isNode && (parent = process.domain)) parent.exit();\n while (head) {\n fn = head.fn;\n head = head.next;\n try {\n fn();\n } catch (e) {\n if (head) notify();\n else last = undefined;\n throw e;\n }\n } last = undefined;\n if (parent) parent.enter();\n };\n\n // Node.js\n if (isNode) {\n notify = function () {\n process.nextTick(flush);\n };\n // browsers with MutationObserver, except iOS Safari - https://github.com/zloirock/core-js/issues/339\n } else if (Observer && !(global.navigator && global.navigator.standalone)) {\n var toggle = true;\n var node = document.createTextNode('');\n new Observer(flush).observe(node, { characterData: true }); // eslint-disable-line no-new\n notify = function () {\n node.data = toggle = !toggle;\n };\n // environments with maybe non-completely correct, but existent Promise\n } else if (Promise && Promise.resolve) {\n var promise = Promise.resolve();\n notify = function () {\n promise.then(flush);\n };\n // for other environments - macrotask based on:\n // - setImmediate\n // - MessageChannel\n // - window.postMessag\n // - onreadystatechange\n // - setTimeout\n } else {\n notify = function () {\n // strange IE + webpack dev server bug - use .call(global)\n macrotask.call(global, flush);\n };\n }\n\n return function (fn) {\n var task = { fn: fn, next: undefined };\n if (last) last.next = task;\n if (!head) {\n head = task;\n notify();\n } last = task;\n };\n};\n","module.exports = function (exec) {\n try {\n return { e: false, v: exec() };\n } catch (e) {\n return { e: true, v: e };\n }\n};\n","var anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar newPromiseCapability = require('./_new-promise-capability');\n\nmodule.exports = function (C, x) {\n anObject(C);\n if (isObject(x) && x.constructor === C) return x;\n var promiseCapability = newPromiseCapability.f(C);\n var resolve = promiseCapability.resolve;\n resolve(x);\n return promiseCapability.promise;\n};\n","'use strict';\n// ECMAScript 6 symbols shim\nvar global = require('./_global');\nvar has = require('./_has');\nvar DESCRIPTORS = require('./_descriptors');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar META = require('./_meta').KEY;\nvar $fails = require('./_fails');\nvar shared = require('./_shared');\nvar setToStringTag = require('./_set-to-string-tag');\nvar uid = require('./_uid');\nvar wks = require('./_wks');\nvar wksExt = require('./_wks-ext');\nvar wksDefine = require('./_wks-define');\nvar enumKeys = require('./_enum-keys');\nvar isArray = require('./_is-array');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar createDesc = require('./_property-desc');\nvar _create = require('./_object-create');\nvar gOPNExt = require('./_object-gopn-ext');\nvar $GOPD = require('./_object-gopd');\nvar $DP = require('./_object-dp');\nvar $keys = require('./_object-keys');\nvar gOPD = $GOPD.f;\nvar dP = $DP.f;\nvar gOPN = gOPNExt.f;\nvar $Symbol = global.Symbol;\nvar $JSON = global.JSON;\nvar _stringify = $JSON && $JSON.stringify;\nvar PROTOTYPE = 'prototype';\nvar HIDDEN = wks('_hidden');\nvar TO_PRIMITIVE = wks('toPrimitive');\nvar isEnum = {}.propertyIsEnumerable;\nvar SymbolRegistry = shared('symbol-registry');\nvar AllSymbols = shared('symbols');\nvar OPSymbols = shared('op-symbols');\nvar ObjectProto = Object[PROTOTYPE];\nvar USE_NATIVE = typeof $Symbol == 'function';\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n return _create(dP({}, 'a', {\n get: function () { return dP(this, 'a', { value: 7 }).a; }\n })).a != 7;\n}) ? function (it, key, D) {\n var protoDesc = gOPD(ObjectProto, key);\n if (protoDesc) delete ObjectProto[key];\n dP(it, key, D);\n if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n} : dP;\n\nvar wrap = function (tag) {\n var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n sym._k = tag;\n return sym;\n};\n\nvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n return it instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(it, key, D) {\n if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n anObject(it);\n key = toPrimitive(key, true);\n anObject(D);\n if (has(AllSymbols, key)) {\n if (!D.enumerable) {\n if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n it[HIDDEN][key] = true;\n } else {\n if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n D = _create(D, { enumerable: createDesc(0, false) });\n } return setSymbolDesc(it, key, D);\n } return dP(it, key, D);\n};\nvar $defineProperties = function defineProperties(it, P) {\n anObject(it);\n var keys = enumKeys(P = toIObject(P));\n var i = 0;\n var l = keys.length;\n var key;\n while (l > i) $defineProperty(it, key = keys[i++], P[key]);\n return it;\n};\nvar $create = function create(it, P) {\n return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n};\nvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n var E = isEnum.call(this, key = toPrimitive(key, true));\n if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n};\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n it = toIObject(it);\n key = toPrimitive(key, true);\n if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n var D = gOPD(it, key);\n if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n return D;\n};\nvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n var names = gOPN(toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n } return result;\n};\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n var IS_OP = it === ObjectProto;\n var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n } return result;\n};\n\n// 19.4.1.1 Symbol([description])\nif (!USE_NATIVE) {\n $Symbol = function Symbol() {\n if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n var $set = function (value) {\n if (this === ObjectProto) $set.call(OPSymbols, value);\n if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n setSymbolDesc(this, tag, createDesc(1, value));\n };\n if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n return wrap(tag);\n };\n redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n return this._k;\n });\n\n $GOPD.f = $getOwnPropertyDescriptor;\n $DP.f = $defineProperty;\n require('./_object-gopn').f = gOPNExt.f = $getOwnPropertyNames;\n require('./_object-pie').f = $propertyIsEnumerable;\n require('./_object-gops').f = $getOwnPropertySymbols;\n\n if (DESCRIPTORS && !require('./_library')) {\n redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n }\n\n wksExt.f = function (name) {\n return wrap(wks(name));\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\nfor (var es6Symbols = (\n // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);\n\nfor (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);\n\n$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n // 19.4.2.1 Symbol.for(key)\n 'for': function (key) {\n return has(SymbolRegistry, key += '')\n ? SymbolRegistry[key]\n : SymbolRegistry[key] = $Symbol(key);\n },\n // 19.4.2.5 Symbol.keyFor(sym)\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');\n for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;\n },\n useSetter: function () { setter = true; },\n useSimple: function () { setter = false; }\n});\n\n$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n // 19.1.2.2 Object.create(O [, Properties])\n create: $create,\n // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n defineProperty: $defineProperty,\n // 19.1.2.3 Object.defineProperties(O, Properties)\n defineProperties: $defineProperties,\n // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n // 19.1.2.7 Object.getOwnPropertyNames(O)\n getOwnPropertyNames: $getOwnPropertyNames,\n // 19.1.2.8 Object.getOwnPropertySymbols(O)\n getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// 24.3.2 JSON.stringify(value [, replacer [, space]])\n$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n var S = $Symbol();\n // MS Edge converts symbol values to JSON as {}\n // WebKit converts symbol values to JSON as null\n // V8 throws on boxed symbols\n return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n})), 'JSON', {\n stringify: function stringify(it) {\n var args = [it];\n var i = 1;\n var replacer, $replacer;\n while (arguments.length > i) args.push(arguments[i++]);\n $replacer = replacer = args[1];\n if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n if (!isArray(replacer)) replacer = function (key, value) {\n if (typeof $replacer == 'function') value = $replacer.call(this, key, value);\n if (!isSymbol(value)) return value;\n };\n args[1] = replacer;\n return _stringify.apply($JSON, args);\n }\n});\n\n// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n$Symbol[PROTOTYPE][TO_PRIMITIVE] || require('./_hide')($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// 19.4.3.5 Symbol.prototype[@@toStringTag]\nsetToStringTag($Symbol, 'Symbol');\n// 20.2.1.9 Math[@@toStringTag]\nsetToStringTag(Math, 'Math', true);\n// 24.3.3 JSON[@@toStringTag]\nsetToStringTag(global.JSON, 'JSON', true);\n","var global = require('./_global');\nvar core = require('./_core');\nvar LIBRARY = require('./_library');\nvar wksExt = require('./_wks-ext');\nvar defineProperty = require('./_object-dp').f;\nmodule.exports = function (name) {\n var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n};\n","// all enumerable object keys, includes symbols\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nmodule.exports = function (it) {\n var result = getKeys(it);\n var getSymbols = gOPS.f;\n if (getSymbols) {\n var symbols = getSymbols(it);\n var isEnum = pIE.f;\n var i = 0;\n var key;\n while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n } return result;\n};\n","// 19.1.2.5 Object.freeze(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('freeze', function ($freeze) {\n return function freeze(it) {\n return $freeze && isObject(it) ? $freeze(meta(it)) : it;\n };\n});\n","// 19.1.2.17 Object.seal(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('seal', function ($seal) {\n return function seal(it) {\n return $seal && isObject(it) ? $seal(meta(it)) : it;\n };\n});\n","// 19.1.2.15 Object.preventExtensions(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('preventExtensions', function ($preventExtensions) {\n return function preventExtensions(it) {\n return $preventExtensions && isObject(it) ? $preventExtensions(meta(it)) : it;\n };\n});\n","// 19.1.2.12 Object.isFrozen(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isFrozen', function ($isFrozen) {\n return function isFrozen(it) {\n return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;\n };\n});\n","// 19.1.2.13 Object.isSealed(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isSealed', function ($isSealed) {\n return function isSealed(it) {\n return isObject(it) ? $isSealed ? $isSealed(it) : false : true;\n };\n});\n","// 19.1.2.11 Object.isExtensible(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isExtensible', function ($isExtensible) {\n return function isExtensible(it) {\n return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;\n };\n});\n","// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\nvar toIObject = require('./_to-iobject');\nvar $getOwnPropertyDescriptor = require('./_object-gopd').f;\n\nrequire('./_object-sap')('getOwnPropertyDescriptor', function () {\n return function getOwnPropertyDescriptor(it, key) {\n return $getOwnPropertyDescriptor(toIObject(it), key);\n };\n});\n","// 19.1.2.9 Object.getPrototypeOf(O)\nvar toObject = require('./_to-object');\nvar $getPrototypeOf = require('./_object-gpo');\n\nrequire('./_object-sap')('getPrototypeOf', function () {\n return function getPrototypeOf(it) {\n return $getPrototypeOf(toObject(it));\n };\n});\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// 19.1.2.7 Object.getOwnPropertyNames(O)\nrequire('./_object-sap')('getOwnPropertyNames', function () {\n return require('./_object-gopn-ext').f;\n});\n","// 19.1.3.1 Object.assign(target, source)\nvar $export = require('./_export');\n\n$export($export.S + $export.F, 'Object', { assign: require('./_object-assign') });\n","// 19.1.3.10 Object.is(value1, value2)\nvar $export = require('./_export');\n$export($export.S, 'Object', { is: require('./_same-value') });\n","// 7.2.9 SameValue(x, y)\nmodule.exports = Object.is || function is(x, y) {\n // eslint-disable-next-line no-self-compare\n return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;\n};\n","// 19.1.3.19 Object.setPrototypeOf(O, proto)\nvar $export = require('./_export');\n$export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set });\n","var dP = require('./_object-dp').f;\nvar FProto = Function.prototype;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name';\n\n// 19.2.4.2 name\nNAME in FProto || require('./_descriptors') && dP(FProto, NAME, {\n configurable: true,\n get: function () {\n try {\n return ('' + this).match(nameRE)[1];\n } catch (e) {\n return '';\n }\n }\n});\n","var $export = require('./_export');\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\n\n$export($export.S, 'String', {\n // 21.1.2.4 String.raw(callSite, ...substitutions)\n raw: function raw(callSite) {\n var tpl = toIObject(callSite.raw);\n var len = toLength(tpl.length);\n var aLen = arguments.length;\n var res = [];\n var i = 0;\n while (len > i) {\n res.push(String(tpl[i++]));\n if (i < aLen) res.push(String(arguments[i]));\n } return res.join('');\n }\n});\n","var $export = require('./_export');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar fromCharCode = String.fromCharCode;\nvar $fromCodePoint = String.fromCodePoint;\n\n// length should be 1, old FF problem\n$export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {\n // 21.1.2.2 String.fromCodePoint(...codePoints)\n fromCodePoint: function fromCodePoint(x) { // eslint-disable-line no-unused-vars\n var res = [];\n var aLen = arguments.length;\n var i = 0;\n var code;\n while (aLen > i) {\n code = +arguments[i++];\n if (toAbsoluteIndex(code, 0x10ffff) !== code) throw RangeError(code + ' is not a valid code point');\n res.push(code < 0x10000\n ? fromCharCode(code)\n : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00)\n );\n } return res.join('');\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $at = require('./_string-at')(false);\n$export($export.P, 'String', {\n // 21.1.3.3 String.prototype.codePointAt(pos)\n codePointAt: function codePointAt(pos) {\n return $at(this, pos);\n }\n});\n","var toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n// true -> String#at\n// false -> String#codePointAt\nmodule.exports = function (TO_STRING) {\n return function (that, pos) {\n var s = String(defined(that));\n var i = toInteger(pos);\n var l = s.length;\n var a, b;\n if (i < 0 || i >= l) return TO_STRING ? '' : undefined;\n a = s.charCodeAt(i);\n return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff\n ? TO_STRING ? s.charAt(i) : a\n : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;\n };\n};\n","var $export = require('./_export');\n\n$export($export.P, 'String', {\n // 21.1.3.13 String.prototype.repeat(count)\n repeat: require('./_string-repeat')\n});\n","// 21.1.3.18 String.prototype.startsWith(searchString [, position ])\n'use strict';\nvar $export = require('./_export');\nvar toLength = require('./_to-length');\nvar context = require('./_string-context');\nvar STARTS_WITH = 'startsWith';\nvar $startsWith = ''[STARTS_WITH];\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'String', {\n startsWith: function startsWith(searchString /* , position = 0 */) {\n var that = context(this, searchString, STARTS_WITH);\n var index = toLength(Math.min(arguments.length > 1 ? arguments[1] : undefined, that.length));\n var search = String(searchString);\n return $startsWith\n ? $startsWith.call(that, search, index)\n : that.slice(index, index + search.length) === search;\n }\n});\n","// 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])\n'use strict';\nvar $export = require('./_export');\nvar toLength = require('./_to-length');\nvar context = require('./_string-context');\nvar ENDS_WITH = 'endsWith';\nvar $endsWith = ''[ENDS_WITH];\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'String', {\n endsWith: function endsWith(searchString /* , endPosition = @length */) {\n var that = context(this, searchString, ENDS_WITH);\n var endPosition = arguments.length > 1 ? arguments[1] : undefined;\n var len = toLength(that.length);\n var end = endPosition === undefined ? len : Math.min(toLength(endPosition), len);\n var search = String(searchString);\n return $endsWith\n ? $endsWith.call(that, search, end)\n : that.slice(end - search.length, end) === search;\n }\n});\n","// 21.1.3.7 String.prototype.includes(searchString, position = 0)\n'use strict';\nvar $export = require('./_export');\nvar context = require('./_string-context');\nvar INCLUDES = 'includes';\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String', {\n includes: function includes(searchString /* , position = 0 */) {\n return !!~context(this, searchString, INCLUDES)\n .indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","// 21.2.5.3 get RegExp.prototype.flags()\nif (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', {\n configurable: true,\n get: require('./_flags')\n});\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","// @@match logic\nrequire('./_fix-re-wks')('match', 1, function (defined, MATCH, $match) {\n // 21.1.3.11 String.prototype.match(regexp)\n return [function match(regexp) {\n 'use strict';\n var O = defined(this);\n var fn = regexp == undefined ? undefined : regexp[MATCH];\n return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));\n }, $match];\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","// @@split logic\nrequire('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split) {\n 'use strict';\n var isRegExp = require('./_is-regexp');\n var _split = $split;\n var $push = [].push;\n var $SPLIT = 'split';\n var LENGTH = 'length';\n var LAST_INDEX = 'lastIndex';\n if (\n 'abbc'[$SPLIT](/(b)*/)[1] == 'c' ||\n 'test'[$SPLIT](/(?:)/, -1)[LENGTH] != 4 ||\n 'ab'[$SPLIT](/(?:ab)*/)[LENGTH] != 2 ||\n '.'[$SPLIT](/(.?)(.?)/)[LENGTH] != 4 ||\n '.'[$SPLIT](/()()/)[LENGTH] > 1 ||\n ''[$SPLIT](/.?/)[LENGTH]\n ) {\n var NPCG = /()??/.exec('')[1] === undefined; // nonparticipating capturing group\n // based on es5-shim implementation, need to rework it\n $split = function (separator, limit) {\n var string = String(this);\n if (separator === undefined && limit === 0) return [];\n // If `separator` is not a regex, use native split\n if (!isRegExp(separator)) return _split.call(string, separator, limit);\n var output = [];\n var flags = (separator.ignoreCase ? 'i' : '') +\n (separator.multiline ? 'm' : '') +\n (separator.unicode ? 'u' : '') +\n (separator.sticky ? 'y' : '');\n var lastLastIndex = 0;\n var splitLimit = limit === undefined ? 4294967295 : limit >>> 0;\n // Make `global` and avoid `lastIndex` issues by working with a copy\n var separatorCopy = new RegExp(separator.source, flags + 'g');\n var separator2, match, lastIndex, lastLength, i;\n // Doesn't need flags gy, but they don't hurt\n if (!NPCG) separator2 = new RegExp('^' + separatorCopy.source + '$(?!\\\\s)', flags);\n while (match = separatorCopy.exec(string)) {\n // `separatorCopy.lastIndex` is not reliable cross-browser\n lastIndex = match.index + match[0][LENGTH];\n if (lastIndex > lastLastIndex) {\n output.push(string.slice(lastLastIndex, match.index));\n // Fix browsers whose `exec` methods don't consistently return `undefined` for NPCG\n // eslint-disable-next-line no-loop-func\n if (!NPCG && match[LENGTH] > 1) match[0].replace(separator2, function () {\n for (i = 1; i < arguments[LENGTH] - 2; i++) if (arguments[i] === undefined) match[i] = undefined;\n });\n if (match[LENGTH] > 1 && match.index < string[LENGTH]) $push.apply(output, match.slice(1));\n lastLength = match[0][LENGTH];\n lastLastIndex = lastIndex;\n if (output[LENGTH] >= splitLimit) break;\n }\n if (separatorCopy[LAST_INDEX] === match.index) separatorCopy[LAST_INDEX]++; // Avoid an infinite loop\n }\n if (lastLastIndex === string[LENGTH]) {\n if (lastLength || !separatorCopy.test('')) output.push('');\n } else output.push(string.slice(lastLastIndex));\n return output[LENGTH] > splitLimit ? output.slice(0, splitLimit) : output;\n };\n // Chakra, V8\n } else if ('0'[$SPLIT](undefined, 0)[LENGTH]) {\n $split = function (separator, limit) {\n return separator === undefined && limit === 0 ? [] : _split.call(this, separator, limit);\n };\n }\n // 21.1.3.17 String.prototype.split(separator, limit)\n return [function split(separator, limit) {\n var O = defined(this);\n var fn = separator == undefined ? undefined : separator[SPLIT];\n return fn !== undefined ? fn.call(separator, O, limit) : $split.call(String(O), separator, limit);\n }, $split];\n});\n","// @@search logic\nrequire('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) {\n // 21.1.3.15 String.prototype.search(regexp)\n return [function search(regexp) {\n 'use strict';\n var O = defined(this);\n var fn = regexp == undefined ? undefined : regexp[SEARCH];\n return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));\n }, $search];\n});\n","'use strict';\nvar ctx = require('./_ctx');\nvar $export = require('./_export');\nvar toObject = require('./_to-object');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar toLength = require('./_to-length');\nvar createProperty = require('./_create-property');\nvar getIterFn = require('./core.get-iterator-method');\n\n$export($export.S + $export.F * !require('./_iter-detect')(function (iter) { Array.from(iter); }), 'Array', {\n // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)\n from: function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {\n var O = toObject(arrayLike);\n var C = typeof this == 'function' ? this : Array;\n var aLen = arguments.length;\n var mapfn = aLen > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var index = 0;\n var iterFn = getIterFn(O);\n var length, result, step, iterator;\n if (mapping) mapfn = ctx(mapfn, aLen > 2 ? arguments[2] : undefined, 2);\n // if object isn't iterable or it's array with default iterator - use simple case\n if (iterFn != undefined && !(C == Array && isArrayIter(iterFn))) {\n for (iterator = iterFn.call(O), result = new C(); !(step = iterator.next()).done; index++) {\n createProperty(result, index, mapping ? call(iterator, mapfn, [step.value, index], true) : step.value);\n }\n } else {\n length = toLength(O.length);\n for (result = new C(length); length > index; index++) {\n createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);\n }\n }\n result.length = index;\n return result;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar createProperty = require('./_create-property');\n\n// WebKit Array.of isn't generic\n$export($export.S + $export.F * require('./_fails')(function () {\n function F() { /* empty */ }\n return !(Array.of.call(F) instanceof F);\n}), 'Array', {\n // 22.1.2.3 Array.of( ...items)\n of: function of(/* ...args */) {\n var index = 0;\n var aLen = arguments.length;\n var result = new (typeof this == 'function' ? this : Array)(aLen);\n while (aLen > index) createProperty(result, index, arguments[index++]);\n result.length = aLen;\n return result;\n }\n});\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\nvar $export = require('./_export');\n\n$export($export.P, 'Array', { copyWithin: require('./_array-copy-within') });\n\nrequire('./_add-to-unscopables')('copyWithin');\n","'use strict';\n// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(5);\nvar KEY = 'find';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","'use strict';\n// 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(6);\nvar KEY = 'findIndex';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n findIndex: function findIndex(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\nvar $export = require('./_export');\n\n$export($export.P, 'Array', { fill: require('./_array-fill') });\n\nrequire('./_add-to-unscopables')('fill');\n","// 20.1.2.2 Number.isFinite(number)\nvar $export = require('./_export');\nvar _isFinite = require('./_global').isFinite;\n\n$export($export.S, 'Number', {\n isFinite: function isFinite(it) {\n return typeof it == 'number' && _isFinite(it);\n }\n});\n","// 20.1.2.3 Number.isInteger(number)\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { isInteger: require('./_is-integer') });\n","// 20.1.2.5 Number.isSafeInteger(number)\nvar $export = require('./_export');\nvar isInteger = require('./_is-integer');\nvar abs = Math.abs;\n\n$export($export.S, 'Number', {\n isSafeInteger: function isSafeInteger(number) {\n return isInteger(number) && abs(number) <= 0x1fffffffffffff;\n }\n});\n","// 20.1.2.4 Number.isNaN(number)\nvar $export = require('./_export');\n\n$export($export.S, 'Number', {\n isNaN: function isNaN(number) {\n // eslint-disable-next-line no-self-compare\n return number != number;\n }\n});\n","// 20.1.2.1 Number.EPSILON\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { EPSILON: Math.pow(2, -52) });\n","// 20.1.2.10 Number.MIN_SAFE_INTEGER\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff });\n","// 20.1.2.6 Number.MAX_SAFE_INTEGER\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff });\n","// 20.2.2.3 Math.acosh(x)\nvar $export = require('./_export');\nvar log1p = require('./_math-log1p');\nvar sqrt = Math.sqrt;\nvar $acosh = Math.acosh;\n\n$export($export.S + $export.F * !($acosh\n // V8 bug: https://code.google.com/p/v8/issues/detail?id=3509\n && Math.floor($acosh(Number.MAX_VALUE)) == 710\n // Tor Browser bug: Math.acosh(Infinity) -> NaN\n && $acosh(Infinity) == Infinity\n), 'Math', {\n acosh: function acosh(x) {\n return (x = +x) < 1 ? NaN : x > 94906265.62425156\n ? Math.log(x) + Math.LN2\n : log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));\n }\n});\n","// 20.2.2.5 Math.asinh(x)\nvar $export = require('./_export');\nvar $asinh = Math.asinh;\n\nfunction asinh(x) {\n return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));\n}\n\n// Tor Browser bug: Math.asinh(0) -> -0\n$export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh });\n","// 20.2.2.7 Math.atanh(x)\nvar $export = require('./_export');\nvar $atanh = Math.atanh;\n\n// Tor Browser bug: Math.atanh(-0) -> 0\n$export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', {\n atanh: function atanh(x) {\n return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;\n }\n});\n","// 20.2.2.9 Math.cbrt(x)\nvar $export = require('./_export');\nvar sign = require('./_math-sign');\n\n$export($export.S, 'Math', {\n cbrt: function cbrt(x) {\n return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);\n }\n});\n","// 20.2.2.11 Math.clz32(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n clz32: function clz32(x) {\n return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;\n }\n});\n","// 20.2.2.12 Math.cosh(x)\nvar $export = require('./_export');\nvar exp = Math.exp;\n\n$export($export.S, 'Math', {\n cosh: function cosh(x) {\n return (exp(x = +x) + exp(-x)) / 2;\n }\n});\n","// 20.2.2.14 Math.expm1(x)\nvar $export = require('./_export');\nvar $expm1 = require('./_math-expm1');\n\n$export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 });\n","// 20.2.2.16 Math.fround(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { fround: require('./_math-fround') });\n","// 20.2.2.16 Math.fround(x)\nvar sign = require('./_math-sign');\nvar pow = Math.pow;\nvar EPSILON = pow(2, -52);\nvar EPSILON32 = pow(2, -23);\nvar MAX32 = pow(2, 127) * (2 - EPSILON32);\nvar MIN32 = pow(2, -126);\n\nvar roundTiesToEven = function (n) {\n return n + 1 / EPSILON - 1 / EPSILON;\n};\n\nmodule.exports = Math.fround || function fround(x) {\n var $abs = Math.abs(x);\n var $sign = sign(x);\n var a, result;\n if ($abs < MIN32) return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32;\n a = (1 + EPSILON32 / EPSILON) * $abs;\n result = a - (a - $abs);\n // eslint-disable-next-line no-self-compare\n if (result > MAX32 || result != result) return $sign * Infinity;\n return $sign * result;\n};\n","// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])\nvar $export = require('./_export');\nvar abs = Math.abs;\n\n$export($export.S, 'Math', {\n hypot: function hypot(value1, value2) { // eslint-disable-line no-unused-vars\n var sum = 0;\n var i = 0;\n var aLen = arguments.length;\n var larg = 0;\n var arg, div;\n while (i < aLen) {\n arg = abs(arguments[i++]);\n if (larg < arg) {\n div = larg / arg;\n sum = sum * div * div + 1;\n larg = arg;\n } else if (arg > 0) {\n div = arg / larg;\n sum += div * div;\n } else sum += arg;\n }\n return larg === Infinity ? Infinity : larg * Math.sqrt(sum);\n }\n});\n","// 20.2.2.18 Math.imul(x, y)\nvar $export = require('./_export');\nvar $imul = Math.imul;\n\n// some WebKit versions fails with big numbers, some has wrong arity\n$export($export.S + $export.F * require('./_fails')(function () {\n return $imul(0xffffffff, 5) != -5 || $imul.length != 2;\n}), 'Math', {\n imul: function imul(x, y) {\n var UINT16 = 0xffff;\n var xn = +x;\n var yn = +y;\n var xl = UINT16 & xn;\n var yl = UINT16 & yn;\n return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);\n }\n});\n","// 20.2.2.20 Math.log1p(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { log1p: require('./_math-log1p') });\n","// 20.2.2.21 Math.log10(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n log10: function log10(x) {\n return Math.log(x) * Math.LOG10E;\n }\n});\n","// 20.2.2.22 Math.log2(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n log2: function log2(x) {\n return Math.log(x) / Math.LN2;\n }\n});\n","// 20.2.2.28 Math.sign(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { sign: require('./_math-sign') });\n","// 20.2.2.30 Math.sinh(x)\nvar $export = require('./_export');\nvar expm1 = require('./_math-expm1');\nvar exp = Math.exp;\n\n// V8 near Chromium 38 has a problem with very small numbers\n$export($export.S + $export.F * require('./_fails')(function () {\n return !Math.sinh(-2e-17) != -2e-17;\n}), 'Math', {\n sinh: function sinh(x) {\n return Math.abs(x = +x) < 1\n ? (expm1(x) - expm1(-x)) / 2\n : (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);\n }\n});\n","// 20.2.2.33 Math.tanh(x)\nvar $export = require('./_export');\nvar expm1 = require('./_math-expm1');\nvar exp = Math.exp;\n\n$export($export.S, 'Math', {\n tanh: function tanh(x) {\n var a = expm1(x = +x);\n var b = expm1(-x);\n return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));\n }\n});\n","// 20.2.2.34 Math.trunc(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n trunc: function trunc(it) {\n return (it > 0 ? Math.floor : Math.ceil)(it);\n }\n});\n","'use strict';\n// https://github.com/tc39/Array.prototype.includes\nvar $export = require('./_export');\nvar $includes = require('./_array-includes')(true);\n\n$export($export.P, 'Array', {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\nrequire('./_add-to-unscopables')('includes');\n","// https://github.com/tc39/proposal-object-values-entries\nvar $export = require('./_export');\nvar $values = require('./_object-to-array')(false);\n\n$export($export.S, 'Object', {\n values: function values(it) {\n return $values(it);\n }\n});\n","// https://github.com/tc39/proposal-object-values-entries\nvar $export = require('./_export');\nvar $entries = require('./_object-to-array')(true);\n\n$export($export.S, 'Object', {\n entries: function entries(it) {\n return $entries(it);\n }\n});\n","// https://github.com/tc39/proposal-object-getownpropertydescriptors\nvar $export = require('./_export');\nvar ownKeys = require('./_own-keys');\nvar toIObject = require('./_to-iobject');\nvar gOPD = require('./_object-gopd');\nvar createProperty = require('./_create-property');\n\n$export($export.S, 'Object', {\n getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) {\n var O = toIObject(object);\n var getDesc = gOPD.f;\n var keys = ownKeys(O);\n var result = {};\n var i = 0;\n var key, desc;\n while (keys.length > i) {\n desc = getDesc(O, key = keys[i++]);\n if (desc !== undefined) createProperty(result, key, desc);\n }\n return result;\n }\n});\n","'use strict';\n// https://github.com/tc39/proposal-string-pad-start-end\nvar $export = require('./_export');\nvar $pad = require('./_string-pad');\nvar userAgent = require('./_user-agent');\n\n// https://github.com/zloirock/core-js/issues/280\n$export($export.P + $export.F * /Version\\/10\\.\\d+(\\.\\d+)? Safari\\//.test(userAgent), 'String', {\n padStart: function padStart(maxLength /* , fillString = ' ' */) {\n return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, true);\n }\n});\n","'use strict';\n// https://github.com/tc39/proposal-string-pad-start-end\nvar $export = require('./_export');\nvar $pad = require('./_string-pad');\nvar userAgent = require('./_user-agent');\n\n// https://github.com/zloirock/core-js/issues/280\n$export($export.P + $export.F * /Version\\/10\\.\\d+(\\.\\d+)? Safari\\//.test(userAgent), 'String', {\n padEnd: function padEnd(maxLength /* , fillString = ' ' */) {\n return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false);\n }\n});\n","// ie9- setTimeout & setInterval additional parameters fix\nvar global = require('./_global');\nvar $export = require('./_export');\nvar userAgent = require('./_user-agent');\nvar slice = [].slice;\nvar MSIE = /MSIE .\\./.test(userAgent); // <- dirty ie9- check\nvar wrap = function (set) {\n return function (fn, time /* , ...args */) {\n var boundArgs = arguments.length > 2;\n var args = boundArgs ? slice.call(arguments, 2) : false;\n return set(boundArgs ? function () {\n // eslint-disable-next-line no-new-func\n (typeof fn == 'function' ? fn : Function(fn)).apply(this, args);\n } : fn, time);\n };\n};\n$export($export.G + $export.B + $export.F * MSIE, {\n setTimeout: wrap(global.setTimeout),\n setInterval: wrap(global.setInterval)\n});\n","var $export = require('./_export');\nvar $task = require('./_task');\n$export($export.G + $export.B, {\n setImmediate: $task.set,\n clearImmediate: $task.clear\n});\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n!(function(global) {\n \"use strict\";\n\n var Op = Object.prototype;\n var hasOwn = Op.hasOwnProperty;\n var undefined; // More compressible than void 0.\n var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n var inModule = typeof module === \"object\";\n var runtime = global.regeneratorRuntime;\n if (runtime) {\n if (inModule) {\n // If regeneratorRuntime is defined globally and we're in a module,\n // make the exports object identical to regeneratorRuntime.\n module.exports = runtime;\n }\n // Don't bother evaluating the rest of this file if the runtime was\n // already defined globally.\n return;\n }\n\n // Define the runtime globally (as expected by generated code) as either\n // module.exports (if we're in a module) or a new, empty object.\n runtime = global.regeneratorRuntime = inModule ? module.exports : {};\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n var generator = Object.create(protoGenerator.prototype);\n var context = new Context(tryLocsList || []);\n\n // The ._invoke method unifies the implementations of the .next,\n // .throw, and .return methods.\n generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n return generator;\n }\n runtime.wrap = wrap;\n\n // Try/catch helper to minimize deoptimizations. Returns a completion\n // record like context.tryEntries[i].completion. This interface could\n // have been (and was previously) designed to take a closure to be\n // invoked without arguments, but in all the cases we care about we\n // already have an existing method we want to call, so there's no need\n // to create a new function object. We can even get away with assuming\n // the method takes exactly one argument, since that happens to be true\n // in every case, so we don't have to touch the arguments object. The\n // only additional allocation required is the completion record, which\n // has a stable shape and so hopefully should be cheap to allocate.\n function tryCatch(fn, obj, arg) {\n try {\n return { type: \"normal\", arg: fn.call(obj, arg) };\n } catch (err) {\n return { type: \"throw\", arg: err };\n }\n }\n\n var GenStateSuspendedStart = \"suspendedStart\";\n var GenStateSuspendedYield = \"suspendedYield\";\n var GenStateExecuting = \"executing\";\n var GenStateCompleted = \"completed\";\n\n // Returning this object from the innerFn has the same effect as\n // breaking out of the dispatch switch statement.\n var ContinueSentinel = {};\n\n // Dummy constructor functions that we use as the .constructor and\n // .constructor.prototype properties for functions that return Generator\n // objects. For full spec compliance, you may wish to configure your\n // minifier not to mangle the names of these two functions.\n function Generator() {}\n function GeneratorFunction() {}\n function GeneratorFunctionPrototype() {}\n\n // This is a polyfill for %IteratorPrototype% for environments that\n // don't natively support it.\n var IteratorPrototype = {};\n IteratorPrototype[iteratorSymbol] = function () {\n return this;\n };\n\n var getProto = Object.getPrototypeOf;\n var NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n if (NativeIteratorPrototype &&\n NativeIteratorPrototype !== Op &&\n hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {\n // This environment has a native %IteratorPrototype%; use it instead\n // of the polyfill.\n IteratorPrototype = NativeIteratorPrototype;\n }\n\n var Gp = GeneratorFunctionPrototype.prototype =\n Generator.prototype = Object.create(IteratorPrototype);\n GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;\n GeneratorFunctionPrototype.constructor = GeneratorFunction;\n GeneratorFunctionPrototype[toStringTagSymbol] =\n GeneratorFunction.displayName = \"GeneratorFunction\";\n\n // Helper for defining the .next, .throw, and .return methods of the\n // Iterator interface in terms of a single ._invoke method.\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function(method) {\n prototype[method] = function(arg) {\n return this._invoke(method, arg);\n };\n });\n }\n\n runtime.isGeneratorFunction = function(genFun) {\n var ctor = typeof genFun === \"function\" && genFun.constructor;\n return ctor\n ? ctor === GeneratorFunction ||\n // For the native GeneratorFunction constructor, the best we can\n // do is to check its .name property.\n (ctor.displayName || ctor.name) === \"GeneratorFunction\"\n : false;\n };\n\n runtime.mark = function(genFun) {\n if (Object.setPrototypeOf) {\n Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);\n } else {\n genFun.__proto__ = GeneratorFunctionPrototype;\n if (!(toStringTagSymbol in genFun)) {\n genFun[toStringTagSymbol] = \"GeneratorFunction\";\n }\n }\n genFun.prototype = Object.create(Gp);\n return genFun;\n };\n\n // Within the body of any async function, `await x` is transformed to\n // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test\n // `hasOwn.call(value, \"__await\")` to determine if the yielded value is\n // meant to be awaited.\n runtime.awrap = function(arg) {\n return { __await: arg };\n };\n\n function AsyncIterator(generator) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n if (record.type === \"throw\") {\n reject(record.arg);\n } else {\n var result = record.arg;\n var value = result.value;\n if (value &&\n typeof value === \"object\" &&\n hasOwn.call(value, \"__await\")) {\n return Promise.resolve(value.__await).then(function(value) {\n invoke(\"next\", value, resolve, reject);\n }, function(err) {\n invoke(\"throw\", err, resolve, reject);\n });\n }\n\n return Promise.resolve(value).then(function(unwrapped) {\n // When a yielded Promise is resolved, its final value becomes\n // the .value of the Promise<{value,done}> result for the\n // current iteration. If the Promise is rejected, however, the\n // result for this iteration will be rejected with the same\n // reason. Note that rejections of yielded Promises are not\n // thrown back into the generator function, as is the case\n // when an awaited Promise is rejected. This difference in\n // behavior between yield and await is important, because it\n // allows the consumer to decide what to do with the yielded\n // rejection (swallow it and continue, manually .throw it back\n // into the generator, abandon iteration, whatever). With\n // await, by contrast, there is no opportunity to examine the\n // rejection reason outside the generator function, so the\n // only option is to throw it from the await expression, and\n // let the generator function handle the exception.\n result.value = unwrapped;\n resolve(result);\n }, reject);\n }\n }\n\n var previousPromise;\n\n function enqueue(method, arg) {\n function callInvokeWithMethodAndArg() {\n return new Promise(function(resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise =\n // If enqueue has been called before, then we want to wait until\n // all previous Promises have been resolved before calling invoke,\n // so that results are always delivered in the correct order. If\n // enqueue has not been called before, then it is important to\n // call invoke immediately, without waiting on a callback to fire,\n // so that the async generator function has the opportunity to do\n // any necessary setup in a predictable way. This predictability\n // is why the Promise constructor synchronously invokes its\n // executor callback, and why async functions synchronously\n // execute code before the first await. Since we implement simple\n // async functions in terms of async generators, it is especially\n // important to get this right, even though it requires care.\n previousPromise ? previousPromise.then(\n callInvokeWithMethodAndArg,\n // Avoid propagating failures to Promises returned by later\n // invocations of the iterator.\n callInvokeWithMethodAndArg\n ) : callInvokeWithMethodAndArg();\n }\n\n // Define the unified helper method that is used to implement .next,\n // .throw, and .return (see defineIteratorMethods).\n this._invoke = enqueue;\n }\n\n defineIteratorMethods(AsyncIterator.prototype);\n AsyncIterator.prototype[asyncIteratorSymbol] = function () {\n return this;\n };\n runtime.AsyncIterator = AsyncIterator;\n\n // Note that simple async functions are implemented on top of\n // AsyncIterator objects; they just return a Promise for the value of\n // the final result produced by the iterator.\n runtime.async = function(innerFn, outerFn, self, tryLocsList) {\n var iter = new AsyncIterator(\n wrap(innerFn, outerFn, self, tryLocsList)\n );\n\n return runtime.isGeneratorFunction(outerFn)\n ? iter // If outerFn is a generator, return the full iterator.\n : iter.next().then(function(result) {\n return result.done ? result.value : iter.next();\n });\n };\n\n function makeInvokeMethod(innerFn, self, context) {\n var state = GenStateSuspendedStart;\n\n return function invoke(method, arg) {\n if (state === GenStateExecuting) {\n throw new Error(\"Generator is already running\");\n }\n\n if (state === GenStateCompleted) {\n if (method === \"throw\") {\n throw arg;\n }\n\n // Be forgiving, per 25.3.3.3.3 of the spec:\n // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n return doneResult();\n }\n\n context.method = method;\n context.arg = arg;\n\n while (true) {\n var delegate = context.delegate;\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (context.method === \"next\") {\n // Setting context._sent for legacy support of Babel's\n // function.sent implementation.\n context.sent = context._sent = context.arg;\n\n } else if (context.method === \"throw\") {\n if (state === GenStateSuspendedStart) {\n state = GenStateCompleted;\n throw context.arg;\n }\n\n context.dispatchException(context.arg);\n\n } else if (context.method === \"return\") {\n context.abrupt(\"return\", context.arg);\n }\n\n state = GenStateExecuting;\n\n var record = tryCatch(innerFn, self, context);\n if (record.type === \"normal\") {\n // If an exception is thrown from innerFn, we leave state ===\n // GenStateExecuting and loop back for another invocation.\n state = context.done\n ? GenStateCompleted\n : GenStateSuspendedYield;\n\n if (record.arg === ContinueSentinel) {\n continue;\n }\n\n return {\n value: record.arg,\n done: context.done\n };\n\n } else if (record.type === \"throw\") {\n state = GenStateCompleted;\n // Dispatch the exception by looping back around to the\n // context.dispatchException(context.arg) call above.\n context.method = \"throw\";\n context.arg = record.arg;\n }\n }\n };\n }\n\n // Call delegate.iterator[context.method](context.arg) and handle the\n // result, either by returning a { value, done } result from the\n // delegate iterator, or by modifying context.method and context.arg,\n // setting context.delegate to null, and returning the ContinueSentinel.\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n if (method === undefined) {\n // A .throw or .return when the delegate iterator has no .throw\n // method always terminates the yield* loop.\n context.delegate = null;\n\n if (context.method === \"throw\") {\n if (delegate.iterator.return) {\n // If the delegate iterator has a return method, give it a\n // chance to clean up.\n context.method = \"return\";\n context.arg = undefined;\n maybeInvokeDelegate(delegate, context);\n\n if (context.method === \"throw\") {\n // If maybeInvokeDelegate(context) changed context.method from\n // \"return\" to \"throw\", let that override the TypeError below.\n return ContinueSentinel;\n }\n }\n\n context.method = \"throw\";\n context.arg = new TypeError(\n \"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n\n if (record.type === \"throw\") {\n context.method = \"throw\";\n context.arg = record.arg;\n context.delegate = null;\n return ContinueSentinel;\n }\n\n var info = record.arg;\n\n if (! info) {\n context.method = \"throw\";\n context.arg = new TypeError(\"iterator result is not an object\");\n context.delegate = null;\n return ContinueSentinel;\n }\n\n if (info.done) {\n // Assign the result of the finished delegate to the temporary\n // variable specified by delegate.resultName (see delegateYield).\n context[delegate.resultName] = info.value;\n\n // Resume execution at the desired location (see delegateYield).\n context.next = delegate.nextLoc;\n\n // If context.method was \"throw\" but the delegate handled the\n // exception, let the outer generator proceed normally. If\n // context.method was \"next\", forget context.arg since it has been\n // \"consumed\" by the delegate iterator. If context.method was\n // \"return\", allow the original .return call to continue in the\n // outer generator.\n if (context.method !== \"return\") {\n context.method = \"next\";\n context.arg = undefined;\n }\n\n } else {\n // Re-yield the result returned by the delegate method.\n return info;\n }\n\n // The delegate iterator is finished, so forget it and continue with\n // the outer generator.\n context.delegate = null;\n return ContinueSentinel;\n }\n\n // Define Generator.prototype.{next,throw,return} in terms of the\n // unified ._invoke helper method.\n defineIteratorMethods(Gp);\n\n Gp[toStringTagSymbol] = \"Generator\";\n\n // A Generator should always return itself as the iterator object when the\n // @@iterator function is called on it. Some browsers' implementations of the\n // iterator prototype chain incorrectly implement this, causing the Generator\n // object to not be returned from this call. This ensures that doesn't happen.\n // See https://github.com/facebook/regenerator/issues/274 for more details.\n Gp[iteratorSymbol] = function() {\n return this;\n };\n\n Gp.toString = function() {\n return \"[object Generator]\";\n };\n\n function pushTryEntry(locs) {\n var entry = { tryLoc: locs[0] };\n\n if (1 in locs) {\n entry.catchLoc = locs[1];\n }\n\n if (2 in locs) {\n entry.finallyLoc = locs[2];\n entry.afterLoc = locs[3];\n }\n\n this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\";\n delete record.arg;\n entry.completion = record;\n }\n\n function Context(tryLocsList) {\n // The root entry object (effectively a try statement without a catch\n // or a finally block) gives us a place to store values thrown from\n // locations where there is no enclosing try statement.\n this.tryEntries = [{ tryLoc: \"root\" }];\n tryLocsList.forEach(pushTryEntry, this);\n this.reset(true);\n }\n\n runtime.keys = function(object) {\n var keys = [];\n for (var key in object) {\n keys.push(key);\n }\n keys.reverse();\n\n // Rather than returning an object with a next method, we keep\n // things simple and return the next function itself.\n return function next() {\n while (keys.length) {\n var key = keys.pop();\n if (key in object) {\n next.value = key;\n next.done = false;\n return next;\n }\n }\n\n // To avoid creating an additional object, we just hang the .value\n // and .done properties off the next function object itself. This\n // also ensures that the minifier will not anonymize the function.\n next.done = true;\n return next;\n };\n };\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) {\n return iteratorMethod.call(iterable);\n }\n\n if (typeof iterable.next === \"function\") {\n return iterable;\n }\n\n if (!isNaN(iterable.length)) {\n var i = -1, next = function next() {\n while (++i < iterable.length) {\n if (hasOwn.call(iterable, i)) {\n next.value = iterable[i];\n next.done = false;\n return next;\n }\n }\n\n next.value = undefined;\n next.done = true;\n\n return next;\n };\n\n return next.next = next;\n }\n }\n\n // Return an iterator with no values.\n return { next: doneResult };\n }\n runtime.values = values;\n\n function doneResult() {\n return { value: undefined, done: true };\n }\n\n Context.prototype = {\n constructor: Context,\n\n reset: function(skipTempReset) {\n this.prev = 0;\n this.next = 0;\n // Resetting context._sent for legacy support of Babel's\n // function.sent implementation.\n this.sent = this._sent = undefined;\n this.done = false;\n this.delegate = null;\n\n this.method = \"next\";\n this.arg = undefined;\n\n this.tryEntries.forEach(resetTryEntry);\n\n if (!skipTempReset) {\n for (var name in this) {\n // Not sure about the optimal order of these conditions:\n if (name.charAt(0) === \"t\" &&\n hasOwn.call(this, name) &&\n !isNaN(+name.slice(1))) {\n this[name] = undefined;\n }\n }\n }\n },\n\n stop: function() {\n this.done = true;\n\n var rootEntry = this.tryEntries[0];\n var rootRecord = rootEntry.completion;\n if (rootRecord.type === \"throw\") {\n throw rootRecord.arg;\n }\n\n return this.rval;\n },\n\n dispatchException: function(exception) {\n if (this.done) {\n throw exception;\n }\n\n var context = this;\n function handle(loc, caught) {\n record.type = \"throw\";\n record.arg = exception;\n context.next = loc;\n\n if (caught) {\n // If the dispatched exception was caught by a catch block,\n // then let that catch block handle the exception normally.\n context.method = \"next\";\n context.arg = undefined;\n }\n\n return !! caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n var record = entry.completion;\n\n if (entry.tryLoc === \"root\") {\n // Exception thrown outside of any try block that could handle\n // it, so set the completion value of the entire function to\n // throw the exception.\n return handle(\"end\");\n }\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\");\n var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n } else if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n }\n\n } else if (hasFinally) {\n if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else {\n throw new Error(\"try statement without catch or finally\");\n }\n }\n }\n },\n\n abrupt: function(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc <= this.prev &&\n hasOwn.call(entry, \"finallyLoc\") &&\n this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n if (finallyEntry &&\n (type === \"break\" ||\n type === \"continue\") &&\n finallyEntry.tryLoc <= arg &&\n arg <= finallyEntry.finallyLoc) {\n // Ignore the finally entry if control is not jumping to a\n // location outside the try/catch block.\n finallyEntry = null;\n }\n\n var record = finallyEntry ? finallyEntry.completion : {};\n record.type = type;\n record.arg = arg;\n\n if (finallyEntry) {\n this.method = \"next\";\n this.next = finallyEntry.finallyLoc;\n return ContinueSentinel;\n }\n\n return this.complete(record);\n },\n\n complete: function(record, afterLoc) {\n if (record.type === \"throw\") {\n throw record.arg;\n }\n\n if (record.type === \"break\" ||\n record.type === \"continue\") {\n this.next = record.arg;\n } else if (record.type === \"return\") {\n this.rval = this.arg = record.arg;\n this.method = \"return\";\n this.next = \"end\";\n } else if (record.type === \"normal\" && afterLoc) {\n this.next = afterLoc;\n }\n\n return ContinueSentinel;\n },\n\n finish: function(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) {\n this.complete(entry.completion, entry.afterLoc);\n resetTryEntry(entry);\n return ContinueSentinel;\n }\n }\n },\n\n \"catch\": function(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n if (record.type === \"throw\") {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n return thrown;\n }\n }\n\n // The context.catch method must only be called with a location\n // argument that corresponds to a known catch block.\n throw new Error(\"illegal catch attempt\");\n },\n\n delegateYield: function(iterable, resultName, nextLoc) {\n this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n };\n\n if (this.method === \"next\") {\n // Deliberately forget the last sent value so that we don't\n // accidentally pass it on to the delegate.\n this.arg = undefined;\n }\n\n return ContinueSentinel;\n }\n };\n})(\n // In sloppy mode, unbound `this` refers to the global object, fallback to\n // Function constructor if we're in global strict mode. That is sadly a form\n // of indirect eval which violates Content Security Policy.\n (function() { return this })() || Function(\"return this\")()\n);\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"router-view\")\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=7ba5bd90&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('7ba5bd90', component.options)\n } else {\n api.reload('7ba5bd90', component.options)\n }\n module.hot.accept(\"./App.vue?vue&type=template&id=7ba5bd90&\", function () {\n api.rerender('7ba5bd90', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/App.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<router-view></router-view>\n</template>\n\n<script>\nexport default {\n\tname: 'App',\n\tbeforeMount: function() {\n\t\t// importing server data into the store\n\t\tconst serverDataElmt = document.getElementById('serverData');\n\t\tif (serverDataElmt !== null) {\n\t\t\tthis.$store.commit('setServerData', JSON.parse(document.getElementById('serverData').dataset.server));\n\t\t}\n\t}\n}\n</script>\n","/**\n * vue-router v3.0.1\n * (c) 2017 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (process.env.NODE_ENV !== 'production' && !condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nvar View = {\n name: 'router-view',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n if (parent.$vnode && parent.$vnode.data.routerView) {\n depth++;\n }\n if (parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n return h(cache[name], data, children)\n }\n\n var matched = route.matched[depth];\n // render empty node if no matched route\n if (!matched) {\n cache[name] = null;\n return h()\n }\n\n var component = cache[name] = matched.components[name];\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // resolve props\n var propsToPass = data.props = resolveProps(route, matched.props && matched.props[name]);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n\n return h(component, data, children)\n }\n};\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\nfunction extend (to, from) {\n for (var key in from) {\n to[key] = from[key];\n }\n return to\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nvar decode = decodeURIComponent;\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n parsedQuery[key] = extraQuery[key];\n }\n return parsedQuery\n}\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0\n ? decode(parts.join('='))\n : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj ? Object.keys(obj).map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n }).filter(function (x) { return x.length > 0; }).join('&') : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery$$1 = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery$$1),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery$$1);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return (\n a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') &&\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query)\n )\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params)\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a);\n var bKeys = Object.keys(b);\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key) {\n var aVal = a[key];\n var bVal = b[key];\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar Link = {\n name: 'router-link',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n exact: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(this.to, current, this.append);\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback = globalActiveClass == null\n ? 'router-link-active'\n : globalActiveClass;\n var exactActiveClassFallback = globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass = this.activeClass == null\n ? activeClassFallback\n : this.activeClass;\n var exactActiveClass = this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n var compareTarget = location.path\n ? createRoute(null, location, null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget);\n classes[activeClass] = this.exact\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1.replace) {\n router.replace(location);\n } else {\n router.push(location);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) { on[e] = handler; });\n } else {\n on[this.event] = handler;\n }\n\n var data = {\n class: classes\n };\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href };\n } else {\n // find the first <a> child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the <a> is a static node\n a.isStatic = false;\n var extend = _Vue.util.extend;\n var aData = a.data = extend({}, a.data);\n aData.on = on;\n var aAttrs = a.data.attrs = extend({}, a.data.attrs);\n aAttrs.href = href;\n } else {\n // doesn't have <a> child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('router-view', View);\n Vue.component('router-link', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/\\//g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options))\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$');\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\n\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n return filler(params || {}, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n }\n}\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(path || name)) + \" cannot be a \" +\n \"string id. Use an actual component instead.\"\n );\n }\n\n var pathToRegexpOptions = route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(\n path,\n parent,\n pathToRegexpOptions.strict\n );\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n instances: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props: route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (route.name && !route.redirect && route.children.some(function (child) { return /^\\/?$/.test(child.path); })) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias)\n ? route.alias\n : [route.alias];\n\n aliases.forEach(function (alias) {\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (path, pathToRegexpOptions) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(!keys[key.name], (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\"));\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (path, parent, strict) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next.name || next._normalized) {\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = assign({}, next);\n next._normalized = true;\n var params = assign(assign({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction assign (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n if (record) {\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n }\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n var val = typeof m[i] === 'string' ? decodeURIComponent(m[i]) : m[i];\n if (key) {\n params[key.name] = val;\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Fix for #1585 for Firefox\n window.history.replaceState({ key: getStateKey() }, '');\n window.addEventListener('popstate', function (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n });\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior(to, from, isPop ? position : null);\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll.then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n }).catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n var el = document.querySelector(shouldScroll.selector);\n if (el) {\n var offset = shouldScroll.offset && typeof shouldScroll.offset === 'object' ? shouldScroll.offset : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n window.scrollTo(position.x, position.y);\n }\n}\n\n/* */\n\nvar supportsPushState = inBrowser && (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && 'pushState' in window.history\n})();\n\n// use User Timing api (if present) for more accurate key precision\nvar Time = inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nvar _key = genKey();\n\nfunction genKey () {\n return Time.now().toFixed(3)\n}\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n _key = key;\n}\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n history.replaceState({ key: _key }, '', url);\n } else {\n _key = genKey();\n history.pushState({ key: _key }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (location, onComplete, onAbort) {\n var this$1 = this;\n\n var route = this.router.match(location, this.current);\n this.confirmTransition(route, function () {\n this$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1.ensureURL();\n\n // fire ready cbs once\n if (!this$1.ready) {\n this$1.ready = true;\n this$1.readyCbs.forEach(function (cb) { cb(route); });\n }\n }, function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1.ready) {\n this$1.ready = true;\n this$1.readyErrorCbs.forEach(function (cb) { cb(err); });\n }\n });\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1 = this;\n\n var current = this.current;\n var abort = function (err) {\n if (isError(err)) {\n if (this$1.errorCbs.length) {\n this$1.errorCbs.forEach(function (cb) { cb(err); });\n } else {\n warn(false, 'uncaught error during route navigation:');\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n route.matched.length === current.matched.length\n ) {\n this.ensureURL();\n return abort()\n }\n\n var ref = resolveQueue(this.current.matched, route.matched);\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n this.pending = route;\n var iterator = function (hook, next) {\n if (this$1.pending !== route) {\n return abort()\n }\n try {\n hook(route, current, function (to) {\n if (to === false || isError(to)) {\n // next(false) -> abort navigation, ensure current URL\n this$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' && (\n typeof to.path === 'string' ||\n typeof to.name === 'string'\n ))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort();\n if (typeof to === 'object' && to.replace) {\n this$1.replace(to);\n } else {\n this$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n var postEnterCbs = [];\n var isValid = function () { return this$1.current === route; };\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated, postEnterCbs, isValid);\n var queue = enterGuards.concat(this$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1.pending !== route) {\n return abort()\n }\n this$1.pending = null;\n onComplete(route);\n if (this$1.router.app) {\n this$1.router.app.$nextTick(function () {\n postEnterCbs.forEach(function (cb) { cb(); });\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n var prev = this.current;\n this.current = route;\n this.cb && this.cb(route);\n this.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect <base> tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated,\n cbs,\n isValid\n) {\n return extractGuards(activated, 'beforeRouteEnter', function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key, cbs, isValid)\n })\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key,\n cbs,\n isValid\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n next(cb);\n if (typeof cb === 'function') {\n cbs.push(function () {\n // #750\n // if a router-view is wrapped with an out-in transition,\n // the instance may not have been registered at this time.\n // we will need to poll for registration until current route\n // is no longer valid.\n poll(cb, match.instances, key, isValid);\n });\n }\n })\n }\n}\n\nfunction poll (\n cb, // somehow flow cannot infer this is a function\n instances,\n key,\n isValid\n) {\n if (instances[key]) {\n cb(instances[key]);\n } else if (isValid()) {\n setTimeout(function () {\n poll(cb, instances, key, isValid);\n }, 16);\n }\n}\n\n/* */\n\n\nvar HTML5History = (function (History$$1) {\n function HTML5History (router, base) {\n var this$1 = this;\n\n History$$1.call(this, router, base);\n\n var expectScroll = router.options.scrollBehavior;\n\n if (expectScroll) {\n setupScroll();\n }\n\n var initLocation = getLocation(this.base);\n window.addEventListener('popstate', function (e) {\n var current = this$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1.base);\n if (this$1.current === START && location === initLocation) {\n return\n }\n\n this$1.transitionTo(location, function (route) {\n if (expectScroll) {\n handleScroll(router, route, current, true);\n }\n });\n });\n }\n\n if ( History$$1 ) HTML5History.__proto__ = History$$1;\n HTML5History.prototype = Object.create( History$$1 && History$$1.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n if (base && path.indexOf(base) === 0) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\n\nvar HashHistory = (function (History$$1) {\n function HashHistory (router, base, fallback) {\n History$$1.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History$$1 ) HashHistory.__proto__ = History$$1;\n HashHistory.prototype = Object.create( History$$1 && History$$1.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1 = this;\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n setupScroll();\n }\n\n window.addEventListener(supportsPushState ? 'popstate' : 'hashchange', function () {\n var current = this$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(\n cleanPath(base + '/#' + location)\n );\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n return index === -1 ? '' : href.slice(index + 1)\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\n\nvar AbstractHistory = (function (History$$1) {\n function AbstractHistory (router, base) {\n History$$1.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History$$1 ) AbstractHistory.__proto__ = History$$1;\n AbstractHistory.prototype = Object.create( History$$1 && History$$1.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(location, function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index + 1).concat(route);\n this$1.index++;\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(location, function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index).concat(route);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(route, function () {\n this$1.index = targetIndex;\n this$1.updateRoute(route);\n });\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback = mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (\n raw,\n current,\n redirectedFrom\n) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1 = this;\n\n process.env.NODE_ENV !== 'production' && assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // main app already initialized.\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History) {\n history.transitionTo(history.getCurrentLocation());\n } else if (history instanceof HashHistory) {\n var setupHashListener = function () {\n history.setupListeners();\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupHashListener,\n setupHashListener\n );\n }\n\n history.listen(function (route) {\n this$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n this.history.push(location, onComplete, onAbort);\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n this.history.replace(location, onComplete, onAbort);\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply([], route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n }))\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n var location = normalizeLocation(\n to,\n current || this.history.current,\n append,\n this\n );\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\nVueRouter.install = install;\nVueRouter.version = '3.0.1';\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nexport default VueRouter;\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"app-settings\", attrs: { id: \"content\" } },\n [\n _c(\n \"app-navigation\",\n { attrs: { menu: _vm.menu } },\n [\n _c(\"template\", { slot: \"settings-content\" }, [\n _c(\n \"div\",\n [\n _c(\"p\", [_vm._v(_vm._s(_vm.t(\"settings\", \"Default quota :\")))]),\n _vm._v(\" \"),\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.defaultQuota,\n options: _vm.quotaOptions,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select default quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n allowEmpty: false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setDefaultQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLanguages,\n expression: \"showLanguages\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showLanguages\" },\n domProps: {\n checked: Array.isArray(_vm.showLanguages)\n ? _vm._i(_vm.showLanguages, null) > -1\n : _vm.showLanguages\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLanguages,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLanguages = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLanguages = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLanguages = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLanguages\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show Languages\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLastLogin,\n expression: \"showLastLogin\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showLastLogin\" },\n domProps: {\n checked: Array.isArray(_vm.showLastLogin)\n ? _vm._i(_vm.showLastLogin, null) > -1\n : _vm.showLastLogin\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLastLogin,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLastLogin = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLastLogin = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLastLogin = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLastLogin\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show last login\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showUserBackend,\n expression: \"showUserBackend\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showUserBackend\" },\n domProps: {\n checked: Array.isArray(_vm.showUserBackend)\n ? _vm._i(_vm.showUserBackend, null) > -1\n : _vm.showUserBackend\n },\n on: {\n change: function($event) {\n var $$a = _vm.showUserBackend,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showUserBackend = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showUserBackend = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showUserBackend = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showUserBackend\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show user backend\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showStoragePath,\n expression: \"showStoragePath\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showStoragePath\" },\n domProps: {\n checked: Array.isArray(_vm.showStoragePath)\n ? _vm._i(_vm.showStoragePath, null) > -1\n : _vm.showStoragePath\n },\n on: {\n change: function($event) {\n var $$a = _vm.showStoragePath,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showStoragePath = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showStoragePath = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showStoragePath = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showStoragePath\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show storage path\")))\n ])\n ])\n ])\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\"user-list\", {\n attrs: {\n users: _vm.users,\n showConfig: _vm.showConfig,\n selectedGroup: _vm.selectedGroup,\n externalActions: _vm.externalActions\n }\n })\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n class: { \"icon-loading\": _vm.menu.loading },\n attrs: { id: \"app-navigation\" }\n },\n [\n _vm.menu.new\n ? _c(\"div\", { staticClass: \"app-navigation-new\" }, [\n _c(\n \"button\",\n {\n class: _vm.menu.new.icon,\n attrs: { type: \"button\", id: _vm.menu.new.id },\n on: { click: _vm.menu.new.action }\n },\n [_vm._v(_vm._s(_vm.menu.new.text))]\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { attrs: { id: _vm.menu.id } },\n _vm._l(_vm.menu.items, function(item) {\n return _c(\"navigation-item\", { key: item.key, attrs: { item: item } })\n })\n ),\n _vm._v(\" \"),\n !!_vm.$slots[\"settings-content\"]\n ? _c(\"div\", { attrs: { id: \"app-settings\" } }, [\n _c(\"div\", { attrs: { id: \"app-settings-header\" } }, [\n _c(\n \"button\",\n {\n staticClass: \"settings-button\",\n attrs: { \"data-apps-slide-toggle\": \"#app-settings-content\" }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Settings\")))]\n )\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { attrs: { id: \"app-settings-content\" } },\n [_vm._t(\"settings-content\")],\n 2\n )\n ])\n : _vm._e()\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _vm.item.caption\n ? _c(\"li\", { staticClass: \"app-navigation-caption\" }, [\n _vm._v(_vm._s(_vm.item.text))\n ])\n : _c(\n \"nav-element\",\n _vm._b(\n {\n class: [\n {\n \"icon-loading-small\": _vm.item.loading,\n open: _vm.item.opened,\n collapsible:\n _vm.item.collapsible &&\n _vm.item.children &&\n _vm.item.children.length > 0\n },\n _vm.item.classes\n ],\n attrs: { id: _vm.item.id }\n },\n \"nav-element\",\n _vm.navElement(_vm.item),\n false\n ),\n [\n _vm.item.bullet\n ? _c(\"div\", {\n staticClass: \"app-navigation-entry-bullet\",\n style: { backgroundColor: _vm.item.bullet }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"a\",\n {\n class: _vm.item.icon,\n attrs: { href: _vm.item.href ? _vm.item.href : \"#\" },\n on: { click: _vm.toggleCollapse }\n },\n [\n _vm.item.iconUrl\n ? _c(\"img\", {\n attrs: { alt: _vm.item.text, src: _vm.item.iconUrl }\n })\n : _vm._e(),\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.item.text) + \"\\n\\t\")\n ]\n ),\n _vm._v(\" \"),\n _vm.item.utils\n ? _c(\"div\", { staticClass: \"app-navigation-entry-utils\" }, [\n _c(\n \"ul\",\n [\n Number.isInteger(_vm.item.utils.counter)\n ? _c(\n \"li\",\n { staticClass: \"app-navigation-entry-utils-counter\" },\n [_vm._v(_vm._s(_vm.item.utils.counter))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.utils.actions &&\n _vm.item.utils.actions.length === 1\n ? _c(\n \"li\",\n {\n staticClass:\n \"app-navigation-entry-utils-menu-button\"\n },\n [\n _c(\"button\", {\n class: _vm.item.utils.actions[0].icon,\n attrs: { title: _vm.item.utils.actions[0].text },\n on: { click: _vm.item.utils.actions[0].action }\n })\n ]\n )\n : _vm.item.utils.actions &&\n _vm.item.utils.actions.length === 2 &&\n !Number.isInteger(_vm.item.utils.counter)\n ? _vm._l(_vm.item.utils.actions, function(action) {\n return _c(\n \"li\",\n {\n key: action.action,\n staticClass:\n \"app-navigation-entry-utils-menu-button\"\n },\n [\n _c(\"button\", {\n class: action.icon,\n attrs: { title: action.text },\n on: { click: action.action }\n })\n ]\n )\n })\n : _vm.item.utils.actions &&\n _vm.item.utils.actions.length > 1 &&\n (Number.isInteger(_vm.item.utils.counter) ||\n _vm.item.utils.actions.length > 2)\n ? _c(\n \"li\",\n {\n staticClass:\n \"app-navigation-entry-utils-menu-button\"\n },\n [\n _c(\"button\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n on: { click: _vm.showMenu }\n })\n ]\n )\n : _vm._e()\n ],\n 2\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.utils &&\n _vm.item.utils.actions &&\n _vm.item.utils.actions.length > 1 &&\n (Number.isInteger(_vm.item.utils.counter) ||\n _vm.item.utils.actions.length > 2)\n ? _c(\n \"div\",\n {\n staticClass: \"app-navigation-entry-menu\",\n class: { open: _vm.openedMenu }\n },\n [\n _c(\"popover-menu\", {\n attrs: { menu: _vm.item.utils.actions }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.undo\n ? _c(\"div\", { staticClass: \"app-navigation-entry-deleted\" }, [\n _c(\n \"div\",\n { staticClass: \"app-navigation-entry-deleted-description\" },\n [_vm._v(_vm._s(_vm.item.undo.text))]\n ),\n _vm._v(\" \"),\n _c(\"button\", {\n staticClass:\n \"app-navigation-entry-deleted-button icon-history\",\n attrs: { title: _vm.t(\"settings\", \"Undo\") }\n })\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.edit\n ? _c(\"div\", { staticClass: \"app-navigation-entry-edit\" }, [\n _c(\"form\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.item.text,\n expression: \"item.text\"\n }\n ],\n attrs: { type: \"text\" },\n domProps: { value: _vm.item.text },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.item, \"text\", $event.target.value)\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-close\",\n attrs: { type: \"submit\", value: \"\" },\n on: {\n click: function($event) {\n $event.stopPropagation()\n $event.preventDefault()\n return _vm.cancelEdit($event)\n }\n }\n })\n ])\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.children\n ? _c(\n \"ul\",\n _vm._l(_vm.item.children, function(item, key) {\n return _c(\"navigation-item\", {\n key: key,\n attrs: { item: item }\n })\n })\n )\n : _vm._e()\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"ul\",\n _vm._l(_vm.menu, function(item, key) {\n return _c(\"popover-item\", { key: key, attrs: { item: item } })\n })\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"li\", [\n _vm.item.href\n ? _c(\n \"a\",\n {\n attrs: {\n href: _vm.item.href ? _vm.item.href : \"#\",\n target: _vm.item.target ? _vm.item.target : \"\",\n rel: \"noreferrer noopener\"\n },\n on: { click: _vm.item.action }\n },\n [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ]\n )\n : _vm.item.action\n ? _c(\"button\", { on: { click: _vm.item.action } }, [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ])\n : _c(\"span\", { staticClass: \"menuitem\" }, [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ])\n ])\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<li>\n\t\t<!-- If item.href is set, a link will be directly used -->\n\t\t<a @click=\"item.action\" v-if=\"item.href\" :href=\"(item.href) ? item.href : '#' \" :target=\"(item.target) ? item.target : '' \" rel=\"noreferrer noopener\">\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</a>\n\t\t<!-- If item.action is set instead, a button will be used -->\n\t\t<button @click=\"item.action\" v-else-if=\"item.action\">\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</button>\n\t\t<!-- If item.longtext is set AND the item does not have an action -->\n\t\t<span class=\"menuitem\" v-else>\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</span>\n\t</li>\n</template>\n\n<script>\nexport default {\n\tprops: ['item']\n};\n</script>\n","import { render, staticRenderFns } from \"./popoverItem.vue?vue&type=template&id=4c6af9e6&\"\nimport script from \"./popoverItem.vue?vue&type=script&lang=js&\"\nexport * from \"./popoverItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('4c6af9e6', component.options)\n } else {\n api.reload('4c6af9e6', component.options)\n }\n module.hot.accept(\"./popoverItem.vue?vue&type=template&id=4c6af9e6&\", function () {\n api.rerender('4c6af9e6', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/popoverMenu/popoverItem.vue\"\nexport default component.exports","import { render, staticRenderFns } from \"./popoverMenu.vue?vue&type=template&id=04ea21c4&\"\nimport script from \"./popoverMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./popoverMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('04ea21c4', component.options)\n } else {\n api.reload('04ea21c4', component.options)\n }\n module.hot.accept(\"./popoverMenu.vue?vue&type=template&id=04ea21c4&\", function () {\n api.rerender('04ea21c4', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/popoverMenu.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<ul>\n\t\t<popover-item v-for=\"(item, key) in menu\" :item=\"item\" :key=\"key\" />\n\t</ul>\n</template>\n\n\n<script>\nimport popoverItem from './popoverMenu/popoverItem';\n\nexport default {\n\tname: 'popoverMenu',\n\tprops: ['menu'],\n\tcomponents: {\n\t\tpopoverItem\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./navigationItem.vue?vue&type=template&id=2cb61dde&\"\nimport script from \"./navigationItem.vue?vue&type=script&lang=js&\"\nexport * from \"./navigationItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('2cb61dde', component.options)\n } else {\n api.reload('2cb61dde', component.options)\n }\n module.hot.accept(\"./navigationItem.vue?vue&type=template&id=2cb61dde&\", function () {\n api.rerender('2cb61dde', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appNavigation/navigationItem.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n<template>\n\n\t<!-- Is this a caption ? -->\n\t<li class=\"app-navigation-caption\" v-if=\"item.caption\">{{item.text}}</li>\n\n\t<!-- Navigation item -->\n\t<nav-element v-else :id=\"item.id\" v-bind=\"navElement(item)\"\n\t\t\t\t :class=\"[{'icon-loading-small': item.loading, 'open': item.opened, 'collapsible': item.collapsible&&item.children&&item.children.length>0 }, item.classes]\">\n\n\t\t<!-- Bullet -->\n\t\t<div v-if=\"item.bullet\" class=\"app-navigation-entry-bullet\" :style=\"{ backgroundColor: item.bullet }\"></div>\n\n\t\t<!-- Main link -->\n\t\t<a :href=\"(item.href) ? item.href : '#' \" @click=\"toggleCollapse\" :class=\"item.icon\">\n\t\t\t<img v-if=\"item.iconUrl\" :alt=\"item.text\" :src=\"item.iconUrl\">\n\t\t\t{{item.text}}\n\t\t</a>\n\n\t\t<!-- Popover, counter and button(s) -->\n\t\t<div v-if=\"item.utils\" class=\"app-navigation-entry-utils\">\n\t\t\t<ul>\n\t\t\t\t<!-- counter -->\n\t\t\t\t<li v-if=\"Number.isInteger(item.utils.counter)\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-counter\">{{item.utils.counter}}</li>\n\n\t\t\t\t<!-- first action if only one action -->\n\t\t\t\t<li v-if=\"item.utils.actions && item.utils.actions.length === 1\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-menu-button\">\n\t\t\t\t\t<button @click=\"item.utils.actions[0].action\" :class=\"item.utils.actions[0].icon\" :title=\"item.utils.actions[0].text\"></button>\n\t\t\t\t</li>\n\n\t\t\t\t<!-- second action only two actions and no counter -->\n\t\t\t\t<li v-else-if=\"item.utils.actions && item.utils.actions.length === 2 && !Number.isInteger(item.utils.counter)\"\n\t\t\t\t\tv-for=\"action in item.utils.actions\" :key=\"action.action\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-menu-button\">\n\t\t\t\t\t<button @click=\"action.action\" :class=\"action.icon\" :title=\"action.text\"></button>\n\t\t\t\t</li>\n\n\t\t\t\t<!-- menu if only at least one action and counter OR two actions and no counter-->\n\t\t\t\t<li v-else-if=\"item.utils.actions && item.utils.actions.length > 1 && (Number.isInteger(item.utils.counter) || item.utils.actions.length > 2)\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-menu-button\">\n\t\t\t\t\t<button v-click-outside=\"hideMenu\" @click=\"showMenu\" ></button>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t</div>\n\n\t\t<!-- if more than 2 actions or more than 1 actions with counter -->\n\t\t<div v-if=\"item.utils && item.utils.actions && item.utils.actions.length > 1 && (Number.isInteger(item.utils.counter) || item.utils.actions.length > 2)\"\n\t\t\t class=\"app-navigation-entry-menu\" :class=\"{ 'open': openedMenu }\">\n\t\t\t <popover-menu :menu=\"item.utils.actions\"/>\n\t\t</div>\n\n\t\t<!-- undo entry -->\n\t\t<div class=\"app-navigation-entry-deleted\" v-if=\"item.undo\">\n\t\t\t<div class=\"app-navigation-entry-deleted-description\">{{item.undo.text}}</div>\n\t\t\t<button class=\"app-navigation-entry-deleted-button icon-history\" :title=\"t('settings', 'Undo')\"></button>\n\t\t</div>\n\n\t\t<!-- edit entry -->\n\t\t<div class=\"app-navigation-entry-edit\" v-if=\"item.edit\">\n\t\t\t<form>\n\t\t\t\t<input type=\"text\" v-model=\"item.text\">\n\t\t\t\t<input type=\"submit\" value=\"\" class=\"icon-confirm\">\n\t\t\t\t<input type=\"submit\" value=\"\" class=\"icon-close\" @click.stop.prevent=\"cancelEdit\">\n\t\t\t</form>\n\t\t</div>\n\n\t\t<!-- if the item has children, inject the component with proper data -->\n\t\t<ul v-if=\"item.children\">\n\t\t\t<navigation-item v-for=\"(item, key) in item.children\" :item=\"item\" :key=\"key\" />\n\t\t</ul>\n\t</nav-element>\n</template>\n\n<script>\nimport popoverMenu from '../popoverMenu';\nimport ClickOutside from 'vue-click-outside';\nimport Vue from 'vue';\n\nexport default {\n\tname: 'navigationItem',\n\tprops: ['item'],\n\tcomponents: {\n\t\tpopoverMenu\n\t},\n\tdirectives: {\n\t\tClickOutside\n\t},\n\tdata() {\n\t\treturn {\n\t\t\topenedMenu: false\n\t\t};\n\t},\n\tmethods: {\n\t\tshowMenu() {\n\t\t\tthis.openedMenu = true;\n\t\t},\n\t\thideMenu() {\n\t\t\tthis.openedMenu = false;\n\t\t},\n\t\ttoggleCollapse() {\n\t\t\t// if item.opened isn't set, Vue won't trigger view updates https://vuejs.org/v2/api/#Vue-set\n\t\t\t// ternary is here to detect the undefined state of item.opened\n\t\t\tVue.set(this.item, 'opened', this.item.opened ? !this.item.opened : true);\n\t\t},\n\t\tcancelEdit() {\n\t\t\t// remove the editing class\n\t\t\tif (Array.isArray(this.item.classes))\n\t\t\t\tthis.item.classes = this.item.classes.filter(\n\t\t\t\t\titem => item !== 'editing'\n\t\t\t\t);\n\t\t},\n\t\t// This is used to decide which outter element type to use\n\t\t// li or router-link\n\t\tnavElement(item) {\n\t\t\tif (item.href) {\n\t\t\t\treturn {\n\t\t\t\t\tis: 'li'\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tis: 'router-link',\n\t\t\t\ttag: 'li',\n\t\t\t\tto: item.router,\n\t\t\t\texact: true\n\t\t\t};\n\t\t}\n\t},\n\tmounted() {\n\t\t// prevent click outside event with popupItem.\n\t\tthis.popupItem = this.$el;\n\t}\n};\n</script>\n","import { render, staticRenderFns } from \"./appNavigation.vue?vue&type=template&id=142c1cb5&\"\nimport script from \"./appNavigation.vue?vue&type=script&lang=js&\"\nexport * from \"./appNavigation.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('142c1cb5', component.options)\n } else {\n api.reload('142c1cb5', component.options)\n }\n module.hot.accept(\"./appNavigation.vue?vue&type=template&id=142c1cb5&\", function () {\n api.rerender('142c1cb5', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appNavigation.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"app-navigation\" :class=\"{'icon-loading': menu.loading}\">\n\t\t<div class=\"app-navigation-new\" v-if=\"menu.new\">\n\t\t\t<button type=\"button\" :id=\"menu.new.id\" :class=\"menu.new.icon\" @click=\"menu.new.action\">{{menu.new.text}}</button>\n\t\t</div>\n\t\t<ul :id=\"menu.id\">\n\t\t\t<navigation-item v-for=\"item in menu.items\" :item=\"item\" :key=\"item.key\" />\n\t\t</ul>\n\t\t<div id=\"app-settings\" v-if=\"!!$slots['settings-content']\">\n\t\t\t<div id=\"app-settings-header\">\n\t\t\t\t<button class=\"settings-button\"\n\t\t\t\t\t\tdata-apps-slide-toggle=\"#app-settings-content\"\n\t\t\t\t>{{t('settings', 'Settings')}}</button>\n\t\t\t</div>\n\t\t\t<div id=\"app-settings-content\">\n\t\t\t\t<slot name=\"settings-content\"></slot>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</template>\n\n<script>\nimport navigationItem from './appNavigation/navigationItem';\n\nexport default {\n\tname: 'appNavigation',\n\tprops: ['menu'],\n\tcomponents: {\n\t\tnavigationItem\n\t}\n};\n</script>\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"user-list-grid\",\n attrs: { id: \"app-content\" },\n on: {\n \"&scroll\": function($event) {\n return _vm.onScroll($event)\n }\n }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && !_vm.showConfig.showNewUserForm },\n attrs: { id: \"grid-header\" }\n },\n [\n _c(\"div\", { staticClass: \"avatar\", attrs: { id: \"headerAvatar\" } }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\", attrs: { id: \"headerName\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Username\")))\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"displayName\", attrs: { id: \"headerDisplayName\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Display name\")))]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"password\", attrs: { id: \"headerPassword\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Password\")))]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"mailAddress\", attrs: { id: \"headerAddress\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Email\")))]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\", attrs: { id: \"headerGroups\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Groups\")))\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\", attrs: { id: \"headerSubAdmins\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Group admin for\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"quota\", attrs: { id: \"headerQuota\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Quota\")))\n ]),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\", attrs: { id: \"headerLanguages\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Language\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\n \"div\",\n { staticClass: \"headerStorageLocation storageLocation\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Storage location\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"headerUserBackend userBackend\" }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"User backend\")))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"headerLastLogin lastLogin\" }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Last login\")))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.showConfig.showNewUserForm,\n expression: \"showConfig.showNewUserForm\"\n }\n ],\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && _vm.showConfig.showNewUserForm },\n attrs: { id: \"new-user\", disabled: _vm.loading },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.createUser($event)\n }\n }\n },\n [\n _c(\"div\", { class: _vm.loading ? \"icon-loading-small\" : \"icon-add\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.id,\n expression: \"newUser.id\"\n }\n ],\n attrs: {\n id: \"newusername\",\n type: \"text\",\n required: \"\",\n placeholder: _vm.t(\"settings\", \"Username\"),\n name: \"username\",\n autocomplete: \"off\",\n autocapitalize: \"none\",\n autocorrect: \"off\",\n pattern: \"[a-zA-Z0-9 _\\\\.@\\\\-']+\"\n },\n domProps: { value: _vm.newUser.id },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"id\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.displayName,\n expression: \"newUser.displayName\"\n }\n ],\n attrs: {\n id: \"newdisplayname\",\n type: \"text\",\n placeholder: _vm.t(\"settings\", \"Display name\"),\n name: \"displayname\",\n autocomplete: \"off\",\n autocapitalize: \"none\",\n autocorrect: \"off\"\n },\n domProps: { value: _vm.newUser.displayName },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"displayName\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"password\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.password,\n expression: \"newUser.password\"\n }\n ],\n attrs: {\n id: \"newuserpassword\",\n type: \"password\",\n required: _vm.newUser.mailAddress === \"\",\n placeholder: _vm.t(\"settings\", \"Password\"),\n name: \"password\",\n autocomplete: \"new-password\",\n autocapitalize: \"none\",\n autocorrect: \"off\",\n minlength: _vm.minPasswordLength\n },\n domProps: { value: _vm.newUser.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"password\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.mailAddress,\n expression: \"newUser.mailAddress\"\n }\n ],\n attrs: {\n id: \"newemail\",\n type: \"email\",\n required: _vm.newUser.password === \"\",\n placeholder: _vm.t(\"settings\", \"Email\"),\n name: \"email\",\n autocomplete: \"off\",\n autocapitalize: \"none\",\n autocorrect: \"off\"\n },\n domProps: { value: _vm.newUser.mailAddress },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"mailAddress\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"groups\" },\n [\n !_vm.settings.isAdmin\n ? _c(\"input\", {\n attrs: {\n type: \"text\",\n tabindex: \"-1\",\n id: \"newgroups\",\n required: !_vm.settings.isAdmin\n },\n domProps: { value: _vm.newUser.groups }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.canAddGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false,\n allowEmpty: _vm.settings.isAdmin\n },\n model: {\n value: _vm.newUser.groups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"groups\", $$v)\n },\n expression: \"newUser.groups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\" },\n [\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false\n },\n model: {\n value: _vm.newUser.subAdminsGroups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"subAdminsGroups\", $$v)\n },\n expression: \"newUser.subAdminsGroups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"quota\" },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n allowEmpty: false,\n taggable: true\n },\n on: { tag: _vm.validateQuota },\n model: {\n value: _vm.newUser.quota,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"quota\", $$v)\n },\n expression: \"newUser.quota\"\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\" },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"Default language\"),\n label: \"name\",\n \"track-by\": \"code\",\n allowEmpty: false,\n \"group-values\": \"languages\",\n \"group-label\": \"label\"\n },\n model: {\n value: _vm.newUser.language,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"language\", $$v)\n },\n expression: \"newUser.language\"\n }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"lastLogin\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _c(\"input\", {\n staticClass: \"button primary icon-checkmark-white has-tooltip\",\n attrs: {\n type: \"submit\",\n id: \"newsubmit\",\n value: \"\",\n title: _vm.t(\"settings\", \"Add a new user\")\n }\n })\n ])\n ]\n ),\n _vm._v(\" \"),\n _vm._l(_vm.filteredUsers, function(user, key) {\n return _c(\"user-row\", {\n key: key,\n attrs: {\n user: user,\n settings: _vm.settings,\n showConfig: _vm.showConfig,\n groups: _vm.groups,\n subAdminsGroups: _vm.subAdminsGroups,\n quotaOptions: _vm.quotaOptions,\n languages: _vm.languages,\n externalActions: _vm.externalActions\n }\n })\n }),\n _vm._v(\" \"),\n _c(\n \"infinite-loading\",\n { ref: \"infiniteLoading\", on: { infinite: _vm.infiniteHandler } },\n [\n _c(\"div\", { attrs: { slot: \"spinner\" }, slot: \"spinner\" }, [\n _c(\"div\", { staticClass: \"users-icon-loading icon-loading\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-more\" }, slot: \"no-more\" }, [\n _c(\"div\", { staticClass: \"users-list-end\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-results\" }, slot: \"no-results\" }, [\n _c(\"div\", { attrs: { id: \"emptycontent\" } }, [\n _c(\"div\", { staticClass: \"icon-contacts-dark\" }),\n _vm._v(\" \"),\n _c(\"h2\", [_vm._v(_vm._s(_vm.t(\"settings\", \"No users in here\")))])\n ])\n ])\n ]\n )\n ],\n 2\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return Object.keys(_vm.user).length === 1\n ? _c(\"div\", { staticClass: \"row\", attrs: { \"data-id\": _vm.user.id } }, [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\": _vm.loading.delete || _vm.loading.disable\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [_vm._v(_vm._s(_vm.user.id))]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"obfuscated\" }, [\n _vm._v(\n _vm._s(\n _vm.t(\n \"settings\",\n \"You do not have permissions to see the details of this user\"\n )\n )\n )\n ])\n ])\n : _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\": _vm.loading.delete || _vm.loading.disable\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [_vm._v(_vm._s(_vm.user.id))]),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"displayName\",\n class: { \"icon-loading-small\": _vm.loading.displayName },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateDisplayName($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"displayName\",\n attrs: {\n id: \"displayName\" + _vm.user.id + _vm.rand,\n type: \"text\",\n disabled: _vm.loading.displayName || _vm.loading.all,\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n autocapitalize: \"off\",\n spellcheck: \"false\"\n },\n domProps: { value: _vm.user.displayname }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _vm.settings.canChangePassword\n ? _c(\n \"form\",\n {\n staticClass: \"password\",\n class: { \"icon-loading-small\": _vm.loading.password },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updatePassword($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"password\",\n attrs: {\n id: \"password\" + _vm.user.id + _vm.rand,\n type: \"password\",\n required: \"\",\n disabled: _vm.loading.password || _vm.loading.all,\n minlength: _vm.minPasswordLength,\n value: \"\",\n placeholder: _vm.t(\"settings\", \"New password\"),\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n autocapitalize: \"off\",\n spellcheck: \"false\"\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n )\n : _c(\"div\"),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"mailAddress\",\n class: { \"icon-loading-small\": _vm.loading.mailAddress },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateEmail($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"mailAddress\",\n attrs: {\n id: \"mailAddress\" + _vm.user.id + _vm.rand,\n type: \"email\",\n disabled: _vm.loading.mailAddress || _vm.loading.all,\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n autocapitalize: \"off\",\n spellcheck: \"false\"\n },\n domProps: { value: _vm.user.email }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"groups\",\n class: { \"icon-loading-small\": _vm.loading.groups }\n },\n [\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userGroups,\n options: _vm.availableGroups,\n disabled: _vm.loading.groups || _vm.loading.all,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n label: \"name\",\n \"track-by\": \"id\",\n limit: 2,\n multiple: true,\n taggable: _vm.settings.isAdmin,\n closeOnSelect: false\n },\n on: {\n tag: _vm.createGroup,\n select: _vm.addUserGroup,\n remove: _vm.removeUserGroup\n }\n },\n [\n _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.formatGroupsTitle(_vm.userGroups),\n expression: \"formatGroupsTitle(userGroups)\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"multiselect__limit\",\n attrs: { slot: \"limit\" },\n slot: \"limit\"\n },\n [_vm._v(\"+\" + _vm._s(_vm.userGroups.length - 2))]\n ),\n _vm._v(\" \"),\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n {\n staticClass: \"subadmins\",\n class: { \"icon-loading-small\": _vm.loading.subadmins }\n },\n [\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userSubAdminsGroups,\n options: _vm.subAdminsGroups,\n disabled: _vm.loading.subadmins || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n label: \"name\",\n \"track-by\": \"id\",\n limit: 2,\n multiple: true,\n closeOnSelect: false\n },\n on: {\n select: _vm.addUserSubAdmin,\n remove: _vm.removeUserSubAdmin\n }\n },\n [\n _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.formatGroupsTitle(\n _vm.userSubAdminsGroups\n ),\n expression:\n \"formatGroupsTitle(userSubAdminsGroups)\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"multiselect__limit\",\n attrs: { slot: \"limit\" },\n slot: \"limit\"\n },\n [\n _vm._v(\n \"+\" + _vm._s(_vm.userSubAdminsGroups.length - 2)\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"quota\",\n class: { \"icon-loading-small\": _vm.loading.quota }\n },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userQuota,\n options: _vm.quotaOptions,\n disabled: _vm.loading.quota || _vm.loading.all,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n allowEmpty: false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setUserQuota }\n }),\n _vm._v(\" \"),\n _c(\"progress\", {\n staticClass: \"quota-user-progress\",\n class: { warn: _vm.usedQuota > 80 },\n attrs: { max: \"100\" },\n domProps: { value: _vm.usedQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n {\n staticClass: \"languages\",\n class: { \"icon-loading-small\": _vm.loading.languages }\n },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userLanguage,\n options: _vm.languages,\n disabled: _vm.loading.languages || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"No language set\"),\n label: \"name\",\n \"track-by\": \"code\",\n allowEmpty: false,\n \"group-values\": \"languages\",\n \"group-label\": \"label\"\n },\n on: { input: _vm.setUserLanguage }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" }, [\n _vm._v(_vm._s(_vm.user.storageLocation))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(_vm._s(_vm.user.backend))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value:\n _vm.user.lastLogin > 0\n ? _vm.OC.Util.formatDate(_vm.user.lastLogin)\n : \"\",\n expression:\n \"user.lastLogin>0 ? OC.Util.formatDate(user.lastLogin) : ''\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"lastLogin\"\n },\n [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.user.lastLogin > 0\n ? _vm.OC.Util.relativeModifiedDate(_vm.user.lastLogin)\n : _vm.t(\"settings\", \"Never\")\n ) +\n \"\\n\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.OC.currentUser !== _vm.user.id &&\n _vm.user.id !== \"admin\" &&\n !_vm.loading.all\n ? _c(\"div\", { staticClass: \"toggleUserActions\" }, [\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: { click: _vm.toggleMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"popover-menu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<!-- Obfuscated user: Logged in user does not have permissions to see all of the data -->\n\t<div class=\"row\" v-if=\"Object.keys(user).length ===1\" :data-id=\"user.id\">\n\t\t<div class=\"avatar\" :class=\"{'icon-loading-small': loading.delete || loading.disable}\">\n\t\t\t<img alt=\"\" width=\"32\" height=\"32\" :src=\"generateAvatar(user.id, 32)\"\n\t\t\t\t :srcset=\"generateAvatar(user.id, 64)+' 2x, '+generateAvatar(user.id, 128)+' 4x'\"\n\t\t\t\t v-if=\"!loading.delete && !loading.disable\">\n\t\t</div>\n\t\t<div class=\"name\">{{user.id}}</div>\n\t\t<div class=\"obfuscated\">{{t('settings','You do not have permissions to see the details of this user')}}</div>\n\t</div>\n\n\t<!-- User full data -->\n\t<div class=\"row\" v-else :class=\"{'disabled': loading.delete || loading.disable}\" :data-id=\"user.id\">\n\t\t<div class=\"avatar\" :class=\"{'icon-loading-small': loading.delete || loading.disable}\">\n\t\t\t<img alt=\"\" width=\"32\" height=\"32\" :src=\"generateAvatar(user.id, 32)\"\n\t\t\t\t :srcset=\"generateAvatar(user.id, 64)+' 2x, '+generateAvatar(user.id, 128)+' 4x'\"\n\t\t\t\t v-if=\"!loading.delete && !loading.disable\">\n\t\t</div>\n\t\t<!-- dirty hack to ellipsis on two lines -->\n\t\t<div class=\"name\">{{user.id}}</div>\n\t\t<form class=\"displayName\" :class=\"{'icon-loading-small': loading.displayName}\" v-on:submit.prevent=\"updateDisplayName\">\n\t\t\t<input :id=\"'displayName'+user.id+rand\" type=\"text\"\n\t\t\t\t\t:disabled=\"loading.displayName||loading.all\"\n\t\t\t\t\t:value=\"user.displayname\" ref=\"displayName\"\n\t\t\t\t\tautocomplete=\"new-password\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n\t\t\t<input type=\"submit\" class=\"icon-confirm\" value=\"\" />\n\t\t</form>\n\t\t<form class=\"password\" v-if=\"settings.canChangePassword\" :class=\"{'icon-loading-small': loading.password}\"\n\t\t\t v-on:submit.prevent=\"updatePassword\">\n\t\t\t<input :id=\"'password'+user.id+rand\" type=\"password\" required\n\t\t\t\t\t:disabled=\"loading.password||loading.all\" :minlength=\"minPasswordLength\"\n\t\t\t\t\tvalue=\"\" :placeholder=\"t('settings', 'New password')\" ref=\"password\"\n\t\t\t\t\tautocomplete=\"new-password\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n\t\t\t<input type=\"submit\" class=\"icon-confirm\" value=\"\" />\n\t\t</form>\n\t\t<div v-else></div>\n\t\t<form class=\"mailAddress\" :class=\"{'icon-loading-small': loading.mailAddress}\" v-on:submit.prevent=\"updateEmail\">\n\t\t\t<input :id=\"'mailAddress'+user.id+rand\" type=\"email\"\n\t\t\t\t\t:disabled=\"loading.mailAddress||loading.all\"\n\t\t\t\t\t:value=\"user.email\" ref=\"mailAddress\"\n\t\t\t\t\tautocomplete=\"new-password\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n\t\t\t<input type=\"submit\" class=\"icon-confirm\" value=\"\" />\n\t\t</form>\n\t\t<div class=\"groups\" :class=\"{'icon-loading-small': loading.groups}\">\n\t\t\t<multiselect :value=\"userGroups\" :options=\"availableGroups\" :disabled=\"loading.groups||loading.all\"\n\t\t\t\t\t\t tag-placeholder=\"create\" :placeholder=\"t('settings', 'Add user in group')\"\n\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\" :limit=\"2\"\n\t\t\t\t\t\t :multiple=\"true\" :taggable=\"settings.isAdmin\" :closeOnSelect=\"false\"\n\t\t\t\t\t\t @tag=\"createGroup\" @select=\"addUserGroup\" @remove=\"removeUserGroup\">\n\t\t\t\t<span slot=\"limit\" class=\"multiselect__limit\" v-tooltip.auto=\"formatGroupsTitle(userGroups)\">+{{userGroups.length-2}}</span>\n\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t</multiselect>\n\t\t</div>\n\t\t<div class=\"subadmins\" v-if=\"subAdminsGroups.length>0 && settings.isAdmin\" :class=\"{'icon-loading-small': loading.subadmins}\">\n\t\t\t<multiselect :value=\"userSubAdminsGroups\" :options=\"subAdminsGroups\" :disabled=\"loading.subadmins||loading.all\"\n\t\t\t\t\t\t :placeholder=\"t('settings', 'Set user as admin for')\"\n\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\" :limit=\"2\"\n\t\t\t\t\t\t :multiple=\"true\" :closeOnSelect=\"false\"\n\t\t\t\t\t\t @select=\"addUserSubAdmin\" @remove=\"removeUserSubAdmin\">\n\t\t\t\t<span slot=\"limit\" class=\"multiselect__limit\" v-tooltip.auto=\"formatGroupsTitle(userSubAdminsGroups)\">+{{userSubAdminsGroups.length-2}}</span>\n\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t</multiselect>\n\t\t</div>\n\t\t<div class=\"quota\" :class=\"{'icon-loading-small': loading.quota}\">\n\t\t\t<multiselect :value=\"userQuota\" :options=\"quotaOptions\" :disabled=\"loading.quota||loading.all\"\n\t\t\t\t\t\t tag-placeholder=\"create\" :placeholder=\"t('settings', 'Select user quota')\"\n\t\t\t\t\t\t label=\"label\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t :allowEmpty=\"false\" :taggable=\"true\"\n\t\t\t\t\t\t @tag=\"validateQuota\" @input=\"setUserQuota\">\n\t\t\t</multiselect>\n\t\t\t<progress class=\"quota-user-progress\" :class=\"{'warn':usedQuota>80}\" :value=\"usedQuota\" max=\"100\"></progress>\n\t\t</div>\n\t\t<div class=\"languages\" :class=\"{'icon-loading-small': loading.languages}\"\n\t\t\t v-if=\"showConfig.showLanguages\">\n\t\t\t<multiselect :value=\"userLanguage\" :options=\"languages\" :disabled=\"loading.languages||loading.all\"\n\t\t\t\t\t\t :placeholder=\"t('settings', 'No language set')\"\n\t\t\t\t\t\t label=\"name\" track-by=\"code\" class=\"multiselect-vue\"\n\t\t\t\t\t\t :allowEmpty=\"false\" group-values=\"languages\" group-label=\"label\"\n\t\t\t\t\t\t @input=\"setUserLanguage\">\n\t\t\t</multiselect>\n\t\t</div>\n\t\t<div class=\"storageLocation\" v-if=\"showConfig.showStoragePath\">{{user.storageLocation}}</div>\n\t\t<div class=\"userBackend\" v-if=\"showConfig.showUserBackend\">{{user.backend}}</div>\n\t\t<div class=\"lastLogin\" v-if=\"showConfig.showLastLogin\" v-tooltip.auto=\"user.lastLogin>0 ? OC.Util.formatDate(user.lastLogin) : ''\">\n\t\t\t{{user.lastLogin>0 ? OC.Util.relativeModifiedDate(user.lastLogin) : t('settings','Never')}}\n\t\t</div>\n\t\t<div class=\"userActions\">\n\t\t\t<div class=\"toggleUserActions\" v-if=\"OC.currentUser !== user.id && user.id !== 'admin' && !loading.all\">\n\t\t\t\t<div class=\"icon-more\" v-click-outside=\"hideMenu\" @click=\"toggleMenu\"></div>\n\t\t\t\t<div class=\"popovermenu\" :class=\"{ 'open': openedMenu }\">\n\t\t\t\t\t<popover-menu :menu=\"userActions\" />\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div class=\"feedback\" :style=\"{opacity: feedbackMessage !== '' ? 1 : 0}\">\n\t\t\t\t<div class=\"icon-checkmark\"></div>\n\t\t\t\t{{feedbackMessage}}\n\t\t\t</div>\n\t\t</div>\n\t\t</div>\n</template>\n\n<script>\nimport popoverMenu from '../popoverMenu';\nimport ClickOutside from 'vue-click-outside';\nimport Multiselect from 'vue-multiselect';\nimport Vue from 'vue'\nimport VTooltip from 'v-tooltip'\n\nVue.use(VTooltip)\n\nexport default {\n\tname: 'userRow',\n\tprops: ['user', 'settings', 'groups', 'subAdminsGroups', 'quotaOptions', 'showConfig', 'languages', 'externalActions'],\n\tcomponents: {\n\t\tpopoverMenu,\n\t\tMultiselect\n\t},\n\tdirectives: {\n\t\tClickOutside\n\t},\n\tmounted() {\n\t\t// required if popup needs to stay opened after menu click\n\t\t// since we only have disable/delete actions, let's close it directly\n\t\t// this.popupItem = this.$el;\n\t},\n\tdata() {\n\t\treturn {\n\t\t\trand: parseInt(Math.random() * 1000),\n\t\t\topenedMenu: false,\n\t\t\tfeedbackMessage: '',\n\t\t\tloading: {\n\t\t\t\tall: false,\n\t\t\t\tdisplayName: false,\n\t\t\t\tpassword: false,\n\t\t\t\tmailAddress: false,\n\t\t\t\tgroups: false,\n\t\t\t\tsubadmins: false,\n\t\t\t\tquota: false,\n\t\t\t\tdelete: false,\n\t\t\t\tdisable: false,\n\t\t\t\tlanguages: false\n\t\t\t}\n\t\t}\n\t},\n\tcomputed: {\n\t\t/* USER POPOVERMENU ACTIONS */\n\t\tuserActions() {\n\t\t\tlet actions = [{\n\t\t\t\ticon: 'icon-delete',\n\t\t\t\ttext: t('settings','Delete user'),\n\t\t\t\taction: this.deleteUser\n\t\t\t},{\n\t\t\t\ticon: this.user.enabled ? 'icon-close' : 'icon-add',\n\t\t\t\ttext: this.user.enabled ? t('settings','Disable user') : t('settings','Enable user'),\n\t\t\t\taction: this.enableDisableUser\n\t\t\t}];\n\t\t\tif (this.user.email !== null && this.user.email !== '') {\n\t\t\t\tactions.push({\n\t\t\t\t\ticon: 'icon-mail',\n\t\t\t\t\ttext: t('settings','Resend welcome email'),\n\t\t\t\t\taction: this.sendWelcomeMail\n\t\t\t\t})\n\t\t\t}\n\t\t\treturn actions.concat(this.externalActions);\n\t\t},\n\n\t\t/* GROUPS MANAGEMENT */\n\t\tuserGroups() {\n\t\t\tlet userGroups = this.groups.filter(group => this.user.groups.includes(group.id));\n\t\t\treturn userGroups;\n\t\t},\n\t\tuserSubAdminsGroups() {\n\t\t\tlet userSubAdminsGroups = this.subAdminsGroups.filter(group => this.user.subadmin.includes(group.id));\n\t\t\treturn userSubAdminsGroups;\n\t\t},\n\t\tavailableGroups() {\n\t\t\treturn this.groups.map((group) => {\n\t\t\t\t// clone object because we don't want\n\t\t\t\t// to edit the original groups\n\t\t\t\tlet groupClone = Object.assign({}, group);\n\n\t\t\t\t// two settings here:\n\t\t\t\t// 1. user NOT in group but no permission to add\n\t\t\t\t// 2. user is in group but no permission to remove\n\t\t\t\tgroupClone.$isDisabled =\n\t\t\t\t\t(group.canAdd === false &&\n\t\t\t\t\t\t!this.user.groups.includes(group.id)) ||\n\t\t\t\t\t(group.canRemove === false &&\n\t\t\t\t\t\tthis.user.groups.includes(group.id));\n\t\t\t\treturn groupClone;\n\t\t\t});\n\t\t},\n\n\t\t/* QUOTA MANAGEMENT */\n\t\tusedQuota() {\n\t\t\tlet quota = this.user.quota.quota;\n\t\t\tif (quota > 0) {\n\t\t\t\tquota = Math.min(100, Math.round(this.user.quota.used / quota * 100));\n\t\t\t} else {\n\t\t\t\tvar usedInGB = this.user.quota.used / (10 * Math.pow(2, 30));\n\t\t\t\t//asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota\n\t\t\t\tquota = 95 * (1 - (1 / (usedInGB + 1)));\n\t\t\t}\n\t\t\treturn isNaN(quota) ? 0 : quota;\n\t\t},\n\t\t// Mapping saved values to objects\n\t\tuserQuota() {\n\t\t\tif (this.user.quota.quota >= 0) {\n\t\t\t\t// if value is valid, let's map the quotaOptions or return custom quota\n\t\t\t\tlet humanQuota = OC.Util.humanFileSize(this.user.quota.quota);\n\t\t\t\tlet userQuota = this.quotaOptions.find(quota => quota.id === humanQuota);\n\t\t\t\treturn userQuota ? userQuota : {id:humanQuota, label:humanQuota};\n\t\t\t} else if (this.user.quota.quota === 'default') {\n\t\t\t\t// default quota is replaced by the proper value on load\n\t\t\t\treturn this.quotaOptions[0];\n\t\t\t}\n\t\t\treturn this.quotaOptions[1]; // unlimited\n\t\t},\n\n\t\t/* PASSWORD POLICY? */\n\t\tminPasswordLength() {\n\t\t\treturn this.$store.getters.getPasswordPolicyMinLength;\n\t\t},\n\n\t\t/* LANGUAGE */\n\t\tuserLanguage() {\n\t\t\tlet availableLanguages = this.languages[0].languages.concat(this.languages[1].languages);\n\t\t\tlet userLang = availableLanguages.find(lang => lang.code === this.user.language);\n\t\t\tif (typeof userLang !== 'object' && this.user.language !== '') {\n\t\t\t\treturn {\n\t\t\t\t\tcode: this.user.language,\n\t\t\t\t\tname: this.user.language\n\t\t\t\t}\n\t\t\t} else if(this.user.language === '') {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn userLang;\n\t\t}\n\t},\n\tmethods: {\n\t\t/* MENU HANDLING */\n\t\ttoggleMenu() {\n\t\t\tthis.openedMenu = !this.openedMenu;\n\t\t},\n\t\thideMenu() {\n\t\t\tthis.openedMenu = false;\n\t\t},\n\n\t\t/**\n\t\t * Generate avatar url\n\t\t * \n\t\t * @param {string} user The user name\n\t\t * @param {int} size Size integer, default 32\n\t\t * @returns {string}\n\t\t */\n\t\tgenerateAvatar(user, size=32) {\n\t\t\treturn OC.generateUrl(\n\t\t\t\t'/avatar/{user}/{size}?v={version}',\n\t\t\t\t{\n\t\t\t\t\tuser: user,\n\t\t\t\t\tsize: size,\n\t\t\t\t\tversion: oc_userconfig.avatar.version\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\t/**\n\t\t * Format array of groups objects to a string for the popup\n\t\t * \n\t\t * @param {array} groups The groups\n\t\t * @returns {string}\n\t\t */\n\t\tformatGroupsTitle(groups) {\n\t\t\tlet names = groups.map(group => group.name);\n\t\t\treturn names.slice(2,).join(', ');\n\t\t},\n\n\t\tdeleteUser() {\n\t\t\tthis.loading.delete = true;\n\t\t\tthis.loading.all = true;\n\t\t\tlet userid = this.user.id;\n\t\t\treturn this.$store.dispatch('deleteUser', userid)\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading.delete = false\n\t\t\t\t\tthis.loading.all = false\n\t\t\t\t});\n\t\t},\n\n\t\tenableDisableUser() {\n\t\t\tthis.loading.delete = true;\n\t\t\tthis.loading.all = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet enabled = !this.user.enabled;\n\t\t\treturn this.$store.dispatch('enableDisableUser', {userid, enabled})\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading.delete = false\n\t\t\t\t\tthis.loading.all = false\n\t\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Set user displayName\n\t\t * \n\t\t * @param {string} displayName The display name\n\t\t * @returns {Promise}\n\t\t */\n\t\tupdateDisplayName() {\n\t\t\tlet displayName = this.$refs.displayName.value;\n\t\t\tthis.loading.displayName = true;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id, \n\t\t\t\tkey: 'displayname',\n\t\t\t\tvalue: displayName\n\t\t\t}).then(() => {\n\t\t\t\tthis.loading.displayName = false;\n\t\t\t\tthis.$refs.displayName.value = displayName;\n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Set user password\n\t\t * \n\t\t * @param {string} password The email adress\n\t\t * @returns {Promise}\n\t\t */\n\t\tupdatePassword() {\n\t\t\tlet password = this.$refs.password.value;\n\t\t\tthis.loading.password = true;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id,\n\t\t\t\tkey: 'password',\n\t\t\t\tvalue: password\n\t\t\t}).then(() => {\n\t\t\t\tthis.loading.password = false;\n\t\t\t\tthis.$refs.password.value = ''; // empty & show placeholder \n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Set user mailAddress\n\t\t * \n\t\t * @param {string} mailAddress The email adress\n\t\t * @returns {Promise}\n\t\t */\n\t\tupdateEmail() {\n\t\t\tlet mailAddress = this.$refs.mailAddress.value;\n\t\t\tthis.loading.mailAddress = true;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id,\n\t\t\t\tkey: 'email',\n\t\t\t\tvalue: mailAddress\n\t\t\t}).then(() => {\n\t\t\t\tthis.loading.mailAddress = false;\n\t\t\t\tthis.$refs.mailAddress.value = mailAddress;\n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Create a new group and add user to it\n\t\t * \n\t\t * @param {string} groups Group id\n\t\t * @returns {Promise}\n\t\t */\n\t\tcreateGroup(gid) {\n\t\t\tthis.loading = {groups:true, subadmins:true}\n\t\t\tthis.$store.dispatch('addGroup', gid)\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading = {groups:false, subadmins:false};\n\t\t\t\t\tlet userid = this.user.id;\n\t\t\t\t\tthis.$store.dispatch('addUserGroup', {userid, gid});\n\t\t\t\t})\n\t\t\t\t.catch(() => {\n\t\t\t\t\tthis.loading = {groups:false, subadmins:false};\n\t\t\t\t});\n\t\t\treturn this.$store.getters.getGroups[this.groups.length];\n\t\t},\n\n\t\t/**\n\t\t * Add user to group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\taddUserGroup(group) {\n\t\t\tif (group.canAdd === false) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis.loading.groups = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('addUserGroup', {userid, gid})\n\t\t\t\t.then(() => this.loading.groups = false);\n\t\t},\n\n\t\t/**\n\t\t * Remove user from group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\tremoveUserGroup(group) {\n\t\t\tif (group.canRemove === false) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis.loading.groups = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('removeUserGroup', {userid, gid})\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading.groups = false\n\t\t\t\t\t// remove user from current list if current list is the removed group\n\t\t\t\t\tif (this.$route.params.selectedGroup === gid) {\n\t\t\t\t\t\tthis.$store.commit('deleteUser', userid);\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t\t.catch(() => {\n\t\t\t\t\tthis.loading.groups = false\n\t\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Add user to group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\taddUserSubAdmin(group) {\n\t\t\tthis.loading.subadmins = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('addUserSubAdmin', {userid, gid})\n\t\t\t\t.then(() => this.loading.subadmins = false);\n\t\t},\n\n\t\t/**\n\t\t * Remove user from group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\tremoveUserSubAdmin(group) {\n\t\t\tthis.loading.subadmins = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('removeUserSubAdmin', {userid, gid})\n\t\t\t\t.then(() => this.loading.subadmins = false);\n\t\t},\n\n\t\t/**\n\t\t * Dispatch quota set request\n\t\t * \n\t\t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n\t\t * @returns {string}\n\t\t */\n\t\tsetUserQuota(quota = 'none') {\n\t\t\tthis.loading.quota = true;\n\t\t\t// ensure we only send the preset id\n\t\t\tquota = quota.id ? quota.id : quota;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id, \n\t\t\t\tkey: 'quota',\n\t\t\t\tvalue: quota\n\t\t\t}).then(() => this.loading.quota = false);\n\t\t\treturn quota;\n\t\t},\n\n\t\t/**\n\t\t * Validate quota string to make sure it's a valid human file size\n\t\t * \n\t\t * @param {string} quota Quota in readable format '5 GB'\n\t\t * @returns {Promise|boolean}\n\t\t */\n\t\tvalidateQuota(quota) {\n\t\t\t// only used for new presets sent through @Tag\n\t\t\tlet validQuota = OC.Util.computerFileSize(quota);\n\t\t\tif (validQuota !== null && validQuota >= 0) {\n\t\t\t\t// unify format output\n\t\t\t\treturn this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n\t\t\t}\n\t\t\t// if no valid do not change\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * Dispatch language set request\n\t\t * \n\t\t * @param {Object} lang language object {code:'en', name:'English'}\n\t\t * @returns {Object}\n\t\t */\n\t\tsetUserLanguage(lang) {\n\t\t\tthis.loading.languages = true;\n\t\t\t// ensure we only send the preset id\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id, \n\t\t\t\tkey: 'language',\n\t\t\t\tvalue: lang.code\n\t\t\t}).then(() => this.loading.languages = false);\n\t\t\treturn lang;\n\t\t},\n\n\t\t/**\n\t\t * Dispatch new welcome mail request\n\t\t */\n\t\tsendWelcomeMail() {\n\t\t\tthis.loading.all = true;\n\t\t\tthis.$store.dispatch('sendWelcomeMail', this.user.id)\n\t\t\t\t.then(success => {\n\t\t\t\t\tif (success) {\n\t\t\t\t\t\t// Show feedback to indicate the success\n\t\t\t\t\t\tthis.feedbackMessage = t('setting', 'Welcome mail sent!');\n\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\tthis.feedbackMessage = '';\n\t\t\t\t\t\t}, 2000);\n\t\t\t\t\t}\n\t\t\t\t\tthis.loading.all = false;\n\t\t\t\t});\n\t\t}\n\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./userRow.vue?vue&type=template&id=d19586ce&\"\nimport script from \"./userRow.vue?vue&type=script&lang=js&\"\nexport * from \"./userRow.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('d19586ce', component.options)\n } else {\n api.reload('d19586ce', component.options)\n }\n module.hot.accept(\"./userRow.vue?vue&type=template&id=d19586ce&\", function () {\n api.rerender('d19586ce', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/userList/userRow.vue\"\nexport default component.exports","import { render, staticRenderFns } from \"./userList.vue?vue&type=template&id=40745299&\"\nimport script from \"./userList.vue?vue&type=script&lang=js&\"\nexport * from \"./userList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('40745299', component.options)\n } else {\n api.reload('40745299', component.options)\n }\n module.hot.accept(\"./userList.vue?vue&type=template&id=40745299&\", function () {\n api.rerender('40745299', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/userList.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n \n<template>\n\t<div id=\"app-content\" class=\"user-list-grid\" v-on:scroll.passive=\"onScroll\">\n\t\t<div class=\"row\" id=\"grid-header\" :class=\"{'sticky': scrolled && !showConfig.showNewUserForm}\">\n\t\t\t<div id=\"headerAvatar\" class=\"avatar\"></div>\n\t\t\t<div id=\"headerName\" class=\"name\">{{ t('settings', 'Username') }}</div>\n\t\t\t<div id=\"headerDisplayName\" class=\"displayName\">{{ t('settings', 'Display name') }}</div>\n\t\t\t<div id=\"headerPassword\" class=\"password\">{{ t('settings', 'Password') }}</div>\n\t\t\t<div id=\"headerAddress\" class=\"mailAddress\">{{ t('settings', 'Email') }}</div>\n\t\t\t<div id=\"headerGroups\" class=\"groups\">{{ t('settings', 'Groups') }}</div>\n\t\t\t<div id=\"headerSubAdmins\" class=\"subadmins\"\n\t\t\t\t v-if=\"subAdminsGroups.length>0 && settings.isAdmin\">{{ t('settings', 'Group admin for') }}</div>\n\t\t\t<div id=\"headerQuota\" class=\"quota\">{{ t('settings', 'Quota') }}</div>\n\t\t\t<div id=\"headerLanguages\" class=\"languages\"\n\t\t\t\t v-if=\"showConfig.showLanguages\">{{ t('settings', 'Language') }}</div>\n\t\t\t<div class=\"headerStorageLocation storageLocation\"\n\t\t\t\t v-if=\"showConfig.showStoragePath\">{{ t('settings', 'Storage location') }}</div>\n\t\t\t<div class=\"headerUserBackend userBackend\"\n\t\t\t\t v-if=\"showConfig.showUserBackend\">{{ t('settings', 'User backend') }}</div>\n\t\t\t<div class=\"headerLastLogin lastLogin\" \n\t\t\t\t v-if=\"showConfig.showLastLogin\">{{ t('settings', 'Last login') }}</div>\n\t\t\t<div class=\"userActions\"></div>\n\t\t</div>\n\n\t\t<form class=\"row\" id=\"new-user\" v-show=\"showConfig.showNewUserForm\"\n\t\t\t v-on:submit.prevent=\"createUser\" :disabled=\"loading\"\n\t\t\t :class=\"{'sticky': scrolled && showConfig.showNewUserForm}\">\n\t\t\t<div :class=\"loading?'icon-loading-small':'icon-add'\"></div>\n\t\t\t<div class=\"name\">\n\t\t\t\t<input id=\"newusername\" type=\"text\" required v-model=\"newUser.id\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Username')\" name=\"username\"\n\t\t\t\t\t autocomplete=\"off\" autocapitalize=\"none\" autocorrect=\"off\"\n\t\t\t\t\t pattern=\"[a-zA-Z0-9 _\\.@\\-']+\">\n\t\t\t</div>\n\t\t\t<div class=\"displayName\">\n\t\t\t\t<input id=\"newdisplayname\" type=\"text\" v-model=\"newUser.displayName\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Display name')\" name=\"displayname\"\n\t\t\t\t\t autocomplete=\"off\" autocapitalize=\"none\" autocorrect=\"off\">\n\t\t\t</div>\n\t\t\t<div class=\"password\">\n\t\t\t\t<input id=\"newuserpassword\" type=\"password\" v-model=\"newUser.password\"\n\t\t\t\t\t :required=\"newUser.mailAddress===''\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Password')\" name=\"password\"\n\t\t\t\t\t autocomplete=\"new-password\" autocapitalize=\"none\" autocorrect=\"off\"\n\t\t\t\t\t :minlength=\"minPasswordLength\">\n\t\t\t</div>\n\t\t\t<div class=\"mailAddress\">\n\t\t\t\t<input id=\"newemail\" type=\"email\" v-model=\"newUser.mailAddress\"\n\t\t\t\t\t :required=\"newUser.password===''\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Email')\" name=\"email\"\n\t\t\t\t\t autocomplete=\"off\" autocapitalize=\"none\" autocorrect=\"off\">\n\t\t\t</div>\n\t\t\t<div class=\"groups\">\n\t\t\t\t<!-- hidden input trick for vanilla html5 form validation -->\n\t\t\t\t<input type=\"text\" :value=\"newUser.groups\" v-if=\"!settings.isAdmin\"\n\t\t\t\t\t tabindex=\"-1\" id=\"newgroups\" :required=\"!settings.isAdmin\" />\n\t\t\t\t<multiselect :options=\"canAddGroups\" v-model=\"newUser.groups\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Add user in group')\"\n\t\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :multiple=\"true\" :close-on-select=\"false\"\n\t\t\t\t\t\t\t :allowEmpty=\"settings.isAdmin\">\n\t\t\t\t\t\t\t <!-- If user is not admin, he is a subadmin.\n\t\t\t\t\t\t\t \t Subadmins can't create users outside their groups\n\t\t\t\t\t\t\t\t Therefore, empty select is forbidden -->\n\t\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"subadmins\" v-if=\"subAdminsGroups.length>0 && settings.isAdmin\">\n\t\t\t\t<multiselect :options=\"subAdminsGroups\" v-model=\"newUser.subAdminsGroups\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Set user as admin for')\"\n\t\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :multiple=\"true\" :close-on-select=\"false\">\n\t\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"quota\">\n\t\t\t\t<multiselect :options=\"quotaOptions\" v-model=\"newUser.quota\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Select user quota')\"\n\t\t\t\t\t\t\t label=\"label\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :allowEmpty=\"false\" :taggable=\"true\"\n\t\t\t\t\t\t \t @tag=\"validateQuota\" >\n\t\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"languages\" v-if=\"showConfig.showLanguages\">\n\t\t\t\t<multiselect :options=\"languages\" v-model=\"newUser.language\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Default language')\"\n\t\t\t\t\t\t\t label=\"name\" track-by=\"code\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :allowEmpty=\"false\" group-values=\"languages\" group-label=\"label\">\n\t\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"storageLocation\" v-if=\"showConfig.showStoragePath\"></div>\n\t\t\t<div class=\"userBackend\" v-if=\"showConfig.showUserBackend\"></div>\n\t\t\t<div class=\"lastLogin\" v-if=\"showConfig.showLastLogin\"></div>\n\t\t\t<div class=\"userActions\">\n\t\t\t\t<input type=\"submit\" id=\"newsubmit\" class=\"button primary icon-checkmark-white has-tooltip\"\n\t\t\t\t\t value=\"\" :title=\"t('settings', 'Add a new user')\">\n\t\t\t</div>\n\t\t</form>\n\n\t\t<user-row v-for=\"(user, key) in filteredUsers\" :user=\"user\" :key=\"key\" :settings=\"settings\" :showConfig=\"showConfig\"\n\t\t\t\t :groups=\"groups\" :subAdminsGroups=\"subAdminsGroups\" :quotaOptions=\"quotaOptions\" :languages=\"languages\"\n\t\t\t\t :externalActions=\"externalActions\" />\n\t\t<infinite-loading @infinite=\"infiniteHandler\" ref=\"infiniteLoading\">\n\t\t\t<div slot=\"spinner\"><div class=\"users-icon-loading icon-loading\"></div></div>\n\t\t\t<div slot=\"no-more\"><div class=\"users-list-end\"></div></div>\n\t\t\t<div slot=\"no-results\">\n\t\t\t\t<div id=\"emptycontent\">\n\t\t\t\t\t<div class=\"icon-contacts-dark\"></div>\n\t\t\t\t\t<h2>{{t('settings', 'No users in here')}}</h2>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</infinite-loading>\n\t</div>\n</template>\n\n<script>\nimport userRow from './userList/userRow';\nimport Multiselect from 'vue-multiselect';\nimport InfiniteLoading from 'vue-infinite-loading';\nimport Vue from 'vue';\n\nexport default {\n\tname: 'userList',\n\tprops: ['users', 'showConfig', 'selectedGroup', 'externalActions'],\n\tcomponents: {\n\t\tuserRow,\n\t\tMultiselect,\n\t\tInfiniteLoading\n\t},\n\tdata() {\n\t\tlet unlimitedQuota = {id:'none', label:t('settings', 'Unlimited')},\n\t\t\tdefaultQuota = {id:'default', label:t('settings', 'Default quota')};\n\t\treturn {\n\t\t\tunlimitedQuota: unlimitedQuota,\n\t\t\tdefaultQuota: defaultQuota,\n\t\t\tloading: false,\n\t\t\tscrolled: false,\n\t\t\tsearchQuery: '',\n\t\t\tnewUser: {\n\t\t\t\tid:'',\n\t\t\t\tdisplayName:'',\n\t\t\t\tpassword:'',\n\t\t\t\tmailAddress:'',\n\t\t\t\tgroups: [],\n\t\t\t\tsubAdminsGroups: [],\n\t\t\t\tquota: defaultQuota,\n\t\t\t\tlanguage: {code: 'en', name: t('settings', 'Default language')}\n\t\t\t}\n\t\t};\n\t},\n\tmounted() {\n\t\tif (!this.settings.canChangePassword) {\n\t\t\tOC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'));\n\t\t}\n\n\t\t/** \n\t\t * Init default language from server data. The use of this.settings\n\t\t * requires a computed variable, which break the v-model binding of the form,\n\t\t * this is a much easier solution than getter and setter on a computed var\n\t\t */\n\t\tVue.set(this.newUser.language, 'code', this.settings.defaultLanguage);\n\n\t\t/**\n\t\t * In case the user directly loaded the user list within a group\n\t\t * the watch won't be triggered. We need to initialize it.\n\t\t */\n\t\tthis.setNewUserDefaultGroup(this.$route.params.selectedGroup);\n\n\t\t/** \n\t\t * Register search\n\t\t */\n\t\tthis.userSearch = new OCA.Search(this.search, this.resetSearch);\n\t},\n\tcomputed: {\n\t\tsettings() {\n\t\t\treturn this.$store.getters.getServerData;\n\t\t},\n\t\tfilteredUsers() {\n\t\t\tif (this.selectedGroup === 'disabled') {\n\t\t\t\tlet disabledUsers = this.users.filter(user => user.enabled === false);\n\t\t\t\tif (disabledUsers.length===0 && this.$refs.infiniteLoading && this.$refs.infiniteLoading.isComplete) {\n\t\t\t\t\t// disabled group is empty, redirection to all users\n\t\t\t\t\tthis.$router.push({name: 'users'});\n\t\t\t\t\tthis.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');\n\t\t\t\t}\n\t\t\t\treturn disabledUsers;\n\t\t\t}\n\t\t\tif (!this.settings.isAdmin) {\n\t\t\t\t// we don't want subadmins to edit themselves\n\t\t\t\treturn this.users.filter(user => user.enabled !== false && user.id !== oc_current_user);\n\t\t\t}\n\t\t\treturn this.users.filter(user => user.enabled !== false);\n\t\t},\n\t\tgroups() {\n\t\t\t// data provided php side + remove the disabled group\n\t\t\treturn this.$store.getters.getGroups\n\t\t\t\t.filter(group => group.id !== 'disabled')\n\t\t\t\t.sort((a, b) => a.name.localeCompare(b.name));\n\t\t},\n\t\tcanAddGroups() {\n\t\t\t// disabled if no permission to add new users to group\n\t\t\treturn this.groups.map(group => {\n\t\t\t\t// clone object because we don't want\n\t\t\t\t// to edit the original groups\n\t\t\t\tgroup = Object.assign({}, group);\n\t\t\t\tgroup.$isDisabled = group.canAdd === false;\n\t\t\t\treturn group;\n\t\t\t});\n\t\t},\n\t\tsubAdminsGroups() {\n\t\t\t// data provided php side\n\t\t\treturn this.$store.getters.getSubadminGroups;\n\t\t},\n\t\tquotaOptions() {\n\t\t\t// convert the preset array into objects\n\t\t\tlet quotaPreset = this.settings.quotaPreset.reduce((acc, cur) => acc.concat({id: cur, label: cur}), []);\n\t\t\t// add default presets\n\t\t\tquotaPreset.unshift(this.unlimitedQuota);\n\t\t\tquotaPreset.unshift(this.defaultQuota);\n\t\t\treturn quotaPreset;\n\t\t},\n\t\tminPasswordLength() {\n\t\t\treturn this.$store.getters.getPasswordPolicyMinLength;\n\t\t},\n\t\tusersOffset() {\n\t\t\treturn this.$store.getters.getUsersOffset;\n\t\t},\n\t\tusersLimit() {\n\t\t\treturn this.$store.getters.getUsersLimit;\n\t\t},\n\n\t\t/* LANGUAGES */\n\t\tlanguages() {\n\t\t\treturn Array(\n\t\t\t\t{\n\t\t\t\t\tlabel: t('settings', 'Common languages'),\n\t\t\t\t\tlanguages: this.settings.languages.commonlanguages\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t('settings', 'All languages'),\n\t\t\t\t\tlanguages: this.settings.languages.languages\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t},\n\twatch: {\n\t\t// watch url change and group select\n\t\tselectedGroup: function (val, old) {\n\t\t\tthis.$store.commit('resetUsers');\n\t\t\tthis.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');\n\t\t\tthis.setNewUserDefaultGroup(val);\n\t\t}\n\t},\n\tmethods: {\n\t\tonScroll(event) {\n\t\t\tthis.scrolled = event.target.scrollTo > 0;\n\t\t},\n\n\t\t/**\n\t\t * Validate quota string to make sure it's a valid human file size\n\t\t * \n\t\t * @param {string} quota Quota in readable format '5 GB'\n\t\t * @returns {Object}\n\t\t */\n\t\tvalidateQuota(quota) {\n\t\t\t// only used for new presets sent through @Tag\n\t\t\tlet validQuota = OC.Util.computerFileSize(quota);\n\t\t\tif (validQuota !== null && validQuota >= 0) {\n\t\t\t\t// unify format output\n\t\t\t\tquota = OC.Util.humanFileSize(OC.Util.computerFileSize(quota));\n\t\t\t\treturn this.newUser.quota = {id: quota, label: quota};\n\t\t\t}\n\t\t\t// Default is unlimited\n\t\t\treturn this.newUser.quota = this.quotaOptions[0];\n\t\t},\n\n\t\tinfiniteHandler($state) {\n\t\t\tthis.$store.dispatch('getUsers', {\n\t\t\t\toffset: this.usersOffset,\n\t\t\t\tlimit: this.usersLimit,\n\t\t\t\tgroup: this.selectedGroup !== 'disabled' ? this.selectedGroup : '',\n\t\t\t\tsearch: this.searchQuery\n\t\t\t})\n\t\t\t.then((response) => { response ? $state.loaded() : $state.complete() });\n\t\t},\n\n\t\t/* SEARCH */\n\t\tsearch(query) {\n\t\t\tthis.searchQuery = query;\n\t\t\tthis.$store.commit('resetUsers');\n\t\t\tthis.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');\n\t\t},\n\t\tresetSearch() {\n\t\t\tthis.search('');\n\t\t},\n\n\t\tresetForm() {\n\t\t\t// revert form to original state\n\t\t\tObject.assign(this.newUser, this.$options.data.call(this).newUser);\n\t\t\tthis.loading = false;\n\t\t},\n\t\tcreateUser() {\n\t\t\tthis.loading = true;\n\t\t\tthis.$store.dispatch('addUser', {\n\t\t\t\tuserid: this.newUser.id,\n\t\t\t\tpassword: this.newUser.password,\n\t\t\t\tdisplayName: this.newUser.displayName,\n\t\t\t\temail: this.newUser.mailAddress,\n\t\t\t\tgroups: this.newUser.groups.map(group => group.id),\n\t\t\t\tsubadmin: this.newUser.subAdminsGroups.map(group => group.id),\n\t\t\t\tquota: this.newUser.quota.id,\n\t\t\t\tlanguage: this.newUser.language.code,\n\t\t\t}).then(() => this.resetForm())\n\t\t\t.catch(() => this.loading = false);\n\t\t},\n\t\tsetNewUserDefaultGroup(value) {\n\t\t\tif (value && value.length > 0) {\n\t\t\t\t// setting new user default group to the current selected one\n\t\t\t\tlet currentGroup = this.groups.find(group => group.id === value);\n\t\t\t\tif (currentGroup) {\n\t\t\t\t\tthis.newUser.groups = [currentGroup];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// fallback, empty selected group\n\t\t\tthis.newUser.groups = [];\n\t\t}\n\t}\n}\n</script>\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport axios from 'axios';\n\nconst requestToken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken');\nconst tokenHeaders = { headers: { requesttoken: requestToken } };\n\nconst sanitize = function(url) {\n\treturn url.replace(/\\/$/, ''); // Remove last url slash\n};\n\nexport default {\n\n\t/**\n\t * This Promise is used to chain a request that require an admin password confirmation\n\t * Since chaining Promise have a very precise behavior concerning catch and then,\n\t * you'll need to be careful when using it.\n\t * e.g\n\t * // store\n\t * \taction(context) {\n\t *\t\treturn api.requireAdmin().then((response) => {\n\t *\t\t\treturn api.get('url')\n\t *\t\t\t\t.then((response) => {API success})\n\t *\t\t\t\t.catch((error) => {API failure});\n\t *\t\t}).catch((error) => {requireAdmin failure});\n\t *\t}\n\t * // vue\n\t *\tthis.$store.dispatch('action').then(() => {always executed})\n\t *\n\t * Since Promise.then().catch().then() will always execute the last then\n\t * this.$store.dispatch('action').then will always be executed\n\t * \n\t * If you want requireAdmin failure to also catch the API request failure\n\t * you will need to throw a new error in the api.get.catch()\n\t * \n\t * e.g\n\t *\tapi.requireAdmin().then((response) => {\n\t *\t\tapi.get('url')\n\t *\t\t\t.then((response) => {API success})\n\t *\t\t\t.catch((error) => {throw error;});\n\t *\t}).catch((error) => {requireAdmin OR API failure});\n\t * \n\t * @returns {Promise}\n\t */\n\trequireAdmin() {\n\t\treturn new Promise(function(resolve, reject) {\n\t\t\t// TODO: migrate the OC.dialog to Vue and avoid this mess\n\t\t\t// wait for password confirmation\n\t\t\tlet passwordTimeout;\n\t\t\tlet waitForpassword = function() {\n\t\t\t\tif (OC.PasswordConfirmation.requiresPasswordConfirmation()) {\n\t\t\t\t\tpasswordTimeout = setTimeout(waitForpassword, 500);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tclearTimeout(passwordTimeout);\n\t\t\t\tclearTimeout(promiseTimeout);\n\t\t\t\tresolve();\n\t\t\t};\n\n\t\t\t// automatically reject after 5s if not resolved\n\t\t\tlet promiseTimeout = setTimeout(() => {\n\t\t\t\tclearTimeout(passwordTimeout);\n\t\t\t\t// close dialog\n\t\t\t\tif (document.getElementsByClassName('oc-dialog-close').length>0) {\n\t\t\t\t\tdocument.getElementsByClassName('oc-dialog-close')[0].click();\n\t\t\t\t}\n\t\t\t\tOC.Notification.showTemporary(t('settings', 'You did not enter the password in time'));\n\t\t\t\treject('Password request cancelled');\n\t\t\t}, 7000); \n\n\t\t\t// request password\n\t\t\tOC.PasswordConfirmation.requirePasswordConfirmation();\n\t\t\twaitForpassword();\n\t\t});\n\t},\n\tget(url) {\n\t\treturn axios.get(sanitize(url), tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tpost(url, data) {\n\t\treturn axios.post(sanitize(url), data, tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tpatch(url, data) {\n\t\treturn axios.patch(sanitize(url), data, tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tput(url, data) {\n\t\treturn axios.put(sanitize(url), data, tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tdelete(url, data) {\n\t\treturn axios.delete(sanitize(url), { data: data, headers: tokenHeaders.headers })\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t}\n};","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"content\" class=\"app-settings\">\n\t\t<app-navigation :menu=\"menu\">\n\t\t\t<template slot=\"settings-content\">\n\t\t\t\t<div>\n\t\t\t\t\t<p>{{t('settings', 'Default quota :')}}</p>\n\t\t\t\t\t<multiselect :value=\"defaultQuota\" :options=\"quotaOptions\"\n\t\t\t\t\t\t\t\ttag-placeholder=\"create\" :placeholder=\"t('settings', 'Select default quota')\"\n\t\t\t\t\t\t\t\tlabel=\"label\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t\t:allowEmpty=\"false\" :taggable=\"true\"\n\t\t\t\t\t\t\t\t@tag=\"validateQuota\" @input=\"setDefaultQuota\">\n\t\t\t\t\t</multiselect>\n\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showLanguages\" class=\"checkbox\" v-model=\"showLanguages\">\n\t\t\t\t\t<label for=\"showLanguages\">{{t('settings', 'Show Languages')}}</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showLastLogin\" class=\"checkbox\" v-model=\"showLastLogin\">\n\t\t\t\t\t<label for=\"showLastLogin\">{{t('settings', 'Show last login')}}</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showUserBackend\" class=\"checkbox\" v-model=\"showUserBackend\">\n\t\t\t\t\t<label for=\"showUserBackend\">{{t('settings', 'Show user backend')}}</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showStoragePath\" class=\"checkbox\" v-model=\"showStoragePath\">\n\t\t\t\t\t<label for=\"showStoragePath\">{{t('settings', 'Show storage path')}}</label>\n\t\t\t\t</div>\n\t\t\t</template>\n\t\t</app-navigation>\n\t\t<user-list :users=\"users\" :showConfig=\"showConfig\" :selectedGroup=\"selectedGroup\" :externalActions=\"externalActions\" />\n\t</div>\n</template>\n\n<script>\nimport appNavigation from '../components/appNavigation';\nimport userList from '../components/userList';\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage'\nimport Multiselect from 'vue-multiselect';\nimport api from '../store/api';\n\nVue.use(VueLocalStorage)\nVue.use(VueLocalStorage)\n\nexport default {\n\tname: 'Users',\n\tprops: ['selectedGroup'],\n\tcomponents: {\n\t\tappNavigation,\n\t\tuserList,\n\t\tMultiselect\n\t},\n\tbeforeMount() {\n\t\tthis.$store.commit('initGroups', {\n\t\t\tgroups: this.$store.getters.getServerData.groups, \n\t\t\torderBy: this.$store.getters.getServerData.sortGroups,\n\t\t\tuserCount: this.$store.getters.getServerData.userCount\n\t\t});\n\t\tthis.$store.dispatch('getPasswordPolicyMinLength');\n\t},\n\tcreated() {\n\t\t// init the OCA.Settings.UserList object\n\t\t// and add the registerAction method\n\t\tObject.assign(OCA, {\n\t\t\tSettings: {\n\t\t\t\tUserList: {\n\t\t\t\t\tregisterAction: this.registerAction\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\tdata() {\n\t\treturn {\n\t\t\t// default quota is set to unlimited\n\t\t\tunlimitedQuota: {id: 'none', label: t('settings', 'Unlimited')},\n\t\t\t// temporary value used for multiselect change\n\t\t\tselectedQuota: false,\n\t\t\texternalActions: [],\n\t\t\tshowConfig: {\n\t\t\t\tshowStoragePath: false,\n\t\t\t\tshowUserBackend: false,\n\t\t\t\tshowLastLogin: false,\n\t\t\t\tshowNewUserForm: false,\n\t\t\t\tshowLanguages: false\n\t\t\t}\n\t\t}\n\t},\n\tmethods: {\n\t\ttoggleNewUserMenu() {\n\t\t\tthis.showConfig.showNewUserForm = !this.showConfig.showNewUserForm;\n\t\t\tif (this.showConfig.showNewUserForm) {\n\t\t\t\tVue.nextTick(() => {\n\t\t\t\t\twindow.newusername.focus();\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tgetLocalstorage(key) {\n\t\t\t// force initialization\n\t\t\tlet localConfig = this.$localStorage.get(key);\n\t\t\t// if localstorage is null, fallback to original values\n\t\t\tthis.showConfig[key] = localConfig !== null ? localConfig === 'true' : this.showConfig[key];\n\t\t\treturn this.showConfig[key];\n\t\t},\n\t\tsetLocalStorage(key, status) {\n\t\t\tthis.showConfig[key] = status;\n\t\t\tthis.$localStorage.set(key, status);\n\t\t\treturn status;\n\t\t},\n\t\tremoveGroup(groupid) {\n\t\t\tlet self = this;\n\t\t\t// TODO migrate to a vue js confirm dialog component \n\t\t\tOC.dialogs.confirm(\n\t\t\t\tt('settings', 'You are about to remove the group {group}. The users will NOT be deleted.', {group: groupid}),\n\t\t\t\tt('settings','Please confirm the group removal '),\n\t\t\t\tfunction (success) {\n\t\t\t\t\tif (success) {\n\t\t\t\t\t\tself.$store.dispatch('removeGroup', groupid);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\t/**\n\t\t * Dispatch default quota set request\n\t\t * \n\t\t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n\t\t * @returns {string}\n\t\t */\n\t\tsetDefaultQuota(quota = 'none') {\n\t\t\tthis.$store.dispatch('setAppConfig', {\n\t\t\t\tapp: 'files',\n\t\t\t\tkey: 'default_quota',\n\t\t\t\t// ensure we only send the preset id\n\t\t\t\tvalue: quota.id ? quota.id : quota\n\t\t\t}).then(() => {\n\t\t\t\tif (typeof quota !== 'object') {\n\t\t\t\t\tquota = {id: quota, label: quota};\n\t\t\t\t}\n\t\t\t\tthis.defaultQuota = quota;\n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Validate quota string to make sure it's a valid human file size\n\t\t * \n\t\t * @param {string} quota Quota in readable format '5 GB'\n\t\t * @returns {Promise|boolean}\n\t\t */\n\t\tvalidateQuota(quota) {\n\t\t\t// only used for new presets sent through @Tag\n\t\t\tlet validQuota = OC.Util.computerFileSize(quota);\n\t\t\tif (validQuota === 0) {\n\t\t\t\treturn this.setDefaultQuota('none');\n\t\t\t} else if (validQuota !== null) {\n\t\t\t\t// unify format output\n\t\t\t\treturn this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n\t\t\t}\n\t\t\t// if no valid do not change\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * Register a new action for the user menu\n\t\t * \n\t\t * @param {string} icon the icon class\n\t\t * @param {string} text the text to display\n\t\t * @param {function} action the function to run\n\t\t */\n\t\tregisterAction(icon, text, action) {\n\t\t\tthis.externalActions.push({\n\t\t\t\ticon: icon,\n\t\t\t\ttext: text,\n\t\t\t\taction: action\n\t\t\t});\n\t\t\treturn this.externalActions;\n\t\t}\n\t},\n\tcomputed: {\n\t\tusers() {\n\t\t\treturn this.$store.getters.getUsers;\n\t\t},\n\t\tloading() {\n\t\t\treturn Object.keys(this.users).length === 0;\n\t\t},\n\t\tusersOffset() {\n\t\t\treturn this.$store.getters.getUsersOffset;\n\t\t},\n\t\tusersLimit() {\n\t\t\treturn this.$store.getters.getUsersLimit;\n\t\t},\n\n\t\t// Local settings\n\t\tshowLanguages: {\n\t\t\tget: function() {return this.getLocalstorage('showLanguages')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showLanguages', status);\n\t\t\t}\n\t\t},\n\t\tshowLastLogin: {\n\t\t\tget: function() {return this.getLocalstorage('showLastLogin')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showLastLogin', status);\n\t\t\t}\n\t\t},\n\t\tshowUserBackend: {\n\t\t\tget: function() {return this.getLocalstorage('showUserBackend')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showUserBackend', status);\n\t\t\t}\n\t\t},\n\t\tshowStoragePath: {\n\t\t\tget: function() {return this.getLocalstorage('showStoragePath')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showStoragePath', status);\n\t\t\t}\n\t\t},\n\n\t\tuserCount() {\n\t\t\treturn this.$store.getters.getUserCount;\n\t\t},\n\t\tsettings() {\n\t\t\treturn this.$store.getters.getServerData;\n\t\t},\n\n\t\t// default quota\n\t\tquotaOptions() {\n\t\t\t// convert the preset array into objects\n\t\t\tlet quotaPreset = this.settings.quotaPreset.reduce((acc, cur) => acc.concat({id:cur, label:cur}), []);\n\t\t\t// add default presets\n\t\t\tquotaPreset.unshift(this.unlimitedQuota);\n\t\t\treturn quotaPreset;\n\t\t},\n\t\t// mapping saved values to objects\n\t\tdefaultQuota: {\n\t\t\tget: function() {\n\t\t\t\tif (this.selectedQuota !== false) {\n\t\t\t\t\treturn this.selectedQuota;\n\t\t\t\t}\n\t\t\t\tif (OC.Util.computerFileSize(this.settings.defaultQuota) > 0) {\n\t\t\t\t\t// if value is valid, let's map the quotaOptions or return custom quota\n\t\t\t\t\treturn {id:this.settings.defaultQuota, label:this.settings.defaultQuota};\n\t\t\t\t}\n\t\t\t\treturn this.unlimitedQuota; // unlimited\n\t\t\t},\n\t\t\tset: function(quota) {\n\t\t\t\tthis.selectedQuota = quota;\n\t\t\t}\n\t\t\t\n\t\t},\n\n\t\t// BUILD APP NAVIGATION MENU OBJECT\n\t\tmenu() {\n\t\t\t// Data provided php side\n\t\t\tlet groups = this.$store.getters.getGroups;\n\t\t\tgroups = Array.isArray(groups) ? groups : [];\n\n\t\t\t// Map groups\n\t\t\tgroups = groups.map(group => {\n\t\t\t\tlet item = {};\n\t\t\t\titem.id = group.id.replace(' ', '_');\n\t\t\t\titem.key = item.id;\n\t\t\t\titem.utils = {}\n\n\t\t\t\t// router link to\n\t\t\t\titem.router = {\n\t\t\t\t\tname: 'group',\n\t\t\t\t\tparams: {selectedGroup: group.id}\n\t\t\t\t};\n\n\t\t\t\t// group name\n\t\t\t\titem.text = group.name;\n\n\t\t\t\t// users count\n\t\t\t\tif (group.usercount - group.disabled > 0) {\n\t\t\t\t\titem.utils.counter = group.usercount - group.disabled;\n\t\t\t\t}\n\n\t\t\t\tif (item.id !== 'admin' && item.id !== 'disabled' && this.settings.isAdmin) {\n\t\t\t\t\t// add delete button on real groups\n\t\t\t\t\tlet self = this;\n\t\t\t\t\titem.utils.actions = [{\n\t\t\t\t\t\ticon: 'icon-delete',\n\t\t\t\t\t\ttext: t('settings', 'Remove group'),\n\t\t\t\t\t\taction: function() {self.removeGroup(group.id)}\n\t\t\t\t\t}];\n\t\t\t\t};\n\t\t\t\treturn item;\n\t\t\t});\n\n\t\t\t// Adjust data\n\t\t\tlet adminGroup = groups.find(group => group.id == 'admin');\n\t\t\tlet disabledGroupIndex = groups.findIndex(group => group.id == 'disabled');\n\t\t\tlet disabledGroup = groups[disabledGroupIndex];\n\t\t\tif (adminGroup && adminGroup.text) {\n\t\t\t\tadminGroup.text = t('settings', 'Admins'); // rename admin group\n\t\t\t\tadminGroup.icon = 'icon-user-admin'; // set icon\n\t\t\t}\n\t\t\tif (disabledGroup && disabledGroup.text) {\n\t\t\t\tdisabledGroup.text = t('settings', 'Disabled users'); // rename disabled group\n\t\t\t\tdisabledGroup.icon = 'icon-disabled-users'; // set icon\n\t\t\t\tif (disabledGroup.utils.counter === 0) {\n\t\t\t\t\tgroups.splice(disabledGroupIndex, 1); // remove disabled if empty\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add separator\n\t\t\tlet realGroups = groups.find((group) => {return group.id !== 'disabled' && group.id !== 'admin'});\n\t\t\trealGroups = typeof realGroups === 'undefined' ? [] : realGroups;\n\t\t\trealGroups = Array.isArray(realGroups) ? realGroups : [realGroups];\n\t\t\tif (realGroups.length > 0) {\n\t\t\t\tlet separator = {\n\t\t\t\t\tcaption: true,\n\t\t\t\t\ttext: t('settings', 'Groups')\n\t\t\t\t};\n\t\t\t\tgroups.unshift(separator);\n\t\t\t}\n\n\n\t\t\t// Add everyone group\n\t\t\tlet everyoneGroup = {\n\t\t\t\tid: 'everyone',\n\t\t\t\tkey: 'everyone',\n\t\t\t\ticon: 'icon-contacts-dark',\n\t\t\t\trouter: {name:'users'},\n\t\t\t\ttext: t('settings', 'Everyone'),\n\t\t\t};\n\t\t\t// users count\n\t\t\tif (this.userCount > 0) {\n\t\t\t\teveryoneGroup.utils = {counter: this.userCount};\n\t\t\t}\n\t\t\tgroups.unshift(everyoneGroup);\n\n\t\t\t// Return\n\t\t\treturn {\n\t\t\t\tid: 'usergrouplist',\n\t\t\t\tnew: {\n\t\t\t\t\tid:'new-user-button',\n\t\t\t\t\ttext: t('settings','New user'),\n\t\t\t\t\ticon: 'icon-add',\n\t\t\t\t\taction: this.toggleNewUserMenu\n\t\t\t\t},\n\t\t\t\titems: groups\n\t\t\t}\n\t\t},\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./Users.vue?vue&type=template&id=68be103e&\"\nimport script from \"./Users.vue?vue&type=script&lang=js&\"\nexport * from \"./Users.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('68be103e', component.options)\n } else {\n api.reload('68be103e', component.options)\n }\n module.hot.accept(\"./Users.vue?vue&type=template&id=68be103e&\", function () {\n api.rerender('68be103e', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/views/Users.vue\"\nexport default component.exports","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"app-settings\",\n class: { \"with-app-sidebar\": _vm.currentApp },\n attrs: { id: \"content\" }\n },\n [\n _c(\"app-navigation\", { attrs: { menu: _vm.menu } }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"app-settings-content\",\n class: { \"icon-loading\": _vm.loadingList },\n attrs: { id: \"app-content\" }\n },\n [\n _c(\"app-list\", {\n attrs: {\n category: _vm.category,\n app: _vm.currentApp,\n search: _vm.searchQuery\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.id && _vm.currentApp\n ? _c(\n \"div\",\n { attrs: { id: \"app-sidebar\" } },\n [\n _c(\"app-details\", {\n attrs: { category: _vm.category, app: _vm.currentApp }\n })\n ],\n 1\n )\n : _vm._e()\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"div\", { attrs: { id: \"app-content-inner\" } }, [\n _c(\n \"div\",\n {\n staticClass: \"apps-list\",\n class: {\n installed: _vm.useBundleView || _vm.useListView,\n store: _vm.useAppStoreView\n },\n attrs: { id: \"apps-list\" }\n },\n [\n _vm.useListView\n ? [\n _c(\n \"transition-group\",\n {\n staticClass: \"apps-list-container\",\n attrs: { name: \"app-list\", tag: \"div\" }\n },\n _vm._l(_vm.apps, function(app) {\n return _c(\"app-item\", {\n key: app.id,\n attrs: { app: app, category: _vm.category }\n })\n })\n )\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _vm._l(_vm.bundles, function(bundle) {\n return _vm.useBundleView && _vm.bundleApps(bundle.id).length > 0\n ? [\n _c(\n \"transition-group\",\n {\n staticClass: \"apps-list-container\",\n attrs: { name: \"app-list\", tag: \"div\" }\n },\n [\n _c(\"div\", { key: bundle.id, staticClass: \"apps-header\" }, [\n _c(\"div\", { staticClass: \"app-image\" }),\n _vm._v(\" \"),\n _c(\"h2\", [\n _vm._v(_vm._s(bundle.name) + \" \"),\n _c(\"input\", {\n attrs: {\n type: \"button\",\n value: _vm.bundleToggleText(bundle.id)\n },\n on: {\n click: function($event) {\n _vm.toggleBundle(bundle.id)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-version\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-level\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-groups\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [_vm._v(\" \")])\n ]),\n _vm._v(\" \"),\n _vm._l(_vm.bundleApps(bundle.id), function(app) {\n return _c(\"app-item\", {\n key: bundle.id + app.id,\n attrs: { app: app, category: _vm.category }\n })\n })\n ],\n 2\n )\n ]\n : _vm._e()\n }),\n _vm._v(\" \"),\n _vm.useAppStoreView\n ? _vm._l(_vm.apps, function(app) {\n return _c(\"app-item\", {\n key: app.id,\n attrs: { app: app, category: _vm.category, \"list-view\": false }\n })\n })\n : _vm._e()\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"apps-list installed\", attrs: { id: \"apps-list-search\" } },\n [\n _c(\n \"div\",\n { staticClass: \"apps-list-container\" },\n [\n _vm.search !== \"\" && _vm.searchApps.length > 0\n ? [\n _c(\"div\", { staticClass: \"section\" }, [\n _c(\"div\"),\n _vm._v(\" \"),\n _c(\"td\", { attrs: { colspan: \"5\" } }, [\n _c(\"h2\", [\n _vm._v(\n _vm._s(\n _vm.t(\"settings\", \"Results from other categories\")\n )\n )\n ])\n ])\n ]),\n _vm._v(\" \"),\n _vm._l(_vm.searchApps, function(app) {\n return _c(\"app-item\", {\n key: app.id,\n attrs: {\n app: app,\n category: _vm.category,\n \"list-view\": true\n }\n })\n })\n ]\n : _vm._e()\n ],\n 2\n )\n ]\n ),\n _vm._v(\" \"),\n !_vm.loading && _vm.searchApps.length === 0 && _vm.apps.length === 0\n ? _c(\n \"div\",\n {\n staticClass: \"emptycontent emptycontent-search\",\n attrs: { id: \"apps-list-empty\" }\n },\n [\n _c(\"div\", {\n staticClass: \"icon-settings-dark\",\n attrs: { id: \"app-list-empty-icon\" }\n }),\n _vm._v(\" \"),\n _c(\"h2\", [\n _vm._v(\n _vm._s(_vm.t(\"settings\", \"No apps found for your versoin\"))\n )\n ])\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { id: \"searchresults\" } })\n ])\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"section\",\n class: { selected: _vm.isSelected },\n on: { click: _vm.showAppDetails }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"app-image app-image-icon\",\n on: { click: _vm.showAppDetails }\n },\n [\n (_vm.listView && !_vm.app.preview) ||\n (!_vm.listView && !_vm.app.screenshot)\n ? _c(\"div\", { staticClass: \"icon-settings-dark\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.listView && _vm.app.preview\n ? _c(\n \"svg\",\n { attrs: { width: \"32\", height: \"32\", viewBox: \"0 0 32 32\" } },\n [\n _c(\"defs\", [\n _c(\n \"filter\",\n { attrs: { id: _vm.filterId } },\n [\n _c(\"feColorMatrix\", {\n attrs: {\n in: \"SourceGraphic\",\n type: \"matrix\",\n values: \"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"\n }\n })\n ],\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\"image\", {\n staticClass: \"app-icon\",\n attrs: {\n x: \"0\",\n y: \"0\",\n width: \"32\",\n height: \"32\",\n preserveAspectRatio: \"xMinYMin meet\",\n filter: _vm.filterUrl,\n \"xlink:href\": _vm.app.preview\n }\n })\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.listView && _vm.app.screenshot\n ? _c(\"img\", { attrs: { src: _vm.app.screenshot, width: \"100%\" } })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"app-name\", on: { click: _vm.showAppDetails } },\n [_vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.name) + \"\\n\\t\")]\n ),\n _vm._v(\" \"),\n !_vm.listView\n ? _c(\"div\", { staticClass: \"app-summary\" }, [\n _vm._v(_vm._s(_vm.app.summary))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.listView\n ? _c(\"div\", { staticClass: \"app-version\" }, [\n _vm.app.version\n ? _c(\"span\", [_vm._v(_vm._s(_vm.app.version))])\n : _vm.app.appstoreData.releases[0].version\n ? _c(\"span\", [\n _vm._v(_vm._s(_vm.app.appstoreData.releases[0].version))\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"app-level\" },\n [\n _vm.app.level === 200\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"Official apps are developed by and within the community. They offer central functionality and are ready for production use.\"\n ),\n expression:\n \"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"official icon-checkmark\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Official\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.listView\n ? _c(\"app-score\", { attrs: { score: _vm.app.score } })\n : _vm._e()\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _vm.app.error\n ? _c(\"div\", { staticClass: \"warning\" }, [\n _vm._v(_vm._s(_vm.app.error))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.loading(_vm.app.id)\n ? _c(\"div\", { staticClass: \"icon icon-loading-small\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.update\n ? _c(\"input\", {\n staticClass: \"update\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Update to {update}\", {\n update: _vm.app.update\n }),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.update(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.canUnInstall\n ? _c(\"input\", {\n staticClass: \"uninstall\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Remove\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.remove(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.active\n ? _c(\"input\", {\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Disable\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.disable(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.active\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.enableButtonTooltip,\n expression: \"enableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.enableButtonText,\n disabled:\n !_vm.app.canInstall ||\n _vm.installing ||\n _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.enable(_vm.app.id)\n }\n }\n })\n : _vm._e()\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"img\", {\n staticClass: \"app-score-image\",\n attrs: { src: _vm.scoreImage }\n })\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<img :src=\"scoreImage\" class=\"app-score-image\" />\n</template>\n<script>\n\texport default {\n\t\tname: 'appScore',\n\t\tprops: ['score'],\n\t\tcomputed: {\n\t\t\tscoreImage() {\n\t\t\t\tlet score = Math.round( this.score * 10 );\n\t\t\t\tlet imageName = 'rating/s' + score + '.svg';\n\t\t\t\treturn OC.imagePath('core', imageName);\n\t\t\t}\n\t\t}\n\t};\n</script>","import { render, staticRenderFns } from \"./appScore.vue?vue&type=template&id=71d71231&\"\nimport script from \"./appScore.vue?vue&type=script&lang=js&\"\nexport * from \"./appScore.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('71d71231', component.options)\n } else {\n api.reload('71d71231', component.options)\n }\n module.hot.accept(\"./appScore.vue?vue&type=template&id=71d71231&\", function () {\n api.rerender('71d71231', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appList/appScore.vue\"\nexport default component.exports","var render, staticRenderFns\nimport script from \"./appManagement.vue?vue&type=script&lang=js&\"\nexport * from \"./appManagement.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('1ae84938', component.options)\n } else {\n api.reload('1ae84938', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"src/components/appManagement.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<script>\n\texport default {\n\t\tmounted() {\n\t\t\tif (this.app.groups.length > 0) {\n\t\t\t\tthis.groupCheckedAppsData = true;\n\t\t\t}\n\t\t},\n\t\tcomputed: {\n\t\t\tappGroups() {\n\t\t\t\treturn this.app.groups.map(group => {return {id: group, name: group}});\n\t\t\t},\n\t\t\tloading() {\n\t\t\t\tlet self = this;\n\t\t\t\treturn function(id) {\n\t\t\t\t\treturn self.$store.getters.loading(id);\n\t\t\t\t}\n\t\t\t},\n\t\t\tinstalling() {\n\t\t\t\treturn this.$store.getters.loading('install');\n\t\t\t},\n\t\t\tenableButtonText() {\n\t\t\t\tif (this.app.needsDownload) {\n\t\t\t\t\treturn t('settings','Download and enable');\n\t\t\t\t}\n\t\t\t\treturn t('settings','Enable');\n\t\t\t},\n\t\t\tenableButtonTooltip() {\n\t\t\t\tif (this.app.needsDownload) {\n\t\t\t\t\treturn t('settings','The app will be downloaded from the app store');\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tmethods: {\n\t\t\tasyncFindGroup(query) {\n\t\t\t\treturn this.$store.dispatch('getGroups', {search: query, limit: 5, offset: 0});\n\t\t\t},\n\t\t\tisLimitedToGroups(app) {\n\t\t\t\tif (this.app.groups.length || this.groupCheckedAppsData) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\tsetGroupLimit: function() {\n\t\t\t\tif (!this.groupCheckedAppsData) {\n\t\t\t\t\tthis.$store.dispatch('enableApp', {appId: this.app.id, groups: []});\n\t\t\t\t}\n\t\t\t},\n\t\t\tcanLimitToGroups(app) {\n\t\t\t\tif (app.types && app.types.includes('filesystem')\n\t\t\t\t\t|| app.types.includes('prelogin')\n\t\t\t\t\t|| app.types.includes('authentication')\n\t\t\t\t\t|| app.types.includes('logging')\n\t\t\t\t\t|| app.types.includes('prevent_group_restriction')) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\taddGroupLimitation(group) {\n\t\t\t\tlet groups = this.app.groups.concat([]).concat([group.id]);\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: this.app.id, groups: groups});\n\t\t\t},\n\t\t\tremoveGroupLimitation(group) {\n\t\t\t\tlet currentGroups = this.app.groups.concat([]);\n\t\t\t\tlet index = currentGroups.indexOf(group.id);\n\t\t\t\tif (index > -1) {\n\t\t\t\t\tcurrentGroups.splice(index, 1);\n\t\t\t\t}\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: this.app.id, groups: currentGroups});\n\t\t\t},\n\t\t\tenable(appId) {\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: appId, groups: [] })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tdisable(appId) {\n\t\t\t\tthis.$store.dispatch('disableApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tremove(appId) {\n\t\t\t\tthis.$store.dispatch('uninstallApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tinstall(appId) {\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tupdate(appId) {\n\t\t\t\tthis.$store.dispatch('updateApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t}\n\t\t}\n\t}\n</script>\n","var render, staticRenderFns\nimport script from \"./svgFilterMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./svgFilterMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('66ac5316', component.options)\n } else {\n api.reload('66ac5316', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"src/components/svgFilterMixin.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<script>\n\texport default {\n\t\tname: 'svgFilterMixin',\n\t\tmounted() {\n\t\t\tthis.filterId = 'invertIconApps' + Math.floor((Math.random() * 100 )) + new Date().getSeconds() + new Date().getMilliseconds();\n\t\t},\n\t\tcomputed: {\n\t\t\tfilterUrl () {\n\t\t\t\treturn `url(#${this.filterId})`;\n\t\t\t},\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tfilterId: '',\n\t\t\t};\n\t\t},\n\t}\n</script>","import { render, staticRenderFns } from \"./appItem.vue?vue&type=template&id=1c68d544&\"\nimport script from \"./appItem.vue?vue&type=script&lang=js&\"\nexport * from \"./appItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('1c68d544', component.options)\n } else {\n api.reload('1c68d544', component.options)\n }\n module.hot.accept(\"./appItem.vue?vue&type=template&id=1c68d544&\", function () {\n api.rerender('1c68d544', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appList/appItem.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div class=\"section\" v-bind:class=\"{ selected: isSelected }\" v-on:click=\"showAppDetails\">\n\t\t<div class=\"app-image app-image-icon\" v-on:click=\"showAppDetails\">\n\t\t\t<div v-if=\"(listView && !app.preview) || (!listView && !app.screenshot)\" class=\"icon-settings-dark\"></div>\n\n\t\t\t<svg v-if=\"listView && app.preview\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n\t\t\t\t<defs><filter :id=\"filterId\"><feColorMatrix in=\"SourceGraphic\" type=\"matrix\" values=\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"></feColorMatrix></filter></defs>\n\t\t\t\t<image x=\"0\" y=\"0\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMinYMin meet\" :filter=\"filterUrl\" :xlink:href=\"app.preview\" class=\"app-icon\"></image>\n\t\t\t</svg>\n\n\t\t\t<img v-if=\"!listView && app.screenshot\" :src=\"app.screenshot\" width=\"100%\" />\n\t\t</div>\n\t\t<div class=\"app-name\" v-on:click=\"showAppDetails\">\n\t\t\t{{ app.name }}\n\t\t</div>\n\t\t<div class=\"app-summary\" v-if=\"!listView\">{{ app.summary }}</div>\n\t\t<div class=\"app-version\" v-if=\"listView\">\n\t\t\t<span v-if=\"app.version\">{{ app.version }}</span>\n\t\t\t<span v-else-if=\"app.appstoreData.releases[0].version\">{{ app.appstoreData.releases[0].version }}</span>\n\t\t</div>\n\n\t\t<div class=\"app-level\">\n\t\t\t<span class=\"official icon-checkmark\" v-if=\"app.level === 200\"\n\t\t\t\t v-tooltip.auto=\"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\">\n\t\t\t\t{{ t('settings', 'Official') }}</span>\n\t\t\t<app-score v-if=\"!listView\" :score=\"app.score\"></app-score>\n\t\t</div>\n\n\t\t<div class=\"actions\">\n\t\t\t<div class=\"warning\" v-if=\"app.error\">{{ app.error }}</div>\n\t\t\t<div class=\"icon icon-loading-small\" v-if=\"loading(app.id)\"></div>\n\t\t\t<input v-if=\"app.update\" class=\"update\" type=\"button\" :value=\"t('settings', 'Update to {update}', {update:app.update})\" v-on:click.stop=\"update(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t<input v-if=\"app.canUnInstall\" class=\"uninstall\" type=\"button\" :value=\"t('settings', 'Remove')\" v-on:click.stop=\"remove(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t<input v-if=\"app.active\" class=\"enable\" type=\"button\" :value=\"t('settings','Disable')\" v-on:click.stop=\"disable(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t<input v-if=\"!app.active\" class=\"enable\" type=\"button\" :value=\"enableButtonText\" v-on:click.stop=\"enable(app.id)\" v-tooltip.auto=\"enableButtonTooltip\" :disabled=\"!app.canInstall || installing || loading(app.id)\" />\n\t\t</div>\n\t</div>\n</template>\n\n<script>\n\timport Multiselect from 'vue-multiselect';\n\timport AppScore from './appScore';\n\timport AppManagement from '../appManagement';\n\timport SvgFilterMixin from '../svgFilterMixin';\n\n\texport default {\n\t\tname: 'appItem',\n\t\tmixins: [AppManagement, SvgFilterMixin],\n\t\tprops: {\n\t\t\tapp: {},\n\t\t\tcategory: {},\n\t\t\tlistView: {\n\t\t\t\ttype: Boolean,\n\t\t\t\tdefault: true,\n\t\t\t}\n\t\t},\n\t\twatch: {\n\t\t\t'$route.params.id': function (id) {\n\t\t\t\tthis.isSelected = (this.app.id === id);\n\t\t\t}\n\t\t},\n\t\tcomponents: {\n\t\t\tMultiselect,\n\t\t\tAppScore,\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tisSelected: false,\n\t\t\t\tscrolled: false,\n\t\t\t};\n\t\t},\n\t\tmounted() {\n\t\t\tthis.isSelected = (this.app.id === this.$route.params.id);\n\t\t},\n\t\tcomputed: {\n\n\t\t},\n\t\twatchers: {\n\n\t\t},\n\t\tmethods: {\n\t\t\tshowAppDetails(event) {\n\t\t\t\tif (event.currentTarget.tagName === 'INPUT' || event.currentTarget.tagName === 'A') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tthis.$router.push({\n\t\t\t\t\tname: 'apps-details',\n\t\t\t\t\tparams: {category: this.category, id: this.app.id}\n\t\t\t\t});\n\t\t\t},\n\t\t\tprefix(prefix, content) {\n\t\t\t\treturn prefix + '_' + content;\n\t\t\t},\n\t\t}\n\t}\n</script>\n","var render, staticRenderFns\nimport script from \"./prefixMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./prefixMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('eb3bc8a2', component.options)\n } else {\n api.reload('eb3bc8a2', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"src/components/prefixMixin.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<script>\n\texport default {\n\t\tname: 'prefixMixin',\n\t\tmethods: {\n\t\t\tprefix (prefix, content) {\n\t\t\t\treturn prefix + '_' + content;\n\t\t\t},\n\t\t}\n\t}\n</script>","import { render, staticRenderFns } from \"./appList.vue?vue&type=template&id=a1862e02&\"\nimport script from \"./appList.vue?vue&type=script&lang=js&\"\nexport * from \"./appList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('a1862e02', component.options)\n } else {\n api.reload('a1862e02', component.options)\n }\n module.hot.accept(\"./appList.vue?vue&type=template&id=a1862e02&\", function () {\n api.rerender('a1862e02', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appList.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"app-content-inner\">\n\t\t<div id=\"apps-list\" class=\"apps-list\" :class=\"{installed: (useBundleView || useListView), store: useAppStoreView}\">\n\t\t\t<template v-if=\"useListView\">\n\t\t\t\t<transition-group name=\"app-list\" tag=\"div\" class=\"apps-list-container\">\n\t\t\t\t\t<app-item v-for=\"app in apps\" :key=\"app.id\" :app=\"app\" :category=\"category\" />\n\t\t\t\t</transition-group>\n\t\t\t</template>\n\t\t\t<template v-for=\"bundle in bundles\" v-if=\"useBundleView && bundleApps(bundle.id).length > 0\">\n\t\t\t\t<transition-group name=\"app-list\" tag=\"div\" class=\"apps-list-container\">\n\n\t\t\t\t\t<div class=\"apps-header\" :key=\"bundle.id\">\n\t\t\t\t\t\t<div class=\"app-image\"></div>\n\t\t\t\t\t\t<h2>{{ bundle.name }} <input type=\"button\" :value=\"bundleToggleText(bundle.id)\" v-on:click=\"toggleBundle(bundle.id)\"></h2>\n\t\t\t\t\t\t<div class=\"app-version\"></div>\n\t\t\t\t\t\t<div class=\"app-level\"></div>\n\t\t\t\t\t\t<div class=\"app-groups\"></div>\n\t\t\t\t\t\t<div class=\"actions\"> </div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<app-item v-for=\"app in bundleApps(bundle.id)\" :key=\"bundle.id + app.id\" :app=\"app\" :category=\"category\"/>\n\t\t\t\t</transition-group>\n\t\t\t</template>\n\t\t\t<template v-if=\"useAppStoreView\">\n\t\t\t\t<app-item v-for=\"app in apps\" :key=\"app.id\" :app=\"app\" :category=\"category\" :list-view=\"false\" />\n\t\t\t</template>\n\n\t\t</div>\n\n\t\t<div id=\"apps-list-search\" class=\"apps-list installed\">\n\t\t\t<div class=\"apps-list-container\">\n\t\t\t\t<template v-if=\"search !== '' && searchApps.length > 0\">\n\t\t\t\t\t<div class=\"section\">\n\t\t\t\t\t\t<div></div>\n\t\t\t\t\t\t<td colspan=\"5\">\n\t\t\t\t\t\t\t<h2>{{ t('settings', 'Results from other categories') }}</h2>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t</div>\n\t\t\t\t\t<app-item v-for=\"app in searchApps\" :key=\"app.id\" :app=\"app\" :category=\"category\" :list-view=\"true\" />\n\t\t\t\t</template>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<div id=\"apps-list-empty\" class=\"emptycontent emptycontent-search\" v-if=\"!loading && searchApps.length === 0 && apps.length === 0\">\n\t\t\t<div id=\"app-list-empty-icon\" class=\"icon-settings-dark\"></div>\n\t\t\t<h2>{{ t('settings', 'No apps found for your versoin')}}</h2>\n\t\t</div>\n\n\t\t<div id=\"searchresults\"></div>\n\t</div>\n</template>\n\n<script>\nimport appItem from './appList/appItem';\nimport Multiselect from 'vue-multiselect';\nimport prefix from './prefixMixin';\n\nexport default {\n\tname: 'appList',\n\tmixins: [prefix],\n\tprops: ['category', 'app', 'search'],\n\tcomponents: {\n\t\tMultiselect,\n\t\tappItem\n\t},\n\tcomputed: {\n\t\tloading() {\n\t\t\treturn this.$store.getters.loading('list');\n\t\t},\n\t\tapps() {\n\t\t\tlet apps = this.$store.getters.getAllApps\n\t\t\t\t.filter(app => app.name.toLowerCase().search(this.search.toLowerCase()) !== -1)\n\t\t\t\t.sort(function (a, b) {\n\t\t\t\t\tconst sortStringA = '' + (a.active ? 0 : 1) + (a.update ? 0 : 1) + a.name;\n\t\t\t\t\tconst sortStringB = '' + (b.active ? 0 : 1) + (b.update ? 0 : 1) + b.name;\n\t\t\t\t\treturn OC.Util.naturalSortCompare(sortStringA, sortStringB);\n\t\t\t\t});\n\n\t\t\tif (this.category === 'installed') {\n\t\t\t\treturn apps.filter(app => app.installed);\n\t\t\t}\n\t\t\tif (this.category === 'enabled') {\n\t\t\t\treturn apps.filter(app => app.active && app.installed);\n\t\t\t}\n\t\t\tif (this.category === 'disabled') {\n\t\t\t\treturn apps.filter(app => !app.active && app.installed);\n\t\t\t}\n\t\t\tif (this.category === 'app-bundles') {\n\t\t\t\treturn apps.filter(app => app.bundles);\n\t\t\t}\n\t\t\tif (this.category === 'updates') {\n\t\t\t\treturn apps.filter(app => app.update);\n\t\t\t}\n\t\t\t// filter app store categories\n\t\t\treturn apps.filter(app => {\n\t\t\t\treturn app.appstore && app.category !== undefined &&\n\t\t\t\t\t(app.category === this.category || app.category.indexOf(this.category) > -1);\n\t\t\t});\n\t\t},\n\t\tbundles() {\n\t\t\treturn this.$store.getters.getServerData.bundles;\n\t\t},\n\t\tbundleApps() {\n\t\t\treturn function(bundle) {\n\t\t\t\treturn this.$store.getters.getAllApps\n\t\t\t\t\t.filter(app => app.bundleId === bundle);\n\t\t\t}\n\t\t},\n\t\tsearchApps() {\n\t\t\tif (this.search === '') {\n\t\t\t\treturn [];\n\t\t\t}\n\t\t\treturn this.$store.getters.getAllApps\n\t\t\t\t.filter(app => {\n\t\t\t\t\tif (app.name.toLowerCase().search(this.search.toLowerCase()) !== -1) {\n\t\t\t\t\t\treturn (!this.apps.find(_app => _app.id === app.id));\n\t\t\t\t\t}\n\t\t\t\t\treturn false;\n\t\t\t\t});\n\t\t},\n\t\tuseAppStoreView() {\n\t\t\treturn !this.useListView && !this.useBundleView;\n\t\t},\n\t\tuseListView() {\n\t\t\treturn (this.category === 'installed' || this.category === 'enabled' || this.category === 'disabled' || this.category === 'updates');\n\t\t},\n\t\tuseBundleView() {\n\t\t\treturn (this.category === 'app-bundles');\n\t\t},\n\t\tallBundlesEnabled() {\n\t\t\tlet self = this;\n\t\t\treturn function(id) {\n\t\t\t\treturn self.bundleApps(id).filter(app => !app.active).length === 0;\n\t\t\t}\n\t\t},\n\t\tbundleToggleText() {\n\t\t\tlet self = this;\n\t\t\treturn function(id) {\n\t\t\t\tif (self.allBundlesEnabled(id)) {\n\t\t\t\t\treturn t('settings', 'Disable all');\n\t\t\t\t}\n\t\t\t\treturn t('settings', 'Enable all');\n\t\t\t}\n\t\t}\n\t},\n\tmethods: {\n\t\ttoggleBundle(id) {\n\t\t\tif (this.allBundlesEnabled(id)) {\n\t\t\t\treturn this.disableBundle(id);\n\t\t\t}\n\t\t\treturn this.enableBundle(id);\n\t\t},\n\t\tenableBundle(id) {\n\t\t\tlet apps = this.bundleApps(id).map(app => app.id);\n\t\t\tthis.$store.dispatch('enableApp', { appId: apps, groups: [] })\n\t\t\t\t.catch((error) => { console.log(error); OC.Notification.show(error)});\n\t\t},\n\t\tdisableBundle(id) {\n\t\t\tlet apps = this.bundleApps(id).map(app => app.id);\n\t\t\tthis.$store.dispatch('disableApp', { appId: apps, groups: [] })\n\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t}\n\t},\n}\n</script>\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticStyle: { padding: \"20px\" }, attrs: { id: \"app-details-view\" } },\n [\n _c(\n \"a\",\n {\n staticClass: \"close icon-close\",\n attrs: { href: \"#\" },\n on: { click: _vm.hideAppDetails }\n },\n [_c(\"span\", { staticClass: \"hidden-visually\" }, [_vm._v(\"Close\")])]\n ),\n _vm._v(\" \"),\n _c(\"h2\", [\n !_vm.app.preview\n ? _c(\"div\", { staticClass: \"icon-settings-dark\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.previewAsIcon && _vm.app.preview\n ? _c(\n \"svg\",\n { attrs: { width: \"32\", height: \"32\", viewBox: \"0 0 32 32\" } },\n [\n _c(\"defs\", [\n _c(\n \"filter\",\n { attrs: { id: _vm.filterId } },\n [\n _c(\"feColorMatrix\", {\n attrs: {\n in: \"SourceGraphic\",\n type: \"matrix\",\n values: \"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"\n }\n })\n ],\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\"image\", {\n staticClass: \"app-icon\",\n attrs: {\n x: \"0\",\n y: \"0\",\n width: \"32\",\n height: \"32\",\n preserveAspectRatio: \"xMinYMin meet\",\n filter: _vm.filterUrl,\n \"xlink:href\": _vm.app.preview\n }\n })\n ]\n )\n : _vm._e(),\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.name))\n ]),\n _vm._v(\" \"),\n _vm.app.screenshot\n ? _c(\"img\", { attrs: { src: _vm.app.screenshot, width: \"100%\" } })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.level === 200 || _vm.hasRating\n ? _c(\n \"div\",\n { staticClass: \"app-level\" },\n [\n _vm.app.level === 200\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"Official apps are developed by and within the community. They offer central functionality and are ready for production use.\"\n ),\n expression:\n \"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"official icon-checkmark\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Official\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hasRating\n ? _c(\"app-score\", {\n attrs: { score: _vm.app.appstoreData.ratingOverall }\n })\n : _vm._e()\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.author\n ? _c(\n \"div\",\n { staticClass: \"app-author\" },\n [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.t(\"settings\", \"by\")) + \"\\n\\t\\t\"),\n _vm._l(_vm.author, function(a, index) {\n return _c(\"span\", [\n a[\"@attributes\"] && a[\"@attributes\"][\"homepage\"]\n ? _c(\n \"a\",\n { attrs: { href: a[\"@attributes\"][\"homepage\"] } },\n [_vm._v(_vm._s(a[\"@value\"]))]\n )\n : a[\"@value\"]\n ? _c(\"span\", [_vm._v(_vm._s(a[\"@value\"]))])\n : _c(\"span\", [_vm._v(_vm._s(a))]),\n index + 1 < _vm.author.length\n ? _c(\"span\", [_vm._v(\", \")])\n : _vm._e()\n ])\n })\n ],\n 2\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.licence\n ? _c(\"div\", { staticClass: \"app-licence\" }, [\n _vm._v(_vm._s(_vm.licence))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _c(\"div\", { staticClass: \"actions-buttons\" }, [\n _vm.app.update\n ? _c(\"input\", {\n staticClass: \"update\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Update to {version}\", {\n version: _vm.app.update\n }),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.canUnInstall\n ? _c(\"input\", {\n staticClass: \"uninstall\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Remove\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n _vm.remove(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.active\n ? _c(\"input\", {\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Disable\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n _vm.disable(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.active\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.enableButtonTooltip,\n expression: \"enableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.enableButtonText,\n disabled:\n !_vm.app.canInstall ||\n _vm.installing ||\n _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n _vm.enable(_vm.app.id)\n }\n }\n })\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-groups\" }, [\n _vm.app.active && _vm.canLimitToGroups(_vm.app)\n ? _c(\n \"div\",\n { staticClass: \"groups-enable\" },\n [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.groupCheckedAppsData,\n expression: \"groupCheckedAppsData\"\n }\n ],\n staticClass: \"groups-enable__checkbox checkbox\",\n attrs: {\n type: \"checkbox\",\n id: _vm.prefix(\"groups_enable\", _vm.app.id)\n },\n domProps: {\n value: _vm.app.id,\n checked: Array.isArray(_vm.groupCheckedAppsData)\n ? _vm._i(_vm.groupCheckedAppsData, _vm.app.id) > -1\n : _vm.groupCheckedAppsData\n },\n on: {\n change: [\n function($event) {\n var $$a = _vm.groupCheckedAppsData,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = _vm.app.id,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 &&\n (_vm.groupCheckedAppsData = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.groupCheckedAppsData = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.groupCheckedAppsData = $$c\n }\n },\n _vm.setGroupLimit\n ]\n }\n }),\n _vm._v(\" \"),\n _c(\n \"label\",\n { attrs: { for: _vm.prefix(\"groups_enable\", _vm.app.id) } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Limit to groups\")))]\n ),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"group_select\",\n attrs: {\n type: \"hidden\",\n title: _vm.t(\"settings\", \"All\"),\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _vm.isLimitedToGroups(_vm.app)\n ? _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.groups,\n value: _vm.appGroups,\n \"options-limit\": 5,\n placeholder: _vm.t(\n \"settings\",\n \"Limit app usage to groups\"\n ),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false\n },\n on: {\n select: _vm.addGroupLimitation,\n remove: _vm.removeGroupLimitation,\n \"search-change\": _vm.asyncFindGroup\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n : _vm._e()\n ],\n 1\n )\n : _vm._e()\n ])\n ]),\n _vm._v(\" \"),\n _c(\"p\", { staticClass: \"documentation\" }, [\n !_vm.app.internal\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.appstoreUrl,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"View in store\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.website\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.website,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Visit website\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.bugs\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.bugs,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Report a bug\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.user\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.user,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"User documentation\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.admin\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.admin,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Admin documentation\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.developer\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.developer,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"settings\", \"Developer documentation\")) + \" ↗\"\n )\n ]\n )\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"ul\", { staticClass: \"app-dependencies\" }, [\n _vm.app.missingMinOwnCloudVersion\n ? _c(\"li\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app has no minimum Nextcloud version assigned. This will be an error in the future.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.missingMaxOwnCloudVersion\n ? _c(\"li\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app has no maximum Nextcloud version assigned. This will be an error in the future.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.canInstall\n ? _c(\"li\", [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app cannot be installed because the following dependencies are not fulfilled:\"\n )\n ) +\n \"\\n\\t\\t\\t\"\n ),\n _c(\n \"ul\",\n { staticClass: \"missing-dependencies\" },\n _vm._l(_vm.app.missingDependencies, function(dep) {\n return _c(\"li\", [_vm._v(_vm._s(dep))])\n })\n )\n ])\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"div\", {\n staticClass: \"app-description\",\n domProps: { innerHTML: _vm._s(_vm.renderMarkdown) }\n })\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"app-details-view\" style=\"padding: 20px;\">\n\t\t<a class=\"close icon-close\" href=\"#\" v-on:click=\"hideAppDetails\"><span class=\"hidden-visually\">Close</span></a>\n\t\t<h2>\n\t\t\t<div v-if=\"!app.preview\" class=\"icon-settings-dark\"></div>\n\t\t\t<svg v-if=\"app.previewAsIcon && app.preview\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n\t\t\t\t<defs><filter :id=\"filterId\"><feColorMatrix in=\"SourceGraphic\" type=\"matrix\" values=\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"></feColorMatrix></filter></defs>\n\t\t\t\t<image x=\"0\" y=\"0\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMinYMin meet\" :filter=\"filterUrl\" :xlink:href=\"app.preview\" class=\"app-icon\"></image>\n\t\t\t</svg>\n\t\t\t{{ app.name }}</h2>\n\t\t<img v-if=\"app.screenshot\" :src=\"app.screenshot\" width=\"100%\" />\n\t\t<div class=\"app-level\" v-if=\"app.level === 200 || hasRating\">\n\t\t\t<span class=\"official icon-checkmark\" v-if=\"app.level === 200\"\n\t\t\t v-tooltip.auto=\"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\">\n\t\t\t\t{{ t('settings', 'Official') }}</span>\n\t\t\t<app-score v-if=\"hasRating\" :score=\"app.appstoreData.ratingOverall\"></app-score>\n\t\t</div>\n\n\t\t<div class=\"app-author\" v-if=\"author\">\n\t\t\t{{ t('settings', 'by') }}\n\t\t\t<span v-for=\"(a, index) in author\">\n\t\t\t\t<a v-if=\"a['@attributes'] && a['@attributes']['homepage']\" :href=\"a['@attributes']['homepage']\">{{ a['@value'] }}</a><span v-else-if=\"a['@value']\">{{ a['@value'] }}</span><span v-else>{{ a }}</span><span v-if=\"index+1 < author.length\">, </span>\n\t\t\t</span>\n\t\t</div>\n\t\t<div class=\"app-licence\" v-if=\"licence\">{{ licence }}</div>\n\t\t<div class=\"actions\">\n\t\t\t<div class=\"actions-buttons\">\n\t\t\t\t<input v-if=\"app.update\" class=\"update\" type=\"button\" :value=\"t('settings', 'Update to {version}', {version: app.update})\" :disabled=\"installing || loading(app.id)\"/>\n\t\t\t\t<input v-if=\"app.canUnInstall\" class=\"uninstall\" type=\"button\" :value=\"t('settings', 'Remove')\" v-on:click=\"remove(app.id)\" :disabled=\"installing || loading(app.id)\"/>\n\t\t\t\t<input v-if=\"app.active\" class=\"enable\" type=\"button\" :value=\"t('settings','Disable')\" v-on:click=\"disable(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t\t<input v-if=\"!app.active\" class=\"enable\" type=\"button\" :value=\"enableButtonText\" v-on:click=\"enable(app.id)\" v-tooltip.auto=\"enableButtonTooltip\" :disabled=\"!app.canInstall || installing || loading(app.id)\" />\n\t\t\t</div>\n\t\t\t<div class=\"app-groups\">\n\t\t\t\t<div class=\"groups-enable\" v-if=\"app.active && canLimitToGroups(app)\">\n\t\t\t\t\t<input type=\"checkbox\" :value=\"app.id\" v-model=\"groupCheckedAppsData\" v-on:change=\"setGroupLimit\" class=\"groups-enable__checkbox checkbox\" :id=\"prefix('groups_enable', app.id)\">\n\t\t\t\t\t<label :for=\"prefix('groups_enable', app.id)\">{{ t('settings', 'Limit to groups') }}</label>\n\t\t\t\t\t<input type=\"hidden\" class=\"group_select\" :title=\"t('settings', 'All')\" value=\"\">\n\t\t\t\t\t<multiselect v-if=\"isLimitedToGroups(app)\" :options=\"groups\" :value=\"appGroups\" @select=\"addGroupLimitation\" @remove=\"removeGroupLimitation\" :options-limit=\"5\"\n\t\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Limit app usage to groups')\"\n\t\t\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t\t :multiple=\"true\" :close-on-select=\"false\"\n\t\t\t\t\t\t\t\t @search-change=\"asyncFindGroup\">\n\t\t\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t\t\t</multiselect>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<p class=\"documentation\">\n\t\t\t<a class=\"appslink\" :href=\"appstoreUrl\" v-if=\"!app.internal\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'View in store')}} ↗</a>\n\n\t\t\t<a class=\"appslink\" v-if=\"app.website\" :href=\"app.website\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Visit website') }} ↗</a>\n\t\t\t<a class=\"appslink\" v-if=\"app.bugs\" :href=\"app.bugs\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Report a bug') }} ↗</a>\n\n\t\t\t<a class=\"appslink\" v-if=\"app.documentation && app.documentation.user\" :href=\"app.documentation.user\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'User documentation') }} ↗</a>\n\t\t\t<a class=\"appslink\" v-if=\"app.documentation && app.documentation.admin\" :href=\"app.documentation.admin\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Admin documentation') }} ↗</a>\n\t\t\t<a class=\"appslink\" v-if=\"app.documentation && app.documentation.developer\" :href=\"app.documentation.developer\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Developer documentation') }} ↗</a>\n\t\t</p>\n\n\t\t<ul class=\"app-dependencies\">\n\t\t\t<li v-if=\"app.missingMinOwnCloudVersion\">{{ t('settings', 'This app has no minimum Nextcloud version assigned. This will be an error in the future.') }}</li>\n\t\t\t<li v-if=\"app.missingMaxOwnCloudVersion\">{{ t('settings', 'This app has no maximum Nextcloud version assigned. This will be an error in the future.') }}</li>\n\t\t\t<li v-if=\"!app.canInstall\">\n\t\t\t\t{{ t('settings', 'This app cannot be installed because the following dependencies are not fulfilled:') }}\n\t\t\t\t<ul class=\"missing-dependencies\">\n\t\t\t\t\t<li v-for=\"dep in app.missingDependencies\">{{ dep }}</li>\n\t\t\t\t</ul>\n\t\t\t</li>\n\t\t</ul>\n\n\t\t<div class=\"app-description\" v-html=\"renderMarkdown\"></div>\n\t</div>\n</template>\n\n<script>\nimport Multiselect from 'vue-multiselect';\nimport AppScore from './appList/appScore';\nimport AppManagement from './appManagement';\nimport prefix from './prefixMixin';\nimport SvgFilterMixin from './svgFilterMixin';\n\nexport default {\n\tmixins: [AppManagement, prefix, SvgFilterMixin],\n\tname: 'appDetails',\n\tprops: ['category', 'app'],\n\tcomponents: {\n\t\tMultiselect,\n\t\tAppScore\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tgroupCheckedAppsData: false,\n\t\t}\n\t},\n\tmounted() {\n\t\tif (this.app.groups.length > 0) {\n\t\t\tthis.groupCheckedAppsData = true;\n\t\t}\n\t},\n\tmethods: {\n\t\thideAppDetails() {\n\t\t\tthis.$router.push({\n\t\t\t\tname: 'apps-category',\n\t\t\t\tparams: {category: this.category}\n\t\t\t});\n\t\t},\n\t},\n\tcomputed: {\n\t\tappstoreUrl() {\n\t\t\treturn `https://apps.nextcloud.com/apps/${this.app.id}`;\n\t\t},\n\t\tlicence() {\n\t\t\tif (this.app.licence) {\n\t\t\t\treturn t('settings', '{license}-licensed', { license: ('' + this.app.licence).toUpperCase() } );\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\thasRating() {\n\t\t\treturn this.app.appstoreData && this.app.appstoreData.ratingNumOverall > 5;\n\t\t},\n\t\tauthor() {\n\t\t\tif (typeof this.app.author === 'string') {\n\t\t\t\treturn [\n\t\t\t\t\t{\n\t\t\t\t\t\t'@value': this.app.author\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t\tif (this.app.author['@value']) {\n\t\t\t\treturn [this.app.author];\n\t\t\t}\n\t\t\treturn this.app.author;\n\t\t},\n\t\tappGroups() {\n\t\t\treturn this.app.groups.map(group => {return {id: group, name: group}});\n\t\t},\n\t\tgroups() {\n\t\t\treturn this.$store.getters.getGroups\n\t\t\t\t.filter(group => group.id !== 'disabled')\n\t\t\t\t.sort((a, b) => a.name.localeCompare(b.name));\n\t\t},\n\t\trenderMarkdown() {\n\t\t\t// TODO: bundle marked as well\n\t\t\tvar renderer = new window.marked.Renderer();\n\t\t\trenderer.link = function(href, title, text) {\n\t\t\t\ttry {\n\t\t\t\t\tvar prot = decodeURIComponent(unescape(href))\n\t\t\t\t\t\t.replace(/[^\\w:]/g, '')\n\t\t\t\t\t\t.toLowerCase();\n\t\t\t\t} catch (e) {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\n\t\t\t\tif (prot.indexOf('http:') !== 0 && prot.indexOf('https:') !== 0) {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\n\t\t\t\tvar out = '<a href=\"' + href + '\" rel=\"noreferrer noopener\"';\n\t\t\t\tif (title) {\n\t\t\t\t\tout += ' title=\"' + title + '\"';\n\t\t\t\t}\n\t\t\t\tout += '>' + text + '</a>';\n\t\t\t\treturn out;\n\t\t\t};\n\t\t\trenderer.image = function(href, title, text) {\n\t\t\t\tif (text) {\n\t\t\t\t\treturn text;\n\t\t\t\t}\n\t\t\t\treturn title;\n\t\t\t};\n\t\t\trenderer.blockquote = function(quote) {\n\t\t\t\treturn quote;\n\t\t\t};\n\t\t\treturn DOMPurify.sanitize(\n\t\t\t\twindow.marked(this.app.description.trim(), {\n\t\t\t\t\trenderer: renderer,\n\t\t\t\t\tgfm: false,\n\t\t\t\t\thighlight: false,\n\t\t\t\t\ttables: false,\n\t\t\t\t\tbreaks: false,\n\t\t\t\t\tpedantic: false,\n\t\t\t\t\tsanitize: true,\n\t\t\t\t\tsmartLists: true,\n\t\t\t\t\tsmartypants: false\n\t\t\t\t}),\n\t\t\t\t{\n\t\t\t\t\tSAFE_FOR_JQUERY: true,\n\t\t\t\t\tALLOWED_TAGS: [\n\t\t\t\t\t\t'strong',\n\t\t\t\t\t\t'p',\n\t\t\t\t\t\t'a',\n\t\t\t\t\t\t'ul',\n\t\t\t\t\t\t'ol',\n\t\t\t\t\t\t'li',\n\t\t\t\t\t\t'em',\n\t\t\t\t\t\t'del',\n\t\t\t\t\t\t'blockquote'\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./appDetails.vue?vue&type=template&id=273c8e71&\"\nimport script from \"./appDetails.vue?vue&type=script&lang=js&\"\nexport * from \"./appDetails.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('273c8e71', component.options)\n } else {\n api.reload('273c8e71', component.options)\n }\n module.hot.accept(\"./appDetails.vue?vue&type=template&id=273c8e71&\", function () {\n api.rerender('273c8e71', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appDetails.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"content\" class=\"app-settings\" :class=\"{ 'with-app-sidebar': currentApp}\">\n\t\t<app-navigation :menu=\"menu\" />\n\t\t<div id=\"app-content\" class=\"app-settings-content\" :class=\"{ 'icon-loading': loadingList }\">\n\t\t\t<app-list :category=\"category\" :app=\"currentApp\" :search=\"searchQuery\"></app-list>\n\t\t</div>\n\t\t<div id=\"app-sidebar\" v-if=\"id && currentApp\">\n\t\t\t<app-details :category=\"category\" :app=\"currentApp\"></app-details>\n\t\t</div>\n\t</div>\n</template>\n\n\n<script>\nimport appNavigation from '../components/appNavigation';\nimport appList from '../components/appList';\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage'\nimport Multiselect from 'vue-multiselect';\nimport api from '../store/api';\nimport AppDetails from '../components/appDetails';\n\nVue.use(VueLocalStorage)\nVue.use(VueLocalStorage)\n\nexport default {\n\tname: 'Apps',\n\tprops: {\n\t\tcategory: {\n\t\t\ttype: String,\n\t\t\tdefault: 'installed',\n\t\t},\n\t\tid: {\n\t\t\ttype: String,\n\t\t\tdefault: '',\n\t\t}\n\t},\n\tcomponents: {\n\t\tAppDetails,\n\t\tappNavigation,\n\t\tappList,\n\t},\n\tmethods: {\n\t\tsetSearch(query) {\n\t\t\tthis.searchQuery = query;\n\t\t},\n\t\tresetSearch() {\n\t\t\tthis.setSearch('');\n\t\t}\n\t},\n\tbeforeMount() {\n\t\tthis.$store.dispatch('getCategories');\n\t\tthis.$store.dispatch('getAllApps');\n\t\tthis.$store.dispatch('getGroups', {offset: 0, limit: 5});\n\t\tthis.$store.commit('setUpdateCount', this.$store.getters.getServerData.updateCount)\n\t},\n\tmounted() {\n\t\t/** \n\t\t * Register search\n\t\t */\n\t\tthis.appSearch = new OCA.Search(this.setSearch, this.resetSearch);\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tsearchQuery: ''\n\t\t}\n\t},\n\twatch: {\n\t\tcategory: function (val, old) {\n\t\t\tthis.setSearch('');\n\t\t}\n\t},\n\tcomputed: {\n\t\tloading() {\n\t\t\treturn this.$store.getters.loading('categories');\n\t\t},\n\t\tloadingList() {\n\t\t\treturn this.$store.getters.loading('list');\n\t\t},\n\t\tcurrentApp() {\n\t\t\treturn this.apps.find(app => app.id === this.id );\n\t\t},\n\t\tcategories() {\n\t\t\treturn this.$store.getters.getCategories;\n\t\t},\n\t\tapps() {\n\t\t\treturn this.$store.getters.getAllApps;\n\t\t},\n\t\tupdateCount() {\n\t\t\treturn this.$store.getters.getUpdateCount;\n\t\t},\n\t\tsettings() {\n\t\t\treturn this.$store.getters.getServerData;\n\t\t},\n\n\t\t// BUILD APP NAVIGATION MENU OBJECT\n\t\tmenu() {\n\t\t\t// Data provided php side\n\t\t\tlet categories = this.$store.getters.getCategories;\n\t\t\tcategories = Array.isArray(categories) ? categories : [];\n\n\t\t\t// Map groups\n\t\t\tcategories = categories.map(category => {\n\t\t\t\tlet item = {};\n\t\t\t\titem.id = 'app-category-' + category.ident;\n\t\t\t\titem.icon = 'icon-category-' + category.ident;\n\t\t\t\titem.classes = [];\t\t\t\t\t\t\t// empty classes, active will be set later\n\t\t\t\titem.router = {\t\t\t\t\t\t\t\t// router link to\n\t\t\t\t\tname: 'apps-category',\n\t\t\t\t\tparams: {category: category.ident}\n\t\t\t\t};\n\t\t\t\titem.text = category.displayName;\n\n\t\t\t\treturn item;\n\t\t\t});\n\n\n\t\t\t// Add everyone group\n\t\t\tlet defaultCategories = [\n\t\t\t\t{\n\t\t\t\t\tid: 'app-category-your-apps',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\trouter: {name: 'apps'},\n\t\t\t\t\ticon: 'icon-category-installed',\n\t\t\t\t\ttext: t('settings', 'Your apps'),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tid: 'app-category-enabled',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\ticon: 'icon-category-enabled',\n\t\t\t\t\trouter: {name: 'apps-category', params: {category: 'enabled'}},\n\t\t\t\t\ttext: t('settings', 'Active apps'),\n\t\t\t\t}, {\n\t\t\t\t\tid: 'app-category-disabled',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\ticon: 'icon-category-disabled',\n\t\t\t\t\trouter: {name: 'apps-category', params: {category: 'disabled'}},\n\t\t\t\t\ttext: t('settings', 'Disabled apps'),\n\t\t\t\t}\n\t\t\t];\n\n\t\t\tif (!this.settings.appstoreEnabled) {\n\t\t\t\treturn {\n\t\t\t\t\tid: 'appscategories',\n\t\t\t\t\titems: defaultCategories,\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (this.$store.getters.getUpdateCount > 0) {\n\t\t\t\tdefaultCategories.push({\n\t\t\t\t\tid: 'app-category-updates',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\ticon: 'icon-download',\n\t\t\t\t\trouter: {name: 'apps-category', params: {category: 'updates'}},\n\t\t\t\t\ttext: t('settings', 'Updates'),\n\t\t\t\t\tutils: {counter: this.$store.getters.getUpdateCount}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tdefaultCategories.push({\n\t\t\t\tid: 'app-category-app-bundles',\n\t\t\t\tclasses: [],\n\t\t\t\ticon: 'icon-category-app-bundles',\n\t\t\t\trouter: {name: 'apps-category', params: {category: 'app-bundles'}},\n\t\t\t\ttext: t('settings', 'App bundles'),\n\t\t\t});\n\n\t\t\tcategories = defaultCategories.concat(categories);\n\n\t\t\t// Set current group as active\n\t\t\tlet activeGroup = categories.findIndex(group => group.id === 'app-category-' + this.category);\n\t\t\tif (activeGroup >= 0) {\n\t\t\t\tcategories[activeGroup].classes.push('active');\n\t\t\t} else {\n\t\t\t\tcategories[0].classes.push('active');\n\t\t\t}\n\n\t\t\tcategories.push({\n\t\t\t\tid: 'app-developer-docs',\n\t\t\t\tclasses: [],\n\t\t\t\thref: this.settings.developerDocumentation,\n\t\t\t\ttext: t('settings', 'Developer documentation') + ' ↗',\n\t\t\t});\n\n\t\t\t// Return\n\t\t\treturn {\n\t\t\t\tid: 'appscategories',\n\t\t\t\titems: categories,\n\t\t\t\tloading: this.loading\n\t\t\t}\n\t\t},\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./Apps.vue?vue&type=template&id=33a216a8&\"\nimport script from \"./Apps.vue?vue&type=script&lang=js&\"\nexport * from \"./Apps.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('33a216a8', component.options)\n } else {\n api.reload('33a216a8', component.options)\n }\n module.hot.accept(\"./Apps.vue?vue&type=template&id=33a216a8&\", function () {\n api.rerender('33a216a8', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/views/Apps.vue\"\nexport default component.exports","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue';\nimport Router from 'vue-router';\nimport Users from './views/Users';\nimport Apps from './views/Apps';\n\nVue.use(Router);\n\n/*\n * This is the list of routes where the vuejs app will\n * take over php to provide data\n * You need to forward the php routing (routes.php) to\n * the settings-vue template, where the vue-router will\n * ensure the proper route.\n * ⚠️ Routes needs to match the php routes.\n */\n\nexport default new Router({\n\tmode: 'history',\n\t// if index.php is in the url AND we got this far, then it's working:\n\t// let's keep using index.php in the url\n\tbase: OC.generateUrl(''),\n\tlinkActiveClass: 'active',\n\troutes: [\n\t\t{\n\t\t\tpath: '/:index(index.php/)?settings/users',\n\t\t\tcomponent: Users,\n\t\t\tprops: true,\n\t\t\tname: 'users',\n\t\t\tchildren: [\n\t\t\t\t{\n\t\t\t\t\tpath: ':selectedGroup',\n\t\t\t\t\tname: 'group',\n\t\t\t\t\tcomponent: Users\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tpath: '/:index(index.php/)?settings/apps',\n\t\t\tcomponent: Apps,\n\t\t\tprops: true,\n\t\t\tname: 'apps',\n\t\t\tchildren: [\n\t\t\t\t{\n\t\t\t\t\tpath: ':category',\n\t\t\t\t\tname: 'apps-category',\n\t\t\t\t\tcomponent: Apps,\n\t\t\t\t\tchildren: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tpath: ':id',\n\t\t\t\t\t\t\tname: 'apps-details',\n\t\t\t\t\t\t\tcomponent: Apps\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n});\n","/**\n * vuex v3.0.1\n * (c) 2017 Evan You\n * @license MIT\n */\nvar applyMixin = function (Vue) {\n var version = Number(Vue.version.split('.')[0]);\n\n if (version >= 2) {\n Vue.mixin({ beforeCreate: vuexInit });\n } else {\n // override init and inject vuex init procedure\n // for 1.x backwards compatibility.\n var _init = Vue.prototype._init;\n Vue.prototype._init = function (options) {\n if ( options === void 0 ) options = {};\n\n options.init = options.init\n ? [vuexInit].concat(options.init)\n : vuexInit;\n _init.call(this, options);\n };\n }\n\n /**\n * Vuex init hook, injected into each instances init hooks list.\n */\n\n function vuexInit () {\n var options = this.$options;\n // store injection\n if (options.store) {\n this.$store = typeof options.store === 'function'\n ? options.store()\n : options.store;\n } else if (options.parent && options.parent.$store) {\n this.$store = options.parent.$store;\n }\n }\n};\n\nvar devtoolHook =\n typeof window !== 'undefined' &&\n window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\nfunction devtoolPlugin (store) {\n if (!devtoolHook) { return }\n\n store._devtoolHook = devtoolHook;\n\n devtoolHook.emit('vuex:init', store);\n\n devtoolHook.on('vuex:travel-to-state', function (targetState) {\n store.replaceState(targetState);\n });\n\n store.subscribe(function (mutation, state) {\n devtoolHook.emit('vuex:mutation', mutation, state);\n });\n}\n\n/**\n * Get the first item that pass the test\n * by second argument function\n *\n * @param {Array} list\n * @param {Function} f\n * @return {*}\n */\n/**\n * Deep copy the given object considering circular structure.\n * This function caches all nested objects and its copies.\n * If it detects circular structure, use cached copy to avoid infinite loop.\n *\n * @param {*} obj\n * @param {Array<Object>} cache\n * @return {*}\n */\n\n\n/**\n * forEach for object\n */\nfunction forEachValue (obj, fn) {\n Object.keys(obj).forEach(function (key) { return fn(obj[key], key); });\n}\n\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\nfunction isPromise (val) {\n return val && typeof val.then === 'function'\n}\n\nfunction assert (condition, msg) {\n if (!condition) { throw new Error((\"[vuex] \" + msg)) }\n}\n\nvar Module = function Module (rawModule, runtime) {\n this.runtime = runtime;\n this._children = Object.create(null);\n this._rawModule = rawModule;\n var rawState = rawModule.state;\n this.state = (typeof rawState === 'function' ? rawState() : rawState) || {};\n};\n\nvar prototypeAccessors$1 = { namespaced: { configurable: true } };\n\nprototypeAccessors$1.namespaced.get = function () {\n return !!this._rawModule.namespaced\n};\n\nModule.prototype.addChild = function addChild (key, module) {\n this._children[key] = module;\n};\n\nModule.prototype.removeChild = function removeChild (key) {\n delete this._children[key];\n};\n\nModule.prototype.getChild = function getChild (key) {\n return this._children[key]\n};\n\nModule.prototype.update = function update (rawModule) {\n this._rawModule.namespaced = rawModule.namespaced;\n if (rawModule.actions) {\n this._rawModule.actions = rawModule.actions;\n }\n if (rawModule.mutations) {\n this._rawModule.mutations = rawModule.mutations;\n }\n if (rawModule.getters) {\n this._rawModule.getters = rawModule.getters;\n }\n};\n\nModule.prototype.forEachChild = function forEachChild (fn) {\n forEachValue(this._children, fn);\n};\n\nModule.prototype.forEachGetter = function forEachGetter (fn) {\n if (this._rawModule.getters) {\n forEachValue(this._rawModule.getters, fn);\n }\n};\n\nModule.prototype.forEachAction = function forEachAction (fn) {\n if (this._rawModule.actions) {\n forEachValue(this._rawModule.actions, fn);\n }\n};\n\nModule.prototype.forEachMutation = function forEachMutation (fn) {\n if (this._rawModule.mutations) {\n forEachValue(this._rawModule.mutations, fn);\n }\n};\n\nObject.defineProperties( Module.prototype, prototypeAccessors$1 );\n\nvar ModuleCollection = function ModuleCollection (rawRootModule) {\n // register root module (Vuex.Store options)\n this.register([], rawRootModule, false);\n};\n\nModuleCollection.prototype.get = function get (path) {\n return path.reduce(function (module, key) {\n return module.getChild(key)\n }, this.root)\n};\n\nModuleCollection.prototype.getNamespace = function getNamespace (path) {\n var module = this.root;\n return path.reduce(function (namespace, key) {\n module = module.getChild(key);\n return namespace + (module.namespaced ? key + '/' : '')\n }, '')\n};\n\nModuleCollection.prototype.update = function update$1 (rawRootModule) {\n update([], this.root, rawRootModule);\n};\n\nModuleCollection.prototype.register = function register (path, rawModule, runtime) {\n var this$1 = this;\n if ( runtime === void 0 ) runtime = true;\n\n if (process.env.NODE_ENV !== 'production') {\n assertRawModule(path, rawModule);\n }\n\n var newModule = new Module(rawModule, runtime);\n if (path.length === 0) {\n this.root = newModule;\n } else {\n var parent = this.get(path.slice(0, -1));\n parent.addChild(path[path.length - 1], newModule);\n }\n\n // register nested modules\n if (rawModule.modules) {\n forEachValue(rawModule.modules, function (rawChildModule, key) {\n this$1.register(path.concat(key), rawChildModule, runtime);\n });\n }\n};\n\nModuleCollection.prototype.unregister = function unregister (path) {\n var parent = this.get(path.slice(0, -1));\n var key = path[path.length - 1];\n if (!parent.getChild(key).runtime) { return }\n\n parent.removeChild(key);\n};\n\nfunction update (path, targetModule, newModule) {\n if (process.env.NODE_ENV !== 'production') {\n assertRawModule(path, newModule);\n }\n\n // update target module\n targetModule.update(newModule);\n\n // update nested modules\n if (newModule.modules) {\n for (var key in newModule.modules) {\n if (!targetModule.getChild(key)) {\n if (process.env.NODE_ENV !== 'production') {\n console.warn(\n \"[vuex] trying to add a new module '\" + key + \"' on hot reloading, \" +\n 'manual reload is needed'\n );\n }\n return\n }\n update(\n path.concat(key),\n targetModule.getChild(key),\n newModule.modules[key]\n );\n }\n }\n}\n\nvar functionAssert = {\n assert: function (value) { return typeof value === 'function'; },\n expected: 'function'\n};\n\nvar objectAssert = {\n assert: function (value) { return typeof value === 'function' ||\n (typeof value === 'object' && typeof value.handler === 'function'); },\n expected: 'function or object with \"handler\" function'\n};\n\nvar assertTypes = {\n getters: functionAssert,\n mutations: functionAssert,\n actions: objectAssert\n};\n\nfunction assertRawModule (path, rawModule) {\n Object.keys(assertTypes).forEach(function (key) {\n if (!rawModule[key]) { return }\n\n var assertOptions = assertTypes[key];\n\n forEachValue(rawModule[key], function (value, type) {\n assert(\n assertOptions.assert(value),\n makeAssertionMessage(path, key, type, value, assertOptions.expected)\n );\n });\n });\n}\n\nfunction makeAssertionMessage (path, key, type, value, expected) {\n var buf = key + \" should be \" + expected + \" but \\\"\" + key + \".\" + type + \"\\\"\";\n if (path.length > 0) {\n buf += \" in module \\\"\" + (path.join('.')) + \"\\\"\";\n }\n buf += \" is \" + (JSON.stringify(value)) + \".\";\n return buf\n}\n\nvar Vue; // bind on install\n\nvar Store = function Store (options) {\n var this$1 = this;\n if ( options === void 0 ) options = {};\n\n // Auto install if it is not done yet and `window` has `Vue`.\n // To allow users to avoid auto-installation in some cases,\n // this code should be placed here. See #731\n if (!Vue && typeof window !== 'undefined' && window.Vue) {\n install(window.Vue);\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(Vue, \"must call Vue.use(Vuex) before creating a store instance.\");\n assert(typeof Promise !== 'undefined', \"vuex requires a Promise polyfill in this browser.\");\n assert(this instanceof Store, \"Store must be called with the new operator.\");\n }\n\n var plugins = options.plugins; if ( plugins === void 0 ) plugins = [];\n var strict = options.strict; if ( strict === void 0 ) strict = false;\n\n var state = options.state; if ( state === void 0 ) state = {};\n if (typeof state === 'function') {\n state = state() || {};\n }\n\n // store internal state\n this._committing = false;\n this._actions = Object.create(null);\n this._actionSubscribers = [];\n this._mutations = Object.create(null);\n this._wrappedGetters = Object.create(null);\n this._modules = new ModuleCollection(options);\n this._modulesNamespaceMap = Object.create(null);\n this._subscribers = [];\n this._watcherVM = new Vue();\n\n // bind commit and dispatch to self\n var store = this;\n var ref = this;\n var dispatch = ref.dispatch;\n var commit = ref.commit;\n this.dispatch = function boundDispatch (type, payload) {\n return dispatch.call(store, type, payload)\n };\n this.commit = function boundCommit (type, payload, options) {\n return commit.call(store, type, payload, options)\n };\n\n // strict mode\n this.strict = strict;\n\n // init root module.\n // this also recursively registers all sub-modules\n // and collects all module getters inside this._wrappedGetters\n installModule(this, state, [], this._modules.root);\n\n // initialize the store vm, which is responsible for the reactivity\n // (also registers _wrappedGetters as computed properties)\n resetStoreVM(this, state);\n\n // apply plugins\n plugins.forEach(function (plugin) { return plugin(this$1); });\n\n if (Vue.config.devtools) {\n devtoolPlugin(this);\n }\n};\n\nvar prototypeAccessors = { state: { configurable: true } };\n\nprototypeAccessors.state.get = function () {\n return this._vm._data.$$state\n};\n\nprototypeAccessors.state.set = function (v) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, \"Use store.replaceState() to explicit replace store state.\");\n }\n};\n\nStore.prototype.commit = function commit (_type, _payload, _options) {\n var this$1 = this;\n\n // check object-style commit\n var ref = unifyObjectStyle(_type, _payload, _options);\n var type = ref.type;\n var payload = ref.payload;\n var options = ref.options;\n\n var mutation = { type: type, payload: payload };\n var entry = this._mutations[type];\n if (!entry) {\n if (process.env.NODE_ENV !== 'production') {\n console.error((\"[vuex] unknown mutation type: \" + type));\n }\n return\n }\n this._withCommit(function () {\n entry.forEach(function commitIterator (handler) {\n handler(payload);\n });\n });\n this._subscribers.forEach(function (sub) { return sub(mutation, this$1.state); });\n\n if (\n process.env.NODE_ENV !== 'production' &&\n options && options.silent\n ) {\n console.warn(\n \"[vuex] mutation type: \" + type + \". Silent option has been removed. \" +\n 'Use the filter functionality in the vue-devtools'\n );\n }\n};\n\nStore.prototype.dispatch = function dispatch (_type, _payload) {\n var this$1 = this;\n\n // check object-style dispatch\n var ref = unifyObjectStyle(_type, _payload);\n var type = ref.type;\n var payload = ref.payload;\n\n var action = { type: type, payload: payload };\n var entry = this._actions[type];\n if (!entry) {\n if (process.env.NODE_ENV !== 'production') {\n console.error((\"[vuex] unknown action type: \" + type));\n }\n return\n }\n\n this._actionSubscribers.forEach(function (sub) { return sub(action, this$1.state); });\n\n return entry.length > 1\n ? Promise.all(entry.map(function (handler) { return handler(payload); }))\n : entry[0](payload)\n};\n\nStore.prototype.subscribe = function subscribe (fn) {\n return genericSubscribe(fn, this._subscribers)\n};\n\nStore.prototype.subscribeAction = function subscribeAction (fn) {\n return genericSubscribe(fn, this._actionSubscribers)\n};\n\nStore.prototype.watch = function watch (getter, cb, options) {\n var this$1 = this;\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof getter === 'function', \"store.watch only accepts a function.\");\n }\n return this._watcherVM.$watch(function () { return getter(this$1.state, this$1.getters); }, cb, options)\n};\n\nStore.prototype.replaceState = function replaceState (state) {\n var this$1 = this;\n\n this._withCommit(function () {\n this$1._vm._data.$$state = state;\n });\n};\n\nStore.prototype.registerModule = function registerModule (path, rawModule, options) {\n if ( options === void 0 ) options = {};\n\n if (typeof path === 'string') { path = [path]; }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n assert(path.length > 0, 'cannot register the root module by using registerModule.');\n }\n\n this._modules.register(path, rawModule);\n installModule(this, this.state, path, this._modules.get(path), options.preserveState);\n // reset store to update getters...\n resetStoreVM(this, this.state);\n};\n\nStore.prototype.unregisterModule = function unregisterModule (path) {\n var this$1 = this;\n\n if (typeof path === 'string') { path = [path]; }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n }\n\n this._modules.unregister(path);\n this._withCommit(function () {\n var parentState = getNestedState(this$1.state, path.slice(0, -1));\n Vue.delete(parentState, path[path.length - 1]);\n });\n resetStore(this);\n};\n\nStore.prototype.hotUpdate = function hotUpdate (newOptions) {\n this._modules.update(newOptions);\n resetStore(this, true);\n};\n\nStore.prototype._withCommit = function _withCommit (fn) {\n var committing = this._committing;\n this._committing = true;\n fn();\n this._committing = committing;\n};\n\nObject.defineProperties( Store.prototype, prototypeAccessors );\n\nfunction genericSubscribe (fn, subs) {\n if (subs.indexOf(fn) < 0) {\n subs.push(fn);\n }\n return function () {\n var i = subs.indexOf(fn);\n if (i > -1) {\n subs.splice(i, 1);\n }\n }\n}\n\nfunction resetStore (store, hot) {\n store._actions = Object.create(null);\n store._mutations = Object.create(null);\n store._wrappedGetters = Object.create(null);\n store._modulesNamespaceMap = Object.create(null);\n var state = store.state;\n // init all modules\n installModule(store, state, [], store._modules.root, true);\n // reset vm\n resetStoreVM(store, state, hot);\n}\n\nfunction resetStoreVM (store, state, hot) {\n var oldVm = store._vm;\n\n // bind store public getters\n store.getters = {};\n var wrappedGetters = store._wrappedGetters;\n var computed = {};\n forEachValue(wrappedGetters, function (fn, key) {\n // use computed to leverage its lazy-caching mechanism\n computed[key] = function () { return fn(store); };\n Object.defineProperty(store.getters, key, {\n get: function () { return store._vm[key]; },\n enumerable: true // for local getters\n });\n });\n\n // use a Vue instance to store the state tree\n // suppress warnings just in case the user has added\n // some funky global mixins\n var silent = Vue.config.silent;\n Vue.config.silent = true;\n store._vm = new Vue({\n data: {\n $$state: state\n },\n computed: computed\n });\n Vue.config.silent = silent;\n\n // enable strict mode for new vm\n if (store.strict) {\n enableStrictMode(store);\n }\n\n if (oldVm) {\n if (hot) {\n // dispatch changes in all subscribed watchers\n // to force getter re-evaluation for hot reloading.\n store._withCommit(function () {\n oldVm._data.$$state = null;\n });\n }\n Vue.nextTick(function () { return oldVm.$destroy(); });\n }\n}\n\nfunction installModule (store, rootState, path, module, hot) {\n var isRoot = !path.length;\n var namespace = store._modules.getNamespace(path);\n\n // register in namespace map\n if (module.namespaced) {\n store._modulesNamespaceMap[namespace] = module;\n }\n\n // set state\n if (!isRoot && !hot) {\n var parentState = getNestedState(rootState, path.slice(0, -1));\n var moduleName = path[path.length - 1];\n store._withCommit(function () {\n Vue.set(parentState, moduleName, module.state);\n });\n }\n\n var local = module.context = makeLocalContext(store, namespace, path);\n\n module.forEachMutation(function (mutation, key) {\n var namespacedType = namespace + key;\n registerMutation(store, namespacedType, mutation, local);\n });\n\n module.forEachAction(function (action, key) {\n var type = action.root ? key : namespace + key;\n var handler = action.handler || action;\n registerAction(store, type, handler, local);\n });\n\n module.forEachGetter(function (getter, key) {\n var namespacedType = namespace + key;\n registerGetter(store, namespacedType, getter, local);\n });\n\n module.forEachChild(function (child, key) {\n installModule(store, rootState, path.concat(key), child, hot);\n });\n}\n\n/**\n * make localized dispatch, commit, getters and state\n * if there is no namespace, just use root ones\n */\nfunction makeLocalContext (store, namespace, path) {\n var noNamespace = namespace === '';\n\n var local = {\n dispatch: noNamespace ? store.dispatch : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if (process.env.NODE_ENV !== 'production' && !store._actions[type]) {\n console.error((\"[vuex] unknown local action type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n return store.dispatch(type, payload)\n },\n\n commit: noNamespace ? store.commit : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if (process.env.NODE_ENV !== 'production' && !store._mutations[type]) {\n console.error((\"[vuex] unknown local mutation type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n store.commit(type, payload, options);\n }\n };\n\n // getters and state object must be gotten lazily\n // because they will be changed by vm update\n Object.defineProperties(local, {\n getters: {\n get: noNamespace\n ? function () { return store.getters; }\n : function () { return makeLocalGetters(store, namespace); }\n },\n state: {\n get: function () { return getNestedState(store.state, path); }\n }\n });\n\n return local\n}\n\nfunction makeLocalGetters (store, namespace) {\n var gettersProxy = {};\n\n var splitPos = namespace.length;\n Object.keys(store.getters).forEach(function (type) {\n // skip if the target getter is not match this namespace\n if (type.slice(0, splitPos) !== namespace) { return }\n\n // extract local getter type\n var localType = type.slice(splitPos);\n\n // Add a port to the getters proxy.\n // Define as getter property because\n // we do not want to evaluate the getters in this time.\n Object.defineProperty(gettersProxy, localType, {\n get: function () { return store.getters[type]; },\n enumerable: true\n });\n });\n\n return gettersProxy\n}\n\nfunction registerMutation (store, type, handler, local) {\n var entry = store._mutations[type] || (store._mutations[type] = []);\n entry.push(function wrappedMutationHandler (payload) {\n handler.call(store, local.state, payload);\n });\n}\n\nfunction registerAction (store, type, handler, local) {\n var entry = store._actions[type] || (store._actions[type] = []);\n entry.push(function wrappedActionHandler (payload, cb) {\n var res = handler.call(store, {\n dispatch: local.dispatch,\n commit: local.commit,\n getters: local.getters,\n state: local.state,\n rootGetters: store.getters,\n rootState: store.state\n }, payload, cb);\n if (!isPromise(res)) {\n res = Promise.resolve(res);\n }\n if (store._devtoolHook) {\n return res.catch(function (err) {\n store._devtoolHook.emit('vuex:error', err);\n throw err\n })\n } else {\n return res\n }\n });\n}\n\nfunction registerGetter (store, type, rawGetter, local) {\n if (store._wrappedGetters[type]) {\n if (process.env.NODE_ENV !== 'production') {\n console.error((\"[vuex] duplicate getter key: \" + type));\n }\n return\n }\n store._wrappedGetters[type] = function wrappedGetter (store) {\n return rawGetter(\n local.state, // local state\n local.getters, // local getters\n store.state, // root state\n store.getters // root getters\n )\n };\n}\n\nfunction enableStrictMode (store) {\n store._vm.$watch(function () { return this._data.$$state }, function () {\n if (process.env.NODE_ENV !== 'production') {\n assert(store._committing, \"Do not mutate vuex store state outside mutation handlers.\");\n }\n }, { deep: true, sync: true });\n}\n\nfunction getNestedState (state, path) {\n return path.length\n ? path.reduce(function (state, key) { return state[key]; }, state)\n : state\n}\n\nfunction unifyObjectStyle (type, payload, options) {\n if (isObject(type) && type.type) {\n options = payload;\n payload = type;\n type = type.type;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof type === 'string', (\"Expects string as the type, but found \" + (typeof type) + \".\"));\n }\n\n return { type: type, payload: payload, options: options }\n}\n\nfunction install (_Vue) {\n if (Vue && _Vue === Vue) {\n if (process.env.NODE_ENV !== 'production') {\n console.error(\n '[vuex] already installed. Vue.use(Vuex) should be called only once.'\n );\n }\n return\n }\n Vue = _Vue;\n applyMixin(Vue);\n}\n\nvar mapState = normalizeNamespace(function (namespace, states) {\n var res = {};\n normalizeMap(states).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedState () {\n var state = this.$store.state;\n var getters = this.$store.getters;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapState', namespace);\n if (!module) {\n return\n }\n state = module.context.state;\n getters = module.context.getters;\n }\n return typeof val === 'function'\n ? val.call(this, state, getters)\n : state[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\nvar mapMutations = normalizeNamespace(function (namespace, mutations) {\n var res = {};\n normalizeMap(mutations).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedMutation () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var commit = this.$store.commit;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapMutations', namespace);\n if (!module) {\n return\n }\n commit = module.context.commit;\n }\n return typeof val === 'function'\n ? val.apply(this, [commit].concat(args))\n : commit.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\nvar mapGetters = normalizeNamespace(function (namespace, getters) {\n var res = {};\n normalizeMap(getters).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n val = namespace + val;\n res[key] = function mappedGetter () {\n if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {\n return\n }\n if (process.env.NODE_ENV !== 'production' && !(val in this.$store.getters)) {\n console.error((\"[vuex] unknown getter: \" + val));\n return\n }\n return this.$store.getters[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\nvar mapActions = normalizeNamespace(function (namespace, actions) {\n var res = {};\n normalizeMap(actions).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedAction () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var dispatch = this.$store.dispatch;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapActions', namespace);\n if (!module) {\n return\n }\n dispatch = module.context.dispatch;\n }\n return typeof val === 'function'\n ? val.apply(this, [dispatch].concat(args))\n : dispatch.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\nvar createNamespacedHelpers = function (namespace) { return ({\n mapState: mapState.bind(null, namespace),\n mapGetters: mapGetters.bind(null, namespace),\n mapMutations: mapMutations.bind(null, namespace),\n mapActions: mapActions.bind(null, namespace)\n}); };\n\nfunction normalizeMap (map) {\n return Array.isArray(map)\n ? map.map(function (key) { return ({ key: key, val: key }); })\n : Object.keys(map).map(function (key) { return ({ key: key, val: map[key] }); })\n}\n\nfunction normalizeNamespace (fn) {\n return function (namespace, map) {\n if (typeof namespace !== 'string') {\n map = namespace;\n namespace = '';\n } else if (namespace.charAt(namespace.length - 1) !== '/') {\n namespace += '/';\n }\n return fn(namespace, map)\n }\n}\n\nfunction getModuleByNamespace (store, helper, namespace) {\n var module = store._modulesNamespaceMap[namespace];\n if (process.env.NODE_ENV !== 'production' && !module) {\n console.error((\"[vuex] module namespace not found in \" + helper + \"(): \" + namespace));\n }\n return module\n}\n\nvar index_esm = {\n Store: Store,\n install: install,\n version: '3.0.1',\n mapState: mapState,\n mapMutations: mapMutations,\n mapGetters: mapGetters,\n mapActions: mapActions,\n createNamespacedHelpers: createNamespacedHelpers\n};\n\nexport { Store, install, mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers };\nexport default index_esm;\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\n\nconst orderGroups = function(groups, orderBy) {\n\t/* const SORT_USERCOUNT = 1;\n\t * const SORT_GROUPNAME = 2;\n\t * https://github.com/nextcloud/server/blob/208e38e84e1a07a49699aa90dc5b7272d24489f0/lib/private/Group/MetaData.php#L34\n\t */\n\tif (orderBy === 1) {\n\t\treturn groups.sort((a, b) => a.usercount-a.disabled < b.usercount - b.disabled);\n\t} else {\n\t\treturn groups.sort((a, b) => a.name.localeCompare(b.name));\n\t}\n};\n\nconst defaults = {\n\tgroup: {\n\t\tid: '',\n\t\tname: '',\n\t\tusercount: 0,\n\t\tdisabled: 0,\n\t\tcanAdd: true,\n\t\tcanRemove: true\n\t}\n};\n\nconst state = {\n\tusers: [],\n\tgroups: [],\n\torderBy: 1,\n\tminPasswordLength: 0,\n\tusersOffset: 0,\n\tusersLimit: 25,\n\tuserCount: 0\n};\n\nconst mutations = {\n\tappendUsers(state, usersObj) {\n\t\t// convert obj to array\n\t\tlet users = state.users.concat(Object.keys(usersObj).map(userid => usersObj[userid]));\n\t\tstate.usersOffset += state.usersLimit;\n\t\tstate.users = users;\n\t},\n\tsetPasswordPolicyMinLength(state, length) {\n\t\tstate.minPasswordLength = length!=='' ? length : 0;\n\t},\n\tinitGroups(state, {groups, orderBy, userCount}) {\n\t\tstate.groups = groups.map(group => Object.assign({}, defaults.group, group));\n\t\tstate.orderBy = orderBy;\n\t\tstate.userCount = userCount;\n\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t\t\n\t},\n\taddGroup(state, {gid, displayName}) {\n\t\ttry {\n\t\t\tif (typeof state.groups.find((group) => group.id === gid) !== 'undefined') {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// extend group to default values\n\t\t\tlet group = Object.assign({}, defaults.group, {\n\t\t\t\tid: gid,\n\t\t\t\tname: displayName,\n\t\t\t});\n\t\t\tstate.groups.push(group);\n\t\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t\t} catch (e) {\n\t\t\tconsole.log('Can\\'t create group', e);\n\t\t}\n\t},\n\tremoveGroup(state, gid) {\n\t\tlet groupIndex = state.groups.findIndex(groupSearch => groupSearch.id == gid);\n\t\tif (groupIndex >= 0) {\n\t\t\tstate.groups.splice(groupIndex, 1);\n\t\t}\n\t},\n\taddUserGroup(state, { userid, gid }) {\n\t\tlet group = state.groups.find(groupSearch => groupSearch.id == gid);\n\t\tlet user = state.users.find(user => user.id == userid);\n\t\t// increase count if user is enabled\n\t\tif (group && user.enabled) {\n\t\t\tgroup.usercount++; \n\t\t}\n\t\tlet groups = user.groups;\n\t\tgroups.push(gid);\n\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t},\n\tremoveUserGroup(state, { userid, gid }) {\n\t\tlet group = state.groups.find(groupSearch => groupSearch.id == gid);\n\t\tlet user = state.users.find(user => user.id == userid);\n\t\t// lower count if user is enabled\n\t\tif (group && user.enabled) {\n\t\t\tgroup.usercount--;\n\t\t}\n\t\tlet groups = user.groups;\n\t\tgroups.splice(groups.indexOf(gid),1);\n\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t},\n\taddUserSubAdmin(state, { userid, gid }) {\n\t\tlet groups = state.users.find(user => user.id == userid).subadmin;\n\t\tgroups.push(gid);\n\t},\n\tremoveUserSubAdmin(state, { userid, gid }) {\n\t\tlet groups = state.users.find(user => user.id == userid).subadmin;\n\t\tgroups.splice(groups.indexOf(gid),1);\n\t},\n\tdeleteUser(state, userid) {\n\t\tlet userIndex = state.users.findIndex(user => user.id == userid);\n\t\tstate.users.splice(userIndex, 1);\n\t},\n\taddUserData(state, response) {\n\t\tstate.users.push(response.data.ocs.data);\n\t},\n\tenableDisableUser(state, { userid, enabled }) {\n\t\tlet user = state.users.find(user => user.id == userid);\n\t\tuser.enabled = enabled;\n\t\t// increment or not\n\t\tstate.groups.find(group => group.id == 'disabled').usercount += enabled ? -1 : 1;\n\t\tstate.userCount += enabled ? 1 : -1;\n\t\tuser.groups.forEach(group => {\n\t\t\t// Increment disabled count\n\t\t\tstate.groups.find(groupSearch => groupSearch.id == group).disabled += enabled ? -1 : 1;\n\t\t});\n\t},\n\tsetUserData(state, { userid, key, value }) {\n\t\tif (key === 'quota') {\n\t\t\tlet humanValue = OC.Util.computerFileSize(value);\n\t\t\tstate.users.find(user => user.id == userid)[key][key] = humanValue!==null ? humanValue : value;\n\t\t} else {\n\t\t\tstate.users.find(user => user.id == userid)[key] = value;\n\t\t}\n\t},\n\n\t/**\n\t * Reset users list\n\t */\n\tresetUsers(state) {\n\t\tstate.users = [];\n\t\tstate.usersOffset = 0;\n\t}\n};\n\nconst getters = {\n\tgetUsers(state) {\n\t\treturn state.users;\n\t},\n\tgetGroups(state) {\n\t\treturn state.groups;\n\t},\n\tgetSubadminGroups(state) {\n\t\t// Can't be subadmin of admin or disabled\n\t\treturn state.groups.filter(group => group.id !== 'admin' && group.id !== 'disabled');\n\t},\n\tgetPasswordPolicyMinLength(state) {\n\t\treturn state.minPasswordLength;\n\t},\n\tgetUsersOffset(state) {\n\t\treturn state.usersOffset;\n\t},\n\tgetUsersLimit(state) {\n\t\treturn state.usersLimit;\n\t},\n\tgetUserCount(state) {\n\t\treturn state.userCount;\n\t}\n};\n\nconst actions = {\n\n\t/**\n\t * Get all users with full details\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {int} options.offset List offset to request\n\t * @param {int} options.limit List number to return from offset\n\t * @param {string} options.search Search amongst users\n\t * @param {string} options.group Get users from group\n\t * @returns {Promise}\n\t */\n\tgetUsers(context, { offset, limit, search, group }) {\n\t\tsearch = typeof search === 'string' ? search : '';\n\t\tgroup = typeof group === 'string' ? group : '';\n\t\tif (group !== '') {\n\t\t\treturn api.get(OC.linkToOCS(`cloud/groups/${group}/users/details?offset=${offset}&limit=${limit}&search=${search}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.users).length > 0) {\n\t\t\t\t\tcontext.commit('appendUsers', response.data.ocs.data.users);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t\t}\n\n\t\treturn api.get(OC.linkToOCS(`cloud/users/details?offset=${offset}&limit=${limit}&search=${search}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.users).length > 0) {\n\t\t\t\t\tcontext.commit('appendUsers', response.data.ocs.data.users);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n\tgetGroups(context, { offset, limit, search }) {\n\t\tsearch = typeof search === 'string' ? search : '';\n\t\tlet limitParam = limit === -1 ? '' : `&limit=${limit}`;\n\t\treturn api.get(OC.linkToOCS(`cloud/groups?offset=${offset}&search=${search}${limitParam}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.groups).length > 0) {\n\t\t\t\t\tresponse.data.ocs.data.groups.forEach(function(group) {\n\t\t\t\t\t\tcontext.commit('addGroup', {gid: group, displayName: group});\n\t\t\t\t\t});\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n\t/**\n\t * Get all users with full details\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {int} options.offset List offset to request\n\t * @param {int} options.limit List number to return from offset\n\t * @returns {Promise}\n\t */\n\tgetUsersFromList(context, { offset, limit, search }) {\n\t\tsearch = typeof search === 'string' ? search : '';\n\t\treturn api.get(OC.linkToOCS(`cloud/users/details?offset=${offset}&limit=${limit}&search=${search}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.users).length > 0) {\n\t\t\t\t\tcontext.commit('appendUsers', response.data.ocs.data.users);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n\t/**\n\t * Get all users with full details from a groupid\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {int} options.offset List offset to request\n\t * @param {int} options.limit List number to return from offset\n\t * @returns {Promise}\n\t */\n\tgetUsersFromGroup(context, { groupid, offset, limit }) {\n\t\treturn api.get(OC.linkToOCS(`cloud/users/${groupid}/details?offset=${offset}&limit=${limit}`, 2))\n\t\t\t.then((response) => context.commit('getUsersFromList', response.data.ocs.data.users))\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\t\n\n\tgetPasswordPolicyMinLength(context) {\n\t\tif(oc_capabilities.password_policy && oc_capabilities.password_policy.minLength) {\n\t\t\tcontext.commit('setPasswordPolicyMinLength', oc_capabilities.password_policy.minLength);\n\t\t\treturn oc_capabilities.password_policy.minLength;\n\t\t}\n\t\treturn false;\n\t},\n\n\t/**\n\t * Add group\n\t * \n\t * @param {Object} context\n\t * @param {string} gid Group id\n\t * @returns {Promise}\n\t */\n\taddGroup(context, gid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/groups`, 2), {groupid: gid})\n\t\t\t\t.then((response) => context.commit('addGroup', {gid: gid, displayName: gid}))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => {\n\t\t\tcontext.commit('API_FAILURE', { gid, error });\n\t\t\t// let's throw one more time to prevent the view\n\t\t\t// from adding the user to a group that doesn't exists\n\t\t\tthrow error;\n\t\t});\n\t},\n\n\t/**\n\t * Remove group\n\t * \n\t * @param {Object} context\n\t * @param {string} gid Group id\n\t * @returns {Promise}\n\t */\n\tremoveGroup(context, gid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/groups/${gid}`, 2))\n\t\t\t\t.then((response) => context.commit('removeGroup', gid))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { gid, error }));\n\t},\n\n\t/**\n\t * Add user to group\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\taddUserGroup(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users/${userid}/groups`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('addUserGroup', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Remove user from group\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\tremoveUserGroup(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/users/${userid}/groups`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('removeUserGroup', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => {\n\t\t\tcontext.commit('API_FAILURE', { userid, error });\n\t\t\t// let's throw one more time to prevent\n\t\t\t// the view from removing the user row on failure\n\t\t\tthrow error; \n\t\t});\n\t},\n\n\t/**\n\t * Add user to group admin\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\taddUserSubAdmin(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users/${userid}/subadmins`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('addUserSubAdmin', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Remove user from group admin\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\tremoveUserSubAdmin(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/users/${userid}/subadmins`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('removeUserSubAdmin', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Delete a user\n\t * \n\t * @param {Object} context\n\t * @param {string} userid User id \n\t * @returns {Promise}\n\t */\n\tdeleteUser(context, userid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/users/${userid}`, 2))\n\t\t\t\t.then((response) => context.commit('deleteUser', userid))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Add a user\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.password User password\n\t * @param {string} options.displayName User display name\n\t * @param {string} options.email User email\n\t * @param {string} options.groups User groups\n\t * @param {string} options.subadmin User subadmin groups\n\t * @param {string} options.quota User email\n\t * @returns {Promise}\n\t */\n\taddUser({commit, dispatch}, { userid, password, displayName, email, groups, subadmin, quota, language }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users`, 2), { userid, password, displayName, email, groups, subadmin, quota, language })\n\t\t\t\t.then((response) => dispatch('addUserData', userid))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Get user data and commit addition\n\t * \n\t * @param {Object} context\n\t * @param {string} userid User id \n\t * @returns {Promise}\n\t */\n\taddUserData(context, userid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.get(OC.linkToOCS(`cloud/users/${userid}`, 2))\n\t\t\t\t.then((response) => context.commit('addUserData', response))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/** Enable or disable user \n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {boolean} options.enabled User enablement status\n\t * @returns {Promise}\n\t */\n\tenableDisableUser(context, { userid, enabled = true }) {\n\t\tlet userStatus = enabled ? 'enable' : 'disable';\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.put(OC.linkToOCS(`cloud/users/${userid}/${userStatus}`, 2))\n\t\t\t\t.then((response) => context.commit('enableDisableUser', { userid, enabled }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Edit user data\n\t * \n\t * @param {Object} context \n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.key User field to edit\n\t * @param {string} options.value Value of the change\n\t * @returns {Promise}\n\t */\n\tsetUserData(context, { userid, key, value }) {\n\t\tlet allowedEmpty = ['email', 'displayname'];\n\t\tif (['email', 'language', 'quota', 'displayname', 'password'].indexOf(key) !== -1) {\n\t\t\t// We allow empty email or displayname\n\t\t\tif (typeof value === 'string' &&\n\t\t\t\t(\n\t\t\t\t\t(allowedEmpty.indexOf(key) === -1 && value.length > 0) ||\n\t\t\t\t\tallowedEmpty.indexOf(key) !== -1\n\t\t\t\t)\n\t\t\t) {\n\t\t\t\treturn api.requireAdmin().then((response) => {\n\t\t\t\t\treturn api.put(OC.linkToOCS(`cloud/users/${userid}`, 2), { key: key, value: value })\n\t\t\t\t\t\t.then((response) => context.commit('setUserData', { userid, key, value }))\n\t\t\t\t\t\t.catch((error) => {throw error;});\n\t\t\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t\t\t}\n\t\t}\n\t\treturn Promise.reject(new Error('Invalid request data'));\n\t},\n\n\t/**\n\t * Send welcome mail\n\t * \n\t * @param {Object} context\n\t * @param {string} userid User id \n\t * @returns {Promise}\n\t */\n\tsendWelcomeMail(context, userid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users/${userid}/welcome`, 2))\n\t\t\t\t.then(response => true)\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t}\n};\n\nexport default { state, mutations, getters, actions };\n","/*\n * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\nimport axios from 'axios/index';\nimport Vue from 'vue';\n\nconst state = {\n\tapps: [],\n\tcategories: [],\n\tupdateCount: 0,\n\tloading: {},\n\tloadingList: false,\n};\n\nconst mutations = {\n\n\tAPPS_API_FAILURE(state, error) {\n\t\tOC.Notification.showHtml(t('settings','An error occured during the request. Unable to proceed.')+'<br>'+error.error.response.data.data.message, {timeout: 7});\n\t\tconsole.log(state, error);\n\t},\n\n\tinitCategories(state, {categories, updateCount}) {\n\t\tstate.categories = categories;\n\t\tstate.updateCount = updateCount;\n\t},\n\n\tsetUpdateCount(state, updateCount) {\n\t\tstate.updateCount = updateCount;\n\t},\n\n\taddCategory(state, category) {\n\t\tstate.categories.push(category);\n\t},\n\n\tappendCategories(state, categoriesArray) {\n\t\t// convert obj to array\n\t\tstate.categories = categoriesArray;\n\t},\n\n\tsetAllApps(state, apps) {\n\t\tstate.apps = apps;\n\t},\n\n\tsetError(state, {appId, error}) {\n\t\tif (!Array.isArray(appId)) {\n\t\t\tappId = [appId];\n\t\t}\n\t\tappId.forEach((_id) => {\n\t\t\tlet app = state.apps.find(app => app.id === _id);\n\t\t\tapp.error = error;\n\t\t});\n\t},\n\n\tclearError(state, {appId, error}) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tapp.error = null;\n\t},\n\n\tenableApp(state, {appId, groups}) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tapp.active = true;\n\t\tapp.groups = groups;\n\t},\n\n\tdisableApp(state, appId) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tapp.active = false;\n\t\tapp.groups = [];\n\t\tif (app.removable) {\n\t\t\tapp.canUnInstall = true;\n\t\t}\n\t},\n\n\tuninstallApp(state, appId) {\n\t\tstate.apps.find(app => app.id === appId).active = false;\n\t\tstate.apps.find(app => app.id === appId).groups = [];\n\t\tstate.apps.find(app => app.id === appId).needsDownload = true;\n\t\tstate.apps.find(app => app.id === appId).installed = false;\n\t\tstate.apps.find(app => app.id === appId).canUnInstall = false;\n\t\tstate.apps.find(app => app.id === appId).canInstall = true;\n\t},\n\n\tupdateApp(state, appId) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tlet version = app.update;\n\t\tapp.update = null;\n\t\tapp.version = version;\n\t\tstate.updateCount--;\n\n\t},\n\n\tresetApps(state) {\n\t\tstate.apps = [];\n\t},\n\treset(state) {\n\t\tstate.apps = [];\n\t\tstate.categories = [];\n\t\tstate.updateCount = 0;\n\t},\n\tstartLoading(state, id) {\n\t\tif (Array.isArray(id)) {\n\t\t\tid.forEach((_id) => {\n\t\t\t\tVue.set(state.loading, _id, true);\n\t\t\t})\n\t\t} else {\n\t\t\tVue.set(state.loading, id, true);\n\t\t}\n\t},\n\tstopLoading(state, id) {\n\t\tif (Array.isArray(id)) {\n\t\t\tid.forEach((_id) => {\n\t\t\t\tVue.set(state.loading, _id, false);\n\t\t\t})\n\t\t} else {\n\t\t\tVue.set(state.loading, id, false);\n\t\t}\n\t},\n};\n\nconst getters = {\n\tloading(state) {\n\t\treturn function(id) {\n\t\t\treturn state.loading[id];\n\t\t}\n\t},\n\tgetCategories(state) {\n\t\treturn state.categories;\n\t},\n\tgetAllApps(state) {\n\t\treturn state.apps;\n\t},\n\tgetUpdateCount(state) {\n\t\treturn state.updateCount;\n\t}\n};\n\nconst actions = {\n\n\tenableApp(context, { appId, groups }) {\n\t\tlet apps;\n\t\tif (Array.isArray(appId)) {\n\t\t\tapps = appId;\n\t\t} else {\n\t\t\tapps = [appId];\n\t\t}\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', apps);\n\t\t\tcontext.commit('startLoading', 'install');\n\t\t\treturn api.post(OC.generateUrl(`settings/apps/enable`), {appIds: apps, groups: groups})\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tapps.forEach(_appId => {\n\t\t\t\t\t\tcontext.commit('enableApp', {appId: _appId, groups: groups});\n\t\t\t\t\t});\n\n\t\t\t\t\t// check for server health\n\t\t\t\t\treturn api.get(OC.generateUrl('apps/files'))\n\t\t\t\t\t\t.then(() => {\n\t\t\t\t\t\t\tif (response.data.update_required) {\n\t\t\t\t\t\t\t\tOC.dialogs.info(\n\t\t\t\t\t\t\t\t\tt(\n\t\t\t\t\t\t\t\t\t\t'settings',\n\t\t\t\t\t\t\t\t\t\t'The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.'\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tt('settings','App update'),\n\t\t\t\t\t\t\t\t\tfunction () {\n\t\t\t\t\t\t\t\t\t\twindow.location.reload();\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\ttrue\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\t\t\t\tlocation.reload();\n\t\t\t\t\t\t\t\t}, 5000);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.catch((error) => {\n\t\t\t\t\t\t\tif (!Array.isArray(appId)) {\n\t\t\t\t\t\t\t\tcontext.commit('setError', {\n\t\t\t\t\t\t\t\t\tappId: apps,\n\t\t\t\t\t\t\t\t\terror: t('settings', 'Error: This app can not be enabled because it makes the server unstable')\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tcontext.commit('setError', {\n\t\t\t\t\t\tappId: apps,\n\t\t\t\t\t\terror: error.response.data.data.message\n\t\t\t\t\t});\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error});\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\tdisableApp(context, { appId }) {\n\t\tlet apps;\n\t\tif (Array.isArray(appId)) {\n\t\t\tapps = appId;\n\t\t} else {\n\t\t\tapps = [appId];\n\t\t}\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', apps);\n\t\t\treturn api.post(OC.generateUrl(`settings/apps/disable`), {appIds: apps})\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tapps.forEach(_appId => {\n\t\t\t\t\t\tcontext.commit('disableApp', _appId);\n\t\t\t\t\t});\n\t\t\t\t\treturn true;\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error })\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\tuninstallApp(context, { appId }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', appId);\n\t\t\treturn api.get(OC.generateUrl(`settings/apps/uninstall/${appId}`))\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('uninstallApp', appId);\n\t\t\t\t\treturn true;\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error })\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\n\tupdateApp(context, { appId }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', appId);\n\t\t\tcontext.commit('startLoading', 'install');\n\t\t\treturn api.get(OC.generateUrl(`settings/apps/update/${appId}`))\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('updateApp', appId);\n\t\t\t\t\treturn true;\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error })\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\n\tgetAllApps(context) {\n\t\tcontext.commit('startLoading', 'list');\n\t\treturn api.get(OC.generateUrl(`settings/apps/list`))\n\t\t\t.then((response) => {\n\t\t\t\tcontext.commit('setAllApps', response.data.apps);\n\t\t\t\tcontext.commit('stopLoading', 'list');\n\t\t\t\treturn true;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error))\n\t},\n\n\tgetCategories(context) {\n\t\tcontext.commit('startLoading', 'categories');\n\t\treturn api.get(OC.generateUrl('settings/apps/categories'))\n\t\t\t.then((response) => {\n\t\t\t\tif (response.data.length > 0) {\n\t\t\t\t\tcontext.commit('appendCategories', response.data);\n\t\t\t\t\tcontext.commit('stopLoading', 'categories');\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n};\n\nexport default { state, mutations, getters, actions };","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\n\nconst state = {\n\tserverData: {}\n};\nconst mutations = {\n\tsetServerData(state, data) {\n\t\tstate.serverData = data;\n\t}\n};\nconst getters = {\n\tgetServerData(state) {\n\t\treturn state.serverData;\n\t}\n};\nconst actions = {};\n\nexport default {state, mutations, getters, actions};\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\n\nconst state = {};\nconst mutations = {};\nconst getters = {};\nconst actions = {\n\t/**\n * Set application config in database\n * \n\t * @param {Object} context\n * @param {Object} options\n\t * @param {string} options.app Application name\n\t * @param {boolean} options.key Config key\n\t * @param {boolean} options.value Value to set\n\t * @returns{Promise}\n\t */\n\tsetAppConfig(context, {app, key, value}) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`apps/provisioning_api/api/v1/config/apps/${app}/${key}`, 2), {value: value})\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { app, key, value, error }));;\n }\n};\n\nexport default {state, mutations, getters, actions};\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue';\nimport Vuex from 'vuex';\nimport users from './users';\nimport apps from './apps';\nimport settings from './settings';\nimport oc from './oc';\n\nVue.use(Vuex)\n\nconst debug = process.env.NODE_ENV !== 'production';\n\nconst mutations = {\n\tAPI_FAILURE(state, error) {\n\t\ttry {\n\t\t\tlet message = error.error.response.data.ocs.meta.message;\n\t\t\tOC.Notification.showHtml(t('settings','An error occured during the request. Unable to proceed.')+'<br>'+message, {timeout: 7});\n\t\t} catch(e) {\n\t\t\tOC.Notification.showTemporary(t('settings','An error occured during the request. Unable to proceed.'));\n\t\t}\n\t\tconsole.log(state, error);\n\t}\n};\n\nexport default new Vuex.Store({\n\tmodules: {\n\t\tusers,\n\t\tapps,\n\t\tsettings,\n\t\toc\n\t},\n\tstrict: debug,\n\n\tmutations\n});\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue';\nimport { sync } from 'vuex-router-sync';\nimport App from './App.vue';\nimport router from './router';\nimport store from './store';\nrequire(\"babel-polyfill\");\n\n\nsync(store, router);\n\n// bind to window\nVue.prototype.t = t;\nVue.prototype.OC = OC;\nVue.prototype.OCA = OCA;\nVue.prototype.oc_userconfig = oc_userconfig;\nVue.prototype.oc_current_user = oc_current_user;\n\nconst app = new Vue({\n\trouter,\n\tstore,\n\trender: h => h(App)\n}).$mount('#content');\n\nexport { app, router, store };"],"sourceRoot":""}
\ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/core-js/modules/_export.js","webpack:///./node_modules/vue/dist/vue.esm.js","webpack:///./node_modules/core-js/modules/_is-object.js","webpack:///./node_modules/core-js/modules/_global.js","webpack:///./node_modules/core-js/modules/_an-object.js","webpack:///./node_modules/core-js/modules/_wks.js","webpack:///./node_modules/core-js/modules/_fails.js","webpack:///./node_modules/core-js/modules/_object-dp.js","webpack:///./node_modules/core-js/modules/_to-length.js","webpack:///./node_modules/vue-multiselect/dist/vue-multiselect.min.js","webpack:///./node_modules/axios/lib/utils.js","webpack:///./node_modules/core-js/modules/_descriptors.js","webpack:///./node_modules/core-js/modules/_hide.js","webpack:///./node_modules/core-js/modules/_has.js","webpack:///./node_modules/core-js/modules/_to-iobject.js","webpack:///./node_modules/core-js/modules/_object-sap.js","webpack:///./node_modules/core-js/modules/_ctx.js","webpack:///./node_modules/core-js/modules/_to-object.js","webpack:///./node_modules/core-js/modules/_typed-array.js","webpack:///./node_modules/core-js/modules/_object-gopd.js","webpack:///./node_modules/core-js/modules/_redefine.js","webpack:///./node_modules/core-js/modules/_meta.js","webpack:///./node_modules/core-js/modules/_property-desc.js","webpack:///./node_modules/core-js/modules/_uid.js","webpack:///./node_modules/core-js/modules/_a-function.js","webpack:///./node_modules/core-js/modules/_to-integer.js","webpack:///./node_modules/core-js/modules/_defined.js","webpack:///./node_modules/core-js/modules/_object-keys.js","webpack:///./node_modules/axios/index.js","webpack:///./node_modules/core-js/modules/_core.js","webpack:///./node_modules/core-js/modules/_library.js","webpack:///./node_modules/core-js/modules/_redefine-all.js","webpack:///./node_modules/core-js/modules/_an-instance.js","webpack:///./node_modules/core-js/modules/_cof.js","webpack:///./node_modules/core-js/modules/_to-absolute-index.js","webpack:///./node_modules/core-js/modules/_set-to-string-tag.js","webpack:///./node_modules/core-js/modules/_iterators.js","webpack:///./node_modules/core-js/modules/_object-gpo.js","webpack:///./node_modules/core-js/modules/_add-to-unscopables.js","webpack:///./node_modules/core-js/modules/_validate-collection.js","webpack:///./node_modules/vue-localstorage/dist/vue-local-storage.js","webpack:///./node_modules/core-js/modules/_to-primitive.js","webpack:///./node_modules/core-js/modules/_object-gopn.js","webpack:///./node_modules/core-js/modules/_object-create.js","webpack:///./node_modules/core-js/modules/_array-methods.js","webpack:///./node_modules/core-js/modules/_object-pie.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/core-js/modules/_set-species.js","webpack:///./node_modules/core-js/modules/_iter-detect.js","webpack:///./node_modules/core-js/modules/_for-of.js","webpack:///./node_modules/core-js/modules/_collection.js","webpack:///./node_modules/core-js/modules/_object-gops.js","webpack:///./node_modules/core-js/modules/_fix-re-wks.js","webpack:///./node_modules/vue-click-outside/index.js","webpack:///./node_modules/process/browser.js","webpack:///./node_modules/axios/lib/defaults.js","webpack:///./node_modules/core-js/modules/_dom-create.js","webpack:///./node_modules/core-js/modules/_typed.js","webpack:///./node_modules/core-js/modules/_iobject.js","webpack:///./node_modules/core-js/modules/_array-includes.js","webpack:///./node_modules/core-js/modules/_shared-key.js","webpack:///./node_modules/core-js/modules/_shared.js","webpack:///./node_modules/core-js/modules/_enum-bug-keys.js","webpack:///./node_modules/core-js/modules/_array-fill.js","webpack:///./node_modules/core-js/modules/_species-constructor.js","webpack:///./node_modules/core-js/modules/_classof.js","webpack:///./node_modules/core-js/modules/_is-array-iter.js","webpack:///./node_modules/core-js/modules/core.get-iterator-method.js","webpack:///./node_modules/core-js/modules/es6.array.iterator.js","webpack:///./node_modules/core-js/modules/_set-proto.js","webpack:///./node_modules/core-js/modules/_task.js","webpack:///./node_modules/core-js/modules/_string-context.js","webpack:///./node_modules/core-js/modules/_fails-is-regexp.js","webpack:///./node_modules/core-js/modules/_create-property.js","webpack:///./node_modules/core-js/modules/_math-sign.js","webpack:///./node_modules/core-js/modules/_math-expm1.js","webpack:///./node_modules/core-js/modules/_user-agent.js","webpack:///./node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/axios/lib/core/createError.js","webpack:///./node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/core-js/modules/_ie8-dom-define.js","webpack:///./node_modules/core-js/modules/_typed-buffer.js","webpack:///./node_modules/core-js/modules/_to-index.js","webpack:///./node_modules/core-js/modules/_object-keys-internal.js","webpack:///./node_modules/core-js/modules/_html.js","webpack:///./node_modules/core-js/modules/_is-array.js","webpack:///./node_modules/core-js/modules/_iter-step.js","webpack:///./node_modules/core-js/modules/_iter-define.js","webpack:///./node_modules/core-js/modules/_array-copy-within.js","webpack:///./node_modules/core-js/modules/_collection-strong.js","webpack:///./node_modules/core-js/modules/_iter-call.js","webpack:///./node_modules/core-js/modules/_object-assign.js","webpack:///./node_modules/core-js/modules/_collection-weak.js","webpack:///./node_modules/core-js/modules/_invoke.js","webpack:///./node_modules/core-js/modules/_own-keys.js","webpack:///./node_modules/core-js/modules/_new-promise-capability.js","webpack:///./node_modules/core-js/modules/_wks-ext.js","webpack:///./node_modules/core-js/modules/_object-gopn-ext.js","webpack:///./node_modules/core-js/modules/_string-repeat.js","webpack:///./node_modules/core-js/modules/_is-regexp.js","webpack:///./node_modules/core-js/modules/_is-integer.js","webpack:///./node_modules/core-js/modules/_math-log1p.js","webpack:///./node_modules/core-js/modules/_object-to-array.js","webpack:///./node_modules/core-js/modules/_string-pad.js","webpack:///./node_modules/vuex-router-sync/index.js","webpack:///./node_modules/v-tooltip/dist/v-tooltip.esm.js","webpack:///./node_modules/vue-infinite-loading/dist/vue-infinite-loading.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./node_modules/axios/lib/axios.js","webpack:///./node_modules/is-buffer/index.js","webpack:///./node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///./node_modules/axios/lib/core/settle.js","webpack:///./node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/axios/lib/helpers/btoa.js","webpack:///./node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/core-js/modules/es6.typed.array-buffer.js","webpack:///./node_modules/core-js/modules/es6.typed.int8-array.js","webpack:///./node_modules/core-js/modules/_object-dps.js","webpack:///./node_modules/core-js/modules/_array-species-create.js","webpack:///./node_modules/core-js/modules/_array-species-constructor.js","webpack:///./node_modules/core-js/modules/_iter-create.js","webpack:///./node_modules/core-js/modules/es6.typed.uint8-array.js","webpack:///./node_modules/core-js/modules/es6.typed.uint8-clamped-array.js","webpack:///./node_modules/core-js/modules/es6.typed.int16-array.js","webpack:///./node_modules/core-js/modules/es6.typed.uint16-array.js","webpack:///./node_modules/core-js/modules/es6.typed.int32-array.js","webpack:///./node_modules/core-js/modules/es6.typed.uint32-array.js","webpack:///./node_modules/core-js/modules/es6.typed.float32-array.js","webpack:///./node_modules/core-js/modules/es6.typed.float64-array.js","webpack:///./node_modules/core-js/modules/es6.map.js","webpack:///./node_modules/core-js/modules/_inherit-if-required.js","webpack:///./node_modules/core-js/modules/es6.set.js","webpack:///./node_modules/core-js/modules/es6.weak-map.js","webpack:///./node_modules/core-js/modules/es6.weak-set.js","webpack:///./node_modules/core-js/modules/es6.reflect.apply.js","webpack:///./node_modules/core-js/modules/es6.reflect.construct.js","webpack:///./node_modules/core-js/modules/_bind.js","webpack:///./node_modules/core-js/modules/es6.reflect.define-property.js","webpack:///./node_modules/core-js/modules/es6.reflect.delete-property.js","webpack:///./node_modules/core-js/modules/es6.reflect.get.js","webpack:///./node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js","webpack:///./node_modules/core-js/modules/es6.reflect.get-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.reflect.has.js","webpack:///./node_modules/core-js/modules/es6.reflect.is-extensible.js","webpack:///./node_modules/core-js/modules/es6.reflect.own-keys.js","webpack:///./node_modules/core-js/modules/es6.reflect.prevent-extensions.js","webpack:///./node_modules/core-js/modules/es6.reflect.set.js","webpack:///./node_modules/core-js/modules/es6.reflect.set-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.promise.js","webpack:///./node_modules/core-js/modules/_microtask.js","webpack:///./node_modules/core-js/modules/_perform.js","webpack:///./node_modules/core-js/modules/_promise-resolve.js","webpack:///./node_modules/core-js/modules/es6.symbol.js","webpack:///./node_modules/core-js/modules/_wks-define.js","webpack:///./node_modules/core-js/modules/_enum-keys.js","webpack:///./node_modules/core-js/modules/es6.object.freeze.js","webpack:///./node_modules/core-js/modules/es6.object.seal.js","webpack:///./node_modules/core-js/modules/es6.object.prevent-extensions.js","webpack:///./node_modules/core-js/modules/es6.object.is-frozen.js","webpack:///./node_modules/core-js/modules/es6.object.is-sealed.js","webpack:///./node_modules/core-js/modules/es6.object.is-extensible.js","webpack:///./node_modules/core-js/modules/es6.object.get-own-property-descriptor.js","webpack:///./node_modules/core-js/modules/es6.object.get-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.object.keys.js","webpack:///./node_modules/core-js/modules/es6.object.get-own-property-names.js","webpack:///./node_modules/core-js/modules/es6.object.assign.js","webpack:///./node_modules/core-js/modules/es6.object.is.js","webpack:///./node_modules/core-js/modules/_same-value.js","webpack:///./node_modules/core-js/modules/es6.object.set-prototype-of.js","webpack:///./node_modules/core-js/modules/es6.function.name.js","webpack:///./node_modules/core-js/modules/es6.string.raw.js","webpack:///./node_modules/core-js/modules/es6.string.from-code-point.js","webpack:///./node_modules/core-js/modules/es6.string.code-point-at.js","webpack:///./node_modules/core-js/modules/_string-at.js","webpack:///./node_modules/core-js/modules/es6.string.repeat.js","webpack:///./node_modules/core-js/modules/es6.string.starts-with.js","webpack:///./node_modules/core-js/modules/es6.string.ends-with.js","webpack:///./node_modules/core-js/modules/es6.string.includes.js","webpack:///./node_modules/core-js/modules/es6.regexp.flags.js","webpack:///./node_modules/core-js/modules/_flags.js","webpack:///./node_modules/core-js/modules/es6.regexp.match.js","webpack:///./node_modules/core-js/modules/es6.regexp.replace.js","webpack:///./node_modules/core-js/modules/es6.regexp.split.js","webpack:///./node_modules/core-js/modules/es6.regexp.search.js","webpack:///./node_modules/core-js/modules/es6.array.from.js","webpack:///./node_modules/core-js/modules/es6.array.of.js","webpack:///./node_modules/core-js/modules/es6.array.copy-within.js","webpack:///./node_modules/core-js/modules/es6.array.find.js","webpack:///./node_modules/core-js/modules/es6.array.find-index.js","webpack:///./node_modules/core-js/modules/es6.array.fill.js","webpack:///./node_modules/core-js/modules/es6.number.is-finite.js","webpack:///./node_modules/core-js/modules/es6.number.is-integer.js","webpack:///./node_modules/core-js/modules/es6.number.is-safe-integer.js","webpack:///./node_modules/core-js/modules/es6.number.is-nan.js","webpack:///./node_modules/core-js/modules/es6.number.epsilon.js","webpack:///./node_modules/core-js/modules/es6.number.min-safe-integer.js","webpack:///./node_modules/core-js/modules/es6.number.max-safe-integer.js","webpack:///./node_modules/core-js/modules/es6.math.acosh.js","webpack:///./node_modules/core-js/modules/es6.math.asinh.js","webpack:///./node_modules/core-js/modules/es6.math.atanh.js","webpack:///./node_modules/core-js/modules/es6.math.cbrt.js","webpack:///./node_modules/core-js/modules/es6.math.clz32.js","webpack:///./node_modules/core-js/modules/es6.math.cosh.js","webpack:///./node_modules/core-js/modules/es6.math.expm1.js","webpack:///./node_modules/core-js/modules/es6.math.fround.js","webpack:///./node_modules/core-js/modules/_math-fround.js","webpack:///./node_modules/core-js/modules/es6.math.hypot.js","webpack:///./node_modules/core-js/modules/es6.math.imul.js","webpack:///./node_modules/core-js/modules/es6.math.log1p.js","webpack:///./node_modules/core-js/modules/es6.math.log10.js","webpack:///./node_modules/core-js/modules/es6.math.log2.js","webpack:///./node_modules/core-js/modules/es6.math.sign.js","webpack:///./node_modules/core-js/modules/es6.math.sinh.js","webpack:///./node_modules/core-js/modules/es6.math.tanh.js","webpack:///./node_modules/core-js/modules/es6.math.trunc.js","webpack:///./node_modules/core-js/modules/es7.array.includes.js","webpack:///./node_modules/core-js/modules/es7.object.values.js","webpack:///./node_modules/core-js/modules/es7.object.entries.js","webpack:///./node_modules/core-js/modules/es7.object.get-own-property-descriptors.js","webpack:///./node_modules/core-js/modules/es7.string.pad-start.js","webpack:///./node_modules/core-js/modules/es7.string.pad-end.js","webpack:///./node_modules/core-js/modules/web.timers.js","webpack:///./node_modules/core-js/modules/web.immediate.js","webpack:///./node_modules/core-js/modules/web.dom.iterable.js","webpack:///./node_modules/regenerator-runtime/runtime.js","webpack:///./src/App.vue?647a","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./src/App.vue","webpack:///src/App.vue","webpack:///./node_modules/vue-router/dist/vue-router.esm.js","webpack:///./src/views/Users.vue?de85","webpack:///./src/components/appNavigation.vue?2324","webpack:///./src/components/appNavigation/navigationItem.vue?5477","webpack:///./src/components/popoverMenu.vue?6abc","webpack:///./src/components/popoverMenu/popoverItem.vue?e129","webpack:///src/components/popoverMenu/popoverItem.vue","webpack:///./src/components/popoverMenu/popoverItem.vue","webpack:///./src/components/popoverMenu.vue","webpack:///src/components/popoverMenu.vue","webpack:///./src/components/appNavigation/navigationItem.vue","webpack:///src/components/appNavigation/navigationItem.vue","webpack:///./src/components/appNavigation.vue","webpack:///src/components/appNavigation.vue","webpack:///./src/components/userList.vue?63c6","webpack:///./src/components/userList/userRow.vue?a78d","webpack:///src/components/userList/userRow.vue","webpack:///./src/components/userList/userRow.vue","webpack:///./src/components/userList.vue","webpack:///src/components/userList.vue","webpack:///./src/store/api.js","webpack:///src/views/Users.vue","webpack:///./src/views/Users.vue","webpack:///./src/views/Apps.vue?550c","webpack:///./src/components/appList.vue?307d","webpack:///./src/components/appList/appItem.vue?c8e3","webpack:///./src/components/appList/appScore.vue?bca6","webpack:///src/components/appList/appScore.vue","webpack:///./src/components/appList/appScore.vue","webpack:///./src/components/appManagement.vue","webpack:///src/components/appManagement.vue","webpack:///./src/components/svgFilterMixin.vue","webpack:///src/components/svgFilterMixin.vue","webpack:///./src/components/appList/appItem.vue","webpack:///src/components/appList/appItem.vue","webpack:///./src/components/prefixMixin.vue","webpack:///src/components/prefixMixin.vue","webpack:///./src/components/appList.vue","webpack:///src/components/appList.vue","webpack:///./src/components/appDetails.vue?649c","webpack:///src/components/appDetails.vue","webpack:///./src/components/appDetails.vue","webpack:///src/views/Apps.vue","webpack:///./src/views/Apps.vue","webpack:///./src/router.js","webpack:///./node_modules/vuex/dist/vuex.esm.js","webpack:///./src/store/users.js","webpack:///./src/store/apps.js","webpack:///./src/store/settings.js","webpack:///./src/store/oc.js","webpack:///./src/store/index.js","webpack:///./src/main.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","global","core","hide","redefine","ctx","$export","type","source","own","out","exp","IS_FORCED","F","IS_GLOBAL","G","IS_STATIC","S","IS_PROTO","P","IS_BIND","B","target","expProto","undefined","Function","U","W","R","setImmediate","emptyObject","freeze","isUndef","v","isDef","isTrue","isPrimitive","isObject","obj","_toString","toString","isPlainObject","isRegExp","isValidArrayIndex","val","parseFloat","String","Math","floor","isFinite","JSON","stringify","toNumber","isNaN","makeMap","str","expectsLowerCase","map","list","split","length","toLowerCase","isBuiltInTag","isReservedAttribute","remove","arr","item","index","indexOf","splice","hasOwn","cached","fn","cache","camelizeRE","camelize","replace","_","toUpperCase","capitalize","charAt","slice","hyphenateRE","hyphenate","boundFn","a","arguments","apply","_length","toArray","start","ret","Array","extend","to","_from","toObject","res","noop","b","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArray","isArrayB","every","e","keysA","keys","keysB","looseIndexOf","once","called","this","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","_lifecycleHooks","isReserved","charCodeAt","def","writable","configurable","bailRE","_isServer","hasProto","inBrowser","window","inWeex","WXEnvironment","platform","weexPlatform","UA","navigator","userAgent","isIE","test","isIE9","isEdge","isIOS","nativeWatch","watch","supportsPassive","opts","addEventListener","isServerRendering","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","ownKeys","Set","set","has","add","clear","warn","uid","Dep","id","subs","addSub","sub","push","removeSub","depend","addDep","notify","update","targetStack","pushTarget","_target","popTarget","pop","VNode","tag","data","children","text","elm","context","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","parent","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","forEach","method","original","args","len","inserted","result","ob","__ob__","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","src","__proto__","observe","asRootData","isExtensible","_isVue","defineReactive","customSetter","shallow","getOwnPropertyDescriptor","setter","childOb","dependArray","newVal","max","del","items","strats","mergeData","from","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","concat","mergeAssets","hook","key$1","props","methods","inject","computed","provide","defaultStrat","mergeOptions","options","normalizeProps","normalized","normalizeInject","dirs","directives","normalizeDirectives","extendsFrom","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","prop","absent","booleanIndex","getTypeIndex","Boolean","stringIndex","default","$options","_props","getType","getPropDefaultValue","prevShouldObserve","match","isSameType","expectedTypes","handleError","err","info","cur","$parent","hooks","errorCaptured","globalHandleError","logError","console","error","microTimerFunc","macroTimerFunc","callbacks","pending","flushCallbacks","copies","useMacroTask","MessageChannel","setTimeout","channel","port","port2","port1","onmessage","postMessage","Promise","resolve","then","nextTick","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","on","oldOn","remove$$1","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","lastIndex","last","isTextNode","shift","_isVList","isFalse","ensureCtor","comp","base","getFirstComponentChild","$once","$on","remove$1","$off","updateComponentListeners","listeners","oldListeners","resolveSlots","slots","attrs","slot","name$1","isWhitespace","resolveScopedSlots","activeInstance","isInInactiveTree","_inactive","activateChildComponent","direct","_directInactive","$children","callHook","handlers","j","_hasHookEvent","$emit","queue","activatedChildren","waiting","flushing","flushSchedulerQueue","watcher","sort","run","activatedQueue","updatedQueue","callActivatedHooks","_watcher","_isMounted","callUpdatedHooks","emit","uid$1","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","sync","active","dirty","deps","newDeps","depIds","newDepIds","expression","path","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","proxy","sourceKey","initState","propsOptions","_propKeys","loop","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","handler","createWatcher","initWatch","shouldCache","createComputedGetter","$watch","resolveInject","filter","provideKey","_provided","provideDefault","renderList","render","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","slotNodes","$slots","_rendered","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","domProps","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","staticRenderFns","_renderProxy","markOnce","markStaticNode","bindObjectListeners","existing","ours","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","FunctionalRenderContext","contextVm","_original","isCompiled","_compiled","needNormalization","injections","scopedSlots","_scopeId","_c","createElement","cloneAndMarkFunctionalResult","clone","mergeProps","componentVNodeHooks","init","hydrating","parentElm","refElm","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","_parentElm","_refElm","inlineTemplate","createComponentInstanceForVnode","$mount","oldVnode","parentVnode","renderChildren","hasChildren","_renderChildren","$vnode","_vnode","$attrs","$listeners","propKeys","_parentListeners","$forceUpdate","updateChildComponent","insert","queueActivatedComponent","destroy","deactivateChildComponent","$destroy","hooksToMerge","createComponent","baseCtor","_base","cid","factory","errorComp","resolved","loading","loadingComp","contexts","forceRender","reject","reason","component","delay","timeout","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","functional","renderContext","vnodes","createFunctionalComponent","nativeOn","abstract","installComponentHooks","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","applyNS","force","style","class","registerDeepBindings","_createElement","uid$3","super","superOptions","modifiedOptions","modified","latest","extended","extendOptions","sealed","sealedOptions","dedupe","resolveModifiedOptions","components","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","constructor","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$root","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","el","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","cbs","i$1","eventsMixin","_update","prevEl","$el","prevVnode","prevActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","RegExp","builtInComponents","KeepAlive","include","exclude","Number","created","destroyed","mounted","this$1","parseInt","configDef","util","delete","plugin","installedPlugins","_installedPlugins","unshift","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","ssrContext","version","acceptValue","attr","isEnumeratedAttr","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","isFalsyAttrValue","genClassForVnode","parentNode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","query","selected","document","querySelector","nodeOps","tagName","multiple","setAttribute","createElementNS","namespace","createTextNode","createComment","insertBefore","newNode","referenceNode","removeChild","appendChild","nextSibling","setTextContent","textContent","setStyleScope","scopeId","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","dir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","join","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","chr","index$1","expressionPos","expressionEndPos","klass","validDivisionCharRE","parseFilters","prev","filters","inSingle","inDouble","inTemplateString","inRegex","curly","square","paren","lastFilterIndex","trim","pushFilter","wrapFilter","baseWarn","msg","pluckModuleFunction","addProp","plain","addAttr","addRawAttr","attrsMap","attrsList","addDirective","arg","addHandler","important","events","right","middle","native","nativeEvents","newHandler","getBindingAttr","getStatic","dynamicValue","getAndRemoveAttr","staticValue","removeFromMap","genComponentModel","number","valueExpression","assignment","genAssignmentCode","lastIndexOf","eof","isStringStart","next","parseString","parseBracket","parseModel","inBracket","stringQuote","target$1","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","add$1","_withTask","withMacroTask","onceHandler","remove$2","createOnceHandler","updateDOMListeners","change","normalizeEvents","updateDOMProps","oldProps","childNodes","_value","strCur","shouldUpdateValue","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","isDirtyWithModifiers","parseStyleText","cssText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","addClass","classList","getAttribute","removeClass","tar","resolveTransition","css","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","patch","backend","removeNode","createElm","insertedVnodeQueue","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","pre","hasChildNodes","innerHTML","childrenMatch","firstChild","fullInvoke","isInitialPatch","isRealElement","hasAttribute","emptyNodeAt","oldElm","parentElm$1","patchable","i$2","createPatchFunction","vmodel","trigger","directive","binding","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","hasNoMatchingOption","actuallySetSelected","isMultiple","option","selectedIndex","createEvent","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","h","rawChild","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","pos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","prevChildren","rawChildren","transitionData","kept","removed","c$1","beforeUpdate","updated","hasMove","_reflow","body","offsetHeight","propertyName","_hasMove","cloneNode","HTMLUnknownElement","HTMLElement","mountComponent","defaultTagRE","regexEscapeRE","buildRegex","delimiters","open","close","klass$1","staticKeys","transformNode","classBinding","genData","decoder","style$1","styleBinding","he","html","isUnaryTag","canBeLeftOpenTag","isNonPhrasingTag","attribute","ncname","qnameCapture","startTagOpen","startTagClose","endTag","doctype","comment","conditionalComment","IS_REGEX_CAPTURING_BROKEN","g","isPlainTextElement","reCache","decodingMap","<",">",""","&"," ","	","encodedAttr","encodedAttrWithNewLines","isIgnoreNewlineTag","shouldIgnoreFirstNewline","decodeAttr","shouldDecodeNewlines","re","warn$2","transforms","preTransforms","postTransforms","platformIsPreTag","platformMustUseProp","platformGetTagNamespace","onRE","dirRE","forAliasRE","forIteratorRE","stripParensRE","argRE","bindRE","modifierRE","decodeHTMLCached","createASTElement","makeAttrsMap","parse","template","isPreTag","root","currentParent","stack","preserveWhitespace","inPre","closeElement","element","lastTag","expectHTML","isUnaryTag$$1","canBeLeftOpenTag$$1","endTagLength","stackedTag","reStackedTag","rest$1","all","chars","parseEndTag","textEnd","commentEnd","shouldKeepComment","substring","advance","conditionalEnd","doctypeMatch","endTagMatch","curIndex","startTagMatch","parseStartTag","handleStartTag","rest","unarySlash","unary","shouldDecodeNewlinesForHref","lowerCasedTag","lowerCasedTagName","parseHTML","comments","ieNSBug","ieNSPrefix","guardIESVGBug","isForbiddenTag","forbidden","checkRootConstraints","processPre","processRawAttrs","processed","processFor","if","addIfCondition","block","else","elseif","processIf","processOnce","processElement","findPrevElement","processIfConditions","slotScope","slotTarget","lastNode","isTextTag","tagRE","tokenValue","tokens","rawTokens","exec","@binding","parseText","processKey","for","checkInFor","processRef","slotName","processSlot","processComponent","isProp","hasBindings","parseModifiers","camel","argMatch","processAttrs","inMatch","alias","iteratorMatch","iterator1","iterator2","parseFor","condition","ifConditions","cloneASTElement","modules$1","preTransformNode","typeBinding","ifCondition","ifConditionExtra","hasElse","elseIfCondition","branch0","branch1","branch2","isStaticKey","isPlatformReservedTag","baseOptions","_warn","code","genSelect","valueBinding","trueValueBinding","falseValueBinding","genCheckboxModel","genRadioModel","needCompositionGuard","genDefaultModel","reduce","genStaticKeys","genStaticKeysCached","optimize","markStatic$1","static","isDirectChildOfTemplateFor","l$1","markStaticRoots","staticInFor","staticRoot","fnExpRE","simplePathRE","esc","tab","space","up","down","keyNames","genGuard","modifierCode","stop","prevent","self","ctrl","alt","meta","genHandlers","genHandler","isMethodPath","isFunctionExpression","genModifierCode","keyModifier","genFilterCode","genKeyFilter","keyVal","keyCode","keyName","baseDirectives","wrapListeners","wrapData","cloak","CodegenState","dataGenFns","maybeComponent","onceId","generate","ast","state","genElement","staticProcessed","genStatic","onceProcessed","genOnce","forProcessed","altGen","altHelper","genFor","ifProcessed","genIf","genChildren","bind$$1","genSlot","componentName","genData$2","genComponent","altEmpty","genIfConditions","conditions","genTernaryExp","needRuntime","hasRuntime","gen","genDirectives","genProps","genScopedSlot","inlineRenderFns","genInlineTemplate","genForScopedSlot","checkSkip","altGenElement","altGenNode","el$1","needsNormalization","getNormalizationType","genNode","genComment","transformSpecialNewlines","genText","createFunction","errors","div","compileToFunctions","baseCompile","compile","finalOptions","tips","tip","compiled","fnGenErrors","createCompileToFunctionFn","createCompilerCreator","createCompiler","getShouldDecode","href","idToTemplate","mount","documentElement","outerHTML","container","getOuterHTML","__webpack_exports__","it","__g","TypeError","store","USE_SYMBOL","anObject","IE8_DOM_DEFINE","toPrimitive","dP","f","O","Attributes","toInteger","min","u","y","__e","random","virtual","propertyIsEnumerable","ceil","valueOf","x","w","$isLabel","$groupLabel","search","isOpen","prefferedOpenDirection","optimizedHeight","maxHeight","internalSearch","required","trackBy","label","searchable","clearOnSelect","hideSelected","allowEmpty","resetAfter","closeOnSelect","customLabel","taggable","tagPlaceholder","tagPosition","optionsLimit","groupValues","groupLabel","groupSelect","blockKeys","preserveSearch","preselectFirst","internalValue","select","filteredOptions","filterAndFlat","isSelected","isExistingOption","isTag","valueKeys","optionKeys","flatAndStrip","currentOptionLabel","getOptionLabel","updateSearch","selectGroup","disabled","$isDisabled","pointerDirty","deactivate","removeElement","find","wholeGroupSelected","removeLastElement","adjustPosition","pointer","focus","blur","toggle","innerHeight","bottom","openDirection","showPointer","optionHeight","pointerPosition","visibleElements","pointerAdjust","optionHighlight","multiselect__option--highlight","multiselect__option--selected","groupHighlight","multiselect__option--group-selected","addPointerElement","pointerReset","pointerForward","scrollTop","pointerBackward","pointerSet","L","k","E","V","entries","values","contentWindow","write","getOwnPropertySymbols","inspectSource","selectLabel","selectGroupLabel","selectedLabel","deselectLabel","deselectGroupLabel","showLabels","limit","limitText","showNoResults","tabindex","isSingleLabelVisible","singleValue","visibleValues","isPlaceholderVisible","deselectLabelText","deselectGroupLabelText","selectLabelText","selectGroupLabelText","selectedLabelText","inputStyle","width","position","padding","contentStyle","isAbove","showSearchInput","hasSingleSelectedSlot","visibleSingleValue","done","preventExtensions","KEY","NEED","fastKey","getWeak","onFreeze","getPrototypeOf","Arguments","C","T","A","$","D","M","N","H","QObject","I","findChild","K","z","iterator","J","X","Y","Q","Z","tt","et","keyFor","useSetter","useSimple","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","beforeCreate","_injectStyles","esModule","multiselect--active","multiselect--disabled","multiselect--above","keydown","currentTarget","preventDefault","stopPropagation","keyup","mousedown","aria-hidden","autocomplete","input","data-select","data-selected","data-deselect","click","mouseenter","isBuffer","isFunction","isArrayBuffer","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isUndefined","isDate","isFile","isBlob","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","product","merge","assignValue","thisArg","createDesc","IObject","defined","fails","aFunction","that","LIBRARY","$typed","$buffer","anInstance","propertyDesc","redefineAll","toLength","toIndex","toAbsoluteIndex","classof","isArrayIter","gOPN","getIterFn","wks","createArrayMethod","createArrayIncludes","speciesConstructor","ArrayIterators","Iterators","$iterDetect","setSpecies","arrayFill","arrayCopyWithin","$DP","$GOPD","gOPD","RangeError","Uint8Array","ArrayProto","$ArrayBuffer","$DataView","DataView","arrayForEach","arrayFilter","arraySome","arrayEvery","arrayFind","arrayFindIndex","arrayIncludes","arrayIndexOf","arrayValues","arrayEntries","arrayLastIndexOf","arrayReduce","arrayReduceRight","reduceRight","arrayJoin","arraySort","arraySlice","arrayToString","arrayToLocaleString","toLocaleString","ITERATOR","TAG","TYPED_CONSTRUCTOR","DEF_CONSTRUCTOR","ALL_CONSTRUCTORS","CONSTR","TYPED_ARRAY","TYPED","VIEW","$map","allocate","LITTLE_ENDIAN","Uint16Array","FORCED_SET","toOffset","BYTES","offset","validate","speciesFromList","fromList","addGetter","internal","_d","$from","step","aLen","mapfn","mapping","iterFn","$of","TO_LOCALE_BUG","$toLocaleString","proto","copyWithin","callbackfn","fill","predicate","findIndex","searchElement","includes","separator","reverse","comparefn","subarray","begin","$begin","byteOffset","BYTES_PER_ELEMENT","$slice","arrayLike","$iterators","isTAIndex","$getDesc","$setDesc","desc","$TypedArrayPrototype$","wrapper","CLAMPED","NAME","GETTER","SETTER","TypedArray","Base","TAC","FORCED","ABV","TypedArrayPrototype","addElement","round","$offset","$length","byteLength","$len","iter","$nativeIterator","CORRECT_ITER_NAME","$iterator","of","pIE","toIObject","SRC","$toString","TPL","safe","META","setDesc","FREEZE","setMeta","bitmap","px","$keys","enumBugKeys","Constructor","forbiddenField","stat","IE_PROTO","ObjectProto","UNSCOPABLES","TYPE","process","VueLocalStorage","_properties","_namespace","_isSupported","_getLsKey","lsKey","_lsSet","rawValue","localStorage","setItem","_lsGet","defaultValue","defaultType","_process","removeItem","addProperty","array","vueLocalStorage","server","SERVER_BUILD","isSupported","existingProp","log","hiddenKeys","dPs","Empty","createDict","iframeDocument","iframe","lt","Properties","asc","$create","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","NO_HOLES","$this","eval","DESCRIPTORS","SPECIES","SAFE_CLOSING","riter","skipClosing","BREAK","RETURN","iterable","forOf","setToStringTag","inheritIfRequired","common","IS_WEAK","ADDER","fixMethod","instance","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","getConstructor","setStrong","SYMBOL","strfn","rxfn","string","isServer","vNode","$isServer","elements","composedPath","contains","popupItem","isPopup","__vueClickOutside__","cachedSetTimeout","cachedClearTimeout","defaultSetTimout","Error","defaultClearTimeout","runTimeout","fun","clearTimeout","currentQueue","draining","queueIndex","cleanUpNextTick","drainQueue","marker","runClearTimeout","Item","title","browser","argv","versions","addListener","off","removeListener","removeAllListeners","prependListener","prependOnceListener","cwd","chdir","umask","utils","normalizeHeaderName","DEFAULT_CONTENT_TYPE","Content-Type","setContentTypeIfUnset","headers","defaults","adapter","XMLHttpRequest","getDefaultAdapter","transformRequest","transformResponse","xsrfCookieName","xsrfHeaderName","maxContentLength","validateStatus","status","Accept","Typed","TypedArrayConstructors","cof","IS_INCLUDES","fromIndex","shared","endPos","ARG","tryGet","callee","getIteratorMethod","addToUnscopables","iterated","kind","check","setPrototypeOf","buggy","defer","invoke","cel","setTask","clearTask","clearImmediate","Dispatch","counter","listener","now","importScripts","searchString","MATCH","$defineProperty","sign","$expm1","expm1","settle","buildURL","parseHeaders","isURLSameOrigin","createError","btoa","requestData","requestHeaders","request","loadEvent","xDomain","XDomainRequest","url","onprogress","ontimeout","auth","username","password","Authorization","paramsSerializer","readyState","responseURL","responseHeaders","getAllResponseHeaders","response","responseType","responseText","statusText","onerror","cookies","xsrfValue","withCredentials","read","setRequestHeader","onDownloadProgress","onUploadProgress","upload","cancelToken","promise","cancel","abort","send","enhanceError","message","__CANCEL__","Cancel","PROTOTYPE","WRONG_INDEX","Infinity","BaseBuffer","abs","pow","LN2","$BUFFER","$LENGTH","$OFFSET","packIEEE754","mLen","nBytes","eLen","eMax","eBias","rt","unpackIEEE754","nBits","NaN","unpackI32","bytes","packI8","packI16","packI32","packF64","packF32","view","isLittleEndian","intIndex","pack","conversion","ArrayBufferProto","$setInt8","setInt8","getInt8","setUint8","bufferLength","getUint8","getInt16","getUint16","getInt32","getUint32","getFloat32","getFloat64","setInt16","setUint16","setInt32","setUint32","setFloat32","setFloat64","names","$iterCreate","BUGGY","returnThis","DEFAULT","IS_SET","IteratorPrototype","getMethod","DEF_VALUES","VALUES_BUG","$native","$default","$entries","$anyNative","count","inc","$iterDefine","SIZE","getEntry","entry","getKeys","gOPS","$assign","assign","getSymbols","isEnum","$has","uncaughtFrozenStore","UncaughtFrozenStore","findUncaughtFrozen","ufstore","un","$$resolve","$$reject","windowNames","getWindowNames","log1p","isEntries","repeat","maxLength","fillString","stringLength","fillStr","intMaxLength","fillLen","stringFiller","cloneRoute","fullPath","router","moduleName","registerModule","namespaced","currentRoute","mutations","ROUTE_CHANGED","currentPath","isTimeTraveling","storeUnwatch","route","afterEachUnHook","afterEach","commit","unregisterModule","isBrowser","longerTimeoutBrowsers","timeoutDuration","debounce","scheduled","functionToCheck","getStyleComputedProperty","getParentNode","nodeName","host","getScrollParent","ownerDocument","_getStyleComputedProp","overflow","overflowX","overflowY","isIE11","MSInputMethodContext","documentMode","isIE10","getOffsetParent","noOffsetParent","offsetParent","nextElementSibling","getRoot","findCommonOffsetParent","element1","element2","order","compareDocumentPosition","Node","DOCUMENT_POSITION_FOLLOWING","range","createRange","setStart","setEnd","commonAncestorContainer","firstElementChild","isOffsetContainer","element1root","getScroll","upperSide","scrollingElement","getBordersSize","axis","sideA","sideB","getSize","computedStyle","getWindowSizes","height","classCallCheck","createClass","descriptor","protoProps","staticProps","_extends","getClientRect","offsets","rect","scrollLeft","sizes","clientWidth","clientHeight","horizScrollbar","offsetWidth","vertScrollbar","getOffsetRectRelativeToArbitraryNode","fixedPosition","isHTML","childrenRect","parentRect","scrollParent","borderTopWidth","borderLeftWidth","marginTop","marginLeft","subtract","modifier","includeScroll","getFixedPositionOffsetParent","parentElement","getBoundaries","popper","reference","boundariesElement","boundaries","excludeScroll","relativeOffset","innerWidth","getViewportOffsetRectRelativeToArtbitraryNode","boundariesNode","isFixed","_getWindowSizes","computeAutoPlacement","placement","refRect","rects","sortedAreas","area","_ref","getArea","filteredAreas","_ref2","computedPlacement","variation","getReferenceOffsets","getOuterSizes","marginBottom","marginRight","getOppositePlacement","matched","getPopperOffsets","referenceOffsets","popperRect","popperOffsets","isHoriz","mainSide","secondarySide","measurement","secondaryMeasurement","runModifiers","ends","enabled","isModifierEnabled","modifierName","getSupportedPropertyName","prefixes","upperProp","prefix","toCheck","getWindow","defaultView","setupEventListeners","updateBound","scrollElement","attachToScrollParents","scrollParents","isBody","eventsEnabled","disableEventListeners","cancelAnimationFrame","scheduleUpdate","removeEventListeners","isNumeric","setStyles","unit","isModifierRequired","requestingName","requestedName","requesting","isRequired","_requesting","requested","placements","validPlacements","clockwise","BEHAVIORS","FLIP","CLOCKWISE","COUNTERCLOCKWISE","parseOffset","basePlacement","useHeight","fragments","frag","divider","splitRegex","ops","op","mergeWithPrevious","toValue","index2","Defaults","positionFixed","removeOnDestroy","onCreate","onUpdate","shiftvariation","_data$offsets","isVertical","side","shiftOffsets","preventOverflow","transformProp","popperStyles","priority","primary","escapeWithReference","secondary","keepTogether","opSide","arrow","_data$offsets$arrow","arrowElement","sideCapitalized","altSide","arrowElementSize","center","popperMarginSide","popperBorderSide","sideValue","flip","flipped","originalPlacement","placementOpposite","flipOrder","behavior","refOffsets","overlapsRef","overflowsLeft","overflowsRight","overflowsTop","overflowsBottom","overflowsBoundaries","flippedVariation","flipVariations","getOppositeVariation","inner","subtractLength","bound","attributes","computeStyle","legacyGpuAccelerationOption","gpuAcceleration","offsetParentRect","prefixedProperty","willChange","invertTop","invertLeft","x-placement","arrowStyles","applyStyle","setAttributes","onLoad","modifierOptions","Popper","_this","isDestroyed","isCreated","jquery","enableEventListeners","Utils","PopperUtils","SVGAnimatedString","convertToArray","addClasses","classes","newClasses","className","baseVal","newClass","SVGElement","removeClasses","_typeof","classCallCheck$1","createClass$1","_extends$1","DEFAULT_OPTIONS","openTooltips","Tooltip","_initialiseProps","_isOpen","_classes","content","_tooltipNode","_setContent","classesUpdated","defaultClass","setClasses","getOptions","needPopperUpdate","needRestart","dispose","popperInstance","_isDisposed","_enableDocumentTouch","_setEventListeners","tooltipGenerator","tooltipNode","substr","autoHide","asyncContent","_applyContent","_this2","allowHtml","rootNode","titleNode","innerSelector","loadingClass","loadingContent","asyncResult","catch","innerText","_disposeTimer","updateClasses","_ensureShown","_this3","_create","_findContainer","_append","popperOptions","arrowSelector","_this4","_noLongerOpen","disposeTime","disposeTimeout","_this5","func","_hide","_this6","directEvents","oppositeEvents","hideOnTargetClick","evt","usedByTooltip","_scheduleShow","_scheduleHide","_this7","computedDelay","_scheduleTimer","_show","_this8","_setTooltipNodeEvent","_this9","_dispose","relatedreference","toElement","relatedTarget","evt2","relatedreference2","_onDocumentTouch","positions","defaultOptions","defaultPlacement","defaultTargetClass","defaultHtml","defaultTemplate","defaultArrowSelector","defaultInnerSelector","defaultDelay","defaultTrigger","defaultOffset","defaultContainer","defaultBoundariesElement","defaultPopperOptions","defaultLoadingClass","defaultLoadingContent","defaultHideOnTargetClick","popover","defaultBaseClass","defaultWrapperClass","defaultInnerClass","defaultArrowClass","defaultAutoHide","defaultHandleResize","typeofOffset","getPlacement","getContent","destroyTooltip","_tooltip","_tooltipOldShow","_tooltipTargetClasses","tooltip","setContent","setOptions","_vueEl","targetClasses","createTooltip","addListeners","onClick","onTouchStart","removeListeners","onTouchEnd","onTouchCancel","closePopover","$_vclosepopover_touch","closeAllPopover","$_closePopoverModifiers","changedTouches","touch","$_vclosepopover_touchPoint","firstTouch","screenY","screenX","vclosepopover","isIE$1","initCompat","ua","msie","rv","edge","getInternetExplorerVersion","ResizeObserver","_h","addResizeHandlers","_resizeObject","contentDocument","_w","removeResizeHandlers","onload","beforeDestroy","plugin$2","GlobalVue$1","getDefault","MSStream","openPopovers","Element","Popover","_vm","cssClass","aria-describedby","popoverId","popoverBaseClass","popoverClass","visibility","popoverWrapperClass","popoverInnerClass","handleResize","$_handleResize","popoverArrowClass","openGroup","oldVal","popoverNode","$_findContainer","$_removeEventListeners","$_addEventListeners","$_updatePopper","$_isDisposed","$_mounted","$_events","$_preventOpen","$_init","_ref$force","skipDelay","$_scheduleShow","$_beingShowed","$_scheduleHide","$_show","$_disposeTimer","$_getOffset","$_hide","$_scheduleTimer","$_setTooltipNodeEvent","event2","_ref3","$_restartPopper","$_handleGlobalClose","handleGlobalClose","commonjsGlobal","lodash_merge","createCommonjsModule","LARGE_ARRAY_SIZE","HASH_UNDEFINED","HOT_COUNT","HOT_SPAN","MAX_SAFE_INTEGER","argsTag","asyncTag","funcTag","genTag","nullTag","objectTag","proxyTag","undefinedTag","reIsHostCtor","reIsUint","typedArrayTags","freeGlobal","freeSelf","freeExports","freeModule","moduleExports","freeProcess","nodeUtil","nodeIsTypedArray","isTypedArray","safeGet","funcProto","objectProto","coreJsData","funcToString","maskSrcKey","nativeObjectToString","objectCtorString","reIsNative","Buffer","allocUnsafe","getPrototype","overArg","objectCreate","symToStringTag","getNative","nativeIsBuffer","nativeMax","nativeNow","Date","Map","nativeCreate","baseCreate","Hash","ListCache","MapCache","Stack","__data__","size","arrayLikeKeys","inherited","isArr","isArg","isArguments","isBuff","isType","skipIndexes","iteratee","baseTimes","isIndex","assignMergeValue","eq","baseAssignValue","objValue","assocIndexOf","getMapData","pairs","baseFor","fromRight","keysFunc","createBaseFor","baseGetTag","isOwn","unmasked","getRawTag","objectToString","baseIsArguments","isObjectLike","baseIsNative","isMasked","toSource","baseKeysIn","nativeKeysIn","isProto","isPrototype","baseMerge","srcIndex","customizer","srcValue","mergeFunc","stacked","newValue","isCommon","isTyped","isArrayLike","isArrayLikeObject","isDeep","copy","cloneBuffer","typedArray","arrayBuffer","cloneArrayBuffer","cloneTypedArray","copyArray","isNew","copyObject","keysIn","toPlainObject","initCloneObject","baseMergeDeep","baseRest","setToString","otherArgs","overRest","isKeyable","lastCalled","stamp","remaining","shortOut","constant","other","isLength","baseUnary","assigner","sources","guard","isIterateeCall","createAssigner","installed","GlobalVue","unescape","encodeURIComponent","sourceRoot","parts","media","sourceMap","styleSheet","DEBUG","head","getElementsByTagName","locals","STATE_CHANGER","INFINITE_EVENT","INFINITE_LOOP","scrollHandler","isLoading","isComplete","isFirstLoad","debounceTimer","debounceDuration","infiniteLoopChecked","infiniteLoopTimer","continuousCallTimes","Spinner","isNoResults","isNoMore","distance","onInfinite","spinner","direction","forceUseInfiniteWrapper","Event","attemptLoad","stateChanger","loaded","complete","reset","deactivated","activated","getCurrentDistance","pageYOffset","BUBBLES","CIRCLES","SPIRAL","WAVEDOTS","spinnerView","scope","Timeout","clearFn","_id","_clearFn","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","registerImmediate","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessageIsAsynchronous","oldOnMessage","canUsePostMessage","messagePrefix","onGlobalMessage","attachEvent","installPostMessageImplementation","installMessageChannelImplementation","script","onreadystatechange","installReadyStateChangeImplementation","task","Axios","createInstance","defaultConfig","axios","instanceConfig","CancelToken","isCancel","promises","spread","readFloatLE","isSlowBuffer","_isBuffer","InterceptorManager","dispatchRequest","interceptors","chain","interceptor","fulfilled","rejected","encode","serializedParams","toISOString","ignoreDuplicateOf","parsed","line","originURL","urlParsingNode","resolveURL","protocol","hostname","pathname","location","requestURL","charCode","output","idx","expires","domain","secure","cookie","toGMTString","decodeURIComponent","eject","transformData","isAbsoluteURL","combineURLs","throwIfCancellationRequested","throwIfRequested","baseURL","relativeURL","executor","resolvePromise","token","$isView","first","final","viewS","viewT","strong","InternalMap","each","weak","$WeakMap","rApply","fApply","thisArgument","argumentsList","rConstruct","construct","NEW_TARGET_BUG","ARGS_BUG","Target","newTarget","$args","factories","partArgs","propertyKey","deleteProperty","receiver","getProto","$isExtensible","$preventExtensions","existingDescriptor","ownDesc","setProto","Internal","newGenericPromiseCapability","OwnPromiseCapability","Wrapper","microtask","newPromiseCapabilityModule","perform","promiseResolve","$Promise","isNode","empty","newPromiseCapability","USE_NATIVE","FakePromise","PromiseRejectionEvent","isThenable","isReject","ok","reaction","exited","fail","onHandleUnhandled","exit","onUnhandled","unhandled","isUnhandled","onunhandledrejection","_a","onrejectionhandled","$reject","$resolve","onFulfilled","onRejected","capability","$index","alreadyCalled","race","macrotask","MutationObserver","WebKitMutationObserver","flush","standalone","characterData","promiseCapability","$fails","wksExt","wksDefine","enumKeys","gOPNExt","$Symbol","$JSON","_stringify","HIDDEN","TO_PRIMITIVE","SymbolRegistry","AllSymbols","OPSymbols","setSymbolDesc","protoDesc","wrap","sym","isSymbol","$defineProperties","$propertyIsEnumerable","$getOwnPropertyDescriptor","$getOwnPropertyNames","$getOwnPropertySymbols","IS_OP","es6Symbols","wellKnownSymbols","replacer","$replacer","symbols","$freeze","$seal","$isFrozen","$isSealed","$getPrototypeOf","FProto","nameRE","callSite","tpl","fromCharCode","$fromCodePoint","fromCodePoint","$at","codePointAt","TO_STRING","$startsWith","startsWith","$endsWith","endsWith","endPosition","flags","ignoreCase","multiline","unicode","sticky","$match","regexp","REPLACE","$replace","searchValue","replaceValue","SPLIT","$split","_split","$push","NPCG","separator2","lastLength","lastLastIndex","splitLimit","separatorCopy","SEARCH","$search","createProperty","$find","forced","_isFinite","isInteger","isSafeInteger","EPSILON","MIN_SAFE_INTEGER","sqrt","$acosh","acosh","MAX_VALUE","$asinh","asinh","$atanh","atanh","cbrt","clz32","LOG2E","cosh","fround","EPSILON32","MAX32","MIN32","$abs","$sign","roundTiesToEven","hypot","value1","value2","sum","larg","$imul","imul","xn","yn","xl","yl","log10","LOG10E","log2","sinh","tanh","trunc","$includes","$values","getOwnPropertyDescriptors","getDesc","$pad","padStart","padEnd","MSIE","time","boundArgs","$task","TO_STRING_TAG","ArrayValues","DOMIterables","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","collections","explicit","Collection","Op","iteratorSymbol","asyncIteratorSymbol","asyncIterator","toStringTagSymbol","inModule","runtime","regeneratorRuntime","GenStateSuspendedStart","GenStateSuspendedYield","GenStateExecuting","GenStateCompleted","ContinueSentinel","NativeIteratorPrototype","Gp","GeneratorFunctionPrototype","Generator","GeneratorFunction","displayName","isGeneratorFunction","genFun","ctor","mark","awrap","__await","defineIteratorMethods","AsyncIterator","async","innerFn","outerFn","tryLocsList","Context","skipTempReset","sent","_sent","delegate","tryEntries","resetTryEntry","rootRecord","completion","rval","dispatchException","exception","loc","caught","record","tryLoc","hasCatch","hasFinally","catchLoc","finallyLoc","abrupt","finallyEntry","afterLoc","finish","thrown","delegateYield","resultName","nextLoc","protoGenerator","generator","_invoke","doneResult","delegateResult","maybeInvokeDelegate","tryCatch","makeInvokeMethod","previousPromise","callInvokeWithMethodAndArg","unwrapped","return","pushTryEntry","locs","iteratorMethod","Appvue_type_template_id_7ba5bd90_render","normalizeComponent","scriptExports","functionalTemplate","injectStyles","moduleIdentifier","shadowMode","shadowRoot","originalRender","_withStripped","beforeMount","getElementById","$store","dataset","__file","App","isError","View","routerView","$route","_routerViewCache","depth","inactive","_routerRoot","routerViewDepth","registerRouteInstance","instances","propsToPass","resolveProps","encodeReserveRE","encodeReserveReplacer","commaRE","decode","parseQuery","param","stringifyQuery","val2","trailingSlashRE","createRoute","redirectedFrom","stringifyQuery$$1","getFullPath","formatMatch","START","_stringifyQuery","isSameRoute","isObjectEqual","aKeys","bKeys","aVal","bVal","_Vue","toTypes","eventTypes","Link","exact","append","exactActiveClass","$router","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","queryIncludes","isIncludedRoute","guardEvent","findAnchor","metaKey","ctrlKey","shiftKey","defaultPrevented","button","registerInstance","callVal","_router","history","_route","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","resolvePath","relative","firstChar","segment","cleanPath","isarray","pathToRegexp_1","pathToRegexp","parse_1","compile_1","tokensToFunction","tokensToFunction_1","tokensToRegExp_1","tokensToRegExp","PATH_REGEXP","defaultDelimiter","delimiter","escaped","group","asterisk","partial","optional","escapeGroup","escapeString","encodeURIComponentPretty","encodeURI","encodeAsterisk","pretty","attachKeys","sensitive","strict","endsWithDelimiter","groups","regexpToRegexp","arrayToRegexp","stringToRegexp","regexpCompileCache","fillParams","routeMsg","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","redirect","childMatchAs","aliases","aliasRoute","normalizeLocation","_normalized","vue_router_esm_assign","rawPath","parsedPath","hashIndex","queryIndex","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","createMatcher","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoutes","positionStore","setupScroll","replaceState","getStateKey","saveScrollPosition","_key","setStateKey","handleScroll","isPop","app","scrollBehavior","getScrollPosition","shouldScroll","scrollToPosition","pageXOffset","isValidPosition","normalizePosition","selector","docRect","elRect","getElementPosition","normalizeOffset","scrollTo","supportsPushState","Time","genKey","toFixed","pushState","runQueue","resolveAsyncComponents","hasAsync","flatMapComponents","resolvedDef","isESModule","flatten","History","baseEl","normalizeBase","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","guards","extractGuard","bindGuard","listen","onReady","errorCb","onError","transitionTo","onComplete","onAbort","confirmTransition","updateRoute","ensureURL","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","postEnterCbs","isValid","poll","bindEnterGuard","extractEnterGuards","resolveHooks","afterHooks","HTML5History","History$$1","expectScroll","initLocation","getLocation","go","fromRoute","getCurrentLocation","HashHistory","checkFallback","ensureSlash","setupListeners","supportsScroll","getHash","replaceHash","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","registerHook","setupHashListener","beforeEach","beforeResolve","back","forward","getMatchedComponents","createHref","normalizedTo","vue_router_esm","Usersvue_type_template_id_68be103e_render","menu","defaultQuota","quotaOptions","tag-placeholder","track-by","validateQuota","setDefaultQuota","showLanguages","checked","$$a","$$el","$$c","$$i","showLastLogin","showUserBackend","showStoragePath","users","showConfig","selectedGroup","externalActions","appNavigationvue_type_template_id_142c1cb5_render","icon-loading","new","icon","action","data-apps-slide-toggle","navigationItemvue_type_template_id_2cb61dde_render","caption","icon-loading-small","opened","collapsible","navElement","bullet","backgroundColor","toggleCollapse","iconUrl","actions","hideMenu","showMenu","openedMenu","undo","edit","cancelEdit","popoverMenuvue_type_template_id_04ea21c4_render","popoverItemvue_type_template_id_4c6af9e6_render","rel","longtext","popoverItem_component","popoverMenu_component","popoverItem","popoverMenu","navigationItem_component","ClickOutside","vue_click_outside_default","vue_esm","appNavigation_component","navigationItem","appNavigation","userListvue_type_template_id_40745299_render","&scroll","onScroll","scrolled","showNewUserForm","subAdminsGroups","settings","isAdmin","submit","createUser","newUser","autocapitalize","autocorrect","mailAddress","minlength","minPasswordLength","canAddGroups","close-on-select","$$v","quota","languages","group-values","group-label","language","filteredUsers","infinite","infiniteHandler","userRowvue_type_template_id_d19586ce_render","data-id","disable","generateAvatar","srcset","updateDisplayName","rand","spellcheck","displayname","canChangePassword","updatePassword","updateEmail","email","userGroups","availableGroups","createGroup","addUserGroup","removeUserGroup","formatGroupsTitle","auto","subadmins","userSubAdminsGroups","addUserSubAdmin","removeUserSubAdmin","userQuota","setUserQuota","usedQuota","userLanguage","setUserLanguage","storageLocation","lastLogin","OC","Util","formatDate","relativeModifiedDate","currentUser","toggleMenu","userActions","opacity","feedbackMessage","v_tooltip_esm","userRow_component","Multiselect","vue_multiselect_min_default","deleteUser","enableDisableUser","sendWelcomeMail","subadmin","groupClone","canAdd","canRemove","used","humanQuota","humanFileSize","getters","getPasswordPolicyMinLength","userLang","lang","generateUrl","oc_userconfig","avatar","userid","dispatch","gid","_this10","getGroups","_this11","_this12","_this13","_this14","_this15","validQuota","computerFileSize","_this16","_this17","success","userRow","userList_component","InfiniteLoading","vue_infinite_loading_default","unlimitedQuota","searchQuery","Notification","showTemporary","defaultLanguage","setNewUserDefaultGroup","userSearch","OCA","Search","resetSearch","getServerData","disabledUsers","infiniteLoading","oc_current_user","localeCompare","getSubadminGroups","quotaPreset","acc","usersOffset","getUsersOffset","usersLimit","getUsersLimit","commonlanguages","$state","resetForm","currentGroup","userList","tokenHeaders","requesttoken","sanitize","store_api","passwordTimeout","promiseTimeout","getElementsByClassName","PasswordConfirmation","requirePasswordConfirmation","waitForpassword","requiresPasswordConfirmation","axios_default","post","put","vue_local_storage_default","Users_component","orderBy","sortGroups","userCount","Settings","UserList","registerAction","selectedQuota","toggleNewUserMenu","newusername","getLocalstorage","localConfig","$localStorage","setLocalStorage","removeGroup","groupid","dialogs","confirm","Usersvue_type_script_lang_js_typeof","getUsers","getUserCount","adminGroup","usercount","disabledGroupIndex","disabledGroup","realGroups","everyoneGroup","Users","Appsvue_type_template_id_33a216a8_render","with-app-sidebar","currentApp","loadingList","category","appListvue_type_template_id_a1862e02_render","useBundleView","useListView","useAppStoreView","bundles","bundle","bundleApps","bundleToggleText","toggleBundle","list-view","searchApps","colspan","appItemvue_type_template_id_1c68d544_render","showAppDetails","listView","preview","screenshot","viewBox","filterId","in","preserveAspectRatio","filterUrl","xlink:href","summary","appstoreData","releases","level","score","installing","canUnInstall","enableButtonTooltip","enableButtonText","canInstall","enable","appScorevue_type_template_id_71d71231_render","scoreImage","appScore_component","imageName","imagePath","appScore","appManagement_component","groupCheckedAppsData","appGroups","needsDownload","asyncFindGroup","isLimitedToGroups","setGroupLimit","appId","canLimitToGroups","types","addGroupLimitation","removeGroupLimitation","currentGroups","Apps","rebuildNavigation","appManagement_render","appManagement_staticRenderFns","appManagement","svgFilterMixin_component","getSeconds","getMilliseconds","svgFilterMixin_render","svgFilterMixin_staticRenderFns","svgFilterMixin","appItem_component","$route.params.id","AppScore","_prefix","appItem","prefixMixin_component","prefixMixin_render","prefixMixin_staticRenderFns","prefixMixin","appList_component","getAllApps","sortStringA","sortStringB","naturalSortCompare","appstore","bundleId","_app","allBundlesEnabled","disableBundle","enableBundle","appList","appDetailsvue_type_template_id_273c8e71_render","hideAppDetails","previewAsIcon","hasRating","ratingOverall","author","licence","options-limit","search-change","appstoreUrl","website","bugs","documentation","admin","developer","missingMinOwnCloudVersion","missingMaxOwnCloudVersion","missingDependencies","renderMarkdown","appDetails_component","license","ratingNumOverall","@value","renderer","marked","Renderer","link","prot","image","blockquote","quote","DOMPurify","description","gfm","highlight","tables","breaks","pedantic","smartLists","smartypants","SAFE_FOR_JQUERY","ALLOWED_TAGS","appDetails","Apps_component","AppDetails","setSearch","updateCount","appSearch","categories","getCategories","getUpdateCount","ident","defaultCategories","appstoreEnabled","activeGroup","developerDocumentation","applyMixin","vuexInit","devtoolHook","forEachValue","Module","rawModule","_children","_rawModule","rawState","prototypeAccessors$1","addChild","getChild","forEachChild","forEachGetter","forEachAction","forEachMutation","ModuleCollection","rawRootModule","register","getNamespace","targetModule","newModule","rawChildModule","unregister","Store","vuex_esm_install","plugins","_committing","_actions","_actionSubscribers","_mutations","_wrappedGetters","_modules","_modulesNamespaceMap","_subscribers","_watcherVM","payload","installModule","resetStoreVM","_devtoolHook","targetState","subscribe","mutation","devtoolPlugin","vuex_esm_prototypeAccessors","genericSubscribe","resetStore","hot","oldVm","$$state","enableStrictMode","_withCommit","rootState","isRoot","parentState","getNestedState","local","noNamespace","_type","_payload","_options","unifyObjectStyle","gettersProxy","splitPos","localType","makeLocalGetters","makeLocalContext","registerMutation","rootGetters","isPromise","rawGetter","registerGetter","subscribeAction","preserveState","hotUpdate","newOptions","committing","mapState","normalizeNamespace","states","normalizeMap","getModuleByNamespace","vuex","mapMutations","mapGetters","mapActions","helper","vuex_esm","createNamespacedHelpers","orderGroups","appendUsers","usersObj","setPasswordPolicyMinLength","initGroups","addGroup","groupIndex","groupSearch","_ref4","_ref5","_ref6","userIndex","addUserData","ocs","_ref7","setUserData","_ref8","humanValue","resetUsers","_ref9","linkToOCS","_ref10","limitParam","getUsersFromList","_ref11","getUsersFromGroup","_ref12","oc_capabilities","password_policy","minLength","_ref13","_ref14","_ref15","_ref16","addUser","_ref17","_ref18","_ref19","_ref19$enabled","userStatus","_ref20","allowedEmpty","store_apps","APPS_API_FAILURE","showHtml","initCategories","setUpdateCount","addCategory","appendCategories","categoriesArray","setAllApps","setError","clearError","enableApp","disableApp","removable","uninstallApp","updateApp","resetApps","startLoading","stopLoading","appIds","_appId","update_required","reload","serverData","setServerData","oc","setAppConfig","store_mutations","API_FAILURE","vuex_router_sync","main_app"],"mappings":"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","file":"settings-vue.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 239);\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","/*!\n * Vue.js v2.5.16\n * (c) 2014-2018 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// these helpers produces better vm code in JS engines due to their\n// explicitness and function inlining\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value e.g. [object Object]\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : typeof val === 'object'\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert a input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if a attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether the object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it... e.g.\n * PhantomJS 1.x. Technically we don't need this anymore since native bind is\n * now more performant in most browsers, but removing it would be breaking for\n * code that was able to run in PhantomJS 1.x, so this must be kept for\n * backwards compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/)\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/**\n * Return same value\n */\nvar identity = function (_) { return _; };\n\n/**\n * Generate a static keys string from compiler modules.\n */\nfunction genStaticKeys (modules) {\n return modules.reduce(function (keys, m) {\n return keys.concat(m.staticKeys || [])\n }, []).join(',')\n}\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured'\n];\n\n/* */\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n})\n\n/* */\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = /[^\\w.$]/;\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = (function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm || {};\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// the current target watcher being evaluated.\n// this is globally unique because there could be only one\n// watcher being evaluated at any time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (_target) {\n if (Dep.target) { targetStack.push(Dep.target); }\n Dep.target = _target;\n}\n\nfunction popTarget () {\n Dep.target = targetStack.pop();\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n vnode.children,\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n var augment = hasProto\n ? protoAugment\n : copyAugment;\n augment(value, arrayMethods, arrayKeys);\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through each property and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment an target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src, keys) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment an target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n if (!getter && arguments.length === 2) {\n val = obj[key];\n }\n var setter = property && property.set;\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n var keys = Object.keys(from);\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (isPlainObject(toVal) && isPlainObject(fromVal)) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n return childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!/^[a-zA-Z][\\w-]*$/.test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'can only contain alphanumeric characters and the hyphen, ' +\n 'and must start with a letter.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def = dirs[key];\n if (typeof def === 'function') {\n dirs[key] = { bind: def, update: def };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n var extendsFrom = child.extends;\n if (extendsFrom) {\n parent = mergeOptions(parent, extendsFrom, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false && isObject(value) && ('@binding' in value))\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n if (!valid) {\n warn(\n \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', ')) +\n \", got \" + (toRawType(value)) + \".\",\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n logError(e, null, 'config.errorHandler');\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n/* globals MessageChannel */\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using both microtasks and (macro) tasks.\n// In < 2.4 we used microtasks everywhere, but there are some scenarios where\n// microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690) or even between bubbling of the same\n// event (#6566). However, using (macro) tasks everywhere also has subtle problems\n// when state is changed right before repaint (e.g. #6813, out-in transitions).\n// Here we use microtask by default, but expose a way to force (macro) task when\n// needed (e.g. in event handlers attached by v-on).\nvar microTimerFunc;\nvar macroTimerFunc;\nvar useMacroTask = false;\n\n// Determine (macro) task defer implementation.\n// Technically setImmediate should be the ideal choice, but it's only available\n// in IE. The only polyfill that consistently queues the callback after all DOM\n// events triggered in the same loop is by using MessageChannel.\n/* istanbul ignore if */\nif (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n macroTimerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else if (typeof MessageChannel !== 'undefined' && (\n isNative(MessageChannel) ||\n // PhantomJS\n MessageChannel.toString() === '[object MessageChannelConstructor]'\n)) {\n var channel = new MessageChannel();\n var port = channel.port2;\n channel.port1.onmessage = flushCallbacks;\n macroTimerFunc = function () {\n port.postMessage(1);\n };\n} else {\n /* istanbul ignore next */\n macroTimerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\n// Determine microtask defer implementation.\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n microTimerFunc = function () {\n p.then(flushCallbacks);\n // in problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n} else {\n // fallback to macro\n microTimerFunc = macroTimerFunc;\n}\n\n/**\n * Wrap a function so that if any code inside triggers state change,\n * the changes are queued using a (macro) task instead of a microtask.\n */\nfunction withMacroTask (fn) {\n return fn._withTask || (fn._withTask = function () {\n useMacroTask = true;\n var res = fn.apply(null, arguments);\n useMacroTask = false;\n return res\n })\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n if (useMacroTask) {\n macroTimerFunc();\n } else {\n microTimerFunc();\n }\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n perf.clearMeasures(name);\n };\n }\n}\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) || key.charAt(0) === '_';\n if (!has && !isAllowed) {\n warnNonPresent(target, key);\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n warnNonPresent(target, key);\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n cloned[i].apply(null, arguments$1);\n }\n } else {\n // return handler return value for single handlers\n return fns.apply(null, arguments)\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n vm\n) {\n var name, def, cur, old, event;\n for (name in on) {\n def = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n /* istanbul ignore if */\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur);\n }\n add(event.name, cur, event.once, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor,\n context\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (isDef(factory.contexts)) {\n // already pending\n factory.contexts.push(context);\n } else {\n var contexts = factory.contexts = [context];\n var sync = true;\n\n var forceRender = function () {\n for (var i = 0, l = contexts.length; i < l; i++) {\n contexts[i].$forceUpdate();\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender();\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender();\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (typeof res.then === 'function') {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isDef(res.component) && typeof res.component.then === 'function') {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n setTimeout(function () {\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender();\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n setTimeout(function () {\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn, once) {\n if (once) {\n target.$once(event, fn);\n } else {\n target.$on(event, fn);\n }\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$off(event[i], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n if (fn) {\n // specific handler\n var cb;\n var i$1 = cbs.length;\n while (i$1--) {\n cb = cbs[i$1];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i$1, 1);\n break\n }\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n for (var i = 0, l = cbs.length; i < l; i++) {\n try {\n cbs[i].apply(vm, args);\n } catch (e) {\n handleError(e, vm, (\"event handler for \\\"\" + event + \"\\\"\"));\n }\n }\n }\n return vm\n };\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n var slots = {};\n if (!children) {\n return slots\n }\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res\n) {\n res = res || {};\n for (var i = 0; i < fns.length; i++) {\n if (Array.isArray(fns[i])) {\n resolveScopedSlots(fns[i], res);\n } else {\n res[fns[i].key] = fns[i].fn;\n }\n }\n return res\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n if (vm._isMounted) {\n callHook(vm, 'beforeUpdate');\n }\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(\n vm.$el, vnode, hydrating, false /* removeOnly */,\n vm.$options._parentElm,\n vm.$options._refElm\n );\n // no need for the ref nodes after initial patch\n // this prevents keeping a detached DOM tree in memory (#5851)\n vm.$options._parentElm = vm.$options._refElm = null;\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n activeInstance = prevActiveInstance;\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, null, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren\n var hasChildren = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n parentVnode.data.scopedSlots || // has new scoped slots\n vm.$scopedSlots !== emptyObject // has old scoped slots\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (hasChildren) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n try {\n handlers[i].call(vm);\n } catch (e) {\n handleError(e, vm, (hook + \" hook\"));\n }\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\nvar uid$1 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$1; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = function () {};\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n var dep = this$1.deps[i];\n if (!this$1.newDepIds.has(dep.id)) {\n dep.removeSub(this$1);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n var this$1 = this;\n\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].removeSub(this$1);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive(props, key, value, function () {\n if (vm.$parent && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : userDef;\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : userDef.get\n : noop;\n sharedPropertyDefinition.set = userDef.set\n ? userDef.set\n : noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (methods[key] == null) {\n warn(\n \"Method \\\"\" + key + \"\\\" has an undefined value in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = methods[key] == null ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function (newData) {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n cb.call(vm, watcher.value);\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject).filter(function (key) {\n /* istanbul ignore next */\n return Object.getOwnPropertyDescriptor(inject, key).enumerable\n })\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n if (isDef(ret)) {\n (ret)._isVList = true;\n }\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n var slotNodes = this.$slots[name];\n // warn duplicate slot usage\n if (slotNodes) {\n if (process.env.NODE_ENV !== 'production' && slotNodes._rendered) {\n warn(\n \"Duplicate presence of slot \\\"\" + name + \"\\\" found in the same render tree \" +\n \"- this will likely cause render errors.\",\n this\n );\n }\n slotNodes._rendered = true;\n }\n nodes = slotNodes || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n if (!(key in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () { return resolveSlots(children, parent); };\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = data.scopedSlots || emptyObject;\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n\n\n\n// Register the component hook to weex native render engine.\n// The hook will be triggered by native, not javascript.\n\n\n// Updates the state of the component to weex native render engine.\n\n/* */\n\n// https://github.com/Hanks10100/weex-native-directive/tree/master/component\n\n// listening on native callback\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (\n vnode,\n hydrating,\n parentElm,\n refElm\n ) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance,\n parentElm,\n refElm\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor, context);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n // Weex specific: invoke recycle-list optimized @render function for\n // extracting cell-slot template.\n // https://github.com/Hanks10100/weex-native-directive/tree/master/component\n /* istanbul ignore if */\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent, // activeInstance in lifecycle state\n parentElm,\n refElm\n) {\n var options = {\n _isComponent: true,\n parent: parent,\n _parentVnode: vnode,\n _parentElm: parentElm || null,\n _refElm: refElm || null\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n hooks[key] = componentVNodeHooks[key];\n }\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input';(data.props || (data.props = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n if (isDef(on[event])) {\n on[event] = [data.model.callback].concat(on[event]);\n } else {\n on[event] = data.model.callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if (isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n // reset _rendered flag on slots for duplicate slot check\n if (process.env.NODE_ENV !== 'production') {\n for (var key in vm.$slots) {\n // $flow-disable-line\n vm.$slots[key]._rendered = false;\n }\n }\n\n if (_parentVnode) {\n vm.$scopedSlots = _parentVnode.data.scopedSlots || emptyObject;\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n if (vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n opts._parentElm = options._parentElm;\n opts._refElm = options._refElm;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var extended = Ctor.extendOptions;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = dedupe(latest[key], extended[key], sealed[key]);\n }\n }\n return modified\n}\n\nfunction dedupe (latest, extended, sealed) {\n // compare latest and sealed to ensure lifecycle hooks won't be duplicated\n // between merges\n if (Array.isArray(latest)) {\n var res = [];\n sealed = Array.isArray(sealed) ? sealed : [sealed];\n extended = Array.isArray(extended) ? extended : [extended];\n for (var i = 0; i < latest.length; i++) {\n // push original options and not sealed options to exclude duplicated options\n if (extended.indexOf(latest[i]) >= 0 || sealed.indexOf(latest[i]) < 0) {\n res.push(latest[i]);\n }\n }\n return res\n } else {\n return latest\n }\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n var this$1 = this;\n\n for (var key in this$1.cache) {\n pruneCacheEntry(this$1.cache, key, this$1.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n}\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n}\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.5.16';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isPreTag = function (tag) { return tag === 'pre'; };\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\n\nvar nodeOps = Object.freeze({\n\tcreateElement: createElement$1,\n\tcreateElementNS: createElementNS,\n\tcreateTextNode: createTextNode,\n\tcreateComment: createComment,\n\tinsertBefore: insertBefore,\n\tremoveChild: removeChild,\n\tappendChild: appendChild,\n\tparentNode: parentNode,\n\tnextSibling: nextSibling,\n\ttagName: tagName,\n\tsetTextContent: setTextContent,\n\tsetStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n}\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove () {\n if (--remove.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove.listeners = listeners;\n return remove\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */, parentElm, refElm);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (ref$$1.parentNode === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (parentElm, vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(parentElm, oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (oldVnode, vnode, insertedVnodeQueue, removeOnly) {\n if (oldVnode === vnode) {\n return\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(elm, oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly, parentElm, refElm) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue, parentElm, refElm);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm$1 = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm$1,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm$1)) {\n removeVnodes(parentElm$1, [oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n}\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n]\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true');\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n}\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n}\n\n/* */\n\nvar validDivisionCharRE = /[\\w).+\\-_$\\]]/;\n\nfunction parseFilters (exp) {\n var inSingle = false;\n var inDouble = false;\n var inTemplateString = false;\n var inRegex = false;\n var curly = 0;\n var square = 0;\n var paren = 0;\n var lastFilterIndex = 0;\n var c, prev, i, expression, filters;\n\n for (i = 0; i < exp.length; i++) {\n prev = c;\n c = exp.charCodeAt(i);\n if (inSingle) {\n if (c === 0x27 && prev !== 0x5C) { inSingle = false; }\n } else if (inDouble) {\n if (c === 0x22 && prev !== 0x5C) { inDouble = false; }\n } else if (inTemplateString) {\n if (c === 0x60 && prev !== 0x5C) { inTemplateString = false; }\n } else if (inRegex) {\n if (c === 0x2f && prev !== 0x5C) { inRegex = false; }\n } else if (\n c === 0x7C && // pipe\n exp.charCodeAt(i + 1) !== 0x7C &&\n exp.charCodeAt(i - 1) !== 0x7C &&\n !curly && !square && !paren\n ) {\n if (expression === undefined) {\n // first filter, end of expression\n lastFilterIndex = i + 1;\n expression = exp.slice(0, i).trim();\n } else {\n pushFilter();\n }\n } else {\n switch (c) {\n case 0x22: inDouble = true; break // \"\n case 0x27: inSingle = true; break // '\n case 0x60: inTemplateString = true; break // `\n case 0x28: paren++; break // (\n case 0x29: paren--; break // )\n case 0x5B: square++; break // [\n case 0x5D: square--; break // ]\n case 0x7B: curly++; break // {\n case 0x7D: curly--; break // }\n }\n if (c === 0x2f) { // /\n var j = i - 1;\n var p = (void 0);\n // find first non-whitespace prev char\n for (; j >= 0; j--) {\n p = exp.charAt(j);\n if (p !== ' ') { break }\n }\n if (!p || !validDivisionCharRE.test(p)) {\n inRegex = true;\n }\n }\n }\n }\n\n if (expression === undefined) {\n expression = exp.slice(0, i).trim();\n } else if (lastFilterIndex !== 0) {\n pushFilter();\n }\n\n function pushFilter () {\n (filters || (filters = [])).push(exp.slice(lastFilterIndex, i).trim());\n lastFilterIndex = i + 1;\n }\n\n if (filters) {\n for (i = 0; i < filters.length; i++) {\n expression = wrapFilter(expression, filters[i]);\n }\n }\n\n return expression\n}\n\nfunction wrapFilter (exp, filter) {\n var i = filter.indexOf('(');\n if (i < 0) {\n // _f: resolveFilter\n return (\"_f(\\\"\" + filter + \"\\\")(\" + exp + \")\")\n } else {\n var name = filter.slice(0, i);\n var args = filter.slice(i + 1);\n return (\"_f(\\\"\" + name + \"\\\")(\" + exp + (args !== ')' ? ',' + args : args))\n }\n}\n\n/* */\n\nfunction baseWarn (msg) {\n console.error((\"[Vue compiler]: \" + msg));\n}\n\nfunction pluckModuleFunction (\n modules,\n key\n) {\n return modules\n ? modules.map(function (m) { return m[key]; }).filter(function (_) { return _; })\n : []\n}\n\nfunction addProp (el, name, value) {\n (el.props || (el.props = [])).push({ name: name, value: value });\n el.plain = false;\n}\n\nfunction addAttr (el, name, value) {\n (el.attrs || (el.attrs = [])).push({ name: name, value: value });\n el.plain = false;\n}\n\n// add a raw attr (use this in preTransforms)\nfunction addRawAttr (el, name, value) {\n el.attrsMap[name] = value;\n el.attrsList.push({ name: name, value: value });\n}\n\nfunction addDirective (\n el,\n name,\n rawName,\n value,\n arg,\n modifiers\n) {\n (el.directives || (el.directives = [])).push({ name: name, rawName: rawName, value: value, arg: arg, modifiers: modifiers });\n el.plain = false;\n}\n\nfunction addHandler (\n el,\n name,\n value,\n modifiers,\n important,\n warn\n) {\n modifiers = modifiers || emptyObject;\n // warn prevent and passive modifier\n /* istanbul ignore if */\n if (\n process.env.NODE_ENV !== 'production' && warn &&\n modifiers.prevent && modifiers.passive\n ) {\n warn(\n 'passive and prevent can\\'t be used together. ' +\n 'Passive handler can\\'t prevent default event.'\n );\n }\n\n // check capture modifier\n if (modifiers.capture) {\n delete modifiers.capture;\n name = '!' + name; // mark the event as captured\n }\n if (modifiers.once) {\n delete modifiers.once;\n name = '~' + name; // mark the event as once\n }\n /* istanbul ignore if */\n if (modifiers.passive) {\n delete modifiers.passive;\n name = '&' + name; // mark the event as passive\n }\n\n // normalize click.right and click.middle since they don't actually fire\n // this is technically browser-specific, but at least for now browsers are\n // the only target envs that have right/middle clicks.\n if (name === 'click') {\n if (modifiers.right) {\n name = 'contextmenu';\n delete modifiers.right;\n } else if (modifiers.middle) {\n name = 'mouseup';\n }\n }\n\n var events;\n if (modifiers.native) {\n delete modifiers.native;\n events = el.nativeEvents || (el.nativeEvents = {});\n } else {\n events = el.events || (el.events = {});\n }\n\n var newHandler = {\n value: value.trim()\n };\n if (modifiers !== emptyObject) {\n newHandler.modifiers = modifiers;\n }\n\n var handlers = events[name];\n /* istanbul ignore if */\n if (Array.isArray(handlers)) {\n important ? handlers.unshift(newHandler) : handlers.push(newHandler);\n } else if (handlers) {\n events[name] = important ? [newHandler, handlers] : [handlers, newHandler];\n } else {\n events[name] = newHandler;\n }\n\n el.plain = false;\n}\n\nfunction getBindingAttr (\n el,\n name,\n getStatic\n) {\n var dynamicValue =\n getAndRemoveAttr(el, ':' + name) ||\n getAndRemoveAttr(el, 'v-bind:' + name);\n if (dynamicValue != null) {\n return parseFilters(dynamicValue)\n } else if (getStatic !== false) {\n var staticValue = getAndRemoveAttr(el, name);\n if (staticValue != null) {\n return JSON.stringify(staticValue)\n }\n }\n}\n\n// note: this only removes the attr from the Array (attrsList) so that it\n// doesn't get processed by processAttrs.\n// By default it does NOT remove it from the map (attrsMap) because the map is\n// needed during codegen.\nfunction getAndRemoveAttr (\n el,\n name,\n removeFromMap\n) {\n var val;\n if ((val = el.attrsMap[name]) != null) {\n var list = el.attrsList;\n for (var i = 0, l = list.length; i < l; i++) {\n if (list[i].name === name) {\n list.splice(i, 1);\n break\n }\n }\n }\n if (removeFromMap) {\n delete el.attrsMap[name];\n }\n return val\n}\n\n/* */\n\n/**\n * Cross-platform code generation for component v-model\n */\nfunction genComponentModel (\n el,\n value,\n modifiers\n) {\n var ref = modifiers || {};\n var number = ref.number;\n var trim = ref.trim;\n\n var baseValueExpression = '$$v';\n var valueExpression = baseValueExpression;\n if (trim) {\n valueExpression =\n \"(typeof \" + baseValueExpression + \" === 'string'\" +\n \"? \" + baseValueExpression + \".trim()\" +\n \": \" + baseValueExpression + \")\";\n }\n if (number) {\n valueExpression = \"_n(\" + valueExpression + \")\";\n }\n var assignment = genAssignmentCode(value, valueExpression);\n\n el.model = {\n value: (\"(\" + value + \")\"),\n expression: (\"\\\"\" + value + \"\\\"\"),\n callback: (\"function (\" + baseValueExpression + \") {\" + assignment + \"}\")\n };\n}\n\n/**\n * Cross-platform codegen helper for generating v-model value assignment code.\n */\nfunction genAssignmentCode (\n value,\n assignment\n) {\n var res = parseModel(value);\n if (res.key === null) {\n return (value + \"=\" + assignment)\n } else {\n return (\"$set(\" + (res.exp) + \", \" + (res.key) + \", \" + assignment + \")\")\n }\n}\n\n/**\n * Parse a v-model expression into a base path and a final key segment.\n * Handles both dot-path and possible square brackets.\n *\n * Possible cases:\n *\n * - test\n * - test[key]\n * - test[test1[key]]\n * - test[\"a\"][key]\n * - xxx.test[a[a].test1[key]]\n * - test.xxx.a[\"asa\"][test1[key]]\n *\n */\n\nvar len;\nvar str;\nvar chr;\nvar index$1;\nvar expressionPos;\nvar expressionEndPos;\n\n\n\nfunction parseModel (val) {\n // Fix https://github.com/vuejs/vue/pull/7730\n // allow v-model=\"obj.val \" (trailing whitespace)\n val = val.trim();\n len = val.length;\n\n if (val.indexOf('[') < 0 || val.lastIndexOf(']') < len - 1) {\n index$1 = val.lastIndexOf('.');\n if (index$1 > -1) {\n return {\n exp: val.slice(0, index$1),\n key: '\"' + val.slice(index$1 + 1) + '\"'\n }\n } else {\n return {\n exp: val,\n key: null\n }\n }\n }\n\n str = val;\n index$1 = expressionPos = expressionEndPos = 0;\n\n while (!eof()) {\n chr = next();\n /* istanbul ignore if */\n if (isStringStart(chr)) {\n parseString(chr);\n } else if (chr === 0x5B) {\n parseBracket(chr);\n }\n }\n\n return {\n exp: val.slice(0, expressionPos),\n key: val.slice(expressionPos + 1, expressionEndPos)\n }\n}\n\nfunction next () {\n return str.charCodeAt(++index$1)\n}\n\nfunction eof () {\n return index$1 >= len\n}\n\nfunction isStringStart (chr) {\n return chr === 0x22 || chr === 0x27\n}\n\nfunction parseBracket (chr) {\n var inBracket = 1;\n expressionPos = index$1;\n while (!eof()) {\n chr = next();\n if (isStringStart(chr)) {\n parseString(chr);\n continue\n }\n if (chr === 0x5B) { inBracket++; }\n if (chr === 0x5D) { inBracket--; }\n if (inBracket === 0) {\n expressionEndPos = index$1;\n break\n }\n }\n}\n\nfunction parseString (chr) {\n var stringQuote = chr;\n while (!eof()) {\n chr = next();\n if (chr === stringQuote) {\n break\n }\n }\n}\n\n/* */\n\nvar warn$1;\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\nfunction model (\n el,\n dir,\n _warn\n) {\n warn$1 = _warn;\n var value = dir.value;\n var modifiers = dir.modifiers;\n var tag = el.tag;\n var type = el.attrsMap.type;\n\n if (process.env.NODE_ENV !== 'production') {\n // inputs with type=\"file\" are read only and setting the input's\n // value will throw an error.\n if (tag === 'input' && type === 'file') {\n warn$1(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\" type=\\\"file\\\">:\\n\" +\n \"File inputs are read only. Use a v-on:change listener instead.\"\n );\n }\n }\n\n if (el.component) {\n genComponentModel(el, value, modifiers);\n // component v-model doesn't need extra runtime\n return false\n } else if (tag === 'select') {\n genSelect(el, value, modifiers);\n } else if (tag === 'input' && type === 'checkbox') {\n genCheckboxModel(el, value, modifiers);\n } else if (tag === 'input' && type === 'radio') {\n genRadioModel(el, value, modifiers);\n } else if (tag === 'input' || tag === 'textarea') {\n genDefaultModel(el, value, modifiers);\n } else if (!config.isReservedTag(tag)) {\n genComponentModel(el, value, modifiers);\n // component v-model doesn't need extra runtime\n return false\n } else if (process.env.NODE_ENV !== 'production') {\n warn$1(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\">: \" +\n \"v-model is not supported on this element type. \" +\n 'If you are working with contenteditable, it\\'s recommended to ' +\n 'wrap a library dedicated for that purpose inside a custom component.'\n );\n }\n\n // ensure runtime directive metadata\n return true\n}\n\nfunction genCheckboxModel (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var valueBinding = getBindingAttr(el, 'value') || 'null';\n var trueValueBinding = getBindingAttr(el, 'true-value') || 'true';\n var falseValueBinding = getBindingAttr(el, 'false-value') || 'false';\n addProp(el, 'checked',\n \"Array.isArray(\" + value + \")\" +\n \"?_i(\" + value + \",\" + valueBinding + \")>-1\" + (\n trueValueBinding === 'true'\n ? (\":(\" + value + \")\")\n : (\":_q(\" + value + \",\" + trueValueBinding + \")\")\n )\n );\n addHandler(el, 'change',\n \"var $$a=\" + value + \",\" +\n '$$el=$event.target,' +\n \"$$c=$$el.checked?(\" + trueValueBinding + \"):(\" + falseValueBinding + \");\" +\n 'if(Array.isArray($$a)){' +\n \"var $$v=\" + (number ? '_n(' + valueBinding + ')' : valueBinding) + \",\" +\n '$$i=_i($$a,$$v);' +\n \"if($$el.checked){$$i<0&&(\" + (genAssignmentCode(value, '$$a.concat([$$v])')) + \")}\" +\n \"else{$$i>-1&&(\" + (genAssignmentCode(value, '$$a.slice(0,$$i).concat($$a.slice($$i+1))')) + \")}\" +\n \"}else{\" + (genAssignmentCode(value, '$$c')) + \"}\",\n null, true\n );\n}\n\nfunction genRadioModel (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var valueBinding = getBindingAttr(el, 'value') || 'null';\n valueBinding = number ? (\"_n(\" + valueBinding + \")\") : valueBinding;\n addProp(el, 'checked', (\"_q(\" + value + \",\" + valueBinding + \")\"));\n addHandler(el, 'change', genAssignmentCode(value, valueBinding), null, true);\n}\n\nfunction genSelect (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var selectedVal = \"Array.prototype.filter\" +\n \".call($event.target.options,function(o){return o.selected})\" +\n \".map(function(o){var val = \\\"_value\\\" in o ? o._value : o.value;\" +\n \"return \" + (number ? '_n(val)' : 'val') + \"})\";\n\n var assignment = '$event.target.multiple ? $$selectedVal : $$selectedVal[0]';\n var code = \"var $$selectedVal = \" + selectedVal + \";\";\n code = code + \" \" + (genAssignmentCode(value, assignment));\n addHandler(el, 'change', code, null, true);\n}\n\nfunction genDefaultModel (\n el,\n value,\n modifiers\n) {\n var type = el.attrsMap.type;\n\n // warn if v-bind:value conflicts with v-model\n // except for inputs with v-bind:type\n if (process.env.NODE_ENV !== 'production') {\n var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];\n var typeBinding = el.attrsMap['v-bind:type'] || el.attrsMap[':type'];\n if (value$1 && !typeBinding) {\n var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';\n warn$1(\n binding + \"=\\\"\" + value$1 + \"\\\" conflicts with v-model on the same element \" +\n 'because the latter already expands to a value binding internally'\n );\n }\n }\n\n var ref = modifiers || {};\n var lazy = ref.lazy;\n var number = ref.number;\n var trim = ref.trim;\n var needCompositionGuard = !lazy && type !== 'range';\n var event = lazy\n ? 'change'\n : type === 'range'\n ? RANGE_TOKEN\n : 'input';\n\n var valueExpression = '$event.target.value';\n if (trim) {\n valueExpression = \"$event.target.value.trim()\";\n }\n if (number) {\n valueExpression = \"_n(\" + valueExpression + \")\";\n }\n\n var code = genAssignmentCode(value, valueExpression);\n if (needCompositionGuard) {\n code = \"if($event.target.composing)return;\" + code;\n }\n\n addProp(el, 'value', (\"(\" + value + \")\"));\n addHandler(el, event, code, null, true);\n if (trim || number) {\n addHandler(el, 'blur', '$forceUpdate()');\n }\n}\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler (handler, event, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\nfunction add$1 (\n event,\n handler,\n once$$1,\n capture,\n passive\n) {\n handler = withMacroTask(handler);\n if (once$$1) { handler = createOnceHandler(handler, event, capture); }\n target$1.addEventListener(\n event,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n event,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n event,\n handler._withTask || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n}\n\n/* */\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (isUndef(props[key])) {\n elm[key] = '';\n }\n }\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else {\n elm[key] = cur;\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.lazy) {\n // inputs with lazy should only be updated when not in focus\n return false\n }\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n}\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n}\n\n/* */\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def) {\n if (!def) {\n return\n }\n /* istanbul ignore else */\n if (typeof def === 'object') {\n var res = {};\n if (def.css !== false) {\n extend(res, autoCssTransition(def.name || 'v'));\n }\n extend(res, def);\n return res\n } else if (typeof def === 'string') {\n return autoCssTransition(def)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n var transitionDelays = styles[transitionProp + 'Delay'].split(', ');\n var transitionDurations = styles[transitionProp + 'Duration'].split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = styles[animationProp + 'Delay'].split(', ');\n var animationDurations = styles[animationProp + 'Duration'].split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\nfunction toMs (s) {\n return Number(s.slice(0, -1)) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n transitionNode = transitionNode.parent;\n context = transitionNode.context;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {}\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n]\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n}\n\nvar platformDirectives = {\n model: directive,\n show: show\n}\n\n/* */\n\n// Provides transition support for a single element/component.\n// supports transition mode (out-in / in-out)\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(function (c) { return c.tag || isAsyncPlaceholder(c); });\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(function (d) { return d.name === 'show'; })) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n}\n\n/* */\n\n// Provides transition support for list items.\n// supports move transitions using the FLIP technique.\n\n// Because the vdom's children update algorithm is \"unstable\" - i.e.\n// it doesn't guarantee the relative positioning of removed elements,\n// we force transition-group to update its children into two passes:\n// in the first pass, we remove all nodes that need to be removed,\n// triggering their leaving transition; in the second pass, we insert/move\n// into the final desired state. This way in the second pass removed\n// nodes will remain where they should be.\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n beforeUpdate: function beforeUpdate () {\n // force removing pass\n this.__patch__(\n this._vnode,\n this.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this._vnode = this.kept;\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n}\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n}\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n isChrome\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nvar defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g;\nvar regexEscapeRE = /[-.*+?^${}()|[\\]\\/\\\\]/g;\n\nvar buildRegex = cached(function (delimiters) {\n var open = delimiters[0].replace(regexEscapeRE, '\\\\$&');\n var close = delimiters[1].replace(regexEscapeRE, '\\\\$&');\n return new RegExp(open + '((?:.|\\\\n)+?)' + close, 'g')\n});\n\n\n\nfunction parseText (\n text,\n delimiters\n) {\n var tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE;\n if (!tagRE.test(text)) {\n return\n }\n var tokens = [];\n var rawTokens = [];\n var lastIndex = tagRE.lastIndex = 0;\n var match, index, tokenValue;\n while ((match = tagRE.exec(text))) {\n index = match.index;\n // push text token\n if (index > lastIndex) {\n rawTokens.push(tokenValue = text.slice(lastIndex, index));\n tokens.push(JSON.stringify(tokenValue));\n }\n // tag token\n var exp = parseFilters(match[1].trim());\n tokens.push((\"_s(\" + exp + \")\"));\n rawTokens.push({ '@binding': exp });\n lastIndex = index + match[0].length;\n }\n if (lastIndex < text.length) {\n rawTokens.push(tokenValue = text.slice(lastIndex));\n tokens.push(JSON.stringify(tokenValue));\n }\n return {\n expression: tokens.join('+'),\n tokens: rawTokens\n }\n}\n\n/* */\n\nfunction transformNode (el, options) {\n var warn = options.warn || baseWarn;\n var staticClass = getAndRemoveAttr(el, 'class');\n if (process.env.NODE_ENV !== 'production' && staticClass) {\n var res = parseText(staticClass, options.delimiters);\n if (res) {\n warn(\n \"class=\\\"\" + staticClass + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div class=\"{{ val }}\">, use <div :class=\"val\">.'\n );\n }\n }\n if (staticClass) {\n el.staticClass = JSON.stringify(staticClass);\n }\n var classBinding = getBindingAttr(el, 'class', false /* getStatic */);\n if (classBinding) {\n el.classBinding = classBinding;\n }\n}\n\nfunction genData (el) {\n var data = '';\n if (el.staticClass) {\n data += \"staticClass:\" + (el.staticClass) + \",\";\n }\n if (el.classBinding) {\n data += \"class:\" + (el.classBinding) + \",\";\n }\n return data\n}\n\nvar klass$1 = {\n staticKeys: ['staticClass'],\n transformNode: transformNode,\n genData: genData\n}\n\n/* */\n\nfunction transformNode$1 (el, options) {\n var warn = options.warn || baseWarn;\n var staticStyle = getAndRemoveAttr(el, 'style');\n if (staticStyle) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n var res = parseText(staticStyle, options.delimiters);\n if (res) {\n warn(\n \"style=\\\"\" + staticStyle + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div style=\"{{ val }}\">, use <div :style=\"val\">.'\n );\n }\n }\n el.staticStyle = JSON.stringify(parseStyleText(staticStyle));\n }\n\n var styleBinding = getBindingAttr(el, 'style', false /* getStatic */);\n if (styleBinding) {\n el.styleBinding = styleBinding;\n }\n}\n\nfunction genData$1 (el) {\n var data = '';\n if (el.staticStyle) {\n data += \"staticStyle:\" + (el.staticStyle) + \",\";\n }\n if (el.styleBinding) {\n data += \"style:(\" + (el.styleBinding) + \"),\";\n }\n return data\n}\n\nvar style$1 = {\n staticKeys: ['staticStyle'],\n transformNode: transformNode$1,\n genData: genData$1\n}\n\n/* */\n\nvar decoder;\n\nvar he = {\n decode: function decode (html) {\n decoder = decoder || document.createElement('div');\n decoder.innerHTML = html;\n return decoder.textContent\n }\n}\n\n/* */\n\nvar isUnaryTag = makeMap(\n 'area,base,br,col,embed,frame,hr,img,input,isindex,keygen,' +\n 'link,meta,param,source,track,wbr'\n);\n\n// Elements that you can, intentionally, leave open\n// (and which close themselves)\nvar canBeLeftOpenTag = makeMap(\n 'colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source'\n);\n\n// HTML5 tags https://html.spec.whatwg.org/multipage/indices.html#elements-3\n// Phrasing Content https://html.spec.whatwg.org/multipage/dom.html#phrasing-content\nvar isNonPhrasingTag = makeMap(\n 'address,article,aside,base,blockquote,body,caption,col,colgroup,dd,' +\n 'details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,' +\n 'h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,' +\n 'optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,' +\n 'title,tr,track'\n);\n\n/**\n * Not type-checking this file because it's mostly vendor code.\n */\n\n/*!\n * HTML Parser By John Resig (ejohn.org)\n * Modified by Juriy \"kangax\" Zaytsev\n * Original code by Erik Arvidsson, Mozilla Public License\n * http://erik.eae.net/simplehtmlparser/simplehtmlparser.js\n */\n\n// Regular Expressions for parsing tags and attributes\nvar attribute = /^\\s*([^\\s\"'<>\\/=]+)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/;\n// could use https://www.w3.org/TR/1999/REC-xml-names-19990114/#NT-QName\n// but for Vue templates we can enforce a simple charset\nvar ncname = '[a-zA-Z_][\\\\w\\\\-\\\\.]*';\nvar qnameCapture = \"((?:\" + ncname + \"\\\\:)?\" + ncname + \")\";\nvar startTagOpen = new RegExp((\"^<\" + qnameCapture));\nvar startTagClose = /^\\s*(\\/?)>/;\nvar endTag = new RegExp((\"^<\\\\/\" + qnameCapture + \"[^>]*>\"));\nvar doctype = /^<!DOCTYPE [^>]+>/i;\n// #7298: escape - to avoid being pased as HTML comment when inlined in page\nvar comment = /^<!\\--/;\nvar conditionalComment = /^<!\\[/;\n\nvar IS_REGEX_CAPTURING_BROKEN = false;\n'x'.replace(/x(.)?/g, function (m, g) {\n IS_REGEX_CAPTURING_BROKEN = g === '';\n});\n\n// Special Elements (can contain anything)\nvar isPlainTextElement = makeMap('script,style,textarea', true);\nvar reCache = {};\n\nvar decodingMap = {\n '<': '<',\n '>': '>',\n '"': '\"',\n '&': '&',\n ' ': '\\n',\n '	': '\\t'\n};\nvar encodedAttr = /&(?:lt|gt|quot|amp);/g;\nvar encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10|#9);/g;\n\n// #5992\nvar isIgnoreNewlineTag = makeMap('pre,textarea', true);\nvar shouldIgnoreFirstNewline = function (tag, html) { return tag && isIgnoreNewlineTag(tag) && html[0] === '\\n'; };\n\nfunction decodeAttr (value, shouldDecodeNewlines) {\n var re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr;\n return value.replace(re, function (match) { return decodingMap[match]; })\n}\n\nfunction parseHTML (html, options) {\n var stack = [];\n var expectHTML = options.expectHTML;\n var isUnaryTag$$1 = options.isUnaryTag || no;\n var canBeLeftOpenTag$$1 = options.canBeLeftOpenTag || no;\n var index = 0;\n var last, lastTag;\n while (html) {\n last = html;\n // Make sure we're not in a plaintext content element like script/style\n if (!lastTag || !isPlainTextElement(lastTag)) {\n var textEnd = html.indexOf('<');\n if (textEnd === 0) {\n // Comment:\n if (comment.test(html)) {\n var commentEnd = html.indexOf('-->');\n\n if (commentEnd >= 0) {\n if (options.shouldKeepComment) {\n options.comment(html.substring(4, commentEnd));\n }\n advance(commentEnd + 3);\n continue\n }\n }\n\n // http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment\n if (conditionalComment.test(html)) {\n var conditionalEnd = html.indexOf(']>');\n\n if (conditionalEnd >= 0) {\n advance(conditionalEnd + 2);\n continue\n }\n }\n\n // Doctype:\n var doctypeMatch = html.match(doctype);\n if (doctypeMatch) {\n advance(doctypeMatch[0].length);\n continue\n }\n\n // End tag:\n var endTagMatch = html.match(endTag);\n if (endTagMatch) {\n var curIndex = index;\n advance(endTagMatch[0].length);\n parseEndTag(endTagMatch[1], curIndex, index);\n continue\n }\n\n // Start tag:\n var startTagMatch = parseStartTag();\n if (startTagMatch) {\n handleStartTag(startTagMatch);\n if (shouldIgnoreFirstNewline(lastTag, html)) {\n advance(1);\n }\n continue\n }\n }\n\n var text = (void 0), rest = (void 0), next = (void 0);\n if (textEnd >= 0) {\n rest = html.slice(textEnd);\n while (\n !endTag.test(rest) &&\n !startTagOpen.test(rest) &&\n !comment.test(rest) &&\n !conditionalComment.test(rest)\n ) {\n // < in plain text, be forgiving and treat it as text\n next = rest.indexOf('<', 1);\n if (next < 0) { break }\n textEnd += next;\n rest = html.slice(textEnd);\n }\n text = html.substring(0, textEnd);\n advance(textEnd);\n }\n\n if (textEnd < 0) {\n text = html;\n html = '';\n }\n\n if (options.chars && text) {\n options.chars(text);\n }\n } else {\n var endTagLength = 0;\n var stackedTag = lastTag.toLowerCase();\n var reStackedTag = reCache[stackedTag] || (reCache[stackedTag] = new RegExp('([\\\\s\\\\S]*?)(</' + stackedTag + '[^>]*>)', 'i'));\n var rest$1 = html.replace(reStackedTag, function (all, text, endTag) {\n endTagLength = endTag.length;\n if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') {\n text = text\n .replace(/<!\\--([\\s\\S]*?)-->/g, '$1') // #7298\n .replace(/<!\\[CDATA\\[([\\s\\S]*?)]]>/g, '$1');\n }\n if (shouldIgnoreFirstNewline(stackedTag, text)) {\n text = text.slice(1);\n }\n if (options.chars) {\n options.chars(text);\n }\n return ''\n });\n index += html.length - rest$1.length;\n html = rest$1;\n parseEndTag(stackedTag, index - endTagLength, index);\n }\n\n if (html === last) {\n options.chars && options.chars(html);\n if (process.env.NODE_ENV !== 'production' && !stack.length && options.warn) {\n options.warn((\"Mal-formatted tag at end of template: \\\"\" + html + \"\\\"\"));\n }\n break\n }\n }\n\n // Clean up any remaining tags\n parseEndTag();\n\n function advance (n) {\n index += n;\n html = html.substring(n);\n }\n\n function parseStartTag () {\n var start = html.match(startTagOpen);\n if (start) {\n var match = {\n tagName: start[1],\n attrs: [],\n start: index\n };\n advance(start[0].length);\n var end, attr;\n while (!(end = html.match(startTagClose)) && (attr = html.match(attribute))) {\n advance(attr[0].length);\n match.attrs.push(attr);\n }\n if (end) {\n match.unarySlash = end[1];\n advance(end[0].length);\n match.end = index;\n return match\n }\n }\n }\n\n function handleStartTag (match) {\n var tagName = match.tagName;\n var unarySlash = match.unarySlash;\n\n if (expectHTML) {\n if (lastTag === 'p' && isNonPhrasingTag(tagName)) {\n parseEndTag(lastTag);\n }\n if (canBeLeftOpenTag$$1(tagName) && lastTag === tagName) {\n parseEndTag(tagName);\n }\n }\n\n var unary = isUnaryTag$$1(tagName) || !!unarySlash;\n\n var l = match.attrs.length;\n var attrs = new Array(l);\n for (var i = 0; i < l; i++) {\n var args = match.attrs[i];\n // hackish work around FF bug https://bugzilla.mozilla.org/show_bug.cgi?id=369778\n if (IS_REGEX_CAPTURING_BROKEN && args[0].indexOf('\"\"') === -1) {\n if (args[3] === '') { delete args[3]; }\n if (args[4] === '') { delete args[4]; }\n if (args[5] === '') { delete args[5]; }\n }\n var value = args[3] || args[4] || args[5] || '';\n var shouldDecodeNewlines = tagName === 'a' && args[1] === 'href'\n ? options.shouldDecodeNewlinesForHref\n : options.shouldDecodeNewlines;\n attrs[i] = {\n name: args[1],\n value: decodeAttr(value, shouldDecodeNewlines)\n };\n }\n\n if (!unary) {\n stack.push({ tag: tagName, lowerCasedTag: tagName.toLowerCase(), attrs: attrs });\n lastTag = tagName;\n }\n\n if (options.start) {\n options.start(tagName, attrs, unary, match.start, match.end);\n }\n }\n\n function parseEndTag (tagName, start, end) {\n var pos, lowerCasedTagName;\n if (start == null) { start = index; }\n if (end == null) { end = index; }\n\n if (tagName) {\n lowerCasedTagName = tagName.toLowerCase();\n }\n\n // Find the closest opened tag of the same type\n if (tagName) {\n for (pos = stack.length - 1; pos >= 0; pos--) {\n if (stack[pos].lowerCasedTag === lowerCasedTagName) {\n break\n }\n }\n } else {\n // If no tag name is provided, clean shop\n pos = 0;\n }\n\n if (pos >= 0) {\n // Close all the open elements, up the stack\n for (var i = stack.length - 1; i >= pos; i--) {\n if (process.env.NODE_ENV !== 'production' &&\n (i > pos || !tagName) &&\n options.warn\n ) {\n options.warn(\n (\"tag <\" + (stack[i].tag) + \"> has no matching end tag.\")\n );\n }\n if (options.end) {\n options.end(stack[i].tag, start, end);\n }\n }\n\n // Remove the open elements from the stack\n stack.length = pos;\n lastTag = pos && stack[pos - 1].tag;\n } else if (lowerCasedTagName === 'br') {\n if (options.start) {\n options.start(tagName, [], true, start, end);\n }\n } else if (lowerCasedTagName === 'p') {\n if (options.start) {\n options.start(tagName, [], false, start, end);\n }\n if (options.end) {\n options.end(tagName, start, end);\n }\n }\n }\n}\n\n/* */\n\nvar onRE = /^@|^v-on:/;\nvar dirRE = /^v-|^@|^:/;\nvar forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/;\nvar forIteratorRE = /,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/;\nvar stripParensRE = /^\\(|\\)$/g;\n\nvar argRE = /:(.*)$/;\nvar bindRE = /^:|^v-bind:/;\nvar modifierRE = /\\.[^.]+/g;\n\nvar decodeHTMLCached = cached(he.decode);\n\n// configurable state\nvar warn$2;\nvar delimiters;\nvar transforms;\nvar preTransforms;\nvar postTransforms;\nvar platformIsPreTag;\nvar platformMustUseProp;\nvar platformGetTagNamespace;\n\n\n\nfunction createASTElement (\n tag,\n attrs,\n parent\n) {\n return {\n type: 1,\n tag: tag,\n attrsList: attrs,\n attrsMap: makeAttrsMap(attrs),\n parent: parent,\n children: []\n }\n}\n\n/**\n * Convert HTML string to AST.\n */\nfunction parse (\n template,\n options\n) {\n warn$2 = options.warn || baseWarn;\n\n platformIsPreTag = options.isPreTag || no;\n platformMustUseProp = options.mustUseProp || no;\n platformGetTagNamespace = options.getTagNamespace || no;\n\n transforms = pluckModuleFunction(options.modules, 'transformNode');\n preTransforms = pluckModuleFunction(options.modules, 'preTransformNode');\n postTransforms = pluckModuleFunction(options.modules, 'postTransformNode');\n\n delimiters = options.delimiters;\n\n var stack = [];\n var preserveWhitespace = options.preserveWhitespace !== false;\n var root;\n var currentParent;\n var inVPre = false;\n var inPre = false;\n var warned = false;\n\n function warnOnce (msg) {\n if (!warned) {\n warned = true;\n warn$2(msg);\n }\n }\n\n function closeElement (element) {\n // check pre state\n if (element.pre) {\n inVPre = false;\n }\n if (platformIsPreTag(element.tag)) {\n inPre = false;\n }\n // apply post-transforms\n for (var i = 0; i < postTransforms.length; i++) {\n postTransforms[i](element, options);\n }\n }\n\n parseHTML(template, {\n warn: warn$2,\n expectHTML: options.expectHTML,\n isUnaryTag: options.isUnaryTag,\n canBeLeftOpenTag: options.canBeLeftOpenTag,\n shouldDecodeNewlines: options.shouldDecodeNewlines,\n shouldDecodeNewlinesForHref: options.shouldDecodeNewlinesForHref,\n shouldKeepComment: options.comments,\n start: function start (tag, attrs, unary) {\n // check namespace.\n // inherit parent ns if there is one\n var ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag);\n\n // handle IE svg bug\n /* istanbul ignore if */\n if (isIE && ns === 'svg') {\n attrs = guardIESVGBug(attrs);\n }\n\n var element = createASTElement(tag, attrs, currentParent);\n if (ns) {\n element.ns = ns;\n }\n\n if (isForbiddenTag(element) && !isServerRendering()) {\n element.forbidden = true;\n process.env.NODE_ENV !== 'production' && warn$2(\n 'Templates should only be responsible for mapping the state to the ' +\n 'UI. Avoid placing tags with side-effects in your templates, such as ' +\n \"<\" + tag + \">\" + ', as they will not be parsed.'\n );\n }\n\n // apply pre-transforms\n for (var i = 0; i < preTransforms.length; i++) {\n element = preTransforms[i](element, options) || element;\n }\n\n if (!inVPre) {\n processPre(element);\n if (element.pre) {\n inVPre = true;\n }\n }\n if (platformIsPreTag(element.tag)) {\n inPre = true;\n }\n if (inVPre) {\n processRawAttrs(element);\n } else if (!element.processed) {\n // structural directives\n processFor(element);\n processIf(element);\n processOnce(element);\n // element-scope stuff\n processElement(element, options);\n }\n\n function checkRootConstraints (el) {\n if (process.env.NODE_ENV !== 'production') {\n if (el.tag === 'slot' || el.tag === 'template') {\n warnOnce(\n \"Cannot use <\" + (el.tag) + \"> as component root element because it may \" +\n 'contain multiple nodes.'\n );\n }\n if (el.attrsMap.hasOwnProperty('v-for')) {\n warnOnce(\n 'Cannot use v-for on stateful component root element because ' +\n 'it renders multiple elements.'\n );\n }\n }\n }\n\n // tree management\n if (!root) {\n root = element;\n checkRootConstraints(root);\n } else if (!stack.length) {\n // allow root elements with v-if, v-else-if and v-else\n if (root.if && (element.elseif || element.else)) {\n checkRootConstraints(element);\n addIfCondition(root, {\n exp: element.elseif,\n block: element\n });\n } else if (process.env.NODE_ENV !== 'production') {\n warnOnce(\n \"Component template should contain exactly one root element. \" +\n \"If you are using v-if on multiple elements, \" +\n \"use v-else-if to chain them instead.\"\n );\n }\n }\n if (currentParent && !element.forbidden) {\n if (element.elseif || element.else) {\n processIfConditions(element, currentParent);\n } else if (element.slotScope) { // scoped slot\n currentParent.plain = false;\n var name = element.slotTarget || '\"default\"';(currentParent.scopedSlots || (currentParent.scopedSlots = {}))[name] = element;\n } else {\n currentParent.children.push(element);\n element.parent = currentParent;\n }\n }\n if (!unary) {\n currentParent = element;\n stack.push(element);\n } else {\n closeElement(element);\n }\n },\n\n end: function end () {\n // remove trailing whitespace\n var element = stack[stack.length - 1];\n var lastNode = element.children[element.children.length - 1];\n if (lastNode && lastNode.type === 3 && lastNode.text === ' ' && !inPre) {\n element.children.pop();\n }\n // pop stack\n stack.length -= 1;\n currentParent = stack[stack.length - 1];\n closeElement(element);\n },\n\n chars: function chars (text) {\n if (!currentParent) {\n if (process.env.NODE_ENV !== 'production') {\n if (text === template) {\n warnOnce(\n 'Component template requires a root element, rather than just text.'\n );\n } else if ((text = text.trim())) {\n warnOnce(\n (\"text \\\"\" + text + \"\\\" outside root element will be ignored.\")\n );\n }\n }\n return\n }\n // IE textarea placeholder bug\n /* istanbul ignore if */\n if (isIE &&\n currentParent.tag === 'textarea' &&\n currentParent.attrsMap.placeholder === text\n ) {\n return\n }\n var children = currentParent.children;\n text = inPre || text.trim()\n ? isTextTag(currentParent) ? text : decodeHTMLCached(text)\n // only preserve whitespace if its not right after a starting tag\n : preserveWhitespace && children.length ? ' ' : '';\n if (text) {\n var res;\n if (!inVPre && text !== ' ' && (res = parseText(text, delimiters))) {\n children.push({\n type: 2,\n expression: res.expression,\n tokens: res.tokens,\n text: text\n });\n } else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') {\n children.push({\n type: 3,\n text: text\n });\n }\n }\n },\n comment: function comment (text) {\n currentParent.children.push({\n type: 3,\n text: text,\n isComment: true\n });\n }\n });\n return root\n}\n\nfunction processPre (el) {\n if (getAndRemoveAttr(el, 'v-pre') != null) {\n el.pre = true;\n }\n}\n\nfunction processRawAttrs (el) {\n var l = el.attrsList.length;\n if (l) {\n var attrs = el.attrs = new Array(l);\n for (var i = 0; i < l; i++) {\n attrs[i] = {\n name: el.attrsList[i].name,\n value: JSON.stringify(el.attrsList[i].value)\n };\n }\n } else if (!el.pre) {\n // non root node in pre blocks with no attributes\n el.plain = true;\n }\n}\n\nfunction processElement (element, options) {\n processKey(element);\n\n // determine whether this is a plain element after\n // removing structural attributes\n element.plain = !element.key && !element.attrsList.length;\n\n processRef(element);\n processSlot(element);\n processComponent(element);\n for (var i = 0; i < transforms.length; i++) {\n element = transforms[i](element, options) || element;\n }\n processAttrs(element);\n}\n\nfunction processKey (el) {\n var exp = getBindingAttr(el, 'key');\n if (exp) {\n if (process.env.NODE_ENV !== 'production' && el.tag === 'template') {\n warn$2(\"<template> cannot be keyed. Place the key on real elements instead.\");\n }\n el.key = exp;\n }\n}\n\nfunction processRef (el) {\n var ref = getBindingAttr(el, 'ref');\n if (ref) {\n el.ref = ref;\n el.refInFor = checkInFor(el);\n }\n}\n\nfunction processFor (el) {\n var exp;\n if ((exp = getAndRemoveAttr(el, 'v-for'))) {\n var res = parseFor(exp);\n if (res) {\n extend(el, res);\n } else if (process.env.NODE_ENV !== 'production') {\n warn$2(\n (\"Invalid v-for expression: \" + exp)\n );\n }\n }\n}\n\n\n\nfunction parseFor (exp) {\n var inMatch = exp.match(forAliasRE);\n if (!inMatch) { return }\n var res = {};\n res.for = inMatch[2].trim();\n var alias = inMatch[1].trim().replace(stripParensRE, '');\n var iteratorMatch = alias.match(forIteratorRE);\n if (iteratorMatch) {\n res.alias = alias.replace(forIteratorRE, '');\n res.iterator1 = iteratorMatch[1].trim();\n if (iteratorMatch[2]) {\n res.iterator2 = iteratorMatch[2].trim();\n }\n } else {\n res.alias = alias;\n }\n return res\n}\n\nfunction processIf (el) {\n var exp = getAndRemoveAttr(el, 'v-if');\n if (exp) {\n el.if = exp;\n addIfCondition(el, {\n exp: exp,\n block: el\n });\n } else {\n if (getAndRemoveAttr(el, 'v-else') != null) {\n el.else = true;\n }\n var elseif = getAndRemoveAttr(el, 'v-else-if');\n if (elseif) {\n el.elseif = elseif;\n }\n }\n}\n\nfunction processIfConditions (el, parent) {\n var prev = findPrevElement(parent.children);\n if (prev && prev.if) {\n addIfCondition(prev, {\n exp: el.elseif,\n block: el\n });\n } else if (process.env.NODE_ENV !== 'production') {\n warn$2(\n \"v-\" + (el.elseif ? ('else-if=\"' + el.elseif + '\"') : 'else') + \" \" +\n \"used on element <\" + (el.tag) + \"> without corresponding v-if.\"\n );\n }\n}\n\nfunction findPrevElement (children) {\n var i = children.length;\n while (i--) {\n if (children[i].type === 1) {\n return children[i]\n } else {\n if (process.env.NODE_ENV !== 'production' && children[i].text !== ' ') {\n warn$2(\n \"text \\\"\" + (children[i].text.trim()) + \"\\\" between v-if and v-else(-if) \" +\n \"will be ignored.\"\n );\n }\n children.pop();\n }\n }\n}\n\nfunction addIfCondition (el, condition) {\n if (!el.ifConditions) {\n el.ifConditions = [];\n }\n el.ifConditions.push(condition);\n}\n\nfunction processOnce (el) {\n var once$$1 = getAndRemoveAttr(el, 'v-once');\n if (once$$1 != null) {\n el.once = true;\n }\n}\n\nfunction processSlot (el) {\n if (el.tag === 'slot') {\n el.slotName = getBindingAttr(el, 'name');\n if (process.env.NODE_ENV !== 'production' && el.key) {\n warn$2(\n \"`key` does not work on <slot> because slots are abstract outlets \" +\n \"and can possibly expand into multiple elements. \" +\n \"Use the key on a wrapping element instead.\"\n );\n }\n } else {\n var slotScope;\n if (el.tag === 'template') {\n slotScope = getAndRemoveAttr(el, 'scope');\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && slotScope) {\n warn$2(\n \"the \\\"scope\\\" attribute for scoped slots have been deprecated and \" +\n \"replaced by \\\"slot-scope\\\" since 2.5. The new \\\"slot-scope\\\" attribute \" +\n \"can also be used on plain elements in addition to <template> to \" +\n \"denote scoped slots.\",\n true\n );\n }\n el.slotScope = slotScope || getAndRemoveAttr(el, 'slot-scope');\n } else if ((slotScope = getAndRemoveAttr(el, 'slot-scope'))) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && el.attrsMap['v-for']) {\n warn$2(\n \"Ambiguous combined usage of slot-scope and v-for on <\" + (el.tag) + \"> \" +\n \"(v-for takes higher priority). Use a wrapper <template> for the \" +\n \"scoped slot to make it clearer.\",\n true\n );\n }\n el.slotScope = slotScope;\n }\n var slotTarget = getBindingAttr(el, 'slot');\n if (slotTarget) {\n el.slotTarget = slotTarget === '\"\"' ? '\"default\"' : slotTarget;\n // preserve slot as an attribute for native shadow DOM compat\n // only for non-scoped slots.\n if (el.tag !== 'template' && !el.slotScope) {\n addAttr(el, 'slot', slotTarget);\n }\n }\n }\n}\n\nfunction processComponent (el) {\n var binding;\n if ((binding = getBindingAttr(el, 'is'))) {\n el.component = binding;\n }\n if (getAndRemoveAttr(el, 'inline-template') != null) {\n el.inlineTemplate = true;\n }\n}\n\nfunction processAttrs (el) {\n var list = el.attrsList;\n var i, l, name, rawName, value, modifiers, isProp;\n for (i = 0, l = list.length; i < l; i++) {\n name = rawName = list[i].name;\n value = list[i].value;\n if (dirRE.test(name)) {\n // mark element as dynamic\n el.hasBindings = true;\n // modifiers\n modifiers = parseModifiers(name);\n if (modifiers) {\n name = name.replace(modifierRE, '');\n }\n if (bindRE.test(name)) { // v-bind\n name = name.replace(bindRE, '');\n value = parseFilters(value);\n isProp = false;\n if (modifiers) {\n if (modifiers.prop) {\n isProp = true;\n name = camelize(name);\n if (name === 'innerHtml') { name = 'innerHTML'; }\n }\n if (modifiers.camel) {\n name = camelize(name);\n }\n if (modifiers.sync) {\n addHandler(\n el,\n (\"update:\" + (camelize(name))),\n genAssignmentCode(value, \"$event\")\n );\n }\n }\n if (isProp || (\n !el.component && platformMustUseProp(el.tag, el.attrsMap.type, name)\n )) {\n addProp(el, name, value);\n } else {\n addAttr(el, name, value);\n }\n } else if (onRE.test(name)) { // v-on\n name = name.replace(onRE, '');\n addHandler(el, name, value, modifiers, false, warn$2);\n } else { // normal directives\n name = name.replace(dirRE, '');\n // parse arg\n var argMatch = name.match(argRE);\n var arg = argMatch && argMatch[1];\n if (arg) {\n name = name.slice(0, -(arg.length + 1));\n }\n addDirective(el, name, rawName, value, arg, modifiers);\n if (process.env.NODE_ENV !== 'production' && name === 'model') {\n checkForAliasModel(el, value);\n }\n }\n } else {\n // literal attribute\n if (process.env.NODE_ENV !== 'production') {\n var res = parseText(value, delimiters);\n if (res) {\n warn$2(\n name + \"=\\\"\" + value + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div id=\"{{ val }}\">, use <div :id=\"val\">.'\n );\n }\n }\n addAttr(el, name, JSON.stringify(value));\n // #6887 firefox doesn't update muted state if set via attribute\n // even immediately after element creation\n if (!el.component &&\n name === 'muted' &&\n platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n addProp(el, name, 'true');\n }\n }\n }\n}\n\nfunction checkInFor (el) {\n var parent = el;\n while (parent) {\n if (parent.for !== undefined) {\n return true\n }\n parent = parent.parent;\n }\n return false\n}\n\nfunction parseModifiers (name) {\n var match = name.match(modifierRE);\n if (match) {\n var ret = {};\n match.forEach(function (m) { ret[m.slice(1)] = true; });\n return ret\n }\n}\n\nfunction makeAttrsMap (attrs) {\n var map = {};\n for (var i = 0, l = attrs.length; i < l; i++) {\n if (\n process.env.NODE_ENV !== 'production' &&\n map[attrs[i].name] && !isIE && !isEdge\n ) {\n warn$2('duplicate attribute: ' + attrs[i].name);\n }\n map[attrs[i].name] = attrs[i].value;\n }\n return map\n}\n\n// for script (e.g. type=\"x/template\") or style, do not decode content\nfunction isTextTag (el) {\n return el.tag === 'script' || el.tag === 'style'\n}\n\nfunction isForbiddenTag (el) {\n return (\n el.tag === 'style' ||\n (el.tag === 'script' && (\n !el.attrsMap.type ||\n el.attrsMap.type === 'text/javascript'\n ))\n )\n}\n\nvar ieNSBug = /^xmlns:NS\\d+/;\nvar ieNSPrefix = /^NS\\d+:/;\n\n/* istanbul ignore next */\nfunction guardIESVGBug (attrs) {\n var res = [];\n for (var i = 0; i < attrs.length; i++) {\n var attr = attrs[i];\n if (!ieNSBug.test(attr.name)) {\n attr.name = attr.name.replace(ieNSPrefix, '');\n res.push(attr);\n }\n }\n return res\n}\n\nfunction checkForAliasModel (el, value) {\n var _el = el;\n while (_el) {\n if (_el.for && _el.alias === value) {\n warn$2(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\">: \" +\n \"You are binding v-model directly to a v-for iteration alias. \" +\n \"This will not be able to modify the v-for source array because \" +\n \"writing to the alias is like modifying a function local variable. \" +\n \"Consider using an array of objects and use v-model on an object property instead.\"\n );\n }\n _el = _el.parent;\n }\n}\n\n/* */\n\n/**\n * Expand input[v-model] with dyanmic type bindings into v-if-else chains\n * Turn this:\n * <input v-model=\"data[type]\" :type=\"type\">\n * into this:\n * <input v-if=\"type === 'checkbox'\" type=\"checkbox\" v-model=\"data[type]\">\n * <input v-else-if=\"type === 'radio'\" type=\"radio\" v-model=\"data[type]\">\n * <input v-else :type=\"type\" v-model=\"data[type]\">\n */\n\nfunction preTransformNode (el, options) {\n if (el.tag === 'input') {\n var map = el.attrsMap;\n if (!map['v-model']) {\n return\n }\n\n var typeBinding;\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type');\n }\n if (!map.type && !typeBinding && map['v-bind']) {\n typeBinding = \"(\" + (map['v-bind']) + \").type\";\n }\n\n if (typeBinding) {\n var ifCondition = getAndRemoveAttr(el, 'v-if', true);\n var ifConditionExtra = ifCondition ? (\"&&(\" + ifCondition + \")\") : \"\";\n var hasElse = getAndRemoveAttr(el, 'v-else', true) != null;\n var elseIfCondition = getAndRemoveAttr(el, 'v-else-if', true);\n // 1. checkbox\n var branch0 = cloneASTElement(el);\n // process for on the main node\n processFor(branch0);\n addRawAttr(branch0, 'type', 'checkbox');\n processElement(branch0, options);\n branch0.processed = true; // prevent it from double-processed\n branch0.if = \"(\" + typeBinding + \")==='checkbox'\" + ifConditionExtra;\n addIfCondition(branch0, {\n exp: branch0.if,\n block: branch0\n });\n // 2. add radio else-if condition\n var branch1 = cloneASTElement(el);\n getAndRemoveAttr(branch1, 'v-for', true);\n addRawAttr(branch1, 'type', 'radio');\n processElement(branch1, options);\n addIfCondition(branch0, {\n exp: \"(\" + typeBinding + \")==='radio'\" + ifConditionExtra,\n block: branch1\n });\n // 3. other\n var branch2 = cloneASTElement(el);\n getAndRemoveAttr(branch2, 'v-for', true);\n addRawAttr(branch2, ':type', typeBinding);\n processElement(branch2, options);\n addIfCondition(branch0, {\n exp: ifCondition,\n block: branch2\n });\n\n if (hasElse) {\n branch0.else = true;\n } else if (elseIfCondition) {\n branch0.elseif = elseIfCondition;\n }\n\n return branch0\n }\n }\n}\n\nfunction cloneASTElement (el) {\n return createASTElement(el.tag, el.attrsList.slice(), el.parent)\n}\n\nvar model$2 = {\n preTransformNode: preTransformNode\n}\n\nvar modules$1 = [\n klass$1,\n style$1,\n model$2\n]\n\n/* */\n\nfunction text (el, dir) {\n if (dir.value) {\n addProp(el, 'textContent', (\"_s(\" + (dir.value) + \")\"));\n }\n}\n\n/* */\n\nfunction html (el, dir) {\n if (dir.value) {\n addProp(el, 'innerHTML', (\"_s(\" + (dir.value) + \")\"));\n }\n}\n\nvar directives$1 = {\n model: model,\n text: text,\n html: html\n}\n\n/* */\n\nvar baseOptions = {\n expectHTML: true,\n modules: modules$1,\n directives: directives$1,\n isPreTag: isPreTag,\n isUnaryTag: isUnaryTag,\n mustUseProp: mustUseProp,\n canBeLeftOpenTag: canBeLeftOpenTag,\n isReservedTag: isReservedTag,\n getTagNamespace: getTagNamespace,\n staticKeys: genStaticKeys(modules$1)\n};\n\n/* */\n\nvar isStaticKey;\nvar isPlatformReservedTag;\n\nvar genStaticKeysCached = cached(genStaticKeys$1);\n\n/**\n * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees that are purely static, i.e. parts of\n * the DOM that never needs to change.\n *\n * Once we detect these sub-trees, we can:\n *\n * 1. Hoist them into constants, so that we no longer need to\n * create fresh nodes for them on each re-render;\n * 2. Completely skip them in the patching process.\n */\nfunction optimize (root, options) {\n if (!root) { return }\n isStaticKey = genStaticKeysCached(options.staticKeys || '');\n isPlatformReservedTag = options.isReservedTag || no;\n // first pass: mark all non-static nodes.\n markStatic$1(root);\n // second pass: mark static roots.\n markStaticRoots(root, false);\n}\n\nfunction genStaticKeys$1 (keys) {\n return makeMap(\n 'type,tag,attrsList,attrsMap,plain,parent,children,attrs' +\n (keys ? ',' + keys : '')\n )\n}\n\nfunction markStatic$1 (node) {\n node.static = isStatic(node);\n if (node.type === 1) {\n // do not make component slot content static. this avoids\n // 1. components not able to mutate slot nodes\n // 2. static slot content fails for hot-reloading\n if (\n !isPlatformReservedTag(node.tag) &&\n node.tag !== 'slot' &&\n node.attrsMap['inline-template'] == null\n ) {\n return\n }\n for (var i = 0, l = node.children.length; i < l; i++) {\n var child = node.children[i];\n markStatic$1(child);\n if (!child.static) {\n node.static = false;\n }\n }\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n var block = node.ifConditions[i$1].block;\n markStatic$1(block);\n if (!block.static) {\n node.static = false;\n }\n }\n }\n }\n}\n\nfunction markStaticRoots (node, isInFor) {\n if (node.type === 1) {\n if (node.static || node.once) {\n node.staticInFor = isInFor;\n }\n // For a node to qualify as a static root, it should have children that\n // are not just static text. Otherwise the cost of hoisting out will\n // outweigh the benefits and it's better off to just always render it fresh.\n if (node.static && node.children.length && !(\n node.children.length === 1 &&\n node.children[0].type === 3\n )) {\n node.staticRoot = true;\n return\n } else {\n node.staticRoot = false;\n }\n if (node.children) {\n for (var i = 0, l = node.children.length; i < l; i++) {\n markStaticRoots(node.children[i], isInFor || !!node.for);\n }\n }\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n markStaticRoots(node.ifConditions[i$1].block, isInFor);\n }\n }\n }\n}\n\nfunction isStatic (node) {\n if (node.type === 2) { // expression\n return false\n }\n if (node.type === 3) { // text\n return true\n }\n return !!(node.pre || (\n !node.hasBindings && // no dynamic bindings\n !node.if && !node.for && // not v-if or v-for or v-else\n !isBuiltInTag(node.tag) && // not a built-in\n isPlatformReservedTag(node.tag) && // not a component\n !isDirectChildOfTemplateFor(node) &&\n Object.keys(node).every(isStaticKey)\n ))\n}\n\nfunction isDirectChildOfTemplateFor (node) {\n while (node.parent) {\n node = node.parent;\n if (node.tag !== 'template') {\n return false\n }\n if (node.for) {\n return true\n }\n }\n return false\n}\n\n/* */\n\nvar fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/;\nvar simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*$/;\n\n// KeyboardEvent.keyCode aliases\nvar keyCodes = {\n esc: 27,\n tab: 9,\n enter: 13,\n space: 32,\n up: 38,\n left: 37,\n right: 39,\n down: 40,\n 'delete': [8, 46]\n};\n\n// KeyboardEvent.key aliases\nvar keyNames = {\n esc: 'Escape',\n tab: 'Tab',\n enter: 'Enter',\n space: ' ',\n // #7806: IE11 uses key names without `Arrow` prefix for arrow keys.\n up: ['Up', 'ArrowUp'],\n left: ['Left', 'ArrowLeft'],\n right: ['Right', 'ArrowRight'],\n down: ['Down', 'ArrowDown'],\n 'delete': ['Backspace', 'Delete']\n};\n\n// #4868: modifiers that prevent the execution of the listener\n// need to explicitly return null so that we can determine whether to remove\n// the listener for .once\nvar genGuard = function (condition) { return (\"if(\" + condition + \")return null;\"); };\n\nvar modifierCode = {\n stop: '$event.stopPropagation();',\n prevent: '$event.preventDefault();',\n self: genGuard(\"$event.target !== $event.currentTarget\"),\n ctrl: genGuard(\"!$event.ctrlKey\"),\n shift: genGuard(\"!$event.shiftKey\"),\n alt: genGuard(\"!$event.altKey\"),\n meta: genGuard(\"!$event.metaKey\"),\n left: genGuard(\"'button' in $event && $event.button !== 0\"),\n middle: genGuard(\"'button' in $event && $event.button !== 1\"),\n right: genGuard(\"'button' in $event && $event.button !== 2\")\n};\n\nfunction genHandlers (\n events,\n isNative,\n warn\n) {\n var res = isNative ? 'nativeOn:{' : 'on:{';\n for (var name in events) {\n res += \"\\\"\" + name + \"\\\":\" + (genHandler(name, events[name])) + \",\";\n }\n return res.slice(0, -1) + '}'\n}\n\nfunction genHandler (\n name,\n handler\n) {\n if (!handler) {\n return 'function(){}'\n }\n\n if (Array.isArray(handler)) {\n return (\"[\" + (handler.map(function (handler) { return genHandler(name, handler); }).join(',')) + \"]\")\n }\n\n var isMethodPath = simplePathRE.test(handler.value);\n var isFunctionExpression = fnExpRE.test(handler.value);\n\n if (!handler.modifiers) {\n if (isMethodPath || isFunctionExpression) {\n return handler.value\n }\n /* istanbul ignore if */\n return (\"function($event){\" + (handler.value) + \"}\") // inline statement\n } else {\n var code = '';\n var genModifierCode = '';\n var keys = [];\n for (var key in handler.modifiers) {\n if (modifierCode[key]) {\n genModifierCode += modifierCode[key];\n // left/right\n if (keyCodes[key]) {\n keys.push(key);\n }\n } else if (key === 'exact') {\n var modifiers = (handler.modifiers);\n genModifierCode += genGuard(\n ['ctrl', 'shift', 'alt', 'meta']\n .filter(function (keyModifier) { return !modifiers[keyModifier]; })\n .map(function (keyModifier) { return (\"$event.\" + keyModifier + \"Key\"); })\n .join('||')\n );\n } else {\n keys.push(key);\n }\n }\n if (keys.length) {\n code += genKeyFilter(keys);\n }\n // Make sure modifiers like prevent and stop get executed after key filtering\n if (genModifierCode) {\n code += genModifierCode;\n }\n var handlerCode = isMethodPath\n ? (\"return \" + (handler.value) + \"($event)\")\n : isFunctionExpression\n ? (\"return (\" + (handler.value) + \")($event)\")\n : handler.value;\n /* istanbul ignore if */\n return (\"function($event){\" + code + handlerCode + \"}\")\n }\n}\n\nfunction genKeyFilter (keys) {\n return (\"if(!('button' in $event)&&\" + (keys.map(genFilterCode).join('&&')) + \")return null;\")\n}\n\nfunction genFilterCode (key) {\n var keyVal = parseInt(key, 10);\n if (keyVal) {\n return (\"$event.keyCode!==\" + keyVal)\n }\n var keyCode = keyCodes[key];\n var keyName = keyNames[key];\n return (\n \"_k($event.keyCode,\" +\n (JSON.stringify(key)) + \",\" +\n (JSON.stringify(keyCode)) + \",\" +\n \"$event.key,\" +\n \"\" + (JSON.stringify(keyName)) +\n \")\"\n )\n}\n\n/* */\n\nfunction on (el, dir) {\n if (process.env.NODE_ENV !== 'production' && dir.modifiers) {\n warn(\"v-on without argument does not support modifiers.\");\n }\n el.wrapListeners = function (code) { return (\"_g(\" + code + \",\" + (dir.value) + \")\"); };\n}\n\n/* */\n\nfunction bind$1 (el, dir) {\n el.wrapData = function (code) {\n return (\"_b(\" + code + \",'\" + (el.tag) + \"',\" + (dir.value) + \",\" + (dir.modifiers && dir.modifiers.prop ? 'true' : 'false') + (dir.modifiers && dir.modifiers.sync ? ',true' : '') + \")\")\n };\n}\n\n/* */\n\nvar baseDirectives = {\n on: on,\n bind: bind$1,\n cloak: noop\n}\n\n/* */\n\nvar CodegenState = function CodegenState (options) {\n this.options = options;\n this.warn = options.warn || baseWarn;\n this.transforms = pluckModuleFunction(options.modules, 'transformCode');\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData');\n this.directives = extend(extend({}, baseDirectives), options.directives);\n var isReservedTag = options.isReservedTag || no;\n this.maybeComponent = function (el) { return !isReservedTag(el.tag); };\n this.onceId = 0;\n this.staticRenderFns = [];\n};\n\n\n\nfunction generate (\n ast,\n options\n) {\n var state = new CodegenState(options);\n var code = ast ? genElement(ast, state) : '_c(\"div\")';\n return {\n render: (\"with(this){return \" + code + \"}\"),\n staticRenderFns: state.staticRenderFns\n }\n}\n\nfunction genElement (el, state) {\n if (el.staticRoot && !el.staticProcessed) {\n return genStatic(el, state)\n } else if (el.once && !el.onceProcessed) {\n return genOnce(el, state)\n } else if (el.for && !el.forProcessed) {\n return genFor(el, state)\n } else if (el.if && !el.ifProcessed) {\n return genIf(el, state)\n } else if (el.tag === 'template' && !el.slotTarget) {\n return genChildren(el, state) || 'void 0'\n } else if (el.tag === 'slot') {\n return genSlot(el, state)\n } else {\n // component or element\n var code;\n if (el.component) {\n code = genComponent(el.component, el, state);\n } else {\n var data = el.plain ? undefined : genData$2(el, state);\n\n var children = el.inlineTemplate ? null : genChildren(el, state, true);\n code = \"_c('\" + (el.tag) + \"'\" + (data ? (\",\" + data) : '') + (children ? (\",\" + children) : '') + \")\";\n }\n // module transforms\n for (var i = 0; i < state.transforms.length; i++) {\n code = state.transforms[i](el, code);\n }\n return code\n }\n}\n\n// hoist static sub-trees out\nfunction genStatic (el, state) {\n el.staticProcessed = true;\n state.staticRenderFns.push((\"with(this){return \" + (genElement(el, state)) + \"}\"));\n return (\"_m(\" + (state.staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + \")\")\n}\n\n// v-once\nfunction genOnce (el, state) {\n el.onceProcessed = true;\n if (el.if && !el.ifProcessed) {\n return genIf(el, state)\n } else if (el.staticInFor) {\n var key = '';\n var parent = el.parent;\n while (parent) {\n if (parent.for) {\n key = parent.key;\n break\n }\n parent = parent.parent;\n }\n if (!key) {\n process.env.NODE_ENV !== 'production' && state.warn(\n \"v-once can only be used inside v-for that is keyed. \"\n );\n return genElement(el, state)\n }\n return (\"_o(\" + (genElement(el, state)) + \",\" + (state.onceId++) + \",\" + key + \")\")\n } else {\n return genStatic(el, state)\n }\n}\n\nfunction genIf (\n el,\n state,\n altGen,\n altEmpty\n) {\n el.ifProcessed = true; // avoid recursion\n return genIfConditions(el.ifConditions.slice(), state, altGen, altEmpty)\n}\n\nfunction genIfConditions (\n conditions,\n state,\n altGen,\n altEmpty\n) {\n if (!conditions.length) {\n return altEmpty || '_e()'\n }\n\n var condition = conditions.shift();\n if (condition.exp) {\n return (\"(\" + (condition.exp) + \")?\" + (genTernaryExp(condition.block)) + \":\" + (genIfConditions(conditions, state, altGen, altEmpty)))\n } else {\n return (\"\" + (genTernaryExp(condition.block)))\n }\n\n // v-if with v-once should generate code like (a)?_m(0):_m(1)\n function genTernaryExp (el) {\n return altGen\n ? altGen(el, state)\n : el.once\n ? genOnce(el, state)\n : genElement(el, state)\n }\n}\n\nfunction genFor (\n el,\n state,\n altGen,\n altHelper\n) {\n var exp = el.for;\n var alias = el.alias;\n var iterator1 = el.iterator1 ? (\",\" + (el.iterator1)) : '';\n var iterator2 = el.iterator2 ? (\",\" + (el.iterator2)) : '';\n\n if (process.env.NODE_ENV !== 'production' &&\n state.maybeComponent(el) &&\n el.tag !== 'slot' &&\n el.tag !== 'template' &&\n !el.key\n ) {\n state.warn(\n \"<\" + (el.tag) + \" v-for=\\\"\" + alias + \" in \" + exp + \"\\\">: component lists rendered with \" +\n \"v-for should have explicit keys. \" +\n \"See https://vuejs.org/guide/list.html#key for more info.\",\n true /* tip */\n );\n }\n\n el.forProcessed = true; // avoid recursion\n return (altHelper || '_l') + \"((\" + exp + \"),\" +\n \"function(\" + alias + iterator1 + iterator2 + \"){\" +\n \"return \" + ((altGen || genElement)(el, state)) +\n '})'\n}\n\nfunction genData$2 (el, state) {\n var data = '{';\n\n // directives first.\n // directives may mutate the el's other properties before they are generated.\n var dirs = genDirectives(el, state);\n if (dirs) { data += dirs + ','; }\n\n // key\n if (el.key) {\n data += \"key:\" + (el.key) + \",\";\n }\n // ref\n if (el.ref) {\n data += \"ref:\" + (el.ref) + \",\";\n }\n if (el.refInFor) {\n data += \"refInFor:true,\";\n }\n // pre\n if (el.pre) {\n data += \"pre:true,\";\n }\n // record original tag name for components using \"is\" attribute\n if (el.component) {\n data += \"tag:\\\"\" + (el.tag) + \"\\\",\";\n }\n // module data generation functions\n for (var i = 0; i < state.dataGenFns.length; i++) {\n data += state.dataGenFns[i](el);\n }\n // attributes\n if (el.attrs) {\n data += \"attrs:{\" + (genProps(el.attrs)) + \"},\";\n }\n // DOM props\n if (el.props) {\n data += \"domProps:{\" + (genProps(el.props)) + \"},\";\n }\n // event handlers\n if (el.events) {\n data += (genHandlers(el.events, false, state.warn)) + \",\";\n }\n if (el.nativeEvents) {\n data += (genHandlers(el.nativeEvents, true, state.warn)) + \",\";\n }\n // slot target\n // only for non-scoped slots\n if (el.slotTarget && !el.slotScope) {\n data += \"slot:\" + (el.slotTarget) + \",\";\n }\n // scoped slots\n if (el.scopedSlots) {\n data += (genScopedSlots(el.scopedSlots, state)) + \",\";\n }\n // component v-model\n if (el.model) {\n data += \"model:{value:\" + (el.model.value) + \",callback:\" + (el.model.callback) + \",expression:\" + (el.model.expression) + \"},\";\n }\n // inline-template\n if (el.inlineTemplate) {\n var inlineTemplate = genInlineTemplate(el, state);\n if (inlineTemplate) {\n data += inlineTemplate + \",\";\n }\n }\n data = data.replace(/,$/, '') + '}';\n // v-bind data wrap\n if (el.wrapData) {\n data = el.wrapData(data);\n }\n // v-on data wrap\n if (el.wrapListeners) {\n data = el.wrapListeners(data);\n }\n return data\n}\n\nfunction genDirectives (el, state) {\n var dirs = el.directives;\n if (!dirs) { return }\n var res = 'directives:[';\n var hasRuntime = false;\n var i, l, dir, needRuntime;\n for (i = 0, l = dirs.length; i < l; i++) {\n dir = dirs[i];\n needRuntime = true;\n var gen = state.directives[dir.name];\n if (gen) {\n // compile-time directive that manipulates AST.\n // returns true if it also needs a runtime counterpart.\n needRuntime = !!gen(el, dir, state.warn);\n }\n if (needRuntime) {\n hasRuntime = true;\n res += \"{name:\\\"\" + (dir.name) + \"\\\",rawName:\\\"\" + (dir.rawName) + \"\\\"\" + (dir.value ? (\",value:(\" + (dir.value) + \"),expression:\" + (JSON.stringify(dir.value))) : '') + (dir.arg ? (\",arg:\\\"\" + (dir.arg) + \"\\\"\") : '') + (dir.modifiers ? (\",modifiers:\" + (JSON.stringify(dir.modifiers))) : '') + \"},\";\n }\n }\n if (hasRuntime) {\n return res.slice(0, -1) + ']'\n }\n}\n\nfunction genInlineTemplate (el, state) {\n var ast = el.children[0];\n if (process.env.NODE_ENV !== 'production' && (\n el.children.length !== 1 || ast.type !== 1\n )) {\n state.warn('Inline-template components must have exactly one child element.');\n }\n if (ast.type === 1) {\n var inlineRenderFns = generate(ast, state.options);\n return (\"inlineTemplate:{render:function(){\" + (inlineRenderFns.render) + \"},staticRenderFns:[\" + (inlineRenderFns.staticRenderFns.map(function (code) { return (\"function(){\" + code + \"}\"); }).join(',')) + \"]}\")\n }\n}\n\nfunction genScopedSlots (\n slots,\n state\n) {\n return (\"scopedSlots:_u([\" + (Object.keys(slots).map(function (key) {\n return genScopedSlot(key, slots[key], state)\n }).join(',')) + \"])\")\n}\n\nfunction genScopedSlot (\n key,\n el,\n state\n) {\n if (el.for && !el.forProcessed) {\n return genForScopedSlot(key, el, state)\n }\n var fn = \"function(\" + (String(el.slotScope)) + \"){\" +\n \"return \" + (el.tag === 'template'\n ? el.if\n ? ((el.if) + \"?\" + (genChildren(el, state) || 'undefined') + \":undefined\")\n : genChildren(el, state) || 'undefined'\n : genElement(el, state)) + \"}\";\n return (\"{key:\" + key + \",fn:\" + fn + \"}\")\n}\n\nfunction genForScopedSlot (\n key,\n el,\n state\n) {\n var exp = el.for;\n var alias = el.alias;\n var iterator1 = el.iterator1 ? (\",\" + (el.iterator1)) : '';\n var iterator2 = el.iterator2 ? (\",\" + (el.iterator2)) : '';\n el.forProcessed = true; // avoid recursion\n return \"_l((\" + exp + \"),\" +\n \"function(\" + alias + iterator1 + iterator2 + \"){\" +\n \"return \" + (genScopedSlot(key, el, state)) +\n '})'\n}\n\nfunction genChildren (\n el,\n state,\n checkSkip,\n altGenElement,\n altGenNode\n) {\n var children = el.children;\n if (children.length) {\n var el$1 = children[0];\n // optimize single v-for\n if (children.length === 1 &&\n el$1.for &&\n el$1.tag !== 'template' &&\n el$1.tag !== 'slot'\n ) {\n return (altGenElement || genElement)(el$1, state)\n }\n var normalizationType = checkSkip\n ? getNormalizationType(children, state.maybeComponent)\n : 0;\n var gen = altGenNode || genNode;\n return (\"[\" + (children.map(function (c) { return gen(c, state); }).join(',')) + \"]\" + (normalizationType ? (\",\" + normalizationType) : ''))\n }\n}\n\n// determine the normalization needed for the children array.\n// 0: no normalization needed\n// 1: simple normalization needed (possible 1-level deep nested array)\n// 2: full normalization needed\nfunction getNormalizationType (\n children,\n maybeComponent\n) {\n var res = 0;\n for (var i = 0; i < children.length; i++) {\n var el = children[i];\n if (el.type !== 1) {\n continue\n }\n if (needsNormalization(el) ||\n (el.ifConditions && el.ifConditions.some(function (c) { return needsNormalization(c.block); }))) {\n res = 2;\n break\n }\n if (maybeComponent(el) ||\n (el.ifConditions && el.ifConditions.some(function (c) { return maybeComponent(c.block); }))) {\n res = 1;\n }\n }\n return res\n}\n\nfunction needsNormalization (el) {\n return el.for !== undefined || el.tag === 'template' || el.tag === 'slot'\n}\n\nfunction genNode (node, state) {\n if (node.type === 1) {\n return genElement(node, state)\n } if (node.type === 3 && node.isComment) {\n return genComment(node)\n } else {\n return genText(node)\n }\n}\n\nfunction genText (text) {\n return (\"_v(\" + (text.type === 2\n ? text.expression // no need for () because already wrapped in _s()\n : transformSpecialNewlines(JSON.stringify(text.text))) + \")\")\n}\n\nfunction genComment (comment) {\n return (\"_e(\" + (JSON.stringify(comment.text)) + \")\")\n}\n\nfunction genSlot (el, state) {\n var slotName = el.slotName || '\"default\"';\n var children = genChildren(el, state);\n var res = \"_t(\" + slotName + (children ? (\",\" + children) : '');\n var attrs = el.attrs && (\"{\" + (el.attrs.map(function (a) { return ((camelize(a.name)) + \":\" + (a.value)); }).join(',')) + \"}\");\n var bind$$1 = el.attrsMap['v-bind'];\n if ((attrs || bind$$1) && !children) {\n res += \",null\";\n }\n if (attrs) {\n res += \",\" + attrs;\n }\n if (bind$$1) {\n res += (attrs ? '' : ',null') + \",\" + bind$$1;\n }\n return res + ')'\n}\n\n// componentName is el.component, take it as argument to shun flow's pessimistic refinement\nfunction genComponent (\n componentName,\n el,\n state\n) {\n var children = el.inlineTemplate ? null : genChildren(el, state, true);\n return (\"_c(\" + componentName + \",\" + (genData$2(el, state)) + (children ? (\",\" + children) : '') + \")\")\n}\n\nfunction genProps (props) {\n var res = '';\n for (var i = 0; i < props.length; i++) {\n var prop = props[i];\n /* istanbul ignore if */\n {\n res += \"\\\"\" + (prop.name) + \"\\\":\" + (transformSpecialNewlines(prop.value)) + \",\";\n }\n }\n return res.slice(0, -1)\n}\n\n// #3895, #4268\nfunction transformSpecialNewlines (text) {\n return text\n .replace(/\\u2028/g, '\\\\u2028')\n .replace(/\\u2029/g, '\\\\u2029')\n}\n\n/* */\n\n// these keywords should not appear inside expressions, but operators like\n// typeof, instanceof and in are allowed\nvar prohibitedKeywordRE = new RegExp('\\\\b' + (\n 'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +\n 'super,throw,while,yield,delete,export,import,return,switch,default,' +\n 'extends,finally,continue,debugger,function,arguments'\n).split(',').join('\\\\b|\\\\b') + '\\\\b');\n\n// these unary operators should not be used as property/method names\nvar unaryOperatorsRE = new RegExp('\\\\b' + (\n 'delete,typeof,void'\n).split(',').join('\\\\s*\\\\([^\\\\)]*\\\\)|\\\\b') + '\\\\s*\\\\([^\\\\)]*\\\\)');\n\n// strip strings in expressions\nvar stripStringRE = /'(?:[^'\\\\]|\\\\.)*'|\"(?:[^\"\\\\]|\\\\.)*\"|`(?:[^`\\\\]|\\\\.)*\\$\\{|\\}(?:[^`\\\\]|\\\\.)*`|`(?:[^`\\\\]|\\\\.)*`/g;\n\n// detect problematic expressions in a template\nfunction detectErrors (ast) {\n var errors = [];\n if (ast) {\n checkNode(ast, errors);\n }\n return errors\n}\n\nfunction checkNode (node, errors) {\n if (node.type === 1) {\n for (var name in node.attrsMap) {\n if (dirRE.test(name)) {\n var value = node.attrsMap[name];\n if (value) {\n if (name === 'v-for') {\n checkFor(node, (\"v-for=\\\"\" + value + \"\\\"\"), errors);\n } else if (onRE.test(name)) {\n checkEvent(value, (name + \"=\\\"\" + value + \"\\\"\"), errors);\n } else {\n checkExpression(value, (name + \"=\\\"\" + value + \"\\\"\"), errors);\n }\n }\n }\n }\n if (node.children) {\n for (var i = 0; i < node.children.length; i++) {\n checkNode(node.children[i], errors);\n }\n }\n } else if (node.type === 2) {\n checkExpression(node.expression, node.text, errors);\n }\n}\n\nfunction checkEvent (exp, text, errors) {\n var stipped = exp.replace(stripStringRE, '');\n var keywordMatch = stipped.match(unaryOperatorsRE);\n if (keywordMatch && stipped.charAt(keywordMatch.index - 1) !== '$') {\n errors.push(\n \"avoid using JavaScript unary operator as property name: \" +\n \"\\\"\" + (keywordMatch[0]) + \"\\\" in expression \" + (text.trim())\n );\n }\n checkExpression(exp, text, errors);\n}\n\nfunction checkFor (node, text, errors) {\n checkExpression(node.for || '', text, errors);\n checkIdentifier(node.alias, 'v-for alias', text, errors);\n checkIdentifier(node.iterator1, 'v-for iterator', text, errors);\n checkIdentifier(node.iterator2, 'v-for iterator', text, errors);\n}\n\nfunction checkIdentifier (\n ident,\n type,\n text,\n errors\n) {\n if (typeof ident === 'string') {\n try {\n new Function((\"var \" + ident + \"=_\"));\n } catch (e) {\n errors.push((\"invalid \" + type + \" \\\"\" + ident + \"\\\" in expression: \" + (text.trim())));\n }\n }\n}\n\nfunction checkExpression (exp, text, errors) {\n try {\n new Function((\"return \" + exp));\n } catch (e) {\n var keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE);\n if (keywordMatch) {\n errors.push(\n \"avoid using JavaScript keyword as property name: \" +\n \"\\\"\" + (keywordMatch[0]) + \"\\\"\\n Raw expression: \" + (text.trim())\n );\n } else {\n errors.push(\n \"invalid expression: \" + (e.message) + \" in\\n\\n\" +\n \" \" + exp + \"\\n\\n\" +\n \" Raw expression: \" + (text.trim()) + \"\\n\"\n );\n }\n }\n}\n\n/* */\n\nfunction createFunction (code, errors) {\n try {\n return new Function(code)\n } catch (err) {\n errors.push({ err: err, code: code });\n return noop\n }\n}\n\nfunction createCompileToFunctionFn (compile) {\n var cache = Object.create(null);\n\n return function compileToFunctions (\n template,\n options,\n vm\n ) {\n options = extend({}, options);\n var warn$$1 = options.warn || warn;\n delete options.warn;\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n // detect possible CSP restriction\n try {\n new Function('return 1');\n } catch (e) {\n if (e.toString().match(/unsafe-eval|CSP/)) {\n warn$$1(\n 'It seems you are using the standalone build of Vue.js in an ' +\n 'environment with Content Security Policy that prohibits unsafe-eval. ' +\n 'The template compiler cannot work in this environment. Consider ' +\n 'relaxing the policy to allow unsafe-eval or pre-compiling your ' +\n 'templates into render functions.'\n );\n }\n }\n }\n\n // check cache\n var key = options.delimiters\n ? String(options.delimiters) + template\n : template;\n if (cache[key]) {\n return cache[key]\n }\n\n // compile\n var compiled = compile(template, options);\n\n // check compilation errors/tips\n if (process.env.NODE_ENV !== 'production') {\n if (compiled.errors && compiled.errors.length) {\n warn$$1(\n \"Error compiling template:\\n\\n\" + template + \"\\n\\n\" +\n compiled.errors.map(function (e) { return (\"- \" + e); }).join('\\n') + '\\n',\n vm\n );\n }\n if (compiled.tips && compiled.tips.length) {\n compiled.tips.forEach(function (msg) { return tip(msg, vm); });\n }\n }\n\n // turn code into functions\n var res = {};\n var fnGenErrors = [];\n res.render = createFunction(compiled.render, fnGenErrors);\n res.staticRenderFns = compiled.staticRenderFns.map(function (code) {\n return createFunction(code, fnGenErrors)\n });\n\n // check function generation errors.\n // this should only happen if there is a bug in the compiler itself.\n // mostly for codegen development use\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {\n warn$$1(\n \"Failed to generate render function:\\n\\n\" +\n fnGenErrors.map(function (ref) {\n var err = ref.err;\n var code = ref.code;\n\n return ((err.toString()) + \" in\\n\\n\" + code + \"\\n\");\n }).join('\\n'),\n vm\n );\n }\n }\n\n return (cache[key] = res)\n }\n}\n\n/* */\n\nfunction createCompilerCreator (baseCompile) {\n return function createCompiler (baseOptions) {\n function compile (\n template,\n options\n ) {\n var finalOptions = Object.create(baseOptions);\n var errors = [];\n var tips = [];\n finalOptions.warn = function (msg, tip) {\n (tip ? tips : errors).push(msg);\n };\n\n if (options) {\n // merge custom modules\n if (options.modules) {\n finalOptions.modules =\n (baseOptions.modules || []).concat(options.modules);\n }\n // merge custom directives\n if (options.directives) {\n finalOptions.directives = extend(\n Object.create(baseOptions.directives || null),\n options.directives\n );\n }\n // copy other options\n for (var key in options) {\n if (key !== 'modules' && key !== 'directives') {\n finalOptions[key] = options[key];\n }\n }\n }\n\n var compiled = baseCompile(template, finalOptions);\n if (process.env.NODE_ENV !== 'production') {\n errors.push.apply(errors, detectErrors(compiled.ast));\n }\n compiled.errors = errors;\n compiled.tips = tips;\n return compiled\n }\n\n return {\n compile: compile,\n compileToFunctions: createCompileToFunctionFn(compile)\n }\n }\n}\n\n/* */\n\n// `createCompilerCreator` allows creating compilers that use alternative\n// parser/optimizer/codegen, e.g the SSR optimizing compiler.\n// Here we just export a default compiler using the default parts.\nvar createCompiler = createCompilerCreator(function baseCompile (\n template,\n options\n) {\n var ast = parse(template.trim(), options);\n if (options.optimize !== false) {\n optimize(ast, options);\n }\n var code = generate(ast, options);\n return {\n ast: ast,\n render: code.render,\n staticRenderFns: code.staticRenderFns\n }\n});\n\n/* */\n\nvar ref$1 = createCompiler(baseOptions);\nvar compileToFunctions = ref$1.compileToFunctions;\n\n/* */\n\n// check whether current browser encodes a char inside attribute values\nvar div;\nfunction getShouldDecode (href) {\n div = div || document.createElement('div');\n div.innerHTML = href ? \"<a href=\\\"\\n\\\"/>\" : \"<div a=\\\"\\n\\\"/>\";\n return div.innerHTML.indexOf(' ') > 0\n}\n\n// #3663: IE encodes newlines inside attribute values while other browsers don't\nvar shouldDecodeNewlines = inBrowser ? getShouldDecode(false) : false;\n// #6828: chrome encodes content in a[href]\nvar shouldDecodeNewlinesForHref = inBrowser ? getShouldDecode(true) : false;\n\n/* */\n\nvar idToTemplate = cached(function (id) {\n var el = query(id);\n return el && el.innerHTML\n});\n\nvar mount = Vue.prototype.$mount;\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && query(el);\n\n /* istanbul ignore if */\n if (el === document.body || el === document.documentElement) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Do not mount Vue to <html> or <body> - mount to normal elements instead.\"\n );\n return this\n }\n\n var options = this.$options;\n // resolve template/el and convert to render function\n if (!options.render) {\n var template = options.template;\n if (template) {\n if (typeof template === 'string') {\n if (template.charAt(0) === '#') {\n template = idToTemplate(template);\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && !template) {\n warn(\n (\"Template element not found or is empty: \" + (options.template)),\n this\n );\n }\n }\n } else if (template.nodeType) {\n template = template.innerHTML;\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn('invalid template option:' + template, this);\n }\n return this\n }\n } else if (el) {\n template = getOuterHTML(el);\n }\n if (template) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n mark('compile');\n }\n\n var ref = compileToFunctions(template, {\n shouldDecodeNewlines: shouldDecodeNewlines,\n shouldDecodeNewlinesForHref: shouldDecodeNewlinesForHref,\n delimiters: options.delimiters,\n comments: options.comments\n }, this);\n var render = ref.render;\n var staticRenderFns = ref.staticRenderFns;\n options.render = render;\n options.staticRenderFns = staticRenderFns;\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n mark('compile end');\n measure((\"vue \" + (this._name) + \" compile\"), 'compile', 'compile end');\n }\n }\n }\n return mount.call(this, el, hydrating)\n};\n\n/**\n * Get outerHTML of elements, taking care\n * of SVG elements in IE as well.\n */\nfunction getOuterHTML (el) {\n if (el.outerHTML) {\n return el.outerHTML\n } else {\n var container = document.createElement('div');\n container.appendChild(el.cloneNode(true));\n return container.innerHTML\n }\n}\n\nVue.compile = compileToFunctions;\n\nexport default Vue;\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.VueMultiselect=e():t.VueMultiselect=e()}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,\"a\",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p=\"/\",e(e.s=66)}([function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e,n){t.exports=!n(12)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var i=n(10),r=n(43),o=n(31),s=Object.defineProperty;e.f=n(1)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e,n){var i=n(77),r=n(21);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(9),r=n(52),o=n(18),s=n(55),u=n(53),a=function(t,e,n){var l,c,f,p,h=t&a.F,d=t&a.G,v=t&a.S,y=t&a.P,g=t&a.B,b=d?i:v?i[e]||(i[e]={}):(i[e]||{}).prototype,m=d?r:r[e]||(r[e]={}),_=m.prototype||(m.prototype={});d&&(n=e);for(l in n)c=!h&&b&&void 0!==b[l],f=(c?b:n)[l],p=g&&c?u(f,i):y&&\"function\"==typeof f?u(Function.call,f):f,b&&s(b,l,f,t&a.U),m[l]!=f&&o(m,l,p),y&&_[l]!=f&&(_[l]=f)};i.core=r,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,e,n){var i=n(3),r=n(15);t.exports=n(1)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var i=n(29)(\"wks\"),r=n(16),o=n(0).Symbol,s=\"function\"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)(\"Symbol.\"+t))}).store=i},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e,n){var i=n(13);t.exports=function(t){if(!i(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e){var n=t.exports={version:\"2.4.0\"};\"number\"==typeof __e&&(__e=n)},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var i=n(48),r=n(22);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+i).toString(36))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e,n){var i=n(109),r=n(110);t.exports=n(35)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var i=n(8);t.exports=function(t,e){return!!t&&i(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e){t.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(t,e,n){var i=n(0),r=n(11),o=n(74),s=n(6),u=function(t,e,n){var a,l,c,f=t&u.F,p=t&u.G,h=t&u.S,d=t&u.P,v=t&u.B,y=t&u.W,g=p?r:r[e]||(r[e]={}),b=g.prototype,m=p?i:h?i[e]:(i[e]||{}).prototype;p&&(n=e);for(a in n)(l=!f&&m&&void 0!==m[a])&&a in g||(c=l?m[a]:n[a],g[a]=p&&\"function\"!=typeof m[a]?n[a]:v&&l?o(c,i):y&&m[a]==c?function(t){var e=function(e,n,i){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return t.apply(this,arguments)};return e.prototype=t.prototype,e}(c):d&&\"function\"==typeof c?o(Function.call,c):c,d&&((g.virtual||(g.virtual={}))[a]=c,t&u.R&&b&&!b[a]&&s(b,a,c)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports={}},function(t,e){t.exports=!0},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var i=n(3).f,r=n(2),o=n(7)(\"toStringTag\");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(29)(\"keys\"),r=n(16);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(0),r=i[\"__core-js_shared__\"]||(i[\"__core-js_shared__\"]={});t.exports=function(t){return r[t]||(r[t]={})}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(13);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if(\"function\"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e,n){var i=n(0),r=n(11),o=n(25),s=n(33),u=n(3).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=o?{}:i.Symbol||{});\"_\"==t.charAt(0)||t in e||u(e,t,{value:s.f(t)})}},function(t,e,n){e.f=n(7)},function(t,e,n){var i=n(53),r=n(36),o=n(57),s=n(37),u=n(104);t.exports=function(t,e){var n=1==t,a=2==t,l=3==t,c=4==t,f=6==t,p=5==t||f,h=e||u;return function(e,u,d){for(var v,y,g=o(e),b=r(g),m=i(u,d,3),_=s(b.length),x=0,w=n?h(e,_):a?h(e,0):void 0;_>x;x++)if((p||x in b)&&(v=b[x],y=m(v,x,g),t))if(n)w[x]=y;else if(y)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:w.push(v)}else if(c)return!1;return f?-1:l||c?c:w}}},function(t,e,n){t.exports=!n(8)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e,n){var i=n(51);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==i(t)?t.split(\"\"):Object(t)}},function(t,e,n){var i=n(56),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(111)(\"wks\"),r=n(58),o=n(9).Symbol,s=\"function\"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)(\"Symbol.\"+t))}).store=i},function(t,e,n){\"use strict\";function i(t){return 0!==t&&(!(!Array.isArray(t)||0!==t.length)||!t)}function r(t){return function(){return!t.apply(void 0,arguments)}}function o(t,e){return void 0===t&&(t=\"undefined\"),null===t&&(t=\"null\"),!1===t&&(t=\"false\"),-1!==t.toString().toLowerCase().indexOf(e.trim())}function s(t,e,n,i){return t.filter(function(t){return o(i(t,n),e)})}function u(t){return t.filter(function(t){return!t.$isLabel})}function a(t,e){return function(n){return n.reduce(function(n,i){return i[t]&&i[t].length?(n.push({$groupLabel:i[e],$isLabel:!0}),n.concat(i[t])):n},[])}}function l(t,e,n,i,r){return function(o){return o.map(function(o){var u;if(!o[n])return console.warn(\"Options passed to vue-multiselect do not contain groups, despite the config.\"),[];var a=s(o[n],t,e,r);return a.length?(u={},v()(u,i,o[i]),v()(u,n,a),u):[]})}}var c=n(65),f=n.n(c),p=n(59),h=(n.n(p),n(122)),d=(n.n(h),n(64)),v=n.n(d),y=n(120),g=(n.n(y),n(121)),b=(n.n(g),n(117)),m=(n.n(b),n(123)),_=(n.n(m),n(118)),x=(n.n(_),n(119)),w=(n.n(x),function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce(function(t,e){return e(t)},t)}});e.a={data:function(){return{search:\"\",isOpen:!1,prefferedOpenDirection:\"below\",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},value:{type:null,default:function(){return[]}},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:\"Select option\"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default:function(t,e){return i(t)?\"\":e?t[e]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:\"Press enter to create a tag\"},tagPosition:{type:String,default:\"top\"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default:function(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1}},mounted:function(){this.multiple||this.clearOnSelect||console.warn(\"[Vue-Multiselect warn]: ClearOnSelect and Multiple props can’t be both set to false.\"),!this.multiple&&this.max&&console.warn(\"[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false.\"),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue:function(){return this.value||0===this.value?Array.isArray(this.value)?this.value:[this.value]:[]},filteredOptions:function(){var t=this.search||\"\",e=t.toLowerCase().trim(),n=this.options.concat();return n=this.internalSearch?this.groupValues?this.filterAndFlat(n,e,this.label):s(n,e,this.label,this.customLabel):this.groupValues?a(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(r(this.isSelected)):n,this.taggable&&e.length&&!this.isExistingOption(e)&&(\"bottom\"===this.tagPosition?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys:function(){var t=this;return this.trackBy?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue},optionKeys:function(){var t=this;return(this.groupValues?this.flatAndStrip(this.options):this.options).map(function(e){return t.customLabel(e,t.label).toString().toLowerCase()})},currentOptionLabel:function(){return this.multiple?this.searchable?\"\":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?\"\":this.placeholder}},watch:{internalValue:function(){this.resetAfter&&this.internalValue.length&&(this.search=\"\",this.$emit(\"input\",this.multiple?[]:null))},search:function(){this.$emit(\"search-change\",this.search,this.id)}},methods:{getValue:function(){return this.multiple?this.internalValue:0===this.internalValue.length?null:this.internalValue[0]},filterAndFlat:function(t,e,n){return w(l(e,n,this.groupValues,this.groupLabel,this.customLabel),a(this.groupValues,this.groupLabel))(t)},flatAndStrip:function(t){return w(a(this.groupValues,this.groupLabel),u)(t)},updateSearch:function(t){this.search=t},isExistingOption:function(t){return!!this.options&&this.optionKeys.indexOf(t)>-1},isSelected:function(t){var e=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(e)>-1},getOptionLabel:function(t){if(i(t))return\"\";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;var e=this.customLabel(t,this.label);return i(e)?\"\":e},select:function(t,e){if(t.$isLabel&&this.groupSelect)return void this.selectGroup(t);if(!(-1!==this.blockKeys.indexOf(e)||this.disabled||t.$isDisabled||t.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&(\"Tab\"!==e||this.pointerDirty)){if(t.isTag)this.$emit(\"tag\",t.label,this.id),this.search=\"\",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t))return void(\"Tab\"!==e&&this.removeElement(t));this.$emit(\"select\",t,this.id),this.multiple?this.$emit(\"input\",this.internalValue.concat([t]),this.id):this.$emit(\"input\",t,this.id),this.clearOnSelect&&(this.search=\"\")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(t){var e=this,n=this.options.find(function(n){return n[e.groupLabel]===t.$groupLabel});if(n)if(this.wholeGroupSelected(n)){this.$emit(\"remove\",n[this.groupValues],this.id);var i=this.internalValue.filter(function(t){return-1===n[e.groupValues].indexOf(t)});this.$emit(\"input\",i,this.id)}else{var o=n[this.groupValues].filter(r(this.isSelected));this.$emit(\"select\",o,this.id),this.$emit(\"input\",this.internalValue.concat(o),this.id)}},wholeGroupSelected:function(t){return t[this.groupValues].every(this.isSelected)},removeElement:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var n=\"object\"===f()(t)?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.$emit(\"remove\",t,this.id),this.multiple){var i=this.internalValue.slice(0,n).concat(this.internalValue.slice(n+1));this.$emit(\"input\",i,this.id)}else this.$emit(\"input\",null,this.id);this.closeOnSelect&&e&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf(\"Delete\")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var t=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=\"\"),this.$nextTick(function(){return t.$refs.search.focus()})):this.$el.focus(),this.$emit(\"open\",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=\"\"),this.$emit(\"close\",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if(\"undefined\"!=typeof window){var t=this.$el.getBoundingClientRect().top,e=window.innerHeight-this.$el.getBoundingClientRect().bottom;e>this.maxHeight||e>t||\"below\"===this.openDirection||\"bottom\"===this.openDirection?(this.prefferedOpenDirection=\"below\",this.optimizedHeight=Math.min(e-40,this.maxHeight)):(this.prefferedOpenDirection=\"above\",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}}}},function(t,e,n){\"use strict\";var i=n(59);n.n(i);e.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(t,e){return{\"multiselect__option--highlight\":t===this.pointer&&this.showPointer,\"multiselect__option--selected\":this.isSelected(e)}},groupHighlight:function(t,e){var n=this;if(!this.groupSelect)return[\"multiselect__option--disabled\"];var i=this.options.find(function(t){return t[n.groupLabel]===e.$groupLabel});return[this.groupSelect?\"multiselect__option--group\":\"multiselect__option--disabled\",{\"multiselect__option--highlight\":t===this.pointer&&this.showPointer},{\"multiselect__option--group-selected\":this.wholeGroupSelected(i)}]},addPointerElement:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"Enter\",e=t.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],e),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward:function(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(t){this.pointer=t,this.pointerDirty=!0}}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var i=n(13),r=n(0).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){t.exports=!n(1)&&!n(12)(function(){return 7!=Object.defineProperty(n(42)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){\"use strict\";var i=n(25),r=n(23),o=n(49),s=n(6),u=n(2),a=n(24),l=n(79),c=n(27),f=n(86),p=n(7)(\"iterator\"),h=!([].keys&&\"next\"in[].keys()),d=function(){return this};t.exports=function(t,e,n,v,y,g,b){l(n,e,v);var m,_,x,w=function(t){if(!h&&t in P)return P[t];switch(t){case\"keys\":case\"values\":return function(){return new n(this,t)}}return function(){return new n(this,t)}},S=e+\" Iterator\",O=\"values\"==y,L=!1,P=t.prototype,k=P[p]||P[\"@@iterator\"]||y&&P[y],E=k||w(y),j=y?O?w(\"entries\"):E:void 0,V=\"Array\"==e?P.entries||k:k;if(V&&(x=f(V.call(new t)))!==Object.prototype&&(c(x,S,!0),i||u(x,p)||s(x,p,d)),O&&k&&\"values\"!==k.name&&(L=!0,E=function(){return k.call(this)}),i&&!b||!h&&!L&&P[p]||s(P,p,E),a[e]=E,a[S]=d,y)if(m={values:O?E:w(\"values\"),keys:g?E:w(\"keys\"),entries:j},b)for(_ in m)_ in P||o(P,_,m[_]);else r(r.P+r.F*(h||L),e,m);return m}},function(t,e,n){var i=n(10),r=n(83),o=n(22),s=n(28)(\"IE_PROTO\"),u=function(){},a=function(){var t,e=n(42)(\"iframe\"),i=o.length;for(e.style.display=\"none\",n(76).appendChild(e),e.src=\"javascript:\",t=e.contentWindow.document,t.open(),t.write(\"<script>document.F=Object<\\/script>\"),t.close(),a=t.F;i--;)delete a.prototype[o[i]];return a()};t.exports=Object.create||function(t,e){var n;return null!==t?(u.prototype=i(t),n=new u,u.prototype=null,n[s]=t):n=a(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(48),r=n(22).concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var i=n(2),r=n(4),o=n(73)(!1),s=n(28)(\"IE_PROTO\");t.exports=function(t,e){var n,u=r(t),a=0,l=[];for(n in u)n!=s&&i(u,n)&&l.push(n);for(;e.length>a;)i(u,n=e[a++])&&(~o(l,n)||l.push(n));return l}},function(t,e,n){t.exports=n(6)},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){var n=t.exports={version:\"2.4.0\"};\"number\"==typeof __e&&(__e=n)},function(t,e,n){var i=n(50);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(51);t.exports=Array.isArray||function(t){return\"Array\"==i(t)}},function(t,e,n){var i=n(9),r=n(18),o=n(107),s=n(58)(\"src\"),u=Function.toString,a=(\"\"+u).split(\"toString\");n(52).inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,u){var l=\"function\"==typeof n;l&&(o(n,\"name\")||r(n,\"name\",e)),t[e]!==n&&(l&&(o(n,s)||r(n,s,t[e]?\"\"+t[e]:a.join(String(e)))),t===i?t[e]=n:u?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,\"toString\",function(){return\"function\"==typeof this&&this[s]||u.call(this)})},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){var i=n(17);t.exports=function(t){return Object(i(t))}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+i).toString(36))}},function(t,e,n){\"use strict\";var i=n(5),r=n(34)(5),o=!0;\"find\"in[]&&Array(1).find(function(){o=!1}),i(i.P+i.F*o,\"Array\",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(99)(\"find\")},function(t,e,n){\"use strict\";function i(t){n(124)}var r=n(67),o=n(126),s=n(125),u=i,a=s(r.a,o.a,!1,u,null,null);e.a=a.exports},function(t,e,n){t.exports=n(68)},function(t,e,n){t.exports=n(69)},function(t,e,n){t.exports=n(70)},function(t,e,n){function i(t,e,n){return e in t?r(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var r=n(61);t.exports=i},function(t,e,n){function i(t){return(i=\"function\"==typeof s&&\"symbol\"==typeof o?function(t){return typeof t}:function(t){return t&&\"function\"==typeof s&&t.constructor===s&&t!==s.prototype?\"symbol\":typeof t})(t)}function r(e){return\"function\"==typeof s&&\"symbol\"===i(o)?t.exports=r=function(t){return i(t)}:t.exports=r=function(t){return t&&\"function\"==typeof s&&t.constructor===s&&t!==s.prototype?\"symbol\":i(t)},r(e)}var o=n(63),s=n(62);t.exports=r},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var i=n(60),r=n(39),o=n(40);n.d(e,\"Multiselect\",function(){return i.a}),n.d(e,\"multiselectMixin\",function(){return r.a}),n.d(e,\"pointerMixin\",function(){return o.a}),e.default=i.a},function(t,e,n){\"use strict\";var i=n(39),r=n(40);e.a={name:\"vue-multiselect\",mixins:[i.a,r.a],props:{name:{type:String,default:\"\"},selectLabel:{type:String,default:\"Press enter to select\"},selectGroupLabel:{type:String,default:\"Press enter to select group\"},selectedLabel:{type:String,default:\"Selected\"},deselectLabel:{type:String,default:\"Press enter to remove\"},deselectGroupLabel:{type:String,default:\"Press enter to deselect group\"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(t){return\"and \".concat(t,\" more\")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:\"\"},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return this.singleValue&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:\"\"},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:\"\"},selectLabelText:function(){return this.showLabels?this.selectLabel:\"\"},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:\"\"},selectedLabelText:function(){return this.showLabels?this.selectedLabel:\"\"},inputStyle:function(){if(this.multiple&&this.value&&this.value.length)return this.isOpen?{width:\"auto\"}:{width:\"0\",position:\"absolute\",padding:\"0\"}},contentStyle:function(){return this.options.length?{display:\"inline-block\"}:{display:\"block\"}},isAbove:function(){return\"above\"===this.openDirection||\"top\"===this.openDirection||\"below\"!==this.openDirection&&\"bottom\"!==this.openDirection&&\"above\"===this.prefferedOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(t,e,n){n(92);var i=n(11).Object;t.exports=function(t,e,n){return i.defineProperty(t,e,n)}},function(t,e,n){n(95),n(93),n(96),n(97),t.exports=n(11).Symbol},function(t,e,n){n(94),n(98),t.exports=n(33).f(\"iterator\")},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){t.exports=function(){}},function(t,e,n){var i=n(4),r=n(89),o=n(88);t.exports=function(t){return function(e,n,s){var u,a=i(e),l=r(a.length),c=o(s,l);if(t&&n!=n){for(;l>c;)if((u=a[c++])!=u)return!0}else for(;l>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(71);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var i=n(14),r=n(47),o=n(26);t.exports=function(t){var e=i(t),n=r.f;if(n)for(var s,u=n(t),a=o.f,l=0;u.length>l;)a.call(t,s=u[l++])&&e.push(s);return e}},function(t,e,n){t.exports=n(0).document&&document.documentElement},function(t,e,n){var i=n(41);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==i(t)?t.split(\"\"):Object(t)}},function(t,e,n){var i=n(41);t.exports=Array.isArray||function(t){return\"Array\"==i(t)}},function(t,e,n){\"use strict\";var i=n(45),r=n(15),o=n(27),s={};n(6)(s,n(7)(\"iterator\"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+\" Iterator\")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(14),r=n(4);t.exports=function(t,e){for(var n,o=r(t),s=i(o),u=s.length,a=0;u>a;)if(o[n=s[a++]]===e)return n}},function(t,e,n){var i=n(16)(\"meta\"),r=n(13),o=n(2),s=n(3).f,u=0,a=Object.isExtensible||function(){return!0},l=!n(12)(function(){return a(Object.preventExtensions({}))}),c=function(t){s(t,i,{value:{i:\"O\"+ ++u,w:{}}})},f=function(t,e){if(!r(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!o(t,i)){if(!a(t))return\"F\";if(!e)return\"E\";c(t)}return t[i].i},p=function(t,e){if(!o(t,i)){if(!a(t))return!0;if(!e)return!1;c(t)}return t[i].w},h=function(t){return l&&d.NEED&&a(t)&&!o(t,i)&&c(t),t},d=t.exports={KEY:i,NEED:!1,fastKey:f,getWeak:p,onFreeze:h}},function(t,e,n){var i=n(3),r=n(10),o=n(14);t.exports=n(1)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),u=s.length,a=0;u>a;)i.f(t,n=s[a++],e[n]);return t}},function(t,e,n){var i=n(26),r=n(15),o=n(4),s=n(31),u=n(2),a=n(43),l=Object.getOwnPropertyDescriptor;e.f=n(1)?l:function(t,e){if(t=o(t),e=s(e,!0),a)try{return l(t,e)}catch(t){}if(u(t,e))return r(!i.f.call(t,e),t[e])}},function(t,e,n){var i=n(4),r=n(46).f,o={}.toString,s=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],u=function(t){try{return r(t)}catch(t){return s.slice()}};t.exports.f=function(t){return s&&\"[object Window]\"==o.call(t)?u(t):r(i(t))}},function(t,e,n){var i=n(2),r=n(90),o=n(28)(\"IE_PROTO\"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){var i=n(30),r=n(21);t.exports=function(t){return function(e,n){var o,s,u=String(r(e)),a=i(n),l=u.length;return a<0||a>=l?t?\"\":void 0:(o=u.charCodeAt(a),o<55296||o>56319||a+1===l||(s=u.charCodeAt(a+1))<56320||s>57343?t?u.charAt(a):o:t?u.slice(a,a+2):s-56320+(o-55296<<10)+65536)}}},function(t,e,n){var i=n(30),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(30),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(21);t.exports=function(t){return Object(i(t))}},function(t,e,n){\"use strict\";var i=n(72),r=n(80),o=n(24),s=n(4);t.exports=n(44)(Array,\"Array\",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):\"keys\"==e?r(0,n):\"values\"==e?r(0,t[n]):r(0,[n,t[n]])},\"values\"),o.Arguments=o.Array,i(\"keys\"),i(\"values\"),i(\"entries\")},function(t,e,n){var i=n(23);i(i.S+i.F*!n(1),\"Object\",{defineProperty:n(3).f})},function(t,e){},function(t,e,n){\"use strict\";var i=n(87)(!0);n(44)(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=i(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){\"use strict\";var i=n(0),r=n(2),o=n(1),s=n(23),u=n(49),a=n(82).KEY,l=n(12),c=n(29),f=n(27),p=n(16),h=n(7),d=n(33),v=n(32),y=n(81),g=n(75),b=n(78),m=n(10),_=n(4),x=n(31),w=n(15),S=n(45),O=n(85),L=n(84),P=n(3),k=n(14),E=L.f,j=P.f,V=O.f,C=i.Symbol,T=i.JSON,A=T&&T.stringify,$=h(\"_hidden\"),D=h(\"toPrimitive\"),F={}.propertyIsEnumerable,M=c(\"symbol-registry\"),B=c(\"symbols\"),N=c(\"op-symbols\"),R=Object.prototype,H=\"function\"==typeof C,G=i.QObject,I=!G||!G.prototype||!G.prototype.findChild,K=o&&l(function(){return 7!=S(j({},\"a\",{get:function(){return j(this,\"a\",{value:7}).a}})).a})?function(t,e,n){var i=E(R,e);i&&delete R[e],j(t,e,n),i&&t!==R&&j(R,e,i)}:j,z=function(t){var e=B[t]=S(C.prototype);return e._k=t,e},U=H&&\"symbol\"==typeof C.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof C},W=function(t,e,n){return t===R&&W(N,e,n),m(t),e=x(e,!0),m(n),r(B,e)?(n.enumerable?(r(t,$)&&t[$][e]&&(t[$][e]=!1),n=S(n,{enumerable:w(0,!1)})):(r(t,$)||j(t,$,w(1,{})),t[$][e]=!0),K(t,e,n)):j(t,e,n)},J=function(t,e){m(t);for(var n,i=g(e=_(e)),r=0,o=i.length;o>r;)W(t,n=i[r++],e[n]);return t},q=function(t,e){return void 0===e?S(t):J(S(t),e)},X=function(t){var e=F.call(this,t=x(t,!0));return!(this===R&&r(B,t)&&!r(N,t))&&(!(e||!r(this,t)||!r(B,t)||r(this,$)&&this[$][t])||e)},Y=function(t,e){if(t=_(t),e=x(e,!0),t!==R||!r(B,e)||r(N,e)){var n=E(t,e);return!n||!r(B,e)||r(t,$)&&t[$][e]||(n.enumerable=!0),n}},Q=function(t){for(var e,n=V(_(t)),i=[],o=0;n.length>o;)r(B,e=n[o++])||e==$||e==a||i.push(e);return i},Z=function(t){for(var e,n=t===R,i=V(n?N:_(t)),o=[],s=0;i.length>s;)!r(B,e=i[s++])||n&&!r(R,e)||o.push(B[e]);return o};H||(C=function(){if(this instanceof C)throw TypeError(\"Symbol is not a constructor!\");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===R&&e.call(N,n),r(this,$)&&r(this[$],t)&&(this[$][t]=!1),K(this,t,w(1,n))};return o&&I&&K(R,t,{configurable:!0,set:e}),z(t)},u(C.prototype,\"toString\",function(){return this._k}),L.f=Y,P.f=W,n(46).f=O.f=Q,n(26).f=X,n(47).f=Z,o&&!n(25)&&u(R,\"propertyIsEnumerable\",X,!0),d.f=function(t){return z(h(t))}),s(s.G+s.W+s.F*!H,{Symbol:C});for(var tt=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),et=0;tt.length>et;)h(tt[et++]);for(var tt=k(h.store),et=0;tt.length>et;)v(tt[et++]);s(s.S+s.F*!H,\"Symbol\",{for:function(t){return r(M,t+=\"\")?M[t]:M[t]=C(t)},keyFor:function(t){if(U(t))return y(M,t);throw TypeError(t+\" is not a symbol!\")},useSetter:function(){I=!0},useSimple:function(){I=!1}}),s(s.S+s.F*!H,\"Object\",{create:q,defineProperty:W,defineProperties:J,getOwnPropertyDescriptor:Y,getOwnPropertyNames:Q,getOwnPropertySymbols:Z}),T&&s(s.S+s.F*(!H||l(function(){var t=C();return\"[null]\"!=A([t])||\"{}\"!=A({a:t})||\"{}\"!=A(Object(t))})),\"JSON\",{stringify:function(t){if(void 0!==t&&!U(t)){for(var e,n,i=[t],r=1;arguments.length>r;)i.push(arguments[r++]);return e=i[1],\"function\"==typeof e&&(n=e),!n&&b(e)||(e=function(t,e){if(n&&(e=n.call(this,t,e)),!U(e))return e}),i[1]=e,A.apply(T,i)}}}),C.prototype[D]||n(6)(C.prototype,D,C.prototype.valueOf),f(C,\"Symbol\"),f(Math,\"Math\",!0),f(i.JSON,\"JSON\",!0)},function(t,e,n){n(32)(\"asyncIterator\")},function(t,e,n){n(32)(\"observable\")},function(t,e,n){n(91);for(var i=n(0),r=n(6),o=n(24),s=n(7)(\"toStringTag\"),u=[\"NodeList\",\"DOMTokenList\",\"MediaList\",\"StyleSheetList\",\"CSSRuleList\"],a=0;a<5;a++){var l=u[a],c=i[l],f=c&&c.prototype;f&&!f[s]&&r(f,s,l),o[l]=o.Array}},function(t,e,n){var i=n(38)(\"unscopables\"),r=Array.prototype;void 0==r[i]&&n(18)(r,i,{}),t.exports=function(t){r[i][t]=!0}},function(t,e,n){var i=n(19);t.exports=function(t){if(!i(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e,n){var i=n(115),r=n(37),o=n(114);t.exports=function(t){return function(e,n,s){var u,a=i(e),l=r(a.length),c=o(s,l);if(t&&n!=n){for(;l>c;)if((u=a[c++])!=u)return!0}else for(;l>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(50),r=n(57),o=n(36),s=n(37);t.exports=function(t,e,n,u,a){i(e);var l=r(t),c=o(l),f=s(l.length),p=a?f-1:0,h=a?-1:1;if(n<2)for(;;){if(p in c){u=c[p],p+=h;break}if(p+=h,a?p<0:f<=p)throw TypeError(\"Reduce of empty array with no initial value\")}for(;a?p>=0:f>p;p+=h)p in c&&(u=e(u,c[p],p,l));return u}},function(t,e,n){var i=n(19),r=n(54),o=n(38)(\"species\");t.exports=function(t){var e;return r(t)&&(e=t.constructor,\"function\"!=typeof e||e!==Array&&!r(e.prototype)||(e=void 0),i(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var i=n(103);t.exports=function(t,e){return new(i(t))(e)}},function(t,e,n){var i=n(19),r=n(9).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e,n){\"use strict\";var i=n(18),r=n(55),o=n(8),s=n(17),u=n(38);t.exports=function(t,e,n){var a=u(t),l=n(s,a,\"\"[t]),c=l[0],f=l[1];o(function(){var e={};return e[a]=function(){return 7},7!=\"\"[t](e)})&&(r(String.prototype,t,c),i(RegExp.prototype,a,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){t.exports=!n(35)&&!n(8)(function(){return 7!=Object.defineProperty(n(105)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){var i=n(100),r=n(108),o=n(116),s=Object.defineProperty;e.f=n(35)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var i=n(9),r=i[\"__core-js_shared__\"]||(i[\"__core-js_shared__\"]={});t.exports=function(t){return r[t]||(r[t]={})}},function(t,e,n){var i=n(5),r=n(17),o=n(8),s=n(113),u=\"[\"+s+\"]\",a=\"
\",l=RegExp(\"^\"+u+u+\"*\"),c=RegExp(u+u+\"*$\"),f=function(t,e,n){var r={},u=o(function(){return!!s[t]()||a[t]()!=a}),l=r[t]=u?e(p):s[t];n&&(r[n]=l),i(i.P+i.F*u,\"String\",r)},p=f.trim=function(t,e){return t=String(r(t)),1&e&&(t=t.replace(l,\"\")),2&e&&(t=t.replace(c,\"\")),t};t.exports=f},function(t,e){t.exports=\"\\t\\n\\v\\f\\r \\u2028\\u2029\\ufeff\"},function(t,e,n){var i=n(56),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(36),r=n(17);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(19);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if(\"function\"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&\"function\"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e,n){\"use strict\";var i=n(5),r=n(34)(2);i(i.P+i.F*!n(20)([].filter,!0),\"Array\",{filter:function(t){return r(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var i=n(5),r=n(101)(!1),o=[].indexOf,s=!!o&&1/[1].indexOf(1,-0)<0;i(i.P+i.F*(s||!n(20)(o)),\"Array\",{indexOf:function(t){return s?o.apply(this,arguments)||0:r(this,t,arguments[1])}})},function(t,e,n){var i=n(5);i(i.S,\"Array\",{isArray:n(54)})},function(t,e,n){\"use strict\";var i=n(5),r=n(34)(1);i(i.P+i.F*!n(20)([].map,!0),\"Array\",{map:function(t){return r(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var i=n(5),r=n(102);i(i.P+i.F*!n(20)([].reduce,!0),\"Array\",{reduce:function(t){return r(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){n(106)(\"search\",1,function(t,e,n){return[function(n){\"use strict\";var i=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,i):new RegExp(n)[e](String(i))},n]})},function(t,e,n){\"use strict\";n(112)(\"trim\",function(t){return function(){return t(this,3)}})},function(t,e){},function(t,e){t.exports=function(t,e,n,i,r,o){var s,u=t=t||{},a=typeof t.default;\"object\"!==a&&\"function\"!==a||(s=t,u=t.default);var l=\"function\"==typeof u?u.options:u;e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0),n&&(l.functional=!0),r&&(l._scopeId=r);var c;if(o?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=i),c){var f=l.functional,p=f?l.render:l.beforeCreate;f?(l._injectStyles=c,l.render=function(t,e){return c.call(e),p(t,e)}):l.beforeCreate=p?[].concat(p,c):[c]}return{esModule:s,exports:u,options:l}}},function(t,e,n){\"use strict\";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"multiselect\",class:{\"multiselect--active\":t.isOpen,\"multiselect--disabled\":t.disabled,\"multiselect--above\":t.isAbove},attrs:{tabindex:t.searchable?-1:t.tabindex},on:{focus:function(e){t.activate()},blur:function(e){!t.searchable&&t.deactivate()},keydown:[function(e){return\"button\"in e||!t._k(e.keyCode,\"down\",40,e.key,\"ArrowDown\")?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerForward()):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"up\",38,e.key,\"ArrowUp\")?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerBackward()):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")||!t._k(e.keyCode,\"tab\",9,e.key,\"Tab\")?(e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null}],keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key,\"Escape\"))return null;t.deactivate()}}},[t._t(\"caret\",[n(\"div\",{staticClass:\"multiselect__select\",on:{mousedown:function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}}})],{toggle:t.toggle}),t._v(\" \"),t._t(\"clear\",null,{search:t.search}),t._v(\" \"),n(\"div\",{ref:\"tags\",staticClass:\"multiselect__tags\"},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.visibleValues.length>0,expression:\"visibleValues.length > 0\"}],staticClass:\"multiselect__tags-wrap\"},[t._l(t.visibleValues,function(e){return[t._t(\"tag\",[n(\"span\",{staticClass:\"multiselect__tag\"},[n(\"span\",{domProps:{textContent:t._s(t.getOptionLabel(e))}}),t._v(\" \"),n(\"i\",{staticClass:\"multiselect__tag-icon\",attrs:{\"aria-hidden\":\"true\",tabindex:\"1\"},on:{keydown:function(n){if(!(\"button\"in n)&&t._k(n.keyCode,\"enter\",13,n.key,\"Enter\"))return null;n.preventDefault(),t.removeElement(e)},mousedown:function(n){n.preventDefault(),t.removeElement(e)}}})])],{option:e,search:t.search,remove:t.removeElement})]})],2),t._v(\" \"),t.internalValue&&t.internalValue.length>t.limit?[t._t(\"limit\",[n(\"strong\",{staticClass:\"multiselect__strong\",domProps:{textContent:t._s(t.limitText(t.internalValue.length-t.limit))}})])]:t._e(),t._v(\" \"),n(\"transition\",{attrs:{name:\"multiselect__loading\"}},[t._t(\"loading\",[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.loading,expression:\"loading\"}],staticClass:\"multiselect__spinner\"})])],2),t._v(\" \"),n(\"input\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isOpen&&t.searchable,expression:\"isOpen && searchable\"}],ref:\"search\",staticClass:\"multiselect__input\",style:t.inputStyle,attrs:{name:t.name,id:t.id,type:\"text\",autocomplete:\"off\",placeholder:t.placeholder,disabled:t.disabled,tabindex:t.tabindex},domProps:{value:t.search},on:{input:function(e){t.updateSearch(e.target.value)},focus:function(e){e.preventDefault(),t.activate()},blur:function(e){e.preventDefault(),t.deactivate()},keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key,\"Escape\"))return null;t.deactivate()},keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key,\"ArrowDown\"))return null;e.preventDefault(),t.pointerForward()},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key,\"ArrowUp\"))return null;e.preventDefault(),t.pointerBackward()},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?(e.preventDefault(),e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"delete\",[8,46],e.key,[\"Backspace\",\"Delete\"]))return null;e.stopPropagation(),t.removeLastElement()}]}}),t._v(\" \"),t.isSingleLabelVisible?n(\"span\",{staticClass:\"multiselect__single\",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t(\"singleLabel\",[[t._v(t._s(t.currentOptionLabel))]],{option:t.singleValue})],2):t._e(),t._v(\" \"),t.isPlaceholderVisible?n(\"span\",{on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t(\"placeholder\",[n(\"span\",{staticClass:\"multiselect__single\"},[t._v(\"\\n \"+t._s(t.placeholder)+\"\\n \")])])],2):t._e()],2),t._v(\" \"),n(\"transition\",{attrs:{name:\"multiselect\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isOpen,expression:\"isOpen\"}],ref:\"list\",staticClass:\"multiselect__content-wrapper\",style:{maxHeight:t.optimizedHeight+\"px\"},on:{focus:t.activate,mousedown:function(t){t.preventDefault()}}},[n(\"ul\",{staticClass:\"multiselect__content\",style:t.contentStyle},[t._t(\"beforeList\"),t._v(\" \"),t.multiple&&t.max===t.internalValue.length?n(\"li\",[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"maxElements\",[t._v(\"Maximum of \"+t._s(t.max)+\" options selected. First remove a selected option to select another.\")])],2)]):t._e(),t._v(\" \"),!t.max||t.internalValue.length<t.max?t._l(t.filteredOptions,function(e,i){return n(\"li\",{key:i,staticClass:\"multiselect__element\"},[e&&(e.$isLabel||e.$isDisabled)?t._e():n(\"span\",{staticClass:\"multiselect__option\",class:t.optionHighlight(i,e),attrs:{\"data-select\":e&&e.isTag?t.tagPlaceholder:t.selectLabelText,\"data-selected\":t.selectedLabelText,\"data-deselect\":t.deselectLabelText},on:{click:function(n){n.stopPropagation(),t.select(e)},mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.pointerSet(i)}}},[t._t(\"option\",[n(\"span\",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2),t._v(\" \"),e&&(e.$isLabel||e.$isDisabled)?n(\"span\",{staticClass:\"multiselect__option\",class:t.groupHighlight(i,e),attrs:{\"data-select\":t.groupSelect&&t.selectGroupLabelText,\"data-deselect\":t.groupSelect&&t.deselectGroupLabelText},on:{mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.groupSelect&&t.pointerSet(i)},mousedown:function(n){n.preventDefault(),t.selectGroup(e)}}},[t._t(\"option\",[n(\"span\",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2):t._e()])}):t._e(),t._v(\" \"),n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.showNoResults&&0===t.filteredOptions.length&&t.search&&!t.loading,expression:\"showNoResults && (filteredOptions.length === 0 && search && !loading)\"}]},[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"noResult\",[t._v(\"No elements found. Consider changing the search query.\")])],2)]),t._v(\" \"),t._t(\"afterList\")],2)])])],2)},r=[],o={render:i,staticRenderFns:r};e.a=o}])});","'use strict';\n\nvar bind = require('./helpers/bind');\nvar isBuffer = require('is-buffer');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = merge(result[key], val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","'use strict';\nif (require('./_descriptors')) {\n var LIBRARY = require('./_library');\n var global = require('./_global');\n var fails = require('./_fails');\n var $export = require('./_export');\n var $typed = require('./_typed');\n var $buffer = require('./_typed-buffer');\n var ctx = require('./_ctx');\n var anInstance = require('./_an-instance');\n var propertyDesc = require('./_property-desc');\n var hide = require('./_hide');\n var redefineAll = require('./_redefine-all');\n var toInteger = require('./_to-integer');\n var toLength = require('./_to-length');\n var toIndex = require('./_to-index');\n var toAbsoluteIndex = require('./_to-absolute-index');\n var toPrimitive = require('./_to-primitive');\n var has = require('./_has');\n var classof = require('./_classof');\n var isObject = require('./_is-object');\n var toObject = require('./_to-object');\n var isArrayIter = require('./_is-array-iter');\n var create = require('./_object-create');\n var getPrototypeOf = require('./_object-gpo');\n var gOPN = require('./_object-gopn').f;\n var getIterFn = require('./core.get-iterator-method');\n var uid = require('./_uid');\n var wks = require('./_wks');\n var createArrayMethod = require('./_array-methods');\n var createArrayIncludes = require('./_array-includes');\n var speciesConstructor = require('./_species-constructor');\n var ArrayIterators = require('./es6.array.iterator');\n var Iterators = require('./_iterators');\n var $iterDetect = require('./_iter-detect');\n var setSpecies = require('./_set-species');\n var arrayFill = require('./_array-fill');\n var arrayCopyWithin = require('./_array-copy-within');\n var $DP = require('./_object-dp');\n var $GOPD = require('./_object-gopd');\n var dP = $DP.f;\n var gOPD = $GOPD.f;\n var RangeError = global.RangeError;\n var TypeError = global.TypeError;\n var Uint8Array = global.Uint8Array;\n var ARRAY_BUFFER = 'ArrayBuffer';\n var SHARED_BUFFER = 'Shared' + ARRAY_BUFFER;\n var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT';\n var PROTOTYPE = 'prototype';\n var ArrayProto = Array[PROTOTYPE];\n var $ArrayBuffer = $buffer.ArrayBuffer;\n var $DataView = $buffer.DataView;\n var arrayForEach = createArrayMethod(0);\n var arrayFilter = createArrayMethod(2);\n var arraySome = createArrayMethod(3);\n var arrayEvery = createArrayMethod(4);\n var arrayFind = createArrayMethod(5);\n var arrayFindIndex = createArrayMethod(6);\n var arrayIncludes = createArrayIncludes(true);\n var arrayIndexOf = createArrayIncludes(false);\n var arrayValues = ArrayIterators.values;\n var arrayKeys = ArrayIterators.keys;\n var arrayEntries = ArrayIterators.entries;\n var arrayLastIndexOf = ArrayProto.lastIndexOf;\n var arrayReduce = ArrayProto.reduce;\n var arrayReduceRight = ArrayProto.reduceRight;\n var arrayJoin = ArrayProto.join;\n var arraySort = ArrayProto.sort;\n var arraySlice = ArrayProto.slice;\n var arrayToString = ArrayProto.toString;\n var arrayToLocaleString = ArrayProto.toLocaleString;\n var ITERATOR = wks('iterator');\n var TAG = wks('toStringTag');\n var TYPED_CONSTRUCTOR = uid('typed_constructor');\n var DEF_CONSTRUCTOR = uid('def_constructor');\n var ALL_CONSTRUCTORS = $typed.CONSTR;\n var TYPED_ARRAY = $typed.TYPED;\n var VIEW = $typed.VIEW;\n var WRONG_LENGTH = 'Wrong length!';\n\n var $map = createArrayMethod(1, function (O, length) {\n return allocate(speciesConstructor(O, O[DEF_CONSTRUCTOR]), length);\n });\n\n var LITTLE_ENDIAN = fails(function () {\n // eslint-disable-next-line no-undef\n return new Uint8Array(new Uint16Array([1]).buffer)[0] === 1;\n });\n\n var FORCED_SET = !!Uint8Array && !!Uint8Array[PROTOTYPE].set && fails(function () {\n new Uint8Array(1).set({});\n });\n\n var toOffset = function (it, BYTES) {\n var offset = toInteger(it);\n if (offset < 0 || offset % BYTES) throw RangeError('Wrong offset!');\n return offset;\n };\n\n var validate = function (it) {\n if (isObject(it) && TYPED_ARRAY in it) return it;\n throw TypeError(it + ' is not a typed array!');\n };\n\n var allocate = function (C, length) {\n if (!(isObject(C) && TYPED_CONSTRUCTOR in C)) {\n throw TypeError('It is not a typed array constructor!');\n } return new C(length);\n };\n\n var speciesFromList = function (O, list) {\n return fromList(speciesConstructor(O, O[DEF_CONSTRUCTOR]), list);\n };\n\n var fromList = function (C, list) {\n var index = 0;\n var length = list.length;\n var result = allocate(C, length);\n while (length > index) result[index] = list[index++];\n return result;\n };\n\n var addGetter = function (it, key, internal) {\n dP(it, key, { get: function () { return this._d[internal]; } });\n };\n\n var $from = function from(source /* , mapfn, thisArg */) {\n var O = toObject(source);\n var aLen = arguments.length;\n var mapfn = aLen > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var iterFn = getIterFn(O);\n var i, length, values, result, step, iterator;\n if (iterFn != undefined && !isArrayIter(iterFn)) {\n for (iterator = iterFn.call(O), values = [], i = 0; !(step = iterator.next()).done; i++) {\n values.push(step.value);\n } O = values;\n }\n if (mapping && aLen > 2) mapfn = ctx(mapfn, arguments[2], 2);\n for (i = 0, length = toLength(O.length), result = allocate(this, length); length > i; i++) {\n result[i] = mapping ? mapfn(O[i], i) : O[i];\n }\n return result;\n };\n\n var $of = function of(/* ...items */) {\n var index = 0;\n var length = arguments.length;\n var result = allocate(this, length);\n while (length > index) result[index] = arguments[index++];\n return result;\n };\n\n // iOS Safari 6.x fails here\n var TO_LOCALE_BUG = !!Uint8Array && fails(function () { arrayToLocaleString.call(new Uint8Array(1)); });\n\n var $toLocaleString = function toLocaleString() {\n return arrayToLocaleString.apply(TO_LOCALE_BUG ? arraySlice.call(validate(this)) : validate(this), arguments);\n };\n\n var proto = {\n copyWithin: function copyWithin(target, start /* , end */) {\n return arrayCopyWithin.call(validate(this), target, start, arguments.length > 2 ? arguments[2] : undefined);\n },\n every: function every(callbackfn /* , thisArg */) {\n return arrayEvery(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n fill: function fill(value /* , start, end */) { // eslint-disable-line no-unused-vars\n return arrayFill.apply(validate(this), arguments);\n },\n filter: function filter(callbackfn /* , thisArg */) {\n return speciesFromList(this, arrayFilter(validate(this), callbackfn,\n arguments.length > 1 ? arguments[1] : undefined));\n },\n find: function find(predicate /* , thisArg */) {\n return arrayFind(validate(this), predicate, arguments.length > 1 ? arguments[1] : undefined);\n },\n findIndex: function findIndex(predicate /* , thisArg */) {\n return arrayFindIndex(validate(this), predicate, arguments.length > 1 ? arguments[1] : undefined);\n },\n forEach: function forEach(callbackfn /* , thisArg */) {\n arrayForEach(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n indexOf: function indexOf(searchElement /* , fromIndex */) {\n return arrayIndexOf(validate(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);\n },\n includes: function includes(searchElement /* , fromIndex */) {\n return arrayIncludes(validate(this), searchElement, arguments.length > 1 ? arguments[1] : undefined);\n },\n join: function join(separator) { // eslint-disable-line no-unused-vars\n return arrayJoin.apply(validate(this), arguments);\n },\n lastIndexOf: function lastIndexOf(searchElement /* , fromIndex */) { // eslint-disable-line no-unused-vars\n return arrayLastIndexOf.apply(validate(this), arguments);\n },\n map: function map(mapfn /* , thisArg */) {\n return $map(validate(this), mapfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n reduce: function reduce(callbackfn /* , initialValue */) { // eslint-disable-line no-unused-vars\n return arrayReduce.apply(validate(this), arguments);\n },\n reduceRight: function reduceRight(callbackfn /* , initialValue */) { // eslint-disable-line no-unused-vars\n return arrayReduceRight.apply(validate(this), arguments);\n },\n reverse: function reverse() {\n var that = this;\n var length = validate(that).length;\n var middle = Math.floor(length / 2);\n var index = 0;\n var value;\n while (index < middle) {\n value = that[index];\n that[index++] = that[--length];\n that[length] = value;\n } return that;\n },\n some: function some(callbackfn /* , thisArg */) {\n return arraySome(validate(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n },\n sort: function sort(comparefn) {\n return arraySort.call(validate(this), comparefn);\n },\n subarray: function subarray(begin, end) {\n var O = validate(this);\n var length = O.length;\n var $begin = toAbsoluteIndex(begin, length);\n return new (speciesConstructor(O, O[DEF_CONSTRUCTOR]))(\n O.buffer,\n O.byteOffset + $begin * O.BYTES_PER_ELEMENT,\n toLength((end === undefined ? length : toAbsoluteIndex(end, length)) - $begin)\n );\n }\n };\n\n var $slice = function slice(start, end) {\n return speciesFromList(this, arraySlice.call(validate(this), start, end));\n };\n\n var $set = function set(arrayLike /* , offset */) {\n validate(this);\n var offset = toOffset(arguments[1], 1);\n var length = this.length;\n var src = toObject(arrayLike);\n var len = toLength(src.length);\n var index = 0;\n if (len + offset > length) throw RangeError(WRONG_LENGTH);\n while (index < len) this[offset + index] = src[index++];\n };\n\n var $iterators = {\n entries: function entries() {\n return arrayEntries.call(validate(this));\n },\n keys: function keys() {\n return arrayKeys.call(validate(this));\n },\n values: function values() {\n return arrayValues.call(validate(this));\n }\n };\n\n var isTAIndex = function (target, key) {\n return isObject(target)\n && target[TYPED_ARRAY]\n && typeof key != 'symbol'\n && key in target\n && String(+key) == String(key);\n };\n var $getDesc = function getOwnPropertyDescriptor(target, key) {\n return isTAIndex(target, key = toPrimitive(key, true))\n ? propertyDesc(2, target[key])\n : gOPD(target, key);\n };\n var $setDesc = function defineProperty(target, key, desc) {\n if (isTAIndex(target, key = toPrimitive(key, true))\n && isObject(desc)\n && has(desc, 'value')\n && !has(desc, 'get')\n && !has(desc, 'set')\n // TODO: add validation descriptor w/o calling accessors\n && !desc.configurable\n && (!has(desc, 'writable') || desc.writable)\n && (!has(desc, 'enumerable') || desc.enumerable)\n ) {\n target[key] = desc.value;\n return target;\n } return dP(target, key, desc);\n };\n\n if (!ALL_CONSTRUCTORS) {\n $GOPD.f = $getDesc;\n $DP.f = $setDesc;\n }\n\n $export($export.S + $export.F * !ALL_CONSTRUCTORS, 'Object', {\n getOwnPropertyDescriptor: $getDesc,\n defineProperty: $setDesc\n });\n\n if (fails(function () { arrayToString.call({}); })) {\n arrayToString = arrayToLocaleString = function toString() {\n return arrayJoin.call(this);\n };\n }\n\n var $TypedArrayPrototype$ = redefineAll({}, proto);\n redefineAll($TypedArrayPrototype$, $iterators);\n hide($TypedArrayPrototype$, ITERATOR, $iterators.values);\n redefineAll($TypedArrayPrototype$, {\n slice: $slice,\n set: $set,\n constructor: function () { /* noop */ },\n toString: arrayToString,\n toLocaleString: $toLocaleString\n });\n addGetter($TypedArrayPrototype$, 'buffer', 'b');\n addGetter($TypedArrayPrototype$, 'byteOffset', 'o');\n addGetter($TypedArrayPrototype$, 'byteLength', 'l');\n addGetter($TypedArrayPrototype$, 'length', 'e');\n dP($TypedArrayPrototype$, TAG, {\n get: function () { return this[TYPED_ARRAY]; }\n });\n\n // eslint-disable-next-line max-statements\n module.exports = function (KEY, BYTES, wrapper, CLAMPED) {\n CLAMPED = !!CLAMPED;\n var NAME = KEY + (CLAMPED ? 'Clamped' : '') + 'Array';\n var GETTER = 'get' + KEY;\n var SETTER = 'set' + KEY;\n var TypedArray = global[NAME];\n var Base = TypedArray || {};\n var TAC = TypedArray && getPrototypeOf(TypedArray);\n var FORCED = !TypedArray || !$typed.ABV;\n var O = {};\n var TypedArrayPrototype = TypedArray && TypedArray[PROTOTYPE];\n var getter = function (that, index) {\n var data = that._d;\n return data.v[GETTER](index * BYTES + data.o, LITTLE_ENDIAN);\n };\n var setter = function (that, index, value) {\n var data = that._d;\n if (CLAMPED) value = (value = Math.round(value)) < 0 ? 0 : value > 0xff ? 0xff : value & 0xff;\n data.v[SETTER](index * BYTES + data.o, value, LITTLE_ENDIAN);\n };\n var addElement = function (that, index) {\n dP(that, index, {\n get: function () {\n return getter(this, index);\n },\n set: function (value) {\n return setter(this, index, value);\n },\n enumerable: true\n });\n };\n if (FORCED) {\n TypedArray = wrapper(function (that, data, $offset, $length) {\n anInstance(that, TypedArray, NAME, '_d');\n var index = 0;\n var offset = 0;\n var buffer, byteLength, length, klass;\n if (!isObject(data)) {\n length = toIndex(data);\n byteLength = length * BYTES;\n buffer = new $ArrayBuffer(byteLength);\n } else if (data instanceof $ArrayBuffer || (klass = classof(data)) == ARRAY_BUFFER || klass == SHARED_BUFFER) {\n buffer = data;\n offset = toOffset($offset, BYTES);\n var $len = data.byteLength;\n if ($length === undefined) {\n if ($len % BYTES) throw RangeError(WRONG_LENGTH);\n byteLength = $len - offset;\n if (byteLength < 0) throw RangeError(WRONG_LENGTH);\n } else {\n byteLength = toLength($length) * BYTES;\n if (byteLength + offset > $len) throw RangeError(WRONG_LENGTH);\n }\n length = byteLength / BYTES;\n } else if (TYPED_ARRAY in data) {\n return fromList(TypedArray, data);\n } else {\n return $from.call(TypedArray, data);\n }\n hide(that, '_d', {\n b: buffer,\n o: offset,\n l: byteLength,\n e: length,\n v: new $DataView(buffer)\n });\n while (index < length) addElement(that, index++);\n });\n TypedArrayPrototype = TypedArray[PROTOTYPE] = create($TypedArrayPrototype$);\n hide(TypedArrayPrototype, 'constructor', TypedArray);\n } else if (!fails(function () {\n TypedArray(1);\n }) || !fails(function () {\n new TypedArray(-1); // eslint-disable-line no-new\n }) || !$iterDetect(function (iter) {\n new TypedArray(); // eslint-disable-line no-new\n new TypedArray(null); // eslint-disable-line no-new\n new TypedArray(1.5); // eslint-disable-line no-new\n new TypedArray(iter); // eslint-disable-line no-new\n }, true)) {\n TypedArray = wrapper(function (that, data, $offset, $length) {\n anInstance(that, TypedArray, NAME);\n var klass;\n // `ws` module bug, temporarily remove validation length for Uint8Array\n // https://github.com/websockets/ws/pull/645\n if (!isObject(data)) return new Base(toIndex(data));\n if (data instanceof $ArrayBuffer || (klass = classof(data)) == ARRAY_BUFFER || klass == SHARED_BUFFER) {\n return $length !== undefined\n ? new Base(data, toOffset($offset, BYTES), $length)\n : $offset !== undefined\n ? new Base(data, toOffset($offset, BYTES))\n : new Base(data);\n }\n if (TYPED_ARRAY in data) return fromList(TypedArray, data);\n return $from.call(TypedArray, data);\n });\n arrayForEach(TAC !== Function.prototype ? gOPN(Base).concat(gOPN(TAC)) : gOPN(Base), function (key) {\n if (!(key in TypedArray)) hide(TypedArray, key, Base[key]);\n });\n TypedArray[PROTOTYPE] = TypedArrayPrototype;\n if (!LIBRARY) TypedArrayPrototype.constructor = TypedArray;\n }\n var $nativeIterator = TypedArrayPrototype[ITERATOR];\n var CORRECT_ITER_NAME = !!$nativeIterator\n && ($nativeIterator.name == 'values' || $nativeIterator.name == undefined);\n var $iterator = $iterators.values;\n hide(TypedArray, TYPED_CONSTRUCTOR, true);\n hide(TypedArrayPrototype, TYPED_ARRAY, NAME);\n hide(TypedArrayPrototype, VIEW, true);\n hide(TypedArrayPrototype, DEF_CONSTRUCTOR, TypedArray);\n\n if (CLAMPED ? new TypedArray(1)[TAG] != NAME : !(TAG in TypedArrayPrototype)) {\n dP(TypedArrayPrototype, TAG, {\n get: function () { return NAME; }\n });\n }\n\n O[NAME] = TypedArray;\n\n $export($export.G + $export.W + $export.F * (TypedArray != Base), O);\n\n $export($export.S, NAME, {\n BYTES_PER_ELEMENT: BYTES\n });\n\n $export($export.S + $export.F * fails(function () { Base.of.call(TypedArray, 1); }), NAME, {\n from: $from,\n of: $of\n });\n\n if (!(BYTES_PER_ELEMENT in TypedArrayPrototype)) hide(TypedArrayPrototype, BYTES_PER_ELEMENT, BYTES);\n\n $export($export.P, NAME, proto);\n\n setSpecies(NAME);\n\n $export($export.P + $export.F * FORCED_SET, NAME, { set: $set });\n\n $export($export.P + $export.F * !CORRECT_ITER_NAME, NAME, $iterators);\n\n if (!LIBRARY && TypedArrayPrototype.toString != arrayToString) TypedArrayPrototype.toString = arrayToString;\n\n $export($export.P + $export.F * fails(function () {\n new TypedArray(1).slice();\n }), NAME, { slice: $slice });\n\n $export($export.P + $export.F * (fails(function () {\n return [1, 2].toLocaleString() != new TypedArray([1, 2]).toLocaleString();\n }) || !fails(function () {\n TypedArrayPrototype.toLocaleString.call([1, 2]);\n })), NAME, { toLocaleString: $toLocaleString });\n\n Iterators[NAME] = CORRECT_ITER_NAME ? $nativeIterator : $iterator;\n if (!LIBRARY && !CORRECT_ITER_NAME) hide(TypedArrayPrototype, ITERATOR, $iterator);\n };\n} else module.exports = function () { /* empty */ };\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","var META = require('./_uid')('meta');\nvar isObject = require('./_is-object');\nvar has = require('./_has');\nvar setDesc = require('./_object-dp').f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\nvar FREEZE = !require('./_fails')(function () {\n return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n setDesc(it, META, { value: {\n i: 'O' + ++id, // object ID\n w: {} // weak collections IDs\n } });\n};\nvar fastKey = function (it, create) {\n // return primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMeta(it);\n // return object ID\n } return it[META].i;\n};\nvar getWeak = function (it, create) {\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMeta(it);\n // return hash weak collections IDs\n } return it[META].w;\n};\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n return it;\n};\nvar meta = module.exports = {\n KEY: META,\n NEED: false,\n fastKey: fastKey,\n getWeak: getWeak,\n onFreeze: onFreeze\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","module.exports = require('./lib/axios');","var core = module.exports = { version: '2.5.5' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","module.exports = false;\n","var redefine = require('./_redefine');\nmodule.exports = function (target, src, safe) {\n for (var key in src) redefine(target, key, src[key], safe);\n return target;\n};\n","module.exports = function (it, Constructor, name, forbiddenField) {\n if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) {\n throw TypeError(name + ': incorrect invocation!');\n } return it;\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","module.exports = {};\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it, TYPE) {\n if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');\n return it;\n};\n","/**\n * vue-local-storage v0.6.0\n * (c) 2017 Alexander Avakov\n * @license MIT\n */\n(function (global, factory) {\n\ttypeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n\ttypeof define === 'function' && define.amd ? define(factory) :\n\t(global.VueLocalStorage = factory());\n}(this, (function () { 'use strict';\n\nvar VueLocalStorage = function VueLocalStorage () {\n this._properties = {};\n this._namespace = '';\n this._isSupported = true;\n};\n\nvar prototypeAccessors = { namespace: {} };\n\n/**\n * Namespace getter.\n *\n * @returns {string}\n */\nprototypeAccessors.namespace.get = function () {\n return this._namespace\n};\n\n/**\n * Namespace setter.\n *\n * @param {string} value\n */\nprototypeAccessors.namespace.set = function (value) {\n this._namespace = value ? (value + \".\") : '';\n};\n\n/**\n * Concatenates localStorage key with namespace prefix.\n *\n * @param {string} lsKey\n * @returns {string}\n * @private\n */\nVueLocalStorage.prototype._getLsKey = function _getLsKey (lsKey) {\n return (\"\" + (this._namespace) + lsKey)\n};\n\n/**\n * Set a value to localStorage giving respect to the namespace.\n *\n * @param {string} lsKey\n * @param {*} rawValue\n * @param {*} type\n * @private\n */\nVueLocalStorage.prototype._lsSet = function _lsSet (lsKey, rawValue, type) {\n var key = this._getLsKey(lsKey);\n var value = type && [Array, Object].includes(type)\n ? JSON.stringify(rawValue)\n : rawValue;\n\n window.localStorage.setItem(key, value);\n};\n\n/**\n * Get value from localStorage giving respect to the namespace.\n *\n * @param {string} lsKey\n * @returns {any}\n * @private\n */\nVueLocalStorage.prototype._lsGet = function _lsGet (lsKey) {\n var key = this._getLsKey(lsKey);\n\n return window.localStorage[key]\n};\n\n/**\n * Get value from localStorage\n *\n * @param {String} lsKey\n * @param {*} defaultValue\n * @param {*} defaultType\n * @returns {*}\n */\nVueLocalStorage.prototype.get = function get (lsKey, defaultValue, defaultType) {\n var this$1 = this;\n if ( defaultValue === void 0 ) defaultValue = null;\n if ( defaultType === void 0 ) defaultType = String;\n\n if (!this._isSupported) {\n return null\n }\n\n if (this._lsGet(lsKey)) {\n var type = defaultType;\n\n for (var key in this$1._properties) {\n if (key === lsKey) {\n type = this$1._properties[key].type;\n break\n }\n }\n\n return this._process(type, this._lsGet(lsKey))\n }\n\n return defaultValue !== null ? defaultValue : null\n};\n\n/**\n * Set localStorage value\n *\n * @param {String} lsKey\n * @param {*} value\n * @returns {*}\n */\nVueLocalStorage.prototype.set = function set (lsKey, value) {\n var this$1 = this;\n\n if (!this._isSupported) {\n return null\n }\n\n for (var key in this$1._properties) {\n var type = this$1._properties[key].type;\n\n if ((key === lsKey)) {\n this$1._lsSet(lsKey, value, type);\n\n return value\n }\n }\n\n this._lsSet(lsKey, value);\n\n return value\n};\n\n/**\n * Remove value from localStorage\n *\n * @param {String} lsKey\n */\nVueLocalStorage.prototype.remove = function remove (lsKey) {\n if (!this._isSupported) {\n return null\n }\n\n return window.localStorage.removeItem(lsKey)\n};\n\n/**\n * Add new property to localStorage\n *\n * @param {String} key\n * @param {function} type\n * @param {*} defaultValue\n */\nVueLocalStorage.prototype.addProperty = function addProperty (key, type, defaultValue) {\n if ( defaultValue === void 0 ) defaultValue = undefined;\n\n type = type || String;\n\n this._properties[key] = { type: type };\n\n if (!this._lsGet(key) && defaultValue !== null) {\n this._lsSet(key, defaultValue, type);\n }\n};\n\n/**\n * Process the value before return it from localStorage\n *\n * @param {String} type\n * @param {*} value\n * @returns {*}\n * @private\n */\nVueLocalStorage.prototype._process = function _process (type, value) {\n switch (type) {\n case Boolean:\n return value === 'true'\n case Number:\n return parseFloat(value)\n case Array:\n try {\n var array = JSON.parse(value);\n\n return Array.isArray(array) ? array : []\n } catch (e) {\n return []\n }\n case Object:\n try {\n return JSON.parse(value)\n } catch (e) {\n return {}\n }\n default:\n return value\n }\n};\n\nObject.defineProperties( VueLocalStorage.prototype, prototypeAccessors );\n\nvar vueLocalStorage = new VueLocalStorage();\n\nvar index = {\n /**\n * Install vue-local-storage plugin\n *\n * @param {Vue} Vue\n * @param {Object} options\n */\n install: function (Vue, options) {\n if ( options === void 0 ) options = {};\n\n if (typeof process !== 'undefined' &&\n (\n process.server ||\n process.SERVER_BUILD ||\n (process.env && process.env.VUE_ENV === 'server')\n )\n ) {\n return\n }\n\n var isSupported = true;\n\n try {\n var test = '__vue-localstorage-test__';\n\n window.localStorage.setItem(test, test);\n window.localStorage.removeItem(test);\n } catch (e) {\n isSupported = false;\n vueLocalStorage._isSupported = false;\n\n console.error('Local storage is not supported');\n }\n\n var name = options.name || 'localStorage';\n var bind = options.bind;\n\n if (options.namespace) {\n vueLocalStorage.namespace = options.namespace;\n }\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n var this$1 = this;\n\n if (!isSupported) {\n return\n }\n\n if (this.$options[name]) {\n Object.keys(this.$options[name]).forEach(function (key) {\n var config = this$1.$options[name][key];\n var ref = [config.type, config.default];\n var type = ref[0];\n var defaultValue = ref[1];\n\n vueLocalStorage.addProperty(key, type, defaultValue);\n\n var existingProp = Object.getOwnPropertyDescriptor(vueLocalStorage, key);\n\n if (!existingProp) {\n var prop = {\n get: function () { return Vue.localStorage.get(key, defaultValue); },\n set: function (val) { return Vue.localStorage.set(key, val); },\n configurable: true\n };\n\n Object.defineProperty(vueLocalStorage, key, prop);\n Vue.util.defineReactive(vueLocalStorage, key, defaultValue);\n } else if (!Vue.config.silent) {\n console.log((key + \": is already defined and will be reused\"));\n }\n\n if ((bind || config.bind) && config.bind !== false) {\n this$1.$options.computed = this$1.$options.computed || {};\n\n if (!this$1.$options.computed[key]) {\n this$1.$options.computed[key] = {\n get: function () { return Vue.localStorage[key]; },\n set: function (val) { Vue.localStorage[key] = val; }\n };\n }\n }\n });\n }\n }\n });\n\n Vue[name] = vueLocalStorage;\n Vue.prototype[(\"$\" + name)] = vueLocalStorage;\n }\n};\n\nreturn index;\n\n})));\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","// 0 -> Array#forEach\n// 1 -> Array#map\n// 2 -> Array#filter\n// 3 -> Array#some\n// 4 -> Array#every\n// 5 -> Array#find\n// 6 -> Array#findIndex\nvar ctx = require('./_ctx');\nvar IObject = require('./_iobject');\nvar toObject = require('./_to-object');\nvar toLength = require('./_to-length');\nvar asc = require('./_array-species-create');\nmodule.exports = function (TYPE, $create) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n var create = $create || asc;\n return function ($this, callbackfn, that) {\n var O = toObject($this);\n var self = IObject(O);\n var f = ctx(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var val, res;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n val = self[index];\n res = f(val, index, O);\n if (TYPE) {\n if (IS_MAP) result[index] = res; // map\n else if (res) switch (TYPE) {\n case 3: return true; // some\n case 5: return val; // find\n case 6: return index; // findIndex\n case 2: result.push(val); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n };\n};\n","exports.f = {}.propertyIsEnumerable;\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || Function(\"return this\")() || (1, eval)(\"this\");\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","'use strict';\nvar global = require('./_global');\nvar dP = require('./_object-dp');\nvar DESCRIPTORS = require('./_descriptors');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (KEY) {\n var C = global[KEY];\n if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n};\n","var ITERATOR = require('./_wks')('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var riter = [7][ITERATOR]();\n riter['return'] = function () { SAFE_CLOSING = true; };\n // eslint-disable-next-line no-throw-literal\n Array.from(riter, function () { throw 2; });\n} catch (e) { /* empty */ }\n\nmodule.exports = function (exec, skipClosing) {\n if (!skipClosing && !SAFE_CLOSING) return false;\n var safe = false;\n try {\n var arr = [7];\n var iter = arr[ITERATOR]();\n iter.next = function () { return { done: safe = true }; };\n arr[ITERATOR] = function () { return iter; };\n exec(arr);\n } catch (e) { /* empty */ }\n return safe;\n};\n","var ctx = require('./_ctx');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar anObject = require('./_an-object');\nvar toLength = require('./_to-length');\nvar getIterFn = require('./core.get-iterator-method');\nvar BREAK = {};\nvar RETURN = {};\nvar exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {\n var iterFn = ITERATOR ? function () { return iterable; } : getIterFn(iterable);\n var f = ctx(fn, that, entries ? 2 : 1);\n var index = 0;\n var length, step, iterator, result;\n if (typeof iterFn != 'function') throw TypeError(iterable + ' is not iterable!');\n // fast case for arrays with default iterator\n if (isArrayIter(iterFn)) for (length = toLength(iterable.length); length > index; index++) {\n result = entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);\n if (result === BREAK || result === RETURN) return result;\n } else for (iterator = iterFn.call(iterable); !(step = iterator.next()).done;) {\n result = call(iterator, f, step.value, entries);\n if (result === BREAK || result === RETURN) return result;\n }\n};\nexports.BREAK = BREAK;\nexports.RETURN = RETURN;\n","'use strict';\nvar global = require('./_global');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar redefineAll = require('./_redefine-all');\nvar meta = require('./_meta');\nvar forOf = require('./_for-of');\nvar anInstance = require('./_an-instance');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar $iterDetect = require('./_iter-detect');\nvar setToStringTag = require('./_set-to-string-tag');\nvar inheritIfRequired = require('./_inherit-if-required');\n\nmodule.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {\n var Base = global[NAME];\n var C = Base;\n var ADDER = IS_MAP ? 'set' : 'add';\n var proto = C && C.prototype;\n var O = {};\n var fixMethod = function (KEY) {\n var fn = proto[KEY];\n redefine(proto, KEY,\n KEY == 'delete' ? function (a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'has' ? function has(a) {\n return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'get' ? function get(a) {\n return IS_WEAK && !isObject(a) ? undefined : fn.call(this, a === 0 ? 0 : a);\n } : KEY == 'add' ? function add(a) { fn.call(this, a === 0 ? 0 : a); return this; }\n : function set(a, b) { fn.call(this, a === 0 ? 0 : a, b); return this; }\n );\n };\n if (typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {\n new C().entries().next();\n }))) {\n // create collection constructor\n C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);\n redefineAll(C.prototype, methods);\n meta.NEED = true;\n } else {\n var instance = new C();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n var ACCEPT_ITERABLES = $iterDetect(function (iter) { new C(iter); }); // eslint-disable-line no-new\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new C();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n if (!ACCEPT_ITERABLES) {\n C = wrapper(function (target, iterable) {\n anInstance(target, C, NAME);\n var that = inheritIfRequired(new Base(), target, C);\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n return that;\n });\n C.prototype = proto;\n proto.constructor = C;\n }\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n // weak collections should not contains .clear method\n if (IS_WEAK && proto.clear) delete proto.clear;\n }\n\n setToStringTag(C, NAME);\n\n O[NAME] = C;\n $export($export.G + $export.W + $export.F * (C != Base), O);\n\n if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);\n\n return C;\n};\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","function validate(binding) {\r\n if (typeof binding.value !== 'function') {\r\n console.warn('[Vue-click-outside:] provided expression', binding.expression, 'is not a function.')\r\n return false\r\n }\r\n\r\n return true\r\n}\r\n\r\nfunction isPopup(popupItem, elements) {\r\n if (!popupItem || !elements)\r\n return false\r\n\r\n for (var i = 0, len = elements.length; i < len; i++) {\r\n try {\r\n if (popupItem.contains(elements[i])) {\r\n return true\r\n }\r\n if (elements[i].contains(popupItem)) {\r\n return false\r\n }\r\n } catch(e) {\r\n return false\r\n }\r\n }\r\n\r\n return false\r\n}\r\n\r\nfunction isServer(vNode) {\r\n return typeof vNode.componentInstance !== 'undefined' && vNode.componentInstance.$isServer\r\n}\r\n\r\nexports = module.exports = {\r\n bind: function (el, binding, vNode) {\r\n if (!validate(binding)) return\r\n\r\n // Define Handler and cache it on the element\r\n function handler(e) {\r\n if (!vNode.context) return\r\n\r\n // some components may have related popup item, on which we shall prevent the click outside event handler.\r\n var elements = e.path || (e.composedPath && e.composedPath())\r\n elements && elements.length > 0 && elements.unshift(e.target)\r\n \r\n if (el.contains(e.target) || isPopup(vNode.context.popupItem, elements)) return\r\n\r\n el.__vueClickOutside__.callback(e)\r\n }\r\n\r\n // add Event Listeners\r\n el.__vueClickOutside__ = {\r\n handler: handler,\r\n callback: binding.value\r\n }\r\n !isServer(vNode) && document.addEventListener('click', handler)\r\n },\r\n\r\n update: function (el, binding) {\r\n if (validate(binding)) el.__vueClickOutside__.callback = binding.value\r\n },\r\n \r\n unbind: function (el, binding, vNode) {\r\n // Remove Event Listeners\r\n !isServer(vNode) && document.removeEventListener('click', el.__vueClickOutside__.handler)\r\n delete el.__vueClickOutside__\r\n }\r\n}\r\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar uid = require('./_uid');\nvar TYPED = uid('typed_array');\nvar VIEW = uid('view');\nvar ABV = !!(global.ArrayBuffer && global.DataView);\nvar CONSTR = ABV;\nvar i = 0;\nvar l = 9;\nvar Typed;\n\nvar TypedArrayConstructors = (\n 'Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array'\n).split(',');\n\nwhile (i < l) {\n if (Typed = global[TypedArrayConstructors[i++]]) {\n hide(Typed.prototype, TYPED, true);\n hide(Typed.prototype, VIEW, true);\n } else CONSTR = false;\n}\n\nmodule.exports = {\n ABV: ABV,\n CONSTR: CONSTR,\n TYPED: TYPED,\n VIEW: VIEW\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","var global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\nmodule.exports = function (key) {\n return store[key] || (store[key] = {});\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nmodule.exports = function fill(value /* , start = 0, end = @length */) {\n var O = toObject(this);\n var length = toLength(O.length);\n var aLen = arguments.length;\n var index = toAbsoluteIndex(aLen > 1 ? arguments[1] : undefined, length);\n var end = aLen > 2 ? arguments[2] : undefined;\n var endPos = end === undefined ? length : toAbsoluteIndex(end, length);\n while (endPos > index) O[index++] = value;\n return O;\n};\n","// 7.3.20 SpeciesConstructor(O, defaultConstructor)\nvar anObject = require('./_an-object');\nvar aFunction = require('./_a-function');\nvar SPECIES = require('./_wks')('species');\nmodule.exports = function (O, D) {\n var C = anObject(O).constructor;\n var S;\n return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);\n};\n","// getting tag from 19.1.3.6 Object.prototype.toString()\nvar cof = require('./_cof');\nvar TAG = require('./_wks')('toStringTag');\n// ES3 wrong here\nvar ARG = cof(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (e) { /* empty */ }\n};\n\nmodule.exports = function (it) {\n var O, T, B;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n // builtinTag case\n : ARG ? cof(O)\n // ES3 arguments fallback\n : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n};\n","// check on default Array iterator\nvar Iterators = require('./_iterators');\nvar ITERATOR = require('./_wks')('iterator');\nvar ArrayProto = Array.prototype;\n\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);\n};\n","var classof = require('./_classof');\nvar ITERATOR = require('./_wks')('iterator');\nvar Iterators = require('./_iterators');\nmodule.exports = require('./_core').getIteratorMethod = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","var ctx = require('./_ctx');\nvar invoke = require('./_invoke');\nvar html = require('./_html');\nvar cel = require('./_dom-create');\nvar global = require('./_global');\nvar process = global.process;\nvar setTask = global.setImmediate;\nvar clearTask = global.clearImmediate;\nvar MessageChannel = global.MessageChannel;\nvar Dispatch = global.Dispatch;\nvar counter = 0;\nvar queue = {};\nvar ONREADYSTATECHANGE = 'onreadystatechange';\nvar defer, channel, port;\nvar run = function () {\n var id = +this;\n // eslint-disable-next-line no-prototype-builtins\n if (queue.hasOwnProperty(id)) {\n var fn = queue[id];\n delete queue[id];\n fn();\n }\n};\nvar listener = function (event) {\n run.call(event.data);\n};\n// Node.js 0.9+ & IE10+ has setImmediate, otherwise:\nif (!setTask || !clearTask) {\n setTask = function setImmediate(fn) {\n var args = [];\n var i = 1;\n while (arguments.length > i) args.push(arguments[i++]);\n queue[++counter] = function () {\n // eslint-disable-next-line no-new-func\n invoke(typeof fn == 'function' ? fn : Function(fn), args);\n };\n defer(counter);\n return counter;\n };\n clearTask = function clearImmediate(id) {\n delete queue[id];\n };\n // Node.js 0.8-\n if (require('./_cof')(process) == 'process') {\n defer = function (id) {\n process.nextTick(ctx(run, id, 1));\n };\n // Sphere (JS game engine) Dispatch API\n } else if (Dispatch && Dispatch.now) {\n defer = function (id) {\n Dispatch.now(ctx(run, id, 1));\n };\n // Browsers with MessageChannel, includes WebWorkers\n } else if (MessageChannel) {\n channel = new MessageChannel();\n port = channel.port2;\n channel.port1.onmessage = listener;\n defer = ctx(port.postMessage, port, 1);\n // Browsers with postMessage, skip WebWorkers\n // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'\n } else if (global.addEventListener && typeof postMessage == 'function' && !global.importScripts) {\n defer = function (id) {\n global.postMessage(id + '', '*');\n };\n global.addEventListener('message', listener, false);\n // IE8-\n } else if (ONREADYSTATECHANGE in cel('script')) {\n defer = function (id) {\n html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function () {\n html.removeChild(this);\n run.call(id);\n };\n };\n // Rest old browsers\n } else {\n defer = function (id) {\n setTimeout(ctx(run, id, 1), 0);\n };\n }\n}\nmodule.exports = {\n set: setTask,\n clear: clearTask\n};\n","// helper for String#{startsWith, endsWith, includes}\nvar isRegExp = require('./_is-regexp');\nvar defined = require('./_defined');\n\nmodule.exports = function (that, searchString, NAME) {\n if (isRegExp(searchString)) throw TypeError('String#' + NAME + \" doesn't accept regex!\");\n return String(defined(that));\n};\n","var MATCH = require('./_wks')('match');\nmodule.exports = function (KEY) {\n var re = /./;\n try {\n '/./'[KEY](re);\n } catch (e) {\n try {\n re[MATCH] = false;\n return !'/./'[KEY](re);\n } catch (f) { /* empty */ }\n } return true;\n};\n","'use strict';\nvar $defineProperty = require('./_object-dp');\nvar createDesc = require('./_property-desc');\n\nmodule.exports = function (object, index, value) {\n if (index in object) $defineProperty.f(object, index, createDesc(0, value));\n else object[index] = value;\n};\n","// 20.2.2.28 Math.sign(x)\nmodule.exports = Math.sign || function sign(x) {\n // eslint-disable-next-line no-self-compare\n return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;\n};\n","// 20.2.2.14 Math.expm1(x)\nvar $expm1 = Math.expm1;\nmodule.exports = (!$expm1\n // Old FF bug\n || $expm1(10) > 22025.465794806719 || $expm1(10) < 22025.4657948067165168\n // Tor Browser bug\n || $expm1(-2e-17) != -2e-17\n) ? function expm1(x) {\n return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;\n} : $expm1;\n","var global = require('./_global');\nvar navigator = global.navigator;\n\nmodule.exports = navigator && navigator.userAgent || '';\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar buildURL = require('./../helpers/buildURL');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\nvar btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || require('./../helpers/btoa');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n var loadEvent = 'onreadystatechange';\n var xDomain = false;\n\n // For IE 8/9 CORS support\n // Only supports POST and GET calls and doesn't returns the response headers.\n // DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest.\n if (process.env.NODE_ENV !== 'test' &&\n typeof window !== 'undefined' &&\n window.XDomainRequest && !('withCredentials' in request) &&\n !isURLSameOrigin(config.url)) {\n request = new window.XDomainRequest();\n loadEvent = 'onload';\n xDomain = true;\n request.onprogress = function handleProgress() {};\n request.ontimeout = function handleTimeout() {};\n }\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password || '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n request.open(config.method.toUpperCase(), buildURL(config.url, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request[loadEvent] = function handleLoad() {\n if (!request || (request.readyState !== 4 && !xDomain)) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n // IE sends 1223 instead of 204 (https://github.com/axios/axios/issues/201)\n status: request.status === 1223 ? 204 : request.status,\n statusText: request.status === 1223 ? 'No Content' : request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n reject(createError('timeout of ' + config.timeout + 'ms exceeded', config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n var cookies = require('./../helpers/cookies');\n\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (config.withCredentials) {\n request.withCredentials = true;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (requestData === undefined) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","'use strict';\nvar global = require('./_global');\nvar DESCRIPTORS = require('./_descriptors');\nvar LIBRARY = require('./_library');\nvar $typed = require('./_typed');\nvar hide = require('./_hide');\nvar redefineAll = require('./_redefine-all');\nvar fails = require('./_fails');\nvar anInstance = require('./_an-instance');\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nvar toIndex = require('./_to-index');\nvar gOPN = require('./_object-gopn').f;\nvar dP = require('./_object-dp').f;\nvar arrayFill = require('./_array-fill');\nvar setToStringTag = require('./_set-to-string-tag');\nvar ARRAY_BUFFER = 'ArrayBuffer';\nvar DATA_VIEW = 'DataView';\nvar PROTOTYPE = 'prototype';\nvar WRONG_LENGTH = 'Wrong length!';\nvar WRONG_INDEX = 'Wrong index!';\nvar $ArrayBuffer = global[ARRAY_BUFFER];\nvar $DataView = global[DATA_VIEW];\nvar Math = global.Math;\nvar RangeError = global.RangeError;\n// eslint-disable-next-line no-shadow-restricted-names\nvar Infinity = global.Infinity;\nvar BaseBuffer = $ArrayBuffer;\nvar abs = Math.abs;\nvar pow = Math.pow;\nvar floor = Math.floor;\nvar log = Math.log;\nvar LN2 = Math.LN2;\nvar BUFFER = 'buffer';\nvar BYTE_LENGTH = 'byteLength';\nvar BYTE_OFFSET = 'byteOffset';\nvar $BUFFER = DESCRIPTORS ? '_b' : BUFFER;\nvar $LENGTH = DESCRIPTORS ? '_l' : BYTE_LENGTH;\nvar $OFFSET = DESCRIPTORS ? '_o' : BYTE_OFFSET;\n\n// IEEE754 conversions based on https://github.com/feross/ieee754\nfunction packIEEE754(value, mLen, nBytes) {\n var buffer = new Array(nBytes);\n var eLen = nBytes * 8 - mLen - 1;\n var eMax = (1 << eLen) - 1;\n var eBias = eMax >> 1;\n var rt = mLen === 23 ? pow(2, -24) - pow(2, -77) : 0;\n var i = 0;\n var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0;\n var e, m, c;\n value = abs(value);\n // eslint-disable-next-line no-self-compare\n if (value != value || value === Infinity) {\n // eslint-disable-next-line no-self-compare\n m = value != value ? 1 : 0;\n e = eMax;\n } else {\n e = floor(log(value) / LN2);\n if (value * (c = pow(2, -e)) < 1) {\n e--;\n c *= 2;\n }\n if (e + eBias >= 1) {\n value += rt / c;\n } else {\n value += rt * pow(2, 1 - eBias);\n }\n if (value * c >= 2) {\n e++;\n c /= 2;\n }\n if (e + eBias >= eMax) {\n m = 0;\n e = eMax;\n } else if (e + eBias >= 1) {\n m = (value * c - 1) * pow(2, mLen);\n e = e + eBias;\n } else {\n m = value * pow(2, eBias - 1) * pow(2, mLen);\n e = 0;\n }\n }\n for (; mLen >= 8; buffer[i++] = m & 255, m /= 256, mLen -= 8);\n e = e << mLen | m;\n eLen += mLen;\n for (; eLen > 0; buffer[i++] = e & 255, e /= 256, eLen -= 8);\n buffer[--i] |= s * 128;\n return buffer;\n}\nfunction unpackIEEE754(buffer, mLen, nBytes) {\n var eLen = nBytes * 8 - mLen - 1;\n var eMax = (1 << eLen) - 1;\n var eBias = eMax >> 1;\n var nBits = eLen - 7;\n var i = nBytes - 1;\n var s = buffer[i--];\n var e = s & 127;\n var m;\n s >>= 7;\n for (; nBits > 0; e = e * 256 + buffer[i], i--, nBits -= 8);\n m = e & (1 << -nBits) - 1;\n e >>= -nBits;\n nBits += mLen;\n for (; nBits > 0; m = m * 256 + buffer[i], i--, nBits -= 8);\n if (e === 0) {\n e = 1 - eBias;\n } else if (e === eMax) {\n return m ? NaN : s ? -Infinity : Infinity;\n } else {\n m = m + pow(2, mLen);\n e = e - eBias;\n } return (s ? -1 : 1) * m * pow(2, e - mLen);\n}\n\nfunction unpackI32(bytes) {\n return bytes[3] << 24 | bytes[2] << 16 | bytes[1] << 8 | bytes[0];\n}\nfunction packI8(it) {\n return [it & 0xff];\n}\nfunction packI16(it) {\n return [it & 0xff, it >> 8 & 0xff];\n}\nfunction packI32(it) {\n return [it & 0xff, it >> 8 & 0xff, it >> 16 & 0xff, it >> 24 & 0xff];\n}\nfunction packF64(it) {\n return packIEEE754(it, 52, 8);\n}\nfunction packF32(it) {\n return packIEEE754(it, 23, 4);\n}\n\nfunction addGetter(C, key, internal) {\n dP(C[PROTOTYPE], key, { get: function () { return this[internal]; } });\n}\n\nfunction get(view, bytes, index, isLittleEndian) {\n var numIndex = +index;\n var intIndex = toIndex(numIndex);\n if (intIndex + bytes > view[$LENGTH]) throw RangeError(WRONG_INDEX);\n var store = view[$BUFFER]._b;\n var start = intIndex + view[$OFFSET];\n var pack = store.slice(start, start + bytes);\n return isLittleEndian ? pack : pack.reverse();\n}\nfunction set(view, bytes, index, conversion, value, isLittleEndian) {\n var numIndex = +index;\n var intIndex = toIndex(numIndex);\n if (intIndex + bytes > view[$LENGTH]) throw RangeError(WRONG_INDEX);\n var store = view[$BUFFER]._b;\n var start = intIndex + view[$OFFSET];\n var pack = conversion(+value);\n for (var i = 0; i < bytes; i++) store[start + i] = pack[isLittleEndian ? i : bytes - i - 1];\n}\n\nif (!$typed.ABV) {\n $ArrayBuffer = function ArrayBuffer(length) {\n anInstance(this, $ArrayBuffer, ARRAY_BUFFER);\n var byteLength = toIndex(length);\n this._b = arrayFill.call(new Array(byteLength), 0);\n this[$LENGTH] = byteLength;\n };\n\n $DataView = function DataView(buffer, byteOffset, byteLength) {\n anInstance(this, $DataView, DATA_VIEW);\n anInstance(buffer, $ArrayBuffer, DATA_VIEW);\n var bufferLength = buffer[$LENGTH];\n var offset = toInteger(byteOffset);\n if (offset < 0 || offset > bufferLength) throw RangeError('Wrong offset!');\n byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength);\n if (offset + byteLength > bufferLength) throw RangeError(WRONG_LENGTH);\n this[$BUFFER] = buffer;\n this[$OFFSET] = offset;\n this[$LENGTH] = byteLength;\n };\n\n if (DESCRIPTORS) {\n addGetter($ArrayBuffer, BYTE_LENGTH, '_l');\n addGetter($DataView, BUFFER, '_b');\n addGetter($DataView, BYTE_LENGTH, '_l');\n addGetter($DataView, BYTE_OFFSET, '_o');\n }\n\n redefineAll($DataView[PROTOTYPE], {\n getInt8: function getInt8(byteOffset) {\n return get(this, 1, byteOffset)[0] << 24 >> 24;\n },\n getUint8: function getUint8(byteOffset) {\n return get(this, 1, byteOffset)[0];\n },\n getInt16: function getInt16(byteOffset /* , littleEndian */) {\n var bytes = get(this, 2, byteOffset, arguments[1]);\n return (bytes[1] << 8 | bytes[0]) << 16 >> 16;\n },\n getUint16: function getUint16(byteOffset /* , littleEndian */) {\n var bytes = get(this, 2, byteOffset, arguments[1]);\n return bytes[1] << 8 | bytes[0];\n },\n getInt32: function getInt32(byteOffset /* , littleEndian */) {\n return unpackI32(get(this, 4, byteOffset, arguments[1]));\n },\n getUint32: function getUint32(byteOffset /* , littleEndian */) {\n return unpackI32(get(this, 4, byteOffset, arguments[1])) >>> 0;\n },\n getFloat32: function getFloat32(byteOffset /* , littleEndian */) {\n return unpackIEEE754(get(this, 4, byteOffset, arguments[1]), 23, 4);\n },\n getFloat64: function getFloat64(byteOffset /* , littleEndian */) {\n return unpackIEEE754(get(this, 8, byteOffset, arguments[1]), 52, 8);\n },\n setInt8: function setInt8(byteOffset, value) {\n set(this, 1, byteOffset, packI8, value);\n },\n setUint8: function setUint8(byteOffset, value) {\n set(this, 1, byteOffset, packI8, value);\n },\n setInt16: function setInt16(byteOffset, value /* , littleEndian */) {\n set(this, 2, byteOffset, packI16, value, arguments[2]);\n },\n setUint16: function setUint16(byteOffset, value /* , littleEndian */) {\n set(this, 2, byteOffset, packI16, value, arguments[2]);\n },\n setInt32: function setInt32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packI32, value, arguments[2]);\n },\n setUint32: function setUint32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packI32, value, arguments[2]);\n },\n setFloat32: function setFloat32(byteOffset, value /* , littleEndian */) {\n set(this, 4, byteOffset, packF32, value, arguments[2]);\n },\n setFloat64: function setFloat64(byteOffset, value /* , littleEndian */) {\n set(this, 8, byteOffset, packF64, value, arguments[2]);\n }\n });\n} else {\n if (!fails(function () {\n $ArrayBuffer(1);\n }) || !fails(function () {\n new $ArrayBuffer(-1); // eslint-disable-line no-new\n }) || fails(function () {\n new $ArrayBuffer(); // eslint-disable-line no-new\n new $ArrayBuffer(1.5); // eslint-disable-line no-new\n new $ArrayBuffer(NaN); // eslint-disable-line no-new\n return $ArrayBuffer.name != ARRAY_BUFFER;\n })) {\n $ArrayBuffer = function ArrayBuffer(length) {\n anInstance(this, $ArrayBuffer);\n return new BaseBuffer(toIndex(length));\n };\n var ArrayBufferProto = $ArrayBuffer[PROTOTYPE] = BaseBuffer[PROTOTYPE];\n for (var keys = gOPN(BaseBuffer), j = 0, key; keys.length > j;) {\n if (!((key = keys[j++]) in $ArrayBuffer)) hide($ArrayBuffer, key, BaseBuffer[key]);\n }\n if (!LIBRARY) ArrayBufferProto.constructor = $ArrayBuffer;\n }\n // iOS Safari 7.x bug\n var view = new $DataView(new $ArrayBuffer(2));\n var $setInt8 = $DataView[PROTOTYPE].setInt8;\n view.setInt8(0, 2147483648);\n view.setInt8(1, 2147483649);\n if (view.getInt8(0) || !view.getInt8(1)) redefineAll($DataView[PROTOTYPE], {\n setInt8: function setInt8(byteOffset, value) {\n $setInt8.call(this, byteOffset, value << 24 >> 24);\n },\n setUint8: function setUint8(byteOffset, value) {\n $setInt8.call(this, byteOffset, value << 24 >> 24);\n }\n }, true);\n}\nsetToStringTag($ArrayBuffer, ARRAY_BUFFER);\nsetToStringTag($DataView, DATA_VIEW);\nhide($DataView[PROTOTYPE], $typed.VIEW, true);\nexports[ARRAY_BUFFER] = $ArrayBuffer;\nexports[DATA_VIEW] = $DataView;\n","// https://tc39.github.io/ecma262/#sec-toindex\nvar toInteger = require('./_to-integer');\nvar toLength = require('./_to-length');\nmodule.exports = function (it) {\n if (it === undefined) return 0;\n var number = toInteger(it);\n var length = toLength(number);\n if (number !== length) throw RangeError('Wrong length!');\n return length;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\n'use strict';\nvar toObject = require('./_to-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\n\nmodule.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {\n var O = toObject(this);\n var len = toLength(O.length);\n var to = toAbsoluteIndex(target, len);\n var from = toAbsoluteIndex(start, len);\n var end = arguments.length > 2 ? arguments[2] : undefined;\n var count = Math.min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to);\n var inc = 1;\n if (from < to && to < from + count) {\n inc = -1;\n from += count - 1;\n to += count - 1;\n }\n while (count-- > 0) {\n if (from in O) O[to] = O[from];\n else delete O[to];\n to += inc;\n from += inc;\n } return O;\n};\n","'use strict';\nvar dP = require('./_object-dp').f;\nvar create = require('./_object-create');\nvar redefineAll = require('./_redefine-all');\nvar ctx = require('./_ctx');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar $iterDefine = require('./_iter-define');\nvar step = require('./_iter-step');\nvar setSpecies = require('./_set-species');\nvar DESCRIPTORS = require('./_descriptors');\nvar fastKey = require('./_meta').fastKey;\nvar validate = require('./_validate-collection');\nvar SIZE = DESCRIPTORS ? '_s' : 'size';\n\nvar getEntry = function (that, key) {\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return that._i[index];\n // frozen object case\n for (entry = that._f; entry; entry = entry.n) {\n if (entry.k == key) return entry;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = create(null); // index\n that._f = undefined; // first entry\n that._l = undefined; // last entry\n that[SIZE] = 0; // size\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n for (var that = validate(this, NAME), data = that._i, entry = that._f; entry; entry = entry.n) {\n entry.r = true;\n if (entry.p) entry.p = entry.p.n = undefined;\n delete data[entry.i];\n }\n that._f = that._l = undefined;\n that[SIZE] = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = validate(this, NAME);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.n;\n var prev = entry.p;\n delete that._i[entry.i];\n entry.r = true;\n if (prev) prev.n = next;\n if (next) next.p = prev;\n if (that._f == entry) that._f = next;\n if (that._l == entry) that._l = prev;\n that[SIZE]--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n validate(this, NAME);\n var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.n : this._f) {\n f(entry.v, entry.k, this);\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(validate(this, NAME), key);\n }\n });\n if (DESCRIPTORS) dP(C.prototype, 'size', {\n get: function () {\n return validate(this, NAME)[SIZE];\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var entry = getEntry(that, key);\n var prev, index;\n // change existing entry\n if (entry) {\n entry.v = value;\n // create new entry\n } else {\n that._l = entry = {\n i: index = fastKey(key, true), // <- index\n k: key, // <- key\n v: value, // <- value\n p: prev = that._l, // <- previous entry\n n: undefined, // <- next entry\n r: false // <- removed\n };\n if (!that._f) that._f = entry;\n if (prev) prev.n = entry;\n that[SIZE]++;\n // add to index\n if (index !== 'F') that._i[index] = entry;\n } return that;\n },\n getEntry: getEntry,\n setStrong: function (C, NAME, IS_MAP) {\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n $iterDefine(C, NAME, function (iterated, kind) {\n this._t = validate(iterated, NAME); // target\n this._k = kind; // kind\n this._l = undefined; // previous\n }, function () {\n var that = this;\n var kind = that._k;\n var entry = that._l;\n // revert to the last existing entry\n while (entry && entry.r) entry = entry.p;\n // get next entry\n if (!that._t || !(that._l = entry = entry ? entry.n : that._t._f)) {\n // or finish the iteration\n that._t = undefined;\n return step(1);\n }\n // return step by kind\n if (kind == 'keys') return step(0, entry.k);\n if (kind == 'values') return step(0, entry.v);\n return step(0, [entry.k, entry.v]);\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(NAME);\n }\n};\n","// call something on iterator step with safe closing on error\nvar anObject = require('./_an-object');\nmodule.exports = function (iterator, fn, value, entries) {\n try {\n return entries ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (e) {\n var ret = iterator['return'];\n if (ret !== undefined) anObject(ret.call(iterator));\n throw e;\n }\n};\n","'use strict';\n// 19.1.2.1 Object.assign(target, source, ...)\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nvar toObject = require('./_to-object');\nvar IObject = require('./_iobject');\nvar $assign = Object.assign;\n\n// should work with symbols and should have deterministic property order (V8 bug)\nmodule.exports = !$assign || require('./_fails')(function () {\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var S = Symbol();\n var K = 'abcdefghijklmnopqrst';\n A[S] = 7;\n K.split('').forEach(function (k) { B[k] = k; });\n return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var aLen = arguments.length;\n var index = 1;\n var getSymbols = gOPS.f;\n var isEnum = pIE.f;\n while (aLen > index) {\n var S = IObject(arguments[index++]);\n var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) if (isEnum.call(S, key = keys[j++])) T[key] = S[key];\n } return T;\n} : $assign;\n","'use strict';\nvar redefineAll = require('./_redefine-all');\nvar getWeak = require('./_meta').getWeak;\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar createArrayMethod = require('./_array-methods');\nvar $has = require('./_has');\nvar validate = require('./_validate-collection');\nvar arrayFind = createArrayMethod(5);\nvar arrayFindIndex = createArrayMethod(6);\nvar id = 0;\n\n// fallback for uncaught frozen keys\nvar uncaughtFrozenStore = function (that) {\n return that._l || (that._l = new UncaughtFrozenStore());\n};\nvar UncaughtFrozenStore = function () {\n this.a = [];\n};\nvar findUncaughtFrozen = function (store, key) {\n return arrayFind(store.a, function (it) {\n return it[0] === key;\n });\n};\nUncaughtFrozenStore.prototype = {\n get: function (key) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) return entry[1];\n },\n has: function (key) {\n return !!findUncaughtFrozen(this, key);\n },\n set: function (key, value) {\n var entry = findUncaughtFrozen(this, key);\n if (entry) entry[1] = value;\n else this.a.push([key, value]);\n },\n 'delete': function (key) {\n var index = arrayFindIndex(this.a, function (it) {\n return it[0] === key;\n });\n if (~index) this.a.splice(index, 1);\n return !!~index;\n }\n};\n\nmodule.exports = {\n getConstructor: function (wrapper, NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, NAME, '_i');\n that._t = NAME; // collection type\n that._i = id++; // collection id\n that._l = undefined; // leak store for uncaught frozen objects\n if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n });\n redefineAll(C.prototype, {\n // 23.3.3.2 WeakMap.prototype.delete(key)\n // 23.4.3.3 WeakSet.prototype.delete(value)\n 'delete': function (key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME))['delete'](key);\n return data && $has(data, this._i) && delete data[this._i];\n },\n // 23.3.3.4 WeakMap.prototype.has(key)\n // 23.4.3.4 WeakSet.prototype.has(value)\n has: function has(key) {\n if (!isObject(key)) return false;\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, NAME)).has(key);\n return data && $has(data, this._i);\n }\n });\n return C;\n },\n def: function (that, key, value) {\n var data = getWeak(anObject(key), true);\n if (data === true) uncaughtFrozenStore(that).set(key, value);\n else data[that._i] = value;\n return that;\n },\n ufstore: uncaughtFrozenStore\n};\n","// fast apply, http://jsperf.lnkit.com/fast-apply/5\nmodule.exports = function (fn, args, that) {\n var un = that === undefined;\n switch (args.length) {\n case 0: return un ? fn()\n : fn.call(that);\n case 1: return un ? fn(args[0])\n : fn.call(that, args[0]);\n case 2: return un ? fn(args[0], args[1])\n : fn.call(that, args[0], args[1]);\n case 3: return un ? fn(args[0], args[1], args[2])\n : fn.call(that, args[0], args[1], args[2]);\n case 4: return un ? fn(args[0], args[1], args[2], args[3])\n : fn.call(that, args[0], args[1], args[2], args[3]);\n } return fn.apply(that, args);\n};\n","// all object keys, includes non-enumerable and symbols\nvar gOPN = require('./_object-gopn');\nvar gOPS = require('./_object-gops');\nvar anObject = require('./_an-object');\nvar Reflect = require('./_global').Reflect;\nmodule.exports = Reflect && Reflect.ownKeys || function ownKeys(it) {\n var keys = gOPN.f(anObject(it));\n var getSymbols = gOPS.f;\n return getSymbols ? keys.concat(getSymbols(it)) : keys;\n};\n","'use strict';\n// 25.4.1.5 NewPromiseCapability(C)\nvar aFunction = require('./_a-function');\n\nfunction PromiseCapability(C) {\n var resolve, reject;\n this.promise = new C(function ($$resolve, $$reject) {\n if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor');\n resolve = $$resolve;\n reject = $$reject;\n });\n this.resolve = aFunction(resolve);\n this.reject = aFunction(reject);\n}\n\nmodule.exports.f = function (C) {\n return new PromiseCapability(C);\n};\n","exports.f = require('./_wks');\n","// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nvar toIObject = require('./_to-iobject');\nvar gOPN = require('./_object-gopn').f;\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return gOPN(it);\n } catch (e) {\n return windowNames.slice();\n }\n};\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n};\n","'use strict';\nvar toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n\nmodule.exports = function repeat(count) {\n var str = String(defined(this));\n var res = '';\n var n = toInteger(count);\n if (n < 0 || n == Infinity) throw RangeError(\"Count can't be negative\");\n for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) res += str;\n return res;\n};\n","// 7.2.8 IsRegExp(argument)\nvar isObject = require('./_is-object');\nvar cof = require('./_cof');\nvar MATCH = require('./_wks')('match');\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');\n};\n","// 20.1.2.3 Number.isInteger(number)\nvar isObject = require('./_is-object');\nvar floor = Math.floor;\nmodule.exports = function isInteger(it) {\n return !isObject(it) && isFinite(it) && floor(it) === it;\n};\n","// 20.2.2.20 Math.log1p(x)\nmodule.exports = Math.log1p || function log1p(x) {\n return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);\n};\n","var getKeys = require('./_object-keys');\nvar toIObject = require('./_to-iobject');\nvar isEnum = require('./_object-pie').f;\nmodule.exports = function (isEntries) {\n return function (it) {\n var O = toIObject(it);\n var keys = getKeys(O);\n var length = keys.length;\n var i = 0;\n var result = [];\n var key;\n while (length > i) if (isEnum.call(O, key = keys[i++])) {\n result.push(isEntries ? [key, O[key]] : O[key]);\n } return result;\n };\n};\n","// https://github.com/tc39/proposal-string-pad-start-end\nvar toLength = require('./_to-length');\nvar repeat = require('./_string-repeat');\nvar defined = require('./_defined');\n\nmodule.exports = function (that, maxLength, fillString, left) {\n var S = String(defined(that));\n var stringLength = S.length;\n var fillStr = fillString === undefined ? ' ' : String(fillString);\n var intMaxLength = toLength(maxLength);\n if (intMaxLength <= stringLength || fillStr == '') return S;\n var fillLen = intMaxLength - stringLength;\n var stringFiller = repeat.call(fillStr, Math.ceil(fillLen / fillStr.length));\n if (stringFiller.length > fillLen) stringFiller = stringFiller.slice(0, fillLen);\n return left ? stringFiller + S : S + stringFiller;\n};\n","exports.sync = function (store, router, options) {\n var moduleName = (options || {}).moduleName || 'route'\n\n store.registerModule(moduleName, {\n namespaced: true,\n state: cloneRoute(router.currentRoute),\n mutations: {\n 'ROUTE_CHANGED': function ROUTE_CHANGED (state, transition) {\n store.state[moduleName] = cloneRoute(transition.to, transition.from)\n }\n }\n })\n\n var isTimeTraveling = false\n var currentPath\n\n // sync router on store change\n var storeUnwatch = store.watch(\n function (state) { return state[moduleName]; },\n function (route) {\n var fullPath = route.fullPath;\n if (fullPath === currentPath) {\n return\n }\n if (currentPath != null) {\n isTimeTraveling = true\n router.push(route)\n }\n currentPath = fullPath\n },\n { sync: true }\n )\n\n // sync store on router navigation\n var afterEachUnHook = router.afterEach(function (to, from) {\n if (isTimeTraveling) {\n isTimeTraveling = false\n return\n }\n currentPath = to.fullPath\n store.commit(moduleName + '/ROUTE_CHANGED', { to: to, from: from })\n })\n\n return function unsync () {\n // On unsync, remove router hook\n if (afterEachUnHook != null) {\n afterEachUnHook()\n }\n\n // On unsync, remove store watch\n if (storeUnwatch != null) {\n storeUnwatch()\n }\n\n // On unsync, unregister Module with store\n store.unregisterModule(moduleName)\n }\n}\n\nfunction cloneRoute (to, from) {\n var clone = {\n name: to.name,\n path: to.path,\n hash: to.hash,\n query: to.query,\n params: to.params,\n fullPath: to.fullPath,\n meta: to.meta\n }\n if (from) {\n clone.from = cloneRoute(from)\n }\n return Object.freeze(clone)\n}\n\n","/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.14.3\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';\n\nvar longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\nvar timeoutDuration = 0;\nfor (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n timeoutDuration = 1;\n break;\n }\n}\n\nfunction microtaskDebounce(fn) {\n var called = false;\n return function () {\n if (called) {\n return;\n }\n called = true;\n window.Promise.resolve().then(function () {\n called = false;\n fn();\n });\n };\n}\n\nfunction taskDebounce(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n setTimeout(function () {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nvar supportsMicroTasks = isBrowser && window.Promise;\n\n/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*/\nvar debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;\n\n/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nfunction isFunction(functionToCheck) {\n var getType = {};\n return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';\n}\n\n/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nfunction getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n // NOTE: 1 DOM access here\n var css = getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n\n/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n */\nfunction getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n\n/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n */\nfunction getScrollParent(element) {\n // Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return document.body;\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body;\n case '#document':\n return element.body;\n }\n\n // Firefox want us to check `-x` and `-y` variations as well\n\n var _getStyleComputedProp = getStyleComputedProperty(element),\n overflow = _getStyleComputedProp.overflow,\n overflowX = _getStyleComputedProp.overflowX,\n overflowY = _getStyleComputedProp.overflowY;\n\n if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n\nvar isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);\nvar isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);\n\n/**\n * Determines if the browser is Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nfunction isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n */\nfunction getOffsetParent(element) {\n if (!element) {\n return document.documentElement;\n }\n\n var noOffsetParent = isIE(10) ? document.body : null;\n\n // NOTE: 1 DOM access here\n var offsetParent = element.offsetParent;\n // Skip hidden elements which don't have an offsetParent\n while (offsetParent === noOffsetParent && element.nextElementSibling) {\n offsetParent = (element = element.nextElementSibling).offsetParent;\n }\n\n var nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n return element ? element.ownerDocument.documentElement : document.documentElement;\n }\n\n // .offsetParent will return the closest TD or TABLE in case\n // no offsetParent is present, I hate this job...\n if (['TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n\nfunction isOffsetContainer(element) {\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY') {\n return false;\n }\n return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;\n}\n\n/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nfunction getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nfunction findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to give as \"start\" the element that comes first in the DOM\n var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;\n var start = order ? element1 : element2;\n var end = order ? element2 : element1;\n\n // Get common ancestor container\n var range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n var commonAncestorContainer = range.commonAncestorContainer;\n\n // Both nodes are inside #document\n\n if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n // one of the nodes is inside shadowDOM, find which one\n var element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n\n/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n */\nfunction getScroll(element) {\n var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';\n\n var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n var html = element.ownerDocument.documentElement;\n var scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n */\nfunction includeScroll(rect, element) {\n var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n var modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n\n/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nfunction getBordersSize(styles, axis) {\n var sideA = axis === 'x' ? 'Left' : 'Top';\n var sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return parseFloat(styles['border' + sideA + 'Width'], 10) + parseFloat(styles['border' + sideB + 'Width'], 10);\n}\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? html['offset' + axis] + computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')] + computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')] : 0);\n}\n\nfunction getWindowSizes() {\n var body = document.body;\n var html = document.documentElement;\n var computedStyle = isIE(10) && getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle)\n };\n}\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n */\nfunction getClientRect(offsets) {\n return _extends({}, offsets, {\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height\n });\n}\n\n/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n */\nfunction getBoundingClientRect(element) {\n var rect = {};\n\n // IE10 10 FIX: Please, don't ask, the element isn't\n // considered in DOM in some circumstances...\n // This isn't reproducible in IE10 compatibility mode of IE11\n try {\n if (isIE(10)) {\n rect = element.getBoundingClientRect();\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n } else {\n rect = element.getBoundingClientRect();\n }\n } catch (e) {}\n\n var result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top\n };\n\n // subtract scrollbar size from sizes\n var sizes = element.nodeName === 'HTML' ? getWindowSizes() : {};\n var width = sizes.width || element.clientWidth || result.right - result.left;\n var height = sizes.height || element.clientHeight || result.bottom - result.top;\n\n var horizScrollbar = element.offsetWidth - width;\n var vertScrollbar = element.offsetHeight - height;\n\n // if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n // we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n var styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n\nfunction getOffsetRectRelativeToArbitraryNode(children, parent) {\n var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var isIE10 = isIE(10);\n var isHTML = parent.nodeName === 'HTML';\n var childrenRect = getBoundingClientRect(children);\n var parentRect = getBoundingClientRect(parent);\n var scrollParent = getScrollParent(children);\n\n var styles = getStyleComputedProperty(parent);\n var borderTopWidth = parseFloat(styles.borderTopWidth, 10);\n var borderLeftWidth = parseFloat(styles.borderLeftWidth, 10);\n\n // In cases where the parent is fixed, we must ignore negative scroll in offset calc\n if (fixedPosition && parent.nodeName === 'HTML') {\n parentRect.top = Math.max(parentRect.top, 0);\n parentRect.left = Math.max(parentRect.left, 0);\n }\n var offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n // Subtract margins of documentElement in case it's being used as parent\n // we do this only on HTML because it's the only element that behaves\n // differently when margins are applied to it. The margins are included in\n // the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n var marginTop = parseFloat(styles.marginTop, 10);\n var marginLeft = parseFloat(styles.marginLeft, 10);\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n // Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n\nfunction getViewportOffsetRectRelativeToArtbitraryNode(element) {\n var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var html = element.ownerDocument.documentElement;\n var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n var width = Math.max(html.clientWidth, window.innerWidth || 0);\n var height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n var scrollTop = !excludeScroll ? getScroll(html) : 0;\n var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;\n\n var offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width: width,\n height: height\n };\n\n return getClientRect(offset);\n}\n\n/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n */\nfunction isFixed(element) {\n var nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n return isFixed(getParentNode(element));\n}\n\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nfunction getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n }\n var el = element.parentElement;\n while (el && getStyleComputedProperty(el, 'transform') === 'none') {\n el = el.parentElement;\n }\n return el || document.documentElement;\n}\n\n/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @param {Boolean} fixedPosition - Is in fixed position mode\n * @returns {Object} Coordinates of the boundaries\n */\nfunction getBoundaries(popper, reference, padding, boundariesElement) {\n var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n // NOTE: 1 DOM access here\n\n var boundaries = { top: 0, left: 0 };\n var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference);\n\n // Handle viewport case\n if (boundariesElement === 'viewport') {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n } else {\n // Handle other cases based on DOM element used as boundaries\n var boundariesNode = void 0;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(reference));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition);\n\n // In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n var _getWindowSizes = getWindowSizes(),\n height = _getWindowSizes.height,\n width = _getWindowSizes.width;\n\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n // for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n // Add paddings\n boundaries.left += padding;\n boundaries.top += padding;\n boundaries.right -= padding;\n boundaries.bottom -= padding;\n\n return boundaries;\n}\n\nfunction getArea(_ref) {\n var width = _ref.width,\n height = _ref.height;\n\n return width * height;\n}\n\n/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {\n var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;\n\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n var boundaries = getBoundaries(popper, reference, padding, boundariesElement);\n\n var rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height\n }\n };\n\n var sortedAreas = Object.keys(rects).map(function (key) {\n return _extends({\n key: key\n }, rects[key], {\n area: getArea(rects[key])\n });\n }).sort(function (a, b) {\n return b.area - a.area;\n });\n\n var filteredAreas = sortedAreas.filter(function (_ref2) {\n var width = _ref2.width,\n height = _ref2.height;\n return width >= popper.clientWidth && height >= popper.clientHeight;\n });\n\n var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;\n\n var variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? '-' + variation : '');\n}\n\n/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @param {Element} fixedPosition - is in fixed position mode\n * @returns {Object} An object containing the offsets which will be applied to the popper\n */\nfunction getReferenceOffsets(state, popper, reference) {\n var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;\n\n var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference);\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);\n}\n\n/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n */\nfunction getOuterSizes(element) {\n var styles = getComputedStyle(element);\n var x = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);\n var y = parseFloat(styles.marginLeft) + parseFloat(styles.marginRight);\n var result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x\n };\n return result;\n}\n\n/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n */\nfunction getOppositePlacement(placement) {\n var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}\n\n/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n */\nfunction getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n // Get popper node sizes\n var popperRect = getOuterSizes(popper);\n\n // Add position, width and height to our offsets object\n var popperOffsets = {\n width: popperRect.width,\n height: popperRect.height\n };\n\n // depending by the popper placement we have to compute its offsets slightly differently\n var isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n var mainSide = isHoriz ? 'top' : 'left';\n var secondarySide = isHoriz ? 'left' : 'top';\n var measurement = isHoriz ? 'height' : 'width';\n var secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n\n/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction find(arr, check) {\n // use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n // use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction findIndex(arr, prop, value) {\n // use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(function (cur) {\n return cur[prop] === value;\n });\n }\n\n // use `find` + `indexOf` if `findIndex` isn't supported\n var match = find(arr, function (obj) {\n return obj[prop] === value;\n });\n return arr.indexOf(match);\n}\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n */\nfunction runModifiers(modifiers, data, ends) {\n var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(function (modifier) {\n if (modifier['function']) {\n // eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n // Add properties to offsets to make them a complete clientRect object\n // we do this before each modifier to make sure the previous one doesn't\n // mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n\n/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style.<br />\n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n */\nfunction update() {\n // if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n var data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {}\n };\n\n // compute reference element offsets\n data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding);\n\n // store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n data.positionFixed = this.options.positionFixed;\n\n // compute the popper offsets\n data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);\n\n data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n\n/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n */\nfunction isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(function (_ref) {\n var name = _ref.name,\n enabled = _ref.enabled;\n return enabled && name === modifierName;\n });\n}\n\n/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nfunction getSupportedPropertyName(property) {\n var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n var upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (var i = 0; i < prefixes.length; i++) {\n var prefix = prefixes[i];\n var toCheck = prefix ? '' + prefix + upperProp : property;\n if (typeof document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n\n/**\n * Destroy the popper\n * @method\n * @memberof Popper\n */\nfunction destroy() {\n this.state.isDestroyed = true;\n\n // touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style.left = '';\n this.popper.style.right = '';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicity asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n\n/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nfunction getWindow(element) {\n var ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n var isBody = scrollParent.nodeName === 'BODY';\n var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);\n }\n scrollParents.push(target);\n}\n\n/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction setupEventListeners(reference, options, state, updateBound) {\n // Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n // Scroll event listener on scroll parents\n var scrollElement = getScrollParent(reference);\n attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n\n/**\n * It will add resize/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n */\nfunction enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);\n }\n}\n\n/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction removeEventListeners(reference, state) {\n // Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n // Remove scroll event listener on scroll parents\n state.scrollParents.forEach(function (target) {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n // Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n\n/**\n * It will remove resize/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger onUpdate callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n */\nfunction disableEventListeners() {\n if (this.state.eventsEnabled) {\n cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n\n/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n */\nfunction isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n\n/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setStyles(element, styles) {\n Object.keys(styles).forEach(function (prop) {\n var unit = '';\n // add unit if the value is numeric and is one of the following\n if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n\n/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function (prop) {\n var value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n */\nfunction applyStyle(data) {\n // any property present in `data.styles` will be applied to the popper,\n // in this way we can make the 3rd party modifiers add custom styles to it\n // Be aware, modifiers could override the properties defined in the previous\n // lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n // any property present in `data.attributes` will be applied to the popper,\n // they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n // if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper\n * @param {Object} options - Popper.js options\n */\nfunction applyStyleOnLoad(reference, popper, options, modifierOptions, state) {\n // compute reference element offsets\n var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);\n\n popper.setAttribute('x-placement', placement);\n\n // Apply `position` to popper before anything else because\n // without the position applied we can't guarantee correct computations\n setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' });\n\n return options;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeStyle(data, options) {\n var x = options.x,\n y = options.y;\n var popper = data.offsets.popper;\n\n // Remove this legacy support in Popper.js v2\n\n var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'applyStyle';\n }).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');\n }\n var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;\n\n var offsetParent = getOffsetParent(data.instance.popper);\n var offsetParentRect = getBoundingClientRect(offsetParent);\n\n // Styles\n var styles = {\n position: popper.position\n };\n\n // Avoid blurry text by using full pixel integers.\n // For pixel-perfect positioning, top/bottom prefers rounded\n // values, while left/right prefers floored values.\n var offsets = {\n left: Math.floor(popper.left),\n top: Math.round(popper.top),\n bottom: Math.round(popper.bottom),\n right: Math.floor(popper.right)\n };\n\n var sideA = x === 'bottom' ? 'top' : 'bottom';\n var sideB = y === 'right' ? 'left' : 'right';\n\n // if gpuAcceleration is set to `true` and transform is supported,\n // we use `translate3d` to apply the position to the popper we\n // automatically use the supported prefixed version if needed\n var prefixedProperty = getSupportedPropertyName('transform');\n\n // now, let's make a step back and look at this code closely (wtf?)\n // If the content of the popper grows once it's been positioned, it\n // may happen that the popper gets misplaced because of the new content\n // overflowing its reference element\n // To avoid this problem, we provide two options (x and y), which allow\n // the consumer to define the offset origin.\n // If we position a popper on top of a reference element, we can set\n // `x` to `top` to make the popper grow towards its top instead of\n // its bottom.\n var left = void 0,\n top = void 0;\n if (sideA === 'bottom') {\n top = -offsetParentRect.height + offsets.bottom;\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n left = -offsetParentRect.width + offsets.right;\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n var invertTop = sideA === 'bottom' ? -1 : 1;\n var invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = sideA + ', ' + sideB;\n }\n\n // Attributes\n var attributes = {\n 'x-placement': data.placement\n };\n\n // Update `data` attributes, styles and arrowStyles\n data.attributes = _extends({}, attributes, data.attributes);\n data.styles = _extends({}, styles, data.styles);\n data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles);\n\n return data;\n}\n\n/**\n * Helper used to know if the given modifier depends from another one.<br />\n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n */\nfunction isModifierRequired(modifiers, requestingName, requestedName) {\n var requesting = find(modifiers, function (_ref) {\n var name = _ref.name;\n return name === requestingName;\n });\n\n var isRequired = !!requesting && modifiers.some(function (modifier) {\n return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;\n });\n\n if (!isRequired) {\n var _requesting = '`' + requestingName + '`';\n var requested = '`' + requestedName + '`';\n console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');\n }\n return isRequired;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction arrow(data, options) {\n var _data$offsets$arrow;\n\n // arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n var arrowElement = options.element;\n\n // if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n // if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n // if the arrowElement isn't a query selector we must check that the\n // provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn('WARNING: `arrow.element` must be child of its popper element!');\n return data;\n }\n }\n\n var placement = data.placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n var len = isVertical ? 'height' : 'width';\n var sideCapitalized = isVertical ? 'Top' : 'Left';\n var side = sideCapitalized.toLowerCase();\n var altSide = isVertical ? 'left' : 'top';\n var opSide = isVertical ? 'bottom' : 'right';\n var arrowElementSize = getOuterSizes(arrowElement)[len];\n\n //\n // extends keepTogether behavior making sure the popper and its\n // reference have enough pixels in conjuction\n //\n\n // top/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);\n }\n // bottom/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];\n }\n data.offsets.popper = getClientRect(data.offsets.popper);\n\n // compute center of the popper\n var center = reference[side] + reference[len] / 2 - arrowElementSize / 2;\n\n // Compute the sideValue using the updated popper offsets\n // take popper margin in account because we don't have this info available\n var css = getStyleComputedProperty(data.instance.popper);\n var popperMarginSide = parseFloat(css['margin' + sideCapitalized], 10);\n var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width'], 10);\n var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n // prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow);\n\n return data;\n}\n\n/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n */\nfunction getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n\n/**\n * List of accepted placements to use as values of the `placement` option.<br />\n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right.<br />\n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-right` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n */\nvar placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];\n\n// Get rid of `auto` `auto-start` and `auto-end`\nvar validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nfunction clockwise(placement) {\n var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var index = validPlacements.indexOf(placement);\n var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n\nvar BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise'\n};\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction flip(data, options) {\n // if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed);\n\n var placement = data.placement.split('-')[0];\n var placementOpposite = getOppositePlacement(placement);\n var variation = data.placement.split('-')[1] || '';\n\n var flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach(function (step, index) {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n var popperOffsets = data.offsets.popper;\n var refOffsets = data.offsets.reference;\n\n // using floor because the reference offsets may contain decimals we are not going to consider here\n var floor = Math.floor;\n var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);\n\n var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom;\n\n // flip the variation if required\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom);\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n // this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n // this object contains `position`, we want to preserve it along with\n // any additional property we may add in the future\n data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction keepTogether(data) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var placement = data.placement.split('-')[0];\n var floor = Math.floor;\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var side = isVertical ? 'right' : 'bottom';\n var opSide = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n\n/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nfunction toValue(str, measurement, popperOffsets, referenceOffsets) {\n // separate value from unit\n var split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n var value = +split[1];\n var unit = split[2];\n\n // If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n var element = void 0;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n var rect = getClientRect(element);\n return rect[measurement] / 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n // if is a vh or vw, we calculate the size based on the viewport\n var size = void 0;\n if (unit === 'vh') {\n size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);\n } else {\n size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);\n }\n return size / 100 * value;\n } else {\n // if is an explicit pixel unit, we get rid of the unit and keep the value\n // if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n */\nfunction parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {\n var offsets = [0, 0];\n\n // Use height if placement is left or right and index is 0 otherwise use width\n // in this way the first offset will use an axis and the second one\n // will use the other one\n var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n // Split the offset string to obtain a list of values and operands\n // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n var fragments = offset.split(/(\\+|\\-)/).map(function (frag) {\n return frag.trim();\n });\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n var divider = fragments.indexOf(find(fragments, function (frag) {\n return frag.search(/,|\\s/) !== -1;\n }));\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');\n }\n\n // If divider is found, we divide the list of values and operands to divide\n // them by ofset X and Y.\n var splitRegex = /\\s*,\\s*|\\s+/;\n var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments];\n\n // Convert the values with units to absolute pixels to allow our computations\n ops = ops.map(function (op, index) {\n // Most of the units rely on the orientation of the popper\n var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';\n var mergeWithPrevious = false;\n return op\n // This aggregates any `+` or `-` sign that aren't considered operators\n // e.g.: 10 + +5 => [10, +, +5]\n .reduce(function (a, b) {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n // Here we convert the string values into number values (in px)\n .map(function (str) {\n return toValue(str, measurement, popperOffsets, referenceOffsets);\n });\n });\n\n // Loop trough the offsets arrays and execute the operations\n ops.forEach(function (op, index) {\n op.forEach(function (frag, index2) {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n */\nfunction offset(data, _ref) {\n var offset = _ref.offset;\n var placement = data.placement,\n _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var basePlacement = placement.split('-')[0];\n\n var offsets = void 0;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction preventOverflow(data, options) {\n var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper);\n\n // If offsetParent is the reference element, we really want to\n // go one step up and use the next offsetParent as reference to\n // avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n // NOTE: DOM access here\n // resets the popper's position so that the document size can be calculated excluding\n // the size of the popper element itself\n var transformProp = getSupportedPropertyName('transform');\n var popperStyles = data.instance.popper.style; // assignment to help minification\n var top = popperStyles.top,\n left = popperStyles.left,\n transform = popperStyles[transformProp];\n\n popperStyles.top = '';\n popperStyles.left = '';\n popperStyles[transformProp] = '';\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed);\n\n // NOTE: DOM access here\n // restores the original style properties after the offsets have been computed\n popperStyles.top = top;\n popperStyles.left = left;\n popperStyles[transformProp] = transform;\n\n options.boundaries = boundaries;\n\n var order = options.priority;\n var popper = data.offsets.popper;\n\n var check = {\n primary: function primary(placement) {\n var value = popper[placement];\n if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return defineProperty({}, placement, value);\n },\n secondary: function secondary(placement) {\n var mainSide = placement === 'right' ? 'left' : 'top';\n var value = popper[mainSide];\n if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {\n value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));\n }\n return defineProperty({}, mainSide, value);\n }\n };\n\n order.forEach(function (placement) {\n var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = _extends({}, popper, check[side](placement));\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction shift(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var shiftvariation = placement.split('-')[1];\n\n // if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n var _data$offsets = data.offsets,\n reference = _data$offsets.reference,\n popper = _data$offsets.popper;\n\n var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n var side = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n var shiftOffsets = {\n start: defineProperty({}, side, reference[side]),\n end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement])\n };\n\n data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]);\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n var refRect = data.offsets.reference;\n var bound = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'preventOverflow';\n }).boundaries;\n\n if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction inner(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n\n/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property.<br />\n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n */\n\n/**\n * Modifiers are plugins used to alter the behavior of your poppers.<br />\n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nvar modifiers = {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element.<br />\n * It will read the variation of the `placement` property.<br />\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order: 100,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: shift\n },\n\n /**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unitless, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper.<br />\n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the height.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces.<br />\n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2.<br />\n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > More on this [reading this issue](https://github.com/FezVrasta/popper.js/issues/373)\n *\n * @memberof modifiers\n * @inner\n */\n offset: {\n /** @prop {number} order=200 - Index used to define the order of execution */\n order: 200,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: offset,\n /** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n */\n offset: 0\n },\n\n /**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * An scenario exists where the reference itself is not within the boundaries.<br />\n * We can say it has \"escaped the boundaries\" — or just \"escaped\".<br />\n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n */\n preventOverflow: {\n /** @prop {number} order=300 - Index used to define the order of execution */\n order: 300,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: preventOverflow,\n /**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n */\n priority: ['left', 'right', 'top', 'bottom'],\n /**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper this makes sure the popper has always a little padding\n * between the edges of its container\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier, can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n */\n boundariesElement: 'scrollParent'\n },\n\n /**\n * Modifier used to make sure the reference and its popper stay near eachothers\n * without leaving any gap between the two. Expecially useful when the arrow is\n * enabled and you want to assure it to point to its reference element.\n * It cares only about the first axis, you can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n */\n keepTogether: {\n /** @prop {number} order=400 - Index used to define the order of execution */\n order: 400,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: keepTogether\n },\n\n /**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjuction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n */\n arrow: {\n /** @prop {number} order=500 - Index used to define the order of execution */\n order: 500,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: arrow,\n /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */\n element: '[x-arrow]'\n },\n\n /**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n */\n flip: {\n /** @prop {number} order=600 - Index used to define the order of execution */\n order: 600,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: flip,\n /**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations).\n */\n behavior: 'flip',\n /**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position,\n * the popper will never be placed outside of the defined boundaries\n * (except if keepTogether is enabled)\n */\n boundariesElement: 'viewport'\n },\n\n /**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n */\n inner: {\n /** @prop {number} order=700 - Index used to define the order of execution */\n order: 700,\n /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */\n enabled: false,\n /** @prop {ModifierFn} */\n fn: inner\n },\n\n /**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n */\n hide: {\n /** @prop {number} order=800 - Index used to define the order of execution */\n order: 800,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: hide\n },\n\n /**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n */\n computeStyle: {\n /** @prop {number} order=850 - Index used to define the order of execution */\n order: 850,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: computeStyle,\n /**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n */\n gpuAcceleration: true,\n /**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n */\n x: 'bottom',\n /**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n */\n y: 'right'\n },\n\n /**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define you own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n */\n applyStyle: {\n /** @prop {number} order=900 - Index used to define the order of execution */\n order: 900,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: applyStyle,\n /** @prop {Function} */\n onLoad: applyStyleOnLoad,\n /**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n */\n gpuAcceleration: undefined\n }\n};\n\n/**\n * The `dataObject` is an object containing all the informations used by Popper.js\n * this object get passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper.\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements.\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n */\n\n/**\n * Default options provided to Popper.js constructor.<br />\n * These can be overriden using the `options` argument of Popper.js.<br />\n * To override an option, simply pass as 3rd argument an object with the same\n * structure of this object, example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n */\nvar Defaults = {\n /**\n * Popper's placement\n * @prop {Popper.placements} placement='bottom'\n */\n placement: 'bottom',\n\n /**\n * Set this to true if you want popper to position it self in 'fixed' mode\n * @prop {Boolean} positionFixed=false\n */\n positionFixed: false,\n\n /**\n * Whether events (resize, scroll) are initially enabled\n * @prop {Boolean} eventsEnabled=true\n */\n eventsEnabled: true,\n\n /**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n */\n removeOnDestroy: false,\n\n /**\n * Callback called when the popper is created.<br />\n * By default, is set to no-op.<br />\n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n */\n onCreate: function onCreate() {},\n\n /**\n * Callback called when the popper is updated, this callback is not called\n * on the initialization/creation of the popper, but only on subsequent\n * updates.<br />\n * By default, is set to no-op.<br />\n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n */\n onUpdate: function onUpdate() {},\n\n /**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js\n * @prop {modifiers}\n */\n modifiers: modifiers\n};\n\n/**\n * @callback onCreate\n * @param {dataObject} data\n */\n\n/**\n * @callback onUpdate\n * @param {dataObject} data\n */\n\n// Utils\n// Methods\nvar Popper = function () {\n /**\n * Create a new Popper.js instance\n * @class Popper\n * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper.\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n */\n function Popper(reference, popper) {\n var _this = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n classCallCheck(this, Popper);\n\n this.scheduleUpdate = function () {\n return requestAnimationFrame(_this.update);\n };\n\n // make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n // with {} we create a new object with the options inside it\n this.options = _extends({}, Popper.Defaults, options);\n\n // init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: []\n };\n\n // get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n // Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {\n _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});\n });\n\n // Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers).map(function (name) {\n return _extends({\n name: name\n }, _this.options.modifiers[name]);\n })\n // sort the modifiers by order\n .sort(function (a, b) {\n return a.order - b.order;\n });\n\n // modifiers have the ability to execute arbitrary code when Popper.js get inited\n // such code is executed in the same order of its modifier\n // they could add new properties to their options configuration\n // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(function (modifierOptions) {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);\n }\n });\n\n // fire the first update to position the popper in the right place\n this.update();\n\n var eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n // setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n // We can't use class properties because they don't get listed in the\n // class prototype and break stuff like Sinon stubs\n\n\n createClass(Popper, [{\n key: 'update',\n value: function update$$1() {\n return update.call(this);\n }\n }, {\n key: 'destroy',\n value: function destroy$$1() {\n return destroy.call(this);\n }\n }, {\n key: 'enableEventListeners',\n value: function enableEventListeners$$1() {\n return enableEventListeners.call(this);\n }\n }, {\n key: 'disableEventListeners',\n value: function disableEventListeners$$1() {\n return disableEventListeners.call(this);\n }\n\n /**\n * Schedule an update, it will run on the next UI update available\n * @method scheduleUpdate\n * @memberof Popper\n */\n\n\n /**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n */\n\n }]);\n return Popper;\n}();\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.<br />\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n\n\nPopper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\nPopper.placements = placements;\nPopper.Defaults = Defaults;\n\nvar SVGAnimatedString = function SVGAnimatedString() {};\nif (typeof window !== 'undefined') {\n\tSVGAnimatedString = window.SVGAnimatedString;\n}\n\nfunction convertToArray(value) {\n\tif (typeof value === 'string') {\n\t\tvalue = value.split(' ');\n\t}\n\treturn value;\n}\n\n/**\n * Add classes to an element.\n * This method checks to ensure that the classes don't already exist before adding them.\n * It uses el.className rather than classList in order to be IE friendly.\n * @param {object} el - The element to add the classes to.\n * @param {classes} string - List of space separated classes to be added to the element.\n */\nfunction addClasses(el, classes) {\n\tvar newClasses = convertToArray(classes);\n\tvar classList = void 0;\n\tif (el.className instanceof SVGAnimatedString) {\n\t\tclassList = convertToArray(el.className.baseVal);\n\t} else {\n\t\tclassList = convertToArray(el.className);\n\t}\n\tnewClasses.forEach(function (newClass) {\n\t\tif (classList.indexOf(newClass) === -1) {\n\t\t\tclassList.push(newClass);\n\t\t}\n\t});\n\tif (el instanceof SVGElement) {\n\t\tel.setAttribute('class', classList.join(' '));\n\t} else {\n\t\tel.className = classList.join(' ');\n\t}\n}\n\n/**\n * Remove classes from an element.\n * It uses el.className rather than classList in order to be IE friendly.\n * @export\n * @param {any} el The element to remove the classes from.\n * @param {any} classes List of space separated classes to be removed from the element.\n */\nfunction removeClasses(el, classes) {\n\tvar newClasses = convertToArray(classes);\n\tvar classList = void 0;\n\tif (el.className instanceof SVGAnimatedString) {\n\t\tclassList = convertToArray(el.className.baseVal);\n\t} else {\n\t\tclassList = convertToArray(el.className);\n\t}\n\tnewClasses.forEach(function (newClass) {\n\t\tvar index = classList.indexOf(newClass);\n\t\tif (index !== -1) {\n\t\t\tclassList.splice(index, 1);\n\t\t}\n\t});\n\tif (el instanceof SVGElement) {\n\t\tel.setAttribute('class', classList.join(' '));\n\t} else {\n\t\tel.className = classList.join(' ');\n\t}\n}\n\nvar supportsPassive = false;\n\nif (typeof window !== 'undefined') {\n\tsupportsPassive = false;\n\ttry {\n\t\tvar opts = Object.defineProperty({}, 'passive', {\n\t\t\tget: function get() {\n\t\t\t\tsupportsPassive = true;\n\t\t\t}\n\t\t});\n\t\twindow.addEventListener('test', null, opts);\n\t} catch (e) {}\n}\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) {\n return typeof obj;\n} : function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar classCallCheck$1 = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass$1 = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\n\n\nvar _extends$1 = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/* Forked from https://github.com/FezVrasta/popper.js/blob/master/packages/tooltip/src/index.js */\n\nvar DEFAULT_OPTIONS = {\n\tcontainer: false,\n\tdelay: 0,\n\thtml: false,\n\tplacement: 'top',\n\ttitle: '',\n\ttemplate: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n\ttrigger: 'hover focus',\n\toffset: 0\n};\n\nvar openTooltips = [];\n\nvar Tooltip = function () {\n\t/**\n * Create a new Tooltip.js instance\n * @class Tooltip\n * @param {HTMLElement} reference - The DOM node used as reference of the tooltip (it can be a jQuery element).\n * @param {Object} options\n * @param {String} options.placement=bottom\n *\t\t\tPlacement of the popper accepted values: `top(-start, -end), right(-start, -end), bottom(-start, -end),\n *\t\t\tleft(-start, -end)`\n * @param {HTMLElement|String|false} options.container=false - Append the tooltip to a specific element.\n * @param {Number|Object} options.delay=0\n *\t\t\tDelay showing and hiding the tooltip (ms) - does not apply to manual trigger type.\n *\t\t\tIf a number is supplied, delay is applied to both hide/show.\n *\t\t\tObject structure is: `{ show: 500, hide: 100 }`\n * @param {Boolean} options.html=false - Insert HTML into the tooltip. If false, the content will inserted with `innerText`.\n * @param {String|PlacementFunction} options.placement='top' - One of the allowed placements, or a function returning one of them.\n * @param {String} [options.template='<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>']\n *\t\t\tBase HTML to used when creating the tooltip.\n *\t\t\tThe tooltip's `title` will be injected into the `.tooltip-inner` or `.tooltip__inner`.\n *\t\t\t`.tooltip-arrow` or `.tooltip__arrow` will become the tooltip's arrow.\n *\t\t\tThe outermost wrapper element should have the `.tooltip` class.\n * @param {String|HTMLElement|TitleFunction} options.title='' - Default title value if `title` attribute isn't present.\n * @param {String} [options.trigger='hover focus']\n *\t\t\tHow tooltip is triggered - click, hover, focus, manual.\n *\t\t\tYou may pass multiple triggers; separate them with a space. `manual` cannot be combined with any other trigger.\n * @param {HTMLElement} options.boundariesElement\n *\t\t\tThe element used as boundaries for the tooltip. For more information refer to Popper.js'\n *\t\t\t[boundariesElement docs](https://popper.js.org/popper-documentation.html)\n * @param {Number|String} options.offset=0 - Offset of the tooltip relative to its reference. For more information refer to Popper.js'\n *\t\t\t[offset docs](https://popper.js.org/popper-documentation.html)\n * @param {Object} options.popperOptions={} - Popper options, will be passed directly to popper instance. For more information refer to Popper.js'\n *\t\t\t[options docs](https://popper.js.org/popper-documentation.html)\n * @return {Object} instance - The generated tooltip instance\n */\n\tfunction Tooltip(reference, options) {\n\t\tclassCallCheck$1(this, Tooltip);\n\n\t\t_initialiseProps.call(this);\n\n\t\t// apply user options over default ones\n\t\toptions = _extends$1({}, DEFAULT_OPTIONS, options);\n\n\t\treference.jquery && (reference = reference[0]);\n\n\t\t// cache reference and options\n\t\tthis.reference = reference;\n\t\tthis.options = options;\n\n\t\t// set initial state\n\t\tthis._isOpen = false;\n\n\t\tthis._init();\n\t}\n\n\t//\n\t// Public methods\n\t//\n\n\t/**\n * Reveals an element's tooltip. This is considered a \"manual\" triggering of the tooltip.\n * Tooltips with zero-length titles are never displayed.\n * @method Tooltip#show\n * @memberof Tooltip\n */\n\n\n\t/**\n * Hides an element’s tooltip. This is considered a “manual” triggering of the tooltip.\n * @method Tooltip#hide\n * @memberof Tooltip\n */\n\n\n\t/**\n * Hides and destroys an element’s tooltip.\n * @method Tooltip#dispose\n * @memberof Tooltip\n */\n\n\n\t/**\n * Toggles an element’s tooltip. This is considered a “manual” triggering of the tooltip.\n * @method Tooltip#toggle\n * @memberof Tooltip\n */\n\n\n\tcreateClass$1(Tooltip, [{\n\t\tkey: 'setClasses',\n\t\tvalue: function setClasses(classes) {\n\t\t\tthis._classes = classes;\n\t\t}\n\t}, {\n\t\tkey: 'setContent',\n\t\tvalue: function setContent(content) {\n\t\t\tthis.options.title = content;\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._setContent(content, this.options);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'setOptions',\n\t\tvalue: function setOptions(options) {\n\t\t\tvar classesUpdated = false;\n\t\t\tvar classes = options && options.classes || directive.options.defaultClass;\n\t\t\tif (this._classes !== classes) {\n\t\t\t\tthis.setClasses(classes);\n\t\t\t\tclassesUpdated = true;\n\t\t\t}\n\n\t\t\toptions = getOptions(options);\n\n\t\t\tvar needPopperUpdate = false;\n\t\t\tvar needRestart = false;\n\n\t\t\tif (this.options.offset !== options.offset || this.options.placement !== options.placement) {\n\t\t\t\tneedPopperUpdate = true;\n\t\t\t}\n\n\t\t\tif (this.options.template !== options.template || this.options.trigger !== options.trigger || this.options.container !== options.container || classesUpdated) {\n\t\t\t\tneedRestart = true;\n\t\t\t}\n\n\t\t\tfor (var key in options) {\n\t\t\t\tthis.options[key] = options[key];\n\t\t\t}\n\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tif (needRestart) {\n\t\t\t\t\tvar isOpen = this._isOpen;\n\n\t\t\t\t\tthis.dispose();\n\t\t\t\t\tthis._init();\n\n\t\t\t\t\tif (isOpen) {\n\t\t\t\t\t\tthis.show();\n\t\t\t\t\t}\n\t\t\t\t} else if (needPopperUpdate) {\n\t\t\t\t\tthis.popperInstance.update();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t//\n\t\t// Private methods\n\t\t//\n\n\t}, {\n\t\tkey: '_init',\n\t\tvalue: function _init() {\n\t\t\t// get events list\n\t\t\tvar events = typeof this.options.trigger === 'string' ? this.options.trigger.split(' ').filter(function (trigger) {\n\t\t\t\treturn ['click', 'hover', 'focus'].indexOf(trigger) !== -1;\n\t\t\t}) : [];\n\t\t\tthis._isDisposed = false;\n\t\t\tthis._enableDocumentTouch = events.indexOf('manual') === -1;\n\n\t\t\t// set event listeners\n\t\t\tthis._setEventListeners(this.reference, events, this.options);\n\t\t}\n\n\t\t/**\n * Creates a new tooltip node\n * @memberof Tooltip\n * @private\n * @param {HTMLElement} reference\n * @param {String} template\n * @param {String|HTMLElement|TitleFunction} title\n * @param {Boolean} allowHtml\n * @return {HTMLelement} tooltipNode\n */\n\n\t}, {\n\t\tkey: '_create',\n\t\tvalue: function _create(reference, template) {\n\t\t\t// create tooltip element\n\t\t\tvar tooltipGenerator = window.document.createElement('div');\n\t\t\ttooltipGenerator.innerHTML = template.trim();\n\t\t\tvar tooltipNode = tooltipGenerator.childNodes[0];\n\n\t\t\t// add unique ID to our tooltip (needed for accessibility reasons)\n\t\t\ttooltipNode.id = 'tooltip_' + Math.random().toString(36).substr(2, 10);\n\n\t\t\t// Initially hide the tooltip\n\t\t\t// The attribute will be switched in a next frame so\n\t\t\t// CSS transitions can play\n\t\t\ttooltipNode.setAttribute('aria-hidden', 'true');\n\n\t\t\tif (this.options.autoHide && this.options.trigger.indexOf('hover') !== -1) {\n\t\t\t\ttooltipNode.addEventListener('mouseenter', this.hide);\n\t\t\t\ttooltipNode.addEventListener('click', this.hide);\n\t\t\t}\n\n\t\t\t// return the generated tooltip node\n\t\t\treturn tooltipNode;\n\t\t}\n\t}, {\n\t\tkey: '_setContent',\n\t\tvalue: function _setContent(content, options) {\n\t\t\tvar _this = this;\n\n\t\t\tthis.asyncContent = false;\n\t\t\tthis._applyContent(content, options).then(function () {\n\t\t\t\t_this.popperInstance.update();\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_applyContent',\n\t\tvalue: function _applyContent(title, options) {\n\t\t\tvar _this2 = this;\n\n\t\t\treturn new Promise(function (resolve, reject) {\n\t\t\t\tvar allowHtml = options.html;\n\t\t\t\tvar rootNode = _this2._tooltipNode;\n\t\t\t\tif (!rootNode) return;\n\t\t\t\tvar titleNode = rootNode.querySelector(_this2.options.innerSelector);\n\t\t\t\tif (title.nodeType === 1) {\n\t\t\t\t\t// if title is a node, append it only if allowHtml is true\n\t\t\t\t\tif (allowHtml) {\n\t\t\t\t\t\twhile (titleNode.firstChild) {\n\t\t\t\t\t\t\ttitleNode.removeChild(titleNode.firstChild);\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttitleNode.appendChild(title);\n\t\t\t\t\t}\n\t\t\t\t} else if (typeof title === 'function') {\n\t\t\t\t\t// if title is a function, call it and set innerText or innerHtml depending by `allowHtml` value\n\t\t\t\t\tvar result = title();\n\t\t\t\t\tif (result && typeof result.then === 'function') {\n\t\t\t\t\t\t_this2.asyncContent = true;\n\t\t\t\t\t\toptions.loadingClass && addClasses(rootNode, options.loadingClass);\n\t\t\t\t\t\tif (options.loadingContent) {\n\t\t\t\t\t\t\t_this2._applyContent(options.loadingContent, options);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult.then(function (asyncResult) {\n\t\t\t\t\t\t\toptions.loadingClass && removeClasses(rootNode, options.loadingClass);\n\t\t\t\t\t\t\treturn _this2._applyContent(asyncResult, options);\n\t\t\t\t\t\t}).then(resolve).catch(reject);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this2._applyContent(result, options).then(resolve).catch(reject);\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t} else {\n\t\t\t\t\t// if it's just a simple text, set innerText or innerHtml depending by `allowHtml` value\n\t\t\t\t\tallowHtml ? titleNode.innerHTML = title : titleNode.innerText = title;\n\t\t\t\t}\n\t\t\t\tresolve();\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_show',\n\t\tvalue: function _show(reference, options) {\n\t\t\tif (options && typeof options.container === 'string') {\n\t\t\t\tvar container = document.querySelector(options.container);\n\t\t\t\tif (!container) return;\n\t\t\t}\n\n\t\t\tclearTimeout(this._disposeTimer);\n\n\t\t\toptions = Object.assign({}, options);\n\t\t\tdelete options.offset;\n\n\t\t\tvar updateClasses = true;\n\t\t\tif (this._tooltipNode) {\n\t\t\t\taddClasses(this._tooltipNode, this._classes);\n\t\t\t\tupdateClasses = false;\n\t\t\t}\n\n\t\t\tvar result = this._ensureShown(reference, options);\n\n\t\t\tif (updateClasses && this._tooltipNode) {\n\t\t\t\taddClasses(this._tooltipNode, this._classes);\n\t\t\t}\n\n\t\t\taddClasses(reference, ['v-tooltip-open']);\n\n\t\t\treturn result;\n\t\t}\n\t}, {\n\t\tkey: '_ensureShown',\n\t\tvalue: function _ensureShown(reference, options) {\n\t\t\tvar _this3 = this;\n\n\t\t\t// don't show if it's already visible\n\t\t\tif (this._isOpen) {\n\t\t\t\treturn this;\n\t\t\t}\n\t\t\tthis._isOpen = true;\n\n\t\t\topenTooltips.push(this);\n\n\t\t\t// if the tooltipNode already exists, just show it\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._tooltipNode.style.display = '';\n\t\t\t\tthis._tooltipNode.setAttribute('aria-hidden', 'false');\n\t\t\t\tthis.popperInstance.enableEventListeners();\n\t\t\t\tthis.popperInstance.update();\n\t\t\t\tif (this.asyncContent) {\n\t\t\t\t\tthis._setContent(options.title, options);\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// get title\n\t\t\tvar title = reference.getAttribute('title') || options.title;\n\n\t\t\t// don't show tooltip if no title is defined\n\t\t\tif (!title) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// create tooltip node\n\t\t\tvar tooltipNode = this._create(reference, options.template);\n\t\t\tthis._tooltipNode = tooltipNode;\n\n\t\t\tthis._setContent(title, options);\n\n\t\t\t// Add `aria-describedby` to our reference element for accessibility reasons\n\t\t\treference.setAttribute('aria-describedby', tooltipNode.id);\n\n\t\t\t// append tooltip to container\n\t\t\tvar container = this._findContainer(options.container, reference);\n\n\t\t\tthis._append(tooltipNode, container);\n\n\t\t\tvar popperOptions = _extends$1({}, options.popperOptions, {\n\t\t\t\tplacement: options.placement\n\t\t\t});\n\n\t\t\tpopperOptions.modifiers = _extends$1({}, popperOptions.modifiers, {\n\t\t\t\tarrow: {\n\t\t\t\t\telement: this.options.arrowSelector\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tif (options.boundariesElement) {\n\t\t\t\tpopperOptions.modifiers.preventOverflow = {\n\t\t\t\t\tboundariesElement: options.boundariesElement\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tthis.popperInstance = new Popper(reference, tooltipNode, popperOptions);\n\n\t\t\t// Fix position\n\t\t\trequestAnimationFrame(function () {\n\t\t\t\tif (!_this3._isDisposed && _this3.popperInstance) {\n\t\t\t\t\t_this3.popperInstance.update();\n\n\t\t\t\t\t// Show the tooltip\n\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\tif (!_this3._isDisposed) {\n\t\t\t\t\t\t\t_this3._isOpen && tooltipNode.setAttribute('aria-hidden', 'false');\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t_this3.dispose();\n\t\t\t\t}\n\t\t\t});\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_noLongerOpen',\n\t\tvalue: function _noLongerOpen() {\n\t\t\tvar index = openTooltips.indexOf(this);\n\t\t\tif (index !== -1) {\n\t\t\t\topenTooltips.splice(index, 1);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_hide',\n\t\tvalue: function _hide() /* reference, options */{\n\t\t\tvar _this4 = this;\n\n\t\t\t// don't hide if it's already hidden\n\t\t\tif (!this._isOpen) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\tthis._isOpen = false;\n\t\t\tthis._noLongerOpen();\n\n\t\t\t// hide tooltipNode\n\t\t\tthis._tooltipNode.style.display = 'none';\n\t\t\tthis._tooltipNode.setAttribute('aria-hidden', 'true');\n\n\t\t\tthis.popperInstance.disableEventListeners();\n\n\t\t\tclearTimeout(this._disposeTimer);\n\t\t\tvar disposeTime = directive.options.disposeTimeout;\n\t\t\tif (disposeTime !== null) {\n\t\t\t\tthis._disposeTimer = setTimeout(function () {\n\t\t\t\t\tif (_this4._tooltipNode) {\n\t\t\t\t\t\t_this4._tooltipNode.removeEventListener('mouseenter', _this4.hide);\n\t\t\t\t\t\t_this4._tooltipNode.removeEventListener('click', _this4.hide);\n\t\t\t\t\t\t// Don't remove popper instance, just the HTML element\n\t\t\t\t\t\t_this4._tooltipNode.parentNode.removeChild(_this4._tooltipNode);\n\t\t\t\t\t\t_this4._tooltipNode = null;\n\t\t\t\t\t}\n\t\t\t\t}, disposeTime);\n\t\t\t}\n\n\t\t\tremoveClasses(this.reference, ['v-tooltip-open']);\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_dispose',\n\t\tvalue: function _dispose() {\n\t\t\tvar _this5 = this;\n\n\t\t\tthis._isDisposed = true;\n\n\t\t\t// remove event listeners first to prevent any unexpected behaviour\n\t\t\tthis._events.forEach(function (_ref) {\n\t\t\t\tvar func = _ref.func,\n\t\t\t\t event = _ref.event;\n\n\t\t\t\t_this5.reference.removeEventListener(event, func);\n\t\t\t});\n\t\t\tthis._events = [];\n\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._hide();\n\n\t\t\t\tthis._tooltipNode.removeEventListener('mouseenter', this.hide);\n\t\t\t\tthis._tooltipNode.removeEventListener('click', this.hide);\n\n\t\t\t\t// destroy instance\n\t\t\t\tthis.popperInstance.destroy();\n\n\t\t\t\t// destroy tooltipNode if removeOnDestroy is not set, as popperInstance.destroy() already removes the element\n\t\t\t\tif (!this.popperInstance.options.removeOnDestroy) {\n\t\t\t\t\tthis._tooltipNode.parentNode.removeChild(this._tooltipNode);\n\t\t\t\t\tthis._tooltipNode = null;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tthis._noLongerOpen();\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_findContainer',\n\t\tvalue: function _findContainer(container, reference) {\n\t\t\t// if container is a query, get the relative element\n\t\t\tif (typeof container === 'string') {\n\t\t\t\tcontainer = window.document.querySelector(container);\n\t\t\t} else if (container === false) {\n\t\t\t\t// if container is `false`, set it to reference parent\n\t\t\t\tcontainer = reference.parentNode;\n\t\t\t}\n\t\t\treturn container;\n\t\t}\n\n\t\t/**\n * Append tooltip to container\n * @memberof Tooltip\n * @private\n * @param {HTMLElement} tooltip\n * @param {HTMLElement|String|false} container\n */\n\n\t}, {\n\t\tkey: '_append',\n\t\tvalue: function _append(tooltipNode, container) {\n\t\t\tcontainer.appendChild(tooltipNode);\n\t\t}\n\t}, {\n\t\tkey: '_setEventListeners',\n\t\tvalue: function _setEventListeners(reference, events, options) {\n\t\t\tvar _this6 = this;\n\n\t\t\tvar directEvents = [];\n\t\t\tvar oppositeEvents = [];\n\n\t\t\tevents.forEach(function (event) {\n\t\t\t\tswitch (event) {\n\t\t\t\t\tcase 'hover':\n\t\t\t\t\t\tdirectEvents.push('mouseenter');\n\t\t\t\t\t\toppositeEvents.push('mouseleave');\n\t\t\t\t\t\tif (_this6.options.hideOnTargetClick) oppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'focus':\n\t\t\t\t\t\tdirectEvents.push('focus');\n\t\t\t\t\t\toppositeEvents.push('blur');\n\t\t\t\t\t\tif (_this6.options.hideOnTargetClick) oppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'click':\n\t\t\t\t\t\tdirectEvents.push('click');\n\t\t\t\t\t\toppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// schedule show tooltip\n\t\t\tdirectEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(evt) {\n\t\t\t\t\tif (_this6._isOpen === true) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tevt.usedByTooltip = true;\n\t\t\t\t\t_this6._scheduleShow(reference, options.delay, options, evt);\n\t\t\t\t};\n\t\t\t\t_this6._events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\n\t\t\t// schedule hide tooltip\n\t\t\toppositeEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(evt) {\n\t\t\t\t\tif (evt.usedByTooltip === true) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this6._scheduleHide(reference, options.delay, options, evt);\n\t\t\t\t};\n\t\t\t\t_this6._events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_onDocumentTouch',\n\t\tvalue: function _onDocumentTouch(event) {\n\t\t\tif (this._enableDocumentTouch) {\n\t\t\t\tthis._scheduleHide(this.reference, this.options.delay, this.options, event);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_scheduleShow',\n\t\tvalue: function _scheduleShow(reference, delay, options /*, evt */) {\n\t\t\tvar _this7 = this;\n\n\t\t\t// defaults to 0\n\t\t\tvar computedDelay = delay && delay.show || delay || 0;\n\t\t\tclearTimeout(this._scheduleTimer);\n\t\t\tthis._scheduleTimer = window.setTimeout(function () {\n\t\t\t\treturn _this7._show(reference, options);\n\t\t\t}, computedDelay);\n\t\t}\n\t}, {\n\t\tkey: '_scheduleHide',\n\t\tvalue: function _scheduleHide(reference, delay, options, evt) {\n\t\t\tvar _this8 = this;\n\n\t\t\t// defaults to 0\n\t\t\tvar computedDelay = delay && delay.hide || delay || 0;\n\t\t\tclearTimeout(this._scheduleTimer);\n\t\t\tthis._scheduleTimer = window.setTimeout(function () {\n\t\t\t\tif (_this8._isOpen === false) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (!document.body.contains(_this8._tooltipNode)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// if we are hiding because of a mouseleave, we must check that the new\n\t\t\t\t// reference isn't the tooltip, because in this case we don't want to hide it\n\t\t\t\tif (evt.type === 'mouseleave') {\n\t\t\t\t\tvar isSet = _this8._setTooltipNodeEvent(evt, reference, delay, options);\n\n\t\t\t\t\t// if we set the new event, don't hide the tooltip yet\n\t\t\t\t\t// the new event will take care to hide it if necessary\n\t\t\t\t\tif (isSet) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t_this8._hide(reference, options);\n\t\t\t}, computedDelay);\n\t\t}\n\t}]);\n\treturn Tooltip;\n}();\n\n// Hide tooltips on touch devices\n\n\nvar _initialiseProps = function _initialiseProps() {\n\tvar _this9 = this;\n\n\tthis.show = function () {\n\t\t_this9._show(_this9.reference, _this9.options);\n\t};\n\n\tthis.hide = function () {\n\t\t_this9._hide();\n\t};\n\n\tthis.dispose = function () {\n\t\t_this9._dispose();\n\t};\n\n\tthis.toggle = function () {\n\t\tif (_this9._isOpen) {\n\t\t\treturn _this9.hide();\n\t\t} else {\n\t\t\treturn _this9.show();\n\t\t}\n\t};\n\n\tthis._events = [];\n\n\tthis._setTooltipNodeEvent = function (evt, reference, delay, options) {\n\t\tvar relatedreference = evt.relatedreference || evt.toElement || evt.relatedTarget;\n\n\t\tvar callback = function callback(evt2) {\n\t\t\tvar relatedreference2 = evt2.relatedreference || evt2.toElement || evt2.relatedTarget;\n\n\t\t\t// Remove event listener after call\n\t\t\t_this9._tooltipNode.removeEventListener(evt.type, callback);\n\n\t\t\t// If the new reference is not the reference element\n\t\t\tif (!reference.contains(relatedreference2)) {\n\t\t\t\t// Schedule to hide tooltip\n\t\t\t\t_this9._scheduleHide(reference, options.delay, options, evt2);\n\t\t\t}\n\t\t};\n\n\t\tif (_this9._tooltipNode.contains(relatedreference)) {\n\t\t\t// listen to mouseleave on the tooltip element to be able to hide the tooltip\n\t\t\t_this9._tooltipNode.addEventListener(evt.type, callback);\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t};\n};\n\nif (typeof document !== 'undefined') {\n\tdocument.addEventListener('touchstart', function (event) {\n\t\tfor (var i = 0; i < openTooltips.length; i++) {\n\t\t\topenTooltips[i]._onDocumentTouch(event);\n\t\t}\n\t}, supportsPassive ? {\n\t\tpassive: true,\n\t\tcapture: true\n\t} : true);\n}\n\n/**\n * Placement function, its context is the Tooltip instance.\n * @memberof Tooltip\n * @callback PlacementFunction\n * @param {HTMLElement} tooltip - tooltip DOM node.\n * @param {HTMLElement} reference - reference DOM node.\n * @return {String} placement - One of the allowed placement options.\n */\n\n/**\n * Title function, its context is the Tooltip instance.\n * @memberof Tooltip\n * @callback TitleFunction\n * @return {String} placement - The desired title.\n */\n\nvar state = {\n\tenabled: true\n};\n\nvar positions = ['top', 'top-start', 'top-end', 'right', 'right-start', 'right-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end'];\n\nvar defaultOptions = {\n\t// Default tooltip placement relative to target element\n\tdefaultPlacement: 'top',\n\t// Default CSS classes applied to the tooltip element\n\tdefaultClass: 'vue-tooltip-theme',\n\t// Default CSS classes applied to the target element of the tooltip\n\tdefaultTargetClass: 'has-tooltip',\n\t// Is the content HTML by default?\n\tdefaultHtml: true,\n\t// Default HTML template of the tooltip element\n\t// It must include `tooltip-arrow` & `tooltip-inner` CSS classes (can be configured, see below)\n\t// Change if the classes conflict with other libraries (for example bootstrap)\n\tdefaultTemplate: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n\t// Selector used to get the arrow element in the tooltip template\n\tdefaultArrowSelector: '.tooltip-arrow, .tooltip__arrow',\n\t// Selector used to get the inner content element in the tooltip template\n\tdefaultInnerSelector: '.tooltip-inner, .tooltip__inner',\n\t// Delay (ms)\n\tdefaultDelay: 0,\n\t// Default events that trigger the tooltip\n\tdefaultTrigger: 'hover focus',\n\t// Default position offset (px)\n\tdefaultOffset: 0,\n\t// Default container where the tooltip will be appended\n\tdefaultContainer: 'body',\n\tdefaultBoundariesElement: undefined,\n\tdefaultPopperOptions: {},\n\t// Class added when content is loading\n\tdefaultLoadingClass: 'tooltip-loading',\n\t// Displayed when tooltip content is loading\n\tdefaultLoadingContent: '...',\n\t// Hide on mouseover tooltip\n\tautoHide: true,\n\t// Close tooltip on click on tooltip target?\n\tdefaultHideOnTargetClick: true,\n\t// Auto destroy tooltip DOM nodes (ms)\n\tdisposeTimeout: 5000,\n\t// Options for popover\n\tpopover: {\n\t\tdefaultPlacement: 'bottom',\n\t\t// Use the `popoverClass` prop for theming\n\t\tdefaultClass: 'vue-popover-theme',\n\t\t// Base class (change if conflicts with other libraries)\n\t\tdefaultBaseClass: 'tooltip popover',\n\t\t// Wrapper class (contains arrow and inner)\n\t\tdefaultWrapperClass: 'wrapper',\n\t\t// Inner content class\n\t\tdefaultInnerClass: 'tooltip-inner popover-inner',\n\t\t// Arrow class\n\t\tdefaultArrowClass: 'tooltip-arrow popover-arrow',\n\t\tdefaultDelay: 0,\n\t\tdefaultTrigger: 'click',\n\t\tdefaultOffset: 0,\n\t\tdefaultContainer: 'body',\n\t\tdefaultBoundariesElement: undefined,\n\t\tdefaultPopperOptions: {},\n\t\t// Hides if clicked outside of popover\n\t\tdefaultAutoHide: true,\n\t\t// Update popper on content resize\n\t\tdefaultHandleResize: true\n\t}\n};\n\nfunction getOptions(options) {\n\tvar result = {\n\t\tplacement: typeof options.placement !== 'undefined' ? options.placement : directive.options.defaultPlacement,\n\t\tdelay: typeof options.delay !== 'undefined' ? options.delay : directive.options.defaultDelay,\n\t\thtml: typeof options.html !== 'undefined' ? options.html : directive.options.defaultHtml,\n\t\ttemplate: typeof options.template !== 'undefined' ? options.template : directive.options.defaultTemplate,\n\t\tarrowSelector: typeof options.arrowSelector !== 'undefined' ? options.arrowSelector : directive.options.defaultArrowSelector,\n\t\tinnerSelector: typeof options.innerSelector !== 'undefined' ? options.innerSelector : directive.options.defaultInnerSelector,\n\t\ttrigger: typeof options.trigger !== 'undefined' ? options.trigger : directive.options.defaultTrigger,\n\t\toffset: typeof options.offset !== 'undefined' ? options.offset : directive.options.defaultOffset,\n\t\tcontainer: typeof options.container !== 'undefined' ? options.container : directive.options.defaultContainer,\n\t\tboundariesElement: typeof options.boundariesElement !== 'undefined' ? options.boundariesElement : directive.options.defaultBoundariesElement,\n\t\tautoHide: typeof options.autoHide !== 'undefined' ? options.autoHide : directive.options.autoHide,\n\t\thideOnTargetClick: typeof options.hideOnTargetClick !== 'undefined' ? options.hideOnTargetClick : directive.options.defaultHideOnTargetClick,\n\t\tloadingClass: typeof options.loadingClass !== 'undefined' ? options.loadingClass : directive.options.defaultLoadingClass,\n\t\tloadingContent: typeof options.loadingContent !== 'undefined' ? options.loadingContent : directive.options.defaultLoadingContent,\n\t\tpopperOptions: _extends$1({}, typeof options.popperOptions !== 'undefined' ? options.popperOptions : directive.options.defaultPopperOptions)\n\t};\n\n\tif (result.offset) {\n\t\tvar typeofOffset = _typeof(result.offset);\n\t\tvar offset = result.offset;\n\n\t\t// One value -> switch\n\t\tif (typeofOffset === 'number' || typeofOffset === 'string' && offset.indexOf(',') === -1) {\n\t\t\toffset = '0, ' + offset;\n\t\t}\n\n\t\tif (!result.popperOptions.modifiers) {\n\t\t\tresult.popperOptions.modifiers = {};\n\t\t}\n\t\tresult.popperOptions.modifiers.offset = {\n\t\t\toffset: offset\n\t\t};\n\t}\n\n\tif (result.trigger && result.trigger.indexOf('click') !== -1) {\n\t\tresult.hideOnTargetClick = false;\n\t}\n\n\treturn result;\n}\n\nfunction getPlacement(value, modifiers) {\n\tvar placement = value.placement;\n\tfor (var i = 0; i < positions.length; i++) {\n\t\tvar pos = positions[i];\n\t\tif (modifiers[pos]) {\n\t\t\tplacement = pos;\n\t\t}\n\t}\n\treturn placement;\n}\n\nfunction getContent(value) {\n\tvar type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\tif (type === 'string') {\n\t\treturn value;\n\t} else if (value && type === 'object') {\n\t\treturn value.content;\n\t} else {\n\t\treturn false;\n\t}\n}\n\nfunction createTooltip(el, value) {\n\tvar modifiers = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\tvar content = getContent(value);\n\tvar classes = typeof value.classes !== 'undefined' ? value.classes : directive.options.defaultClass;\n\tvar opts = _extends$1({\n\t\ttitle: content\n\t}, getOptions(_extends$1({}, value, {\n\t\tplacement: getPlacement(value, modifiers)\n\t})));\n\tvar tooltip = el._tooltip = new Tooltip(el, opts);\n\ttooltip.setClasses(classes);\n\ttooltip._vueEl = el;\n\n\t// Class on target\n\tvar targetClasses = typeof value.targetClasses !== 'undefined' ? value.targetClasses : directive.options.defaultTargetClass;\n\tel._tooltipTargetClasses = targetClasses;\n\taddClasses(el, targetClasses);\n\n\treturn tooltip;\n}\n\nfunction destroyTooltip(el) {\n\tif (el._tooltip) {\n\t\tel._tooltip.dispose();\n\t\tdelete el._tooltip;\n\t\tdelete el._tooltipOldShow;\n\t}\n\n\tif (el._tooltipTargetClasses) {\n\t\tremoveClasses(el, el._tooltipTargetClasses);\n\t\tdelete el._tooltipTargetClasses;\n\t}\n}\n\nfunction bind(el, _ref) {\n\tvar value = _ref.value,\n\t oldValue = _ref.oldValue,\n\t modifiers = _ref.modifiers;\n\n\tvar content = getContent(value);\n\tif (!content || !state.enabled) {\n\t\tdestroyTooltip(el);\n\t} else {\n\t\tvar tooltip = void 0;\n\t\tif (el._tooltip) {\n\t\t\ttooltip = el._tooltip;\n\t\t\t// Content\n\t\t\ttooltip.setContent(content);\n\t\t\t// Options\n\t\t\ttooltip.setOptions(_extends$1({}, value, {\n\t\t\t\tplacement: getPlacement(value, modifiers)\n\t\t\t}));\n\t\t} else {\n\t\t\ttooltip = createTooltip(el, value, modifiers);\n\t\t}\n\n\t\t// Manual show\n\t\tif (typeof value.show !== 'undefined' && value.show !== el._tooltipOldShow) {\n\t\t\tel._tooltipOldShow = value.show;\n\t\t\tvalue.show ? tooltip.show() : tooltip.hide();\n\t\t}\n\t}\n}\n\nvar directive = {\n\toptions: defaultOptions,\n\tbind: bind,\n\tupdate: bind,\n\tunbind: function unbind(el) {\n\t\tdestroyTooltip(el);\n\t}\n};\n\nfunction addListeners(el) {\n\tel.addEventListener('click', onClick);\n\tel.addEventListener('touchstart', onTouchStart, supportsPassive ? {\n\t\tpassive: true\n\t} : false);\n}\n\nfunction removeListeners(el) {\n\tel.removeEventListener('click', onClick);\n\tel.removeEventListener('touchstart', onTouchStart);\n\tel.removeEventListener('touchend', onTouchEnd);\n\tel.removeEventListener('touchcancel', onTouchCancel);\n}\n\nfunction onClick(event) {\n\tvar el = event.currentTarget;\n\tevent.closePopover = !el.$_vclosepopover_touch;\n\tevent.closeAllPopover = el.$_closePopoverModifiers && !!el.$_closePopoverModifiers.all;\n}\n\nfunction onTouchStart(event) {\n\tif (event.changedTouches.length === 1) {\n\t\tvar el = event.currentTarget;\n\t\tel.$_vclosepopover_touch = true;\n\t\tvar touch = event.changedTouches[0];\n\t\tel.$_vclosepopover_touchPoint = touch;\n\t\tel.addEventListener('touchend', onTouchEnd);\n\t\tel.addEventListener('touchcancel', onTouchCancel);\n\t}\n}\n\nfunction onTouchEnd(event) {\n\tvar el = event.currentTarget;\n\tel.$_vclosepopover_touch = false;\n\tif (event.changedTouches.length === 1) {\n\t\tvar touch = event.changedTouches[0];\n\t\tvar firstTouch = el.$_vclosepopover_touchPoint;\n\t\tevent.closePopover = Math.abs(touch.screenY - firstTouch.screenY) < 20 && Math.abs(touch.screenX - firstTouch.screenX) < 20;\n\t\tevent.closeAllPopover = el.$_closePopoverModifiers && !!el.$_closePopoverModifiers.all;\n\t}\n}\n\nfunction onTouchCancel(event) {\n\tvar el = event.currentTarget;\n\tel.$_vclosepopover_touch = false;\n}\n\nvar vclosepopover = {\n\tbind: function bind(el, _ref) {\n\t\tvar value = _ref.value,\n\t\t modifiers = _ref.modifiers;\n\n\t\tel.$_closePopoverModifiers = modifiers;\n\t\tif (typeof value === 'undefined' || value) {\n\t\t\taddListeners(el);\n\t\t}\n\t},\n\tupdate: function update(el, _ref2) {\n\t\tvar value = _ref2.value,\n\t\t oldValue = _ref2.oldValue,\n\t\t modifiers = _ref2.modifiers;\n\n\t\tel.$_closePopoverModifiers = modifiers;\n\t\tif (value !== oldValue) {\n\t\t\tif (typeof value === 'undefined' || value) {\n\t\t\t\taddListeners(el);\n\t\t\t} else {\n\t\t\t\tremoveListeners(el);\n\t\t\t}\n\t\t}\n\t},\n\tunbind: function unbind(el) {\n\t\tremoveListeners(el);\n\t}\n};\n\nfunction getInternetExplorerVersion() {\n\tvar ua = window.navigator.userAgent;\n\n\tvar msie = ua.indexOf('MSIE ');\n\tif (msie > 0) {\n\t\t// IE 10 or older => return version number\n\t\treturn parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);\n\t}\n\n\tvar trident = ua.indexOf('Trident/');\n\tif (trident > 0) {\n\t\t// IE 11 => return version number\n\t\tvar rv = ua.indexOf('rv:');\n\t\treturn parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10);\n\t}\n\n\tvar edge = ua.indexOf('Edge/');\n\tif (edge > 0) {\n\t\t// Edge (IE 12+) => return version number\n\t\treturn parseInt(ua.substring(edge + 5, ua.indexOf('.', edge)), 10);\n\t}\n\n\t// other browser\n\treturn -1;\n}\n\nvar isIE$1 = void 0;\n\nfunction initCompat() {\n\tif (!initCompat.init) {\n\t\tinitCompat.init = true;\n\t\tisIE$1 = getInternetExplorerVersion() !== -1;\n\t}\n}\n\nvar ResizeObserver = { render: function render() {\n\t\tvar _vm = this;var _h = _vm.$createElement;var _c = _vm._self._c || _h;return _c('div', { staticClass: \"resize-observer\", attrs: { \"tabindex\": \"-1\" } });\n\t}, staticRenderFns: [], _scopeId: 'data-v-b329ee4c',\n\tname: 'resize-observer',\n\n\tmethods: {\n\t\tnotify: function notify() {\n\t\t\tthis.$emit('notify');\n\t\t},\n\t\taddResizeHandlers: function addResizeHandlers() {\n\t\t\tthis._resizeObject.contentDocument.defaultView.addEventListener('resize', this.notify);\n\t\t\tif (this._w !== this.$el.offsetWidth || this._h !== this.$el.offsetHeight) {\n\t\t\t\tthis.notify();\n\t\t\t}\n\t\t},\n\t\tremoveResizeHandlers: function removeResizeHandlers() {\n\t\t\tif (this._resizeObject && this._resizeObject.onload) {\n\t\t\t\tif (!isIE$1 && this._resizeObject.contentDocument) {\n\t\t\t\t\tthis._resizeObject.contentDocument.defaultView.removeEventListener('resize', this.notify);\n\t\t\t\t}\n\t\t\t\tdelete this._resizeObject.onload;\n\t\t\t}\n\t\t}\n\t},\n\n\tmounted: function mounted() {\n\t\tvar _this = this;\n\n\t\tinitCompat();\n\t\tthis.$nextTick(function () {\n\t\t\t_this._w = _this.$el.offsetWidth;\n\t\t\t_this._h = _this.$el.offsetHeight;\n\t\t});\n\t\tvar object = document.createElement('object');\n\t\tthis._resizeObject = object;\n\t\tobject.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;');\n\t\tobject.setAttribute('aria-hidden', 'true');\n\t\tobject.setAttribute('tabindex', -1);\n\t\tobject.onload = this.addResizeHandlers;\n\t\tobject.type = 'text/html';\n\t\tif (isIE$1) {\n\t\t\tthis.$el.appendChild(object);\n\t\t}\n\t\tobject.data = 'about:blank';\n\t\tif (!isIE$1) {\n\t\t\tthis.$el.appendChild(object);\n\t\t}\n\t},\n\tbeforeDestroy: function beforeDestroy() {\n\t\tthis.removeResizeHandlers();\n\t}\n};\n\n// Install the components\nfunction install$1(Vue) {\n\tVue.component('resize-observer', ResizeObserver);\n\t/* -- Add more components here -- */\n}\n\n/* -- Plugin definition & Auto-install -- */\n/* You shouldn't have to modify the code below */\n\n// Plugin\nvar plugin$2 = {\n\t// eslint-disable-next-line no-undef\n\tversion: \"0.4.4\",\n\tinstall: install$1\n};\n\n// Auto-install\nvar GlobalVue$1 = null;\nif (typeof window !== 'undefined') {\n\tGlobalVue$1 = window.Vue;\n} else if (typeof global !== 'undefined') {\n\tGlobalVue$1 = global.Vue;\n}\nif (GlobalVue$1) {\n\tGlobalVue$1.use(plugin$2);\n}\n\nfunction getDefault(key) {\n\tvar value = directive.options.popover[key];\n\tif (typeof value === 'undefined') {\n\t\treturn directive.options[key];\n\t}\n\treturn value;\n}\n\nvar isIOS = false;\nif (typeof window !== 'undefined' && typeof navigator !== 'undefined') {\n\tisIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;\n}\n\nvar openPopovers = [];\n\nvar Element = function Element() {};\nif (typeof window !== 'undefined') {\n\tElement = window.Element;\n}\n\nvar Popover = { render: function render() {\n\t\tvar _vm = this;var _h = _vm.$createElement;var _c = _vm._self._c || _h;return _c('div', { staticClass: \"v-popover\", class: _vm.cssClass }, [_c('span', { ref: \"trigger\", staticClass: \"trigger\", staticStyle: { \"display\": \"inline-block\" }, attrs: { \"aria-describedby\": _vm.popoverId, \"tabindex\": _vm.trigger.indexOf('focus') !== -1 ? 0 : -1 } }, [_vm._t(\"default\")], 2), _vm._v(\" \"), _c('div', { ref: \"popover\", class: [_vm.popoverBaseClass, _vm.popoverClass, _vm.cssClass], style: {\n\t\t\t\tvisibility: _vm.isOpen ? 'visible' : 'hidden'\n\t\t\t}, attrs: { \"id\": _vm.popoverId, \"aria-hidden\": _vm.isOpen ? 'false' : 'true' } }, [_c('div', { class: _vm.popoverWrapperClass }, [_c('div', { ref: \"inner\", class: _vm.popoverInnerClass, staticStyle: { \"position\": \"relative\" } }, [_c('div', [_vm._t(\"popover\")], 2), _vm._v(\" \"), _vm.handleResize ? _c('ResizeObserver', { on: { \"notify\": _vm.$_handleResize } }) : _vm._e()], 1), _vm._v(\" \"), _c('div', { ref: \"arrow\", class: _vm.popoverArrowClass })])])]);\n\t}, staticRenderFns: [],\n\tname: 'VPopover',\n\n\tcomponents: {\n\t\tResizeObserver: ResizeObserver\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false\n\t\t},\n\t\tdisabled: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false\n\t\t},\n\t\tplacement: {\n\t\t\ttype: String,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultPlacement');\n\t\t\t}\n\t\t},\n\t\tdelay: {\n\t\t\ttype: [String, Number, Object],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultDelay');\n\t\t\t}\n\t\t},\n\t\toffset: {\n\t\t\ttype: [String, Number],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultOffset');\n\t\t\t}\n\t\t},\n\t\ttrigger: {\n\t\t\ttype: String,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultTrigger');\n\t\t\t}\n\t\t},\n\t\tcontainer: {\n\t\t\ttype: [String, Object, Element, Boolean],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultContainer');\n\t\t\t}\n\t\t},\n\t\tboundariesElement: {\n\t\t\ttype: [String, Element],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultBoundariesElement');\n\t\t\t}\n\t\t},\n\t\tpopperOptions: {\n\t\t\ttype: Object,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultPopperOptions');\n\t\t\t}\n\t\t},\n\t\tpopoverClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultClass');\n\t\t\t}\n\t\t},\n\t\tpopoverBaseClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultBaseClass;\n\t\t\t}\n\t\t},\n\t\tpopoverInnerClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultInnerClass;\n\t\t\t}\n\t\t},\n\t\tpopoverWrapperClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultWrapperClass;\n\t\t\t}\n\t\t},\n\t\tpopoverArrowClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultArrowClass;\n\t\t\t}\n\t\t},\n\t\tautoHide: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultAutoHide;\n\t\t\t}\n\t\t},\n\t\thandleResize: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultHandleResize;\n\t\t\t}\n\t\t},\n\t\topenGroup: {\n\t\t\ttype: String,\n\t\t\tdefault: null\n\t\t}\n\t},\n\n\tdata: function data() {\n\t\treturn {\n\t\t\tisOpen: false,\n\t\t\tid: Math.random().toString(36).substr(2, 10)\n\t\t};\n\t},\n\n\n\tcomputed: {\n\t\tcssClass: function cssClass() {\n\t\t\treturn {\n\t\t\t\t'open': this.isOpen\n\t\t\t};\n\t\t},\n\t\tpopoverId: function popoverId() {\n\t\t\treturn 'popover_' + this.id;\n\t\t}\n\t},\n\n\twatch: {\n\t\topen: function open(val) {\n\t\t\tif (val) {\n\t\t\t\tthis.show();\n\t\t\t} else {\n\t\t\t\tthis.hide();\n\t\t\t}\n\t\t},\n\t\tdisabled: function disabled(val, oldVal) {\n\t\t\tif (val !== oldVal) {\n\t\t\t\tif (val) {\n\t\t\t\t\tthis.hide();\n\t\t\t\t} else if (this.open) {\n\t\t\t\t\tthis.show();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tcontainer: function container(val) {\n\t\t\tif (this.isOpen && this.popperInstance) {\n\t\t\t\tvar popoverNode = this.$refs.popover;\n\t\t\t\tvar reference = this.$refs.trigger;\n\n\t\t\t\tvar container = this.$_findContainer(this.container, reference);\n\t\t\t\tif (!container) {\n\t\t\t\t\tconsole.warn('No container for popover', this);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tcontainer.appendChild(popoverNode);\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t}\n\t\t},\n\t\ttrigger: function trigger(val) {\n\t\t\tthis.$_removeEventListeners();\n\t\t\tthis.$_addEventListeners();\n\t\t},\n\t\tplacement: function placement(val) {\n\t\t\tvar _this = this;\n\n\t\t\tthis.$_updatePopper(function () {\n\t\t\t\t_this.popperInstance.options.placement = val;\n\t\t\t});\n\t\t},\n\n\n\t\toffset: '$_restartPopper',\n\n\t\tboundariesElement: '$_restartPopper',\n\n\t\tpopperOptions: {\n\t\t\thandler: '$_restartPopper',\n\t\t\tdeep: true\n\t\t}\n\t},\n\n\tcreated: function created() {\n\t\tthis.$_isDisposed = false;\n\t\tthis.$_mounted = false;\n\t\tthis.$_events = [];\n\t\tthis.$_preventOpen = false;\n\t},\n\tmounted: function mounted() {\n\t\tvar popoverNode = this.$refs.popover;\n\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\n\t\tthis.$_init();\n\n\t\tif (this.open) {\n\t\t\tthis.show();\n\t\t}\n\t},\n\tbeforeDestroy: function beforeDestroy() {\n\t\tthis.dispose();\n\t},\n\n\n\tmethods: {\n\t\tshow: function show() {\n\t\t\tvar _this2 = this;\n\n\t\t\tvar _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n\t\t\t event = _ref.event,\n\t\t\t _ref$skipDelay = _ref.skipDelay,\n\t\t\t skipDelay = _ref$skipDelay === undefined ? false : _ref$skipDelay,\n\t\t\t _ref$force = _ref.force,\n\t\t\t force = _ref$force === undefined ? false : _ref$force;\n\n\t\t\tif (force || !this.disabled) {\n\t\t\t\tthis.$_scheduleShow(event);\n\t\t\t\tthis.$emit('show');\n\t\t\t}\n\t\t\tthis.$emit('update:open', true);\n\t\t\tthis.$_beingShowed = true;\n\t\t\trequestAnimationFrame(function () {\n\t\t\t\t_this2.$_beingShowed = false;\n\t\t\t});\n\t\t},\n\t\thide: function hide() {\n\t\t\tvar _ref2 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n\t\t\t event = _ref2.event,\n\t\t\t _ref2$skipDelay = _ref2.skipDelay;\n\n\t\t\tthis.$_scheduleHide(event);\n\n\t\t\tthis.$emit('hide');\n\t\t\tthis.$emit('update:open', false);\n\t\t},\n\t\tdispose: function dispose() {\n\t\t\tthis.$_isDisposed = true;\n\t\t\tthis.$_removeEventListeners();\n\t\t\tthis.hide({ skipDelay: true });\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.popperInstance.destroy();\n\n\t\t\t\t// destroy tooltipNode if removeOnDestroy is not set, as popperInstance.destroy() already removes the element\n\t\t\t\tif (!this.popperInstance.options.removeOnDestroy) {\n\t\t\t\t\tvar popoverNode = this.$refs.popover;\n\t\t\t\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.$_mounted = false;\n\t\t\tthis.popperInstance = null;\n\t\t\tthis.isOpen = false;\n\n\t\t\tthis.$emit('dispose');\n\t\t},\n\t\t$_init: function $_init() {\n\t\t\tif (this.trigger.indexOf('manual') === -1) {\n\t\t\t\tthis.$_addEventListeners();\n\t\t\t}\n\t\t},\n\t\t$_show: function $_show() {\n\t\t\tvar _this3 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar popoverNode = this.$refs.popover;\n\n\t\t\tclearTimeout(this.$_disposeTimer);\n\n\t\t\t// Already open\n\t\t\tif (this.isOpen) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Popper is already initialized\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.isOpen = true;\n\t\t\t\tthis.popperInstance.enableEventListeners();\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t}\n\n\t\t\tif (!this.$_mounted) {\n\t\t\t\tvar container = this.$_findContainer(this.container, reference);\n\t\t\t\tif (!container) {\n\t\t\t\t\tconsole.warn('No container for popover', this);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tcontainer.appendChild(popoverNode);\n\t\t\t\tthis.$_mounted = true;\n\t\t\t}\n\n\t\t\tif (!this.popperInstance) {\n\t\t\t\tvar popperOptions = _extends$1({}, this.popperOptions, {\n\t\t\t\t\tplacement: this.placement\n\t\t\t\t});\n\n\t\t\t\tpopperOptions.modifiers = _extends$1({}, popperOptions.modifiers, {\n\t\t\t\t\tarrow: _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.arrow, {\n\t\t\t\t\t\telement: this.$refs.arrow\n\t\t\t\t\t})\n\t\t\t\t});\n\n\t\t\t\tif (this.offset) {\n\t\t\t\t\tvar offset = this.$_getOffset();\n\n\t\t\t\t\tpopperOptions.modifiers.offset = _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.offset, {\n\t\t\t\t\t\toffset: offset\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (this.boundariesElement) {\n\t\t\t\t\tpopperOptions.modifiers.preventOverflow = _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.preventOverflow, {\n\t\t\t\t\t\tboundariesElement: this.boundariesElement\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tthis.popperInstance = new Popper(reference, popoverNode, popperOptions);\n\n\t\t\t\t// Fix position\n\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\tif (!_this3.$_isDisposed && _this3.popperInstance) {\n\t\t\t\t\t\t_this3.popperInstance.scheduleUpdate();\n\n\t\t\t\t\t\t// Show the tooltip\n\t\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\t\tif (!_this3.$_isDisposed) {\n\t\t\t\t\t\t\t\t_this3.isOpen = true;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tvar openGroup = this.openGroup;\n\t\t\tif (openGroup) {\n\t\t\t\tvar popover = void 0;\n\t\t\t\tfor (var i = 0; i < openPopovers.length; i++) {\n\t\t\t\t\tpopover = openPopovers[i];\n\t\t\t\t\tif (popover.openGroup !== openGroup) {\n\t\t\t\t\t\tpopover.hide();\n\t\t\t\t\t\tpopover.$emit('close-group');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\topenPopovers.push(this);\n\n\t\t\tthis.$emit('apply-show');\n\t\t},\n\t\t$_hide: function $_hide() {\n\t\t\tvar _this4 = this;\n\n\t\t\t// Already hidden\n\t\t\tif (!this.isOpen) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar index = openPopovers.indexOf(this);\n\t\t\tif (index !== -1) {\n\t\t\t\topenPopovers.splice(index, 1);\n\t\t\t}\n\n\t\t\tthis.isOpen = false;\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.popperInstance.disableEventListeners();\n\t\t\t}\n\n\t\t\tclearTimeout(this.$_disposeTimer);\n\t\t\tvar disposeTime = directive.options.popover.disposeTimeout || directive.options.disposeTimeout;\n\t\t\tif (disposeTime !== null) {\n\t\t\t\tthis.$_disposeTimer = setTimeout(function () {\n\t\t\t\t\tvar popoverNode = _this4.$refs.popover;\n\t\t\t\t\tif (popoverNode) {\n\t\t\t\t\t\t// Don't remove popper instance, just the HTML element\n\t\t\t\t\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\t\t\t\t\t\t_this4.$_mounted = false;\n\t\t\t\t\t}\n\t\t\t\t}, disposeTime);\n\t\t\t}\n\n\t\t\tthis.$emit('apply-hide');\n\t\t},\n\t\t$_findContainer: function $_findContainer(container, reference) {\n\t\t\t// if container is a query, get the relative element\n\t\t\tif (typeof container === 'string') {\n\t\t\t\tcontainer = window.document.querySelector(container);\n\t\t\t} else if (container === false) {\n\t\t\t\t// if container is `false`, set it to reference parent\n\t\t\t\tcontainer = reference.parentNode;\n\t\t\t}\n\t\t\treturn container;\n\t\t},\n\t\t$_getOffset: function $_getOffset() {\n\t\t\tvar typeofOffset = _typeof(this.offset);\n\t\t\tvar offset = this.offset;\n\n\t\t\t// One value -> switch\n\t\t\tif (typeofOffset === 'number' || typeofOffset === 'string' && offset.indexOf(',') === -1) {\n\t\t\t\toffset = '0, ' + offset;\n\t\t\t}\n\n\t\t\treturn offset;\n\t\t},\n\t\t$_addEventListeners: function $_addEventListeners() {\n\t\t\tvar _this5 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar directEvents = [];\n\t\t\tvar oppositeEvents = [];\n\n\t\t\tvar events = typeof this.trigger === 'string' ? this.trigger.split(' ').filter(function (trigger) {\n\t\t\t\treturn ['click', 'hover', 'focus'].indexOf(trigger) !== -1;\n\t\t\t}) : [];\n\n\t\t\tevents.forEach(function (event) {\n\t\t\t\tswitch (event) {\n\t\t\t\t\tcase 'hover':\n\t\t\t\t\t\tdirectEvents.push('mouseenter');\n\t\t\t\t\t\toppositeEvents.push('mouseleave');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'focus':\n\t\t\t\t\t\tdirectEvents.push('focus');\n\t\t\t\t\t\toppositeEvents.push('blur');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'click':\n\t\t\t\t\t\tdirectEvents.push('click');\n\t\t\t\t\t\toppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// schedule show tooltip\n\t\t\tdirectEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(event) {\n\t\t\t\t\tif (_this5.isOpen) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tevent.usedByTooltip = true;\n\t\t\t\t\t!_this5.$_preventOpen && _this5.show({ event: event });\n\t\t\t\t};\n\t\t\t\t_this5.$_events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\n\t\t\t// schedule hide tooltip\n\t\t\toppositeEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(event) {\n\t\t\t\t\tif (event.usedByTooltip) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this5.hide({ event: event });\n\t\t\t\t};\n\t\t\t\t_this5.$_events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\t\t},\n\t\t$_scheduleShow: function $_scheduleShow() {\n\t\t\tvar skipDelay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tclearTimeout(this.$_scheduleTimer);\n\t\t\tif (skipDelay) {\n\t\t\t\tthis.$_show();\n\t\t\t} else {\n\t\t\t\t// defaults to 0\n\t\t\t\tvar computedDelay = parseInt(this.delay && this.delay.show || this.delay || 0);\n\t\t\t\tthis.$_scheduleTimer = setTimeout(this.$_show.bind(this), computedDelay);\n\t\t\t}\n\t\t},\n\t\t$_scheduleHide: function $_scheduleHide() {\n\t\t\tvar _this6 = this;\n\n\t\t\tvar event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\t\t\tvar skipDelay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tclearTimeout(this.$_scheduleTimer);\n\t\t\tif (skipDelay) {\n\t\t\t\tthis.$_hide();\n\t\t\t} else {\n\t\t\t\t// defaults to 0\n\t\t\t\tvar computedDelay = parseInt(this.delay && this.delay.hide || this.delay || 0);\n\t\t\t\tthis.$_scheduleTimer = setTimeout(function () {\n\t\t\t\t\tif (!_this6.isOpen) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// if we are hiding because of a mouseleave, we must check that the new\n\t\t\t\t\t// reference isn't the tooltip, because in this case we don't want to hide it\n\t\t\t\t\tif (event && event.type === 'mouseleave') {\n\t\t\t\t\t\tvar isSet = _this6.$_setTooltipNodeEvent(event);\n\n\t\t\t\t\t\t// if we set the new event, don't hide the tooltip yet\n\t\t\t\t\t\t// the new event will take care to hide it if necessary\n\t\t\t\t\t\tif (isSet) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t_this6.$_hide();\n\t\t\t\t}, computedDelay);\n\t\t\t}\n\t\t},\n\t\t$_setTooltipNodeEvent: function $_setTooltipNodeEvent(event) {\n\t\t\tvar _this7 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar popoverNode = this.$refs.popover;\n\n\t\t\tvar relatedreference = event.relatedreference || event.toElement || event.relatedTarget;\n\n\t\t\tvar callback = function callback(event2) {\n\t\t\t\tvar relatedreference2 = event2.relatedreference || event2.toElement || event2.relatedTarget;\n\n\t\t\t\t// Remove event listener after call\n\t\t\t\tpopoverNode.removeEventListener(event.type, callback);\n\n\t\t\t\t// If the new reference is not the reference element\n\t\t\t\tif (!reference.contains(relatedreference2)) {\n\t\t\t\t\t// Schedule to hide tooltip\n\t\t\t\t\t_this7.hide({ event: event2 });\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tif (popoverNode.contains(relatedreference)) {\n\t\t\t\t// listen to mouseleave on the tooltip element to be able to hide the tooltip\n\t\t\t\tpopoverNode.addEventListener(event.type, callback);\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\t\t$_removeEventListeners: function $_removeEventListeners() {\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tthis.$_events.forEach(function (_ref3) {\n\t\t\t\tvar func = _ref3.func,\n\t\t\t\t event = _ref3.event;\n\n\t\t\t\treference.removeEventListener(event, func);\n\t\t\t});\n\t\t\tthis.$_events = [];\n\t\t},\n\t\t$_updatePopper: function $_updatePopper(cb) {\n\t\t\tif (this.popperInstance) {\n\t\t\t\tcb();\n\t\t\t\tif (this.isOpen) this.popperInstance.scheduleUpdate();\n\t\t\t}\n\t\t},\n\t\t$_restartPopper: function $_restartPopper() {\n\t\t\tif (this.popperInstance) {\n\t\t\t\tvar isOpen = this.isOpen;\n\t\t\t\tthis.dispose();\n\t\t\t\tthis.$_isDisposed = false;\n\t\t\t\tthis.$_init();\n\t\t\t\tif (isOpen) {\n\t\t\t\t\tthis.show({ skipDelay: true, force: true });\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t$_handleGlobalClose: function $_handleGlobalClose(event) {\n\t\t\tvar _this8 = this;\n\n\t\t\tvar touch = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tif (this.$_beingShowed) return;\n\n\t\t\tthis.hide({ event: event });\n\n\t\t\tif (event.closePopover) {\n\t\t\t\tthis.$emit('close-directive');\n\t\t\t} else {\n\t\t\t\tthis.$emit('auto-hide');\n\t\t\t}\n\n\t\t\tif (touch) {\n\t\t\t\tthis.$_preventOpen = true;\n\t\t\t\tsetTimeout(function () {\n\t\t\t\t\t_this8.$_preventOpen = false;\n\t\t\t\t}, 300);\n\t\t\t}\n\t\t},\n\t\t$_handleResize: function $_handleResize() {\n\t\t\tif (this.isOpen && this.popperInstance) {\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t\tthis.$emit('resize');\n\t\t\t}\n\t\t}\n\t}\n};\n\nif (typeof document !== 'undefined' && typeof window !== 'undefined') {\n\tif (isIOS) {\n\t\tdocument.addEventListener('touchend', handleGlobalTouchend, supportsPassive ? {\n\t\t\tpassive: true,\n\t\t\tcapture: true\n\t\t} : true);\n\t} else {\n\t\twindow.addEventListener('click', handleGlobalClick, true);\n\t}\n}\n\nfunction handleGlobalClick(event) {\n\thandleGlobalClose(event);\n}\n\nfunction handleGlobalTouchend(event) {\n\thandleGlobalClose(event, true);\n}\n\nfunction handleGlobalClose(event) {\n\tvar touch = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t// Delay so that close directive has time to set values\n\trequestAnimationFrame(function () {\n\t\tvar popover = void 0;\n\t\tfor (var i = 0; i < openPopovers.length; i++) {\n\t\t\tpopover = openPopovers[i];\n\t\t\tif (popover.$refs.popover) {\n\t\t\t\tvar contains = popover.$refs.popover.contains(event.target);\n\t\t\t\tif (event.closeAllPopover || event.closePopover && contains || popover.autoHide && !contains) {\n\t\t\t\t\tpopover.$_handleGlobalClose(event, touch);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nvar commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n\n\n\n\nfunction createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nvar lodash_merge = createCommonjsModule(function (module, exports) {\n/**\n * Lodash (Custom Build) <https://lodash.com/>\n * Build: `lodash modularize exports=\"npm\" -o ./`\n * Copyright JS Foundation and other contributors <https://js.foundation/>\n * Released under MIT license <https://lodash.com/license>\n * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n\n/** Used as the size to enable large array optimizations. */\nvar LARGE_ARRAY_SIZE = 200;\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/** Used to detect hot functions by number of calls within a span of milliseconds. */\nvar HOT_COUNT = 800,\n HOT_SPAN = 16;\n\n/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n asyncTag = '[object AsyncFunction]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n nullTag = '[object Null]',\n objectTag = '[object Object]',\n proxyTag = '[object Proxy]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n undefinedTag = '[object Undefined]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\nvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n/** Used to detect host constructors (Safari). */\nvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n/** Used to detect unsigned integer values. */\nvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n/** Used to identify `toStringTag` values of typed arrays. */\nvar typedArrayTags = {};\ntypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\ntypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\ntypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\ntypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\ntypedArrayTags[uint32Tag] = true;\ntypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\ntypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\ntypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\ntypedArrayTags[errorTag] = typedArrayTags[funcTag] =\ntypedArrayTags[mapTag] = typedArrayTags[numberTag] =\ntypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\ntypedArrayTags[setTag] = typedArrayTags[stringTag] =\ntypedArrayTags[weakMapTag] = false;\n\n/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\n/** Detect free variable `exports`. */\nvar freeExports = 'object' == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Detect free variable `process` from Node.js. */\nvar freeProcess = moduleExports && freeGlobal.process;\n\n/** Used to access faster Node.js helpers. */\nvar nodeUtil = (function() {\n try {\n return freeProcess && freeProcess.binding && freeProcess.binding('util');\n } catch (e) {}\n}());\n\n/* Node.js helper references. */\nvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n/**\n * A faster alternative to `Function#apply`, this function invokes `func`\n * with the `this` binding of `thisArg` and the arguments of `args`.\n *\n * @private\n * @param {Function} func The function to invoke.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} args The arguments to invoke `func` with.\n * @returns {*} Returns the result of `func`.\n */\nfunction apply(func, thisArg, args) {\n switch (args.length) {\n case 0: return func.call(thisArg);\n case 1: return func.call(thisArg, args[0]);\n case 2: return func.call(thisArg, args[0], args[1]);\n case 3: return func.call(thisArg, args[0], args[1], args[2]);\n }\n return func.apply(thisArg, args);\n}\n\n/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n}\n\n/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\nfunction baseUnary(func) {\n return function(value) {\n return func(value);\n };\n}\n\n/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\n/**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\nfunction overArg(func, transform) {\n return function(arg) {\n return func(transform(arg));\n };\n}\n\n/**\n * Gets the value at `key`, unless `key` is \"__proto__\".\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction safeGet(object, key) {\n return key == '__proto__'\n ? undefined\n : object[key];\n}\n\n/** Used for built-in method references. */\nvar arrayProto = Array.prototype,\n funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to detect overreaching core-js shims. */\nvar coreJsData = root['__core-js_shared__'];\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to detect methods masquerading as native. */\nvar maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n}());\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Used to infer the `Object` constructor. */\nvar objectCtorString = funcToString.call(Object);\n\n/** Used to detect if a method is native. */\nvar reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n);\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined,\n Symbol = root.Symbol,\n Uint8Array = root.Uint8Array,\n allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined,\n getPrototype = overArg(Object.getPrototypeOf, Object),\n objectCreate = Object.create,\n propertyIsEnumerable = objectProto.propertyIsEnumerable,\n splice = arrayProto.splice,\n symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\nvar defineProperty = (function() {\n try {\n var func = getNative(Object, 'defineProperty');\n func({}, '', {});\n return func;\n } catch (e) {}\n}());\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined,\n nativeMax = Math.max,\n nativeNow = Date.now;\n\n/* Built-in method references that are verified to be native. */\nvar Map = getNative(root, 'Map'),\n nativeCreate = getNative(Object, 'create');\n\n/**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\nvar baseCreate = (function() {\n function object() {}\n return function(proto) {\n if (!isObject(proto)) {\n return {};\n }\n if (objectCreate) {\n return objectCreate(proto);\n }\n object.prototype = proto;\n var result = new object;\n object.prototype = undefined;\n return result;\n };\n}());\n\n/**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\nfunction hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\n\n/**\n * Gets the hash value for `key`.\n *\n * @private\n * @name get\n * @memberOf Hash\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction hashGet(key) {\n var data = this.__data__;\n if (nativeCreate) {\n var result = data[key];\n return result === HASH_UNDEFINED ? undefined : result;\n }\n return hasOwnProperty.call(data, key) ? data[key] : undefined;\n}\n\n/**\n * Checks if a hash value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Hash\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction hashHas(key) {\n var data = this.__data__;\n return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n}\n\n/**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\nfunction hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n}\n\n// Add methods to `Hash`.\nHash.prototype.clear = hashClear;\nHash.prototype['delete'] = hashDelete;\nHash.prototype.get = hashGet;\nHash.prototype.has = hashHas;\nHash.prototype.set = hashSet;\n\n/**\n * Creates an list cache object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction ListCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\nfunction listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the list cache.\n *\n * @private\n * @name delete\n * @memberOf ListCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction listCacheDelete(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n return false;\n }\n var lastIndex = data.length - 1;\n if (index == lastIndex) {\n data.pop();\n } else {\n splice.call(data, index, 1);\n }\n --this.size;\n return true;\n}\n\n/**\n * Gets the list cache value for `key`.\n *\n * @private\n * @name get\n * @memberOf ListCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction listCacheGet(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n return index < 0 ? undefined : data[index][1];\n}\n\n/**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n}\n\n/**\n * Sets the list cache `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf ListCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the list cache instance.\n */\nfunction listCacheSet(key, value) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n ++this.size;\n data.push([key, value]);\n } else {\n data[index][1] = value;\n }\n return this;\n}\n\n// Add methods to `ListCache`.\nListCache.prototype.clear = listCacheClear;\nListCache.prototype['delete'] = listCacheDelete;\nListCache.prototype.get = listCacheGet;\nListCache.prototype.has = listCacheHas;\nListCache.prototype.set = listCacheSet;\n\n/**\n * Creates a map cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction MapCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the map.\n *\n * @private\n * @name clear\n * @memberOf MapCache\n */\nfunction mapCacheClear() {\n this.size = 0;\n this.__data__ = {\n 'hash': new Hash,\n 'map': new (Map || ListCache),\n 'string': new Hash\n };\n}\n\n/**\n * Removes `key` and its value from the map.\n *\n * @private\n * @name delete\n * @memberOf MapCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction mapCacheDelete(key) {\n var result = getMapData(this, key)['delete'](key);\n this.size -= result ? 1 : 0;\n return result;\n}\n\n/**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction mapCacheGet(key) {\n return getMapData(this, key).get(key);\n}\n\n/**\n * Checks if a map value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf MapCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction mapCacheHas(key) {\n return getMapData(this, key).has(key);\n}\n\n/**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\nfunction mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n}\n\n// Add methods to `MapCache`.\nMapCache.prototype.clear = mapCacheClear;\nMapCache.prototype['delete'] = mapCacheDelete;\nMapCache.prototype.get = mapCacheGet;\nMapCache.prototype.has = mapCacheHas;\nMapCache.prototype.set = mapCacheSet;\n\n/**\n * Creates a stack cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Stack(entries) {\n var data = this.__data__ = new ListCache(entries);\n this.size = data.size;\n}\n\n/**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\nfunction stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n}\n\n/**\n * Gets the stack value for `key`.\n *\n * @private\n * @name get\n * @memberOf Stack\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction stackGet(key) {\n return this.__data__.get(key);\n}\n\n/**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction stackHas(key) {\n return this.__data__.has(key);\n}\n\n/**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\nfunction stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n}\n\n// Add methods to `Stack`.\nStack.prototype.clear = stackClear;\nStack.prototype['delete'] = stackDelete;\nStack.prototype.get = stackGet;\nStack.prototype.has = stackHas;\nStack.prototype.set = stackSet;\n\n/**\n * Creates an array of the enumerable property names of the array-like `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @param {boolean} inherited Specify returning inherited property names.\n * @returns {Array} Returns the array of property names.\n */\nfunction arrayLikeKeys(value, inherited) {\n var isArr = isArray(value),\n isArg = !isArr && isArguments(value),\n isBuff = !isArr && !isArg && isBuffer(value),\n isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n skipIndexes = isArr || isArg || isBuff || isType,\n result = skipIndexes ? baseTimes(value.length, String) : [],\n length = result.length;\n\n for (var key in value) {\n if ((inherited || hasOwnProperty.call(value, key)) &&\n !(skipIndexes && (\n // Safari 9 has enumerable `arguments.length` in strict mode.\n key == 'length' ||\n // Node.js 0.10 has enumerable non-index properties on buffers.\n (isBuff && (key == 'offset' || key == 'parent')) ||\n // PhantomJS 2 has enumerable non-index properties on typed arrays.\n (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n // Skip index properties.\n isIndex(key, length)\n ))) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * This function is like `assignValue` except that it doesn't assign\n * `undefined` values.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignMergeValue(object, key, value) {\n if ((value !== undefined && !eq(object[key], value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\n/**\n * Assigns `value` to `key` of `object` if the existing value is not equivalent\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignValue(object, key, value) {\n var objValue = object[key];\n if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\n/**\n * Gets the index at which the `key` is found in `array` of key-value pairs.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} key The key to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction assocIndexOf(array, key) {\n var length = array.length;\n while (length--) {\n if (eq(array[length][0], key)) {\n return length;\n }\n }\n return -1;\n}\n\n/**\n * The base implementation of `assignValue` and `assignMergeValue` without\n * value checks.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction baseAssignValue(object, key, value) {\n if (key == '__proto__' && defineProperty) {\n defineProperty(object, key, {\n 'configurable': true,\n 'enumerable': true,\n 'value': value,\n 'writable': true\n });\n } else {\n object[key] = value;\n }\n}\n\n/**\n * The base implementation of `baseForOwn` which iterates over `object`\n * properties returned by `keysFunc` and invokes `iteratee` for each property.\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\nvar baseFor = createBaseFor();\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\n/**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\nfunction baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n}\n\n/**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\nfunction baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n}\n\n/**\n * The base implementation of `_.isTypedArray` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n */\nfunction baseIsTypedArray(value) {\n return isObjectLike(value) &&\n isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n}\n\n/**\n * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeysIn(object) {\n if (!isObject(object)) {\n return nativeKeysIn(object);\n }\n var isProto = isPrototype(object),\n result = [];\n\n for (var key in object) {\n if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * The base implementation of `_.merge` without support for multiple sources.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} [customizer] The function to customize merged values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\nfunction baseMerge(object, source, srcIndex, customizer, stack) {\n if (object === source) {\n return;\n }\n baseFor(source, function(srcValue, key) {\n if (isObject(srcValue)) {\n stack || (stack = new Stack);\n baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\n }\n else {\n var newValue = customizer\n ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)\n : undefined;\n\n if (newValue === undefined) {\n newValue = srcValue;\n }\n assignMergeValue(object, key, newValue);\n }\n }, keysIn);\n}\n\n/**\n * A specialized version of `baseMerge` for arrays and objects which performs\n * deep merges and tracks traversed objects enabling objects with circular\n * references to be merged.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {string} key The key of the value to merge.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} mergeFunc The function to merge values.\n * @param {Function} [customizer] The function to customize assigned values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\nfunction baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\n var objValue = safeGet(object, key),\n srcValue = safeGet(source, key),\n stacked = stack.get(srcValue);\n\n if (stacked) {\n assignMergeValue(object, key, stacked);\n return;\n }\n var newValue = customizer\n ? customizer(objValue, srcValue, (key + ''), object, source, stack)\n : undefined;\n\n var isCommon = newValue === undefined;\n\n if (isCommon) {\n var isArr = isArray(srcValue),\n isBuff = !isArr && isBuffer(srcValue),\n isTyped = !isArr && !isBuff && isTypedArray(srcValue);\n\n newValue = srcValue;\n if (isArr || isBuff || isTyped) {\n if (isArray(objValue)) {\n newValue = objValue;\n }\n else if (isArrayLikeObject(objValue)) {\n newValue = copyArray(objValue);\n }\n else if (isBuff) {\n isCommon = false;\n newValue = cloneBuffer(srcValue, true);\n }\n else if (isTyped) {\n isCommon = false;\n newValue = cloneTypedArray(srcValue, true);\n }\n else {\n newValue = [];\n }\n }\n else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n newValue = objValue;\n if (isArguments(objValue)) {\n newValue = toPlainObject(objValue);\n }\n else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {\n newValue = initCloneObject(srcValue);\n }\n }\n else {\n isCommon = false;\n }\n }\n if (isCommon) {\n // Recursively merge objects and arrays (susceptible to call stack limits).\n stack.set(srcValue, newValue);\n mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\n stack['delete'](srcValue);\n }\n assignMergeValue(object, key, newValue);\n}\n\n/**\n * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @returns {Function} Returns the new function.\n */\nfunction baseRest(func, start) {\n return setToString(overRest(func, start, identity), func + '');\n}\n\n/**\n * The base implementation of `setToString` without support for hot loop shorting.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar baseSetToString = !defineProperty ? identity : function(func, string) {\n return defineProperty(func, 'toString', {\n 'configurable': true,\n 'enumerable': false,\n 'value': constant(string),\n 'writable': true\n });\n};\n\n/**\n * Creates a clone of `buffer`.\n *\n * @private\n * @param {Buffer} buffer The buffer to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Buffer} Returns the cloned buffer.\n */\nfunction cloneBuffer(buffer, isDeep) {\n if (isDeep) {\n return buffer.slice();\n }\n var length = buffer.length,\n result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n buffer.copy(result);\n return result;\n}\n\n/**\n * Creates a clone of `arrayBuffer`.\n *\n * @private\n * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\nfunction cloneArrayBuffer(arrayBuffer) {\n var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n return result;\n}\n\n/**\n * Creates a clone of `typedArray`.\n *\n * @private\n * @param {Object} typedArray The typed array to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned typed array.\n */\nfunction cloneTypedArray(typedArray, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n}\n\n/**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\nfunction copyArray(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n}\n\n/**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property identifiers to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @param {Function} [customizer] The function to customize copied values.\n * @returns {Object} Returns `object`.\n */\nfunction copyObject(source, props, object, customizer) {\n var isNew = !object;\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n\n var newValue = customizer\n ? customizer(object[key], source[key], key, object, source)\n : undefined;\n\n if (newValue === undefined) {\n newValue = source[key];\n }\n if (isNew) {\n baseAssignValue(object, key, newValue);\n } else {\n assignValue(object, key, newValue);\n }\n }\n return object;\n}\n\n/**\n * Creates a function like `_.assign`.\n *\n * @private\n * @param {Function} assigner The function to assign values.\n * @returns {Function} Returns the new assigner function.\n */\nfunction createAssigner(assigner) {\n return baseRest(function(object, sources) {\n var index = -1,\n length = sources.length,\n customizer = length > 1 ? sources[length - 1] : undefined,\n guard = length > 2 ? sources[2] : undefined;\n\n customizer = (assigner.length > 3 && typeof customizer == 'function')\n ? (length--, customizer)\n : undefined;\n\n if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n customizer = length < 3 ? undefined : customizer;\n length = 1;\n }\n object = Object(object);\n while (++index < length) {\n var source = sources[index];\n if (source) {\n assigner(object, source, index, customizer);\n }\n }\n return object;\n });\n}\n\n/**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n}\n\n/**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\nfunction getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n}\n\n/**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\nfunction getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n}\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\n/**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\nfunction initCloneObject(object) {\n return (typeof object.constructor == 'function' && !isPrototype(object))\n ? baseCreate(getPrototype(object))\n : {};\n}\n\n/**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\nfunction isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n}\n\n/**\n * Checks if the given arguments are from an iteratee call.\n *\n * @private\n * @param {*} value The potential iteratee value argument.\n * @param {*} index The potential iteratee index or key argument.\n * @param {*} object The potential iteratee object argument.\n * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n * else `false`.\n */\nfunction isIterateeCall(value, index, object) {\n if (!isObject(object)) {\n return false;\n }\n var type = typeof index;\n if (type == 'number'\n ? (isArrayLike(object) && isIndex(index, object.length))\n : (type == 'string' && index in object)\n ) {\n return eq(object[index], value);\n }\n return false;\n}\n\n/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\nfunction isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n}\n\n/**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\nfunction isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n}\n\n/**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\nfunction isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n}\n\n/**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction nativeKeysIn(object) {\n var result = [];\n if (object != null) {\n for (var key in Object(object)) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\n/**\n * A specialized version of `baseRest` which transforms the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @param {Function} transform The rest array transform.\n * @returns {Function} Returns the new function.\n */\nfunction overRest(func, start, transform) {\n start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n array = Array(length);\n\n while (++index < length) {\n array[index] = args[start + index];\n }\n index = -1;\n var otherArgs = Array(start + 1);\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = transform(array);\n return apply(func, this, otherArgs);\n };\n}\n\n/**\n * Sets the `toString` method of `func` to return `string`.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar setToString = shortOut(baseSetToString);\n\n/**\n * Creates a function that'll short out and invoke `identity` instead\n * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n * milliseconds.\n *\n * @private\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new shortable function.\n */\nfunction shortOut(func) {\n var count = 0,\n lastCalled = 0;\n\n return function() {\n var stamp = nativeNow(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return arguments[0];\n }\n } else {\n count = 0;\n }\n return func.apply(undefined, arguments);\n };\n}\n\n/**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\nfunction toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n}\n\n/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\nfunction eq(value, other) {\n return value === other || (value !== value && other !== other);\n}\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\n/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\n/**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\nfunction isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n}\n\n/**\n * This method is like `_.isArrayLike` except that it also checks if `value`\n * is an object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array-like object,\n * else `false`.\n * @example\n *\n * _.isArrayLikeObject([1, 2, 3]);\n * // => true\n *\n * _.isArrayLikeObject(document.body.children);\n * // => true\n *\n * _.isArrayLikeObject('abc');\n * // => false\n *\n * _.isArrayLikeObject(_.noop);\n * // => false\n */\nfunction isArrayLikeObject(value) {\n return isObjectLike(value) && isArrayLike(value);\n}\n\n/**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\nvar isBuffer = nativeIsBuffer || stubFalse;\n\n/**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\nfunction isFunction(value) {\n if (!isObject(value)) {\n return false;\n }\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in Safari 9 which returns 'object' for typed arrays and other constructors.\n var tag = baseGetTag(value);\n return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n}\n\n/**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\nfunction isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n}\n\n/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\n/**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * @static\n * @memberOf _\n * @since 0.8.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\nfunction isPlainObject(value) {\n if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n return false;\n }\n var proto = getPrototype(value);\n if (proto === null) {\n return true;\n }\n var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n funcToString.call(Ctor) == objectCtorString;\n}\n\n/**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\nvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n/**\n * Converts `value` to a plain object flattening inherited enumerable string\n * keyed properties of `value` to own properties of the plain object.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Object} Returns the converted plain object.\n * @example\n *\n * function Foo() {\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.assign({ 'a': 1 }, new Foo);\n * // => { 'a': 1, 'b': 2 }\n *\n * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n * // => { 'a': 1, 'b': 2, 'c': 3 }\n */\nfunction toPlainObject(value) {\n return copyObject(value, keysIn(value));\n}\n\n/**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\nfunction keysIn(object) {\n return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n}\n\n/**\n * This method is like `_.assign` except that it recursively merges own and\n * inherited enumerable string keyed properties of source objects into the\n * destination object. Source properties that resolve to `undefined` are\n * skipped if a destination value exists. Array and plain object properties\n * are merged recursively. Other objects and value types are overridden by\n * assignment. Source objects are applied from left to right. Subsequent\n * sources overwrite property assignments of previous sources.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 0.5.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {\n * 'a': [{ 'b': 2 }, { 'd': 4 }]\n * };\n *\n * var other = {\n * 'a': [{ 'c': 3 }, { 'e': 5 }]\n * };\n *\n * _.merge(object, other);\n * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }\n */\nvar merge = createAssigner(function(object, source, srcIndex) {\n baseMerge(object, source, srcIndex);\n});\n\n/**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Util\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new constant function.\n * @example\n *\n * var objects = _.times(2, _.constant({ 'a': 1 }));\n *\n * console.log(objects);\n * // => [{ 'a': 1 }, { 'a': 1 }]\n *\n * console.log(objects[0] === objects[1]);\n * // => true\n */\nfunction constant(value) {\n return function() {\n return value;\n };\n}\n\n/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\n/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\nfunction stubFalse() {\n return false;\n}\n\nmodule.exports = merge;\n});\n\nfunction install(Vue) {\n\tvar options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\tif (install.installed) return;\n\tinstall.installed = true;\n\n\tvar finalOptions = {};\n\tlodash_merge(finalOptions, defaultOptions, options);\n\n\tplugin.options = finalOptions;\n\tdirective.options = finalOptions;\n\n\tVue.directive('tooltip', directive);\n\tVue.directive('close-popover', vclosepopover);\n\tVue.component('v-popover', Popover);\n}\n\nvar VTooltip = directive;\nvar VClosePopover = vclosepopover;\nvar VPopover = Popover;\n\nvar plugin = {\n\tinstall: install,\n\n\tget enabled() {\n\t\treturn state.enabled;\n\t},\n\n\tset enabled(value) {\n\t\tstate.enabled = value;\n\t}\n};\n\n// Auto-install\nvar GlobalVue = null;\nif (typeof window !== 'undefined') {\n\tGlobalVue = window.Vue;\n} else if (typeof global !== 'undefined') {\n\tGlobalVue = global.Vue;\n}\nif (GlobalVue) {\n\tGlobalVue.use(plugin);\n}\n\nexport { install, VTooltip, VClosePopover, VPopover, createTooltip, destroyTooltip };\nexport default plugin;\n","!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.VueInfiniteLoading=t():e.VueInfiniteLoading=t()}(\"undefined\"!=typeof self?self:this,function(){return function(e){function t(n){if(i[n])return i[n].exports;var a=i[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,n){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,\"a\",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p=\"/\",t(t.s=3)}([function(e,t){function i(e,t){var i=e[1]||\"\",a=e[3];if(!a)return i;if(t&&\"function\"==typeof btoa){var r=n(a);return[i].concat(a.sources.map(function(e){return\"/*# sourceURL=\"+a.sourceRoot+e+\" */\"})).concat([r]).join(\"\\n\")}return[i].join(\"\\n\")}function n(e){return\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+\" */\"}e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n=i(t,e);return t[2]?\"@media \"+t[2]+\"{\"+n+\"}\":n}).join(\"\")},t.i=function(e,i){\"string\"==typeof e&&(e=[[null,e,\"\"]]);for(var n={},a=0;a<this.length;a++){var r=this[a][0];\"number\"==typeof r&&(n[r]=!0)}for(a=0;a<e.length;a++){var o=e[a];\"number\"==typeof o[0]&&n[o[0]]||(i&&!o[2]?o[2]=i:i&&(o[2]=\"(\"+o[2]+\") and (\"+i+\")\"),t.push(o))}},t}},function(e,t,i){function n(e){for(var t=0;t<e.length;t++){var i=e[t],n=f[i.id];if(n){n.refs++;for(var a=0;a<n.parts.length;a++)n.parts[a](i.parts[a]);for(;a<i.parts.length;a++)n.parts.push(r(i.parts[a]));n.parts.length>i.parts.length&&(n.parts.length=i.parts.length)}else{for(var o=[],a=0;a<i.parts.length;a++)o.push(r(i.parts[a]));f[i.id]={id:i.id,refs:1,parts:o}}}}function a(){var e=document.createElement(\"style\");return e.type=\"text/css\",c.appendChild(e),e}function r(e){var t,i,n=document.querySelector('style[data-vue-ssr-id~=\"'+e.id+'\"]');if(n){if(m)return h;n.parentNode.removeChild(n)}if(b){var r=p++;n=u||(u=a()),t=o.bind(null,n,r,!1),i=o.bind(null,n,r,!0)}else n=a(),t=s.bind(null,n),i=function(){n.parentNode.removeChild(n)};return t(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;t(e=n)}else i()}}function o(e,t,i,n){var a=i?\"\":n.css;if(e.styleSheet)e.styleSheet.cssText=g(t,a);else{var r=document.createTextNode(a),o=e.childNodes;o[t]&&e.removeChild(o[t]),o.length?e.insertBefore(r,o[t]):e.appendChild(r)}}function s(e,t){var i=t.css,n=t.media,a=t.sourceMap;if(n&&e.setAttribute(\"media\",n),a&&(i+=\"\\n/*# sourceURL=\"+a.sources[0]+\" */\",i+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(a))))+\" */\"),e.styleSheet)e.styleSheet.cssText=i;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(i))}}var l=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!l)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var d=i(7),f={},c=l&&(document.head||document.getElementsByTagName(\"head\")[0]),u=null,p=0,m=!1,h=function(){},b=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());e.exports=function(e,t,i){m=i;var a=d(e,t);return n(a),function(t){for(var i=[],r=0;r<a.length;r++){var o=a[r],s=f[o.id];s.refs--,i.push(s)}t?(a=d(e,t),n(a)):a=[];for(var r=0;r<i.length;r++){var s=i[r];if(0===s.refs){for(var l=0;l<s.parts.length;l++)s.parts[l]();delete f[s.id]}}}};var g=function(){var e=[];return function(t,i){return e[t]=i,e.filter(Boolean).join(\"\\n\")}}()},function(e,t){e.exports=function(e,t,i,n,a,r){var o,s=e=e||{},l=typeof e.default;\"object\"!==l&&\"function\"!==l||(o=e,s=e.default);var d=\"function\"==typeof s?s.options:s;t&&(d.render=t.render,d.staticRenderFns=t.staticRenderFns,d._compiled=!0),i&&(d.functional=!0),a&&(d._scopeId=a);var f;if(r?(f=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},d._ssrRegister=f):n&&(f=n),f){var c=d.functional,u=c?d.render:d.beforeCreate;c?(d._injectStyles=f,d.render=function(e,t){return f.call(t),u(e,t)}):d.beforeCreate=u?[].concat(u,f):[f]}return{esModule:o,exports:s,options:d}}},function(e,t,i){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=i(4);t.default=n.a,\"undefined\"!=typeof window&&window.Vue&&window.Vue.component(\"infinite-loading\",n.a)},function(e,t,i){\"use strict\";function n(e){i(5)}var a=i(8),r=i(14),o=i(2),s=n,l=o(a.a,r.a,!1,s,\"data-v-fb2c869e\",null);t.a=l.exports},function(e,t,i){var n=i(6);\"string\"==typeof n&&(n=[[e.i,n,\"\"]]),n.locals&&(e.exports=n.locals);i(1)(\"2249d7a7\",n,!0)},function(e,t,i){t=e.exports=i(0)(void 0),t.push([e.i,\".infinite-loading-container[data-v-fb2c869e]{clear:both;text-align:center}.infinite-loading-container[data-v-fb2c869e] [class^=loading-]{display:inline-block;margin:15px 0;width:28px;height:28px;font-size:28px;line-height:28px;border-radius:50%}.infinite-status-prompt[data-v-fb2c869e]{color:#666;font-size:14px;text-align:center;padding:10px 0}\",\"\"])},function(e,t){e.exports=function(e,t){for(var i=[],n={},a=0;a<t.length;a++){var r=t[a],o=r[0],s=r[1],l=r[2],d=r[3],f={id:e+\":\"+a,css:s,media:l,sourceMap:d};n[o]?n[o].parts.push(f):i.push(n[o]={id:o,parts:[f]})}return i}},function(e,t,i){\"use strict\";var n=i(9),a={STATE_CHANGER:[\"[Vue-infinite-loading warn]: emit `loaded` and `complete` event through component instance of `$refs` may cause error, so it will be deprecated soon, please use the `$state` argument instead (`$state` just the special `$event` variable):\",\"\\ntemplate:\",'<infinite-loading @infinite=\"infiniteHandler\"></infinite-loading>',\"\\nscript:\\n...\\ninfiniteHandler($state) {\\n ajax('https://www.example.com/api/news')\\n .then((res) => {\\n if (res.data.length) {\\n $state.loaded();\\n } else {\\n $state.complete();\\n }\\n });\\n}\\n...\",\"\",\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/57#issuecomment-324370549\"].join(\"\\n\"),INFINITE_EVENT:\"[Vue-infinite-loading warn]: `:on-infinite` property will be deprecated soon, please use `@infinite` event instead.\"},r={INFINITE_LOOP:[\"[Vue-infinite-loading error]: executed the callback function more than 10 times for a short time, it looks like searched a wrong scroll wrapper that doest not has fixed height or maximum height, please check it. If you want to force to set a element as scroll wrapper ranther than automatic searching, you can do this:\",'\\n\\x3c!-- add a special attribute for the real scroll wrapper --\\x3e\\n<div infinite-wrapper>\\n ...\\n \\x3c!-- set force-use-infinite-wrapper to true --\\x3e\\n <infinite-loading force-use-infinite-wrapper=\"true\"></infinite-loading>\\n</div>\\n ',\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/55#issuecomment-316934169\"].join(\"\\n\")};t.a={name:\"InfiniteLoading\",data:function(){return{scrollParent:null,scrollHandler:null,isLoading:!1,isComplete:!1,isFirstLoad:!0,debounceTimer:null,debounceDuration:50,infiniteLoopChecked:!1,infiniteLoopTimer:null,continuousCallTimes:0}},components:{Spinner:n.a},computed:{isNoResults:{cache:!1,get:function(){var e=this.$slots[\"no-results\"],t=e&&e[0].elm&&\"\"===e[0].elm.textContent;return!this.isLoading&&this.isComplete&&this.isFirstLoad&&!t}},isNoMore:{cache:!1,get:function(){var e=this.$slots[\"no-more\"],t=e&&e[0].elm&&\"\"===e[0].elm.textContent;return!this.isLoading&&this.isComplete&&!this.isFirstLoad&&!t}}},props:{distance:{type:Number,default:100},onInfinite:Function,spinner:String,direction:{type:String,default:\"bottom\"},forceUseInfiniteWrapper:null},mounted:function(){var e=this;this.scrollParent=this.getScrollParent(),this.scrollHandler=function(e){this.isLoading||(clearTimeout(this.debounceTimer),e&&e.constructor===Event?this.debounceTimer=setTimeout(this.attemptLoad,this.debounceDuration):this.attemptLoad())}.bind(this),setTimeout(this.scrollHandler,1),this.scrollParent.addEventListener(\"scroll\",this.scrollHandler),this.$on(\"$InfiniteLoading:loaded\",function(t){e.isFirstLoad=!1,e.isLoading&&e.$nextTick(e.attemptLoad.bind(null,!0)),t&&t.target===e||console.warn(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:complete\",function(t){e.isLoading=!1,e.isComplete=!0,e.$nextTick(function(){e.$forceUpdate()}),e.scrollParent.removeEventListener(\"scroll\",e.scrollHandler),t&&t.target===e||console.warn(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:reset\",function(){e.isLoading=!1,e.isComplete=!1,e.isFirstLoad=!0,e.scrollParent.addEventListener(\"scroll\",e.scrollHandler),setTimeout(e.scrollHandler,1)}),this.onInfinite&&console.warn(a.INFINITE_EVENT),this.stateChanger={loaded:function(){e.$emit(\"$InfiniteLoading:loaded\",{target:e})},complete:function(){e.$emit(\"$InfiniteLoading:complete\",{target:e})},reset:function(){e.$emit(\"$InfiniteLoading:reset\",{target:e})}},this.$watch(\"forceUseInfiniteWrapper\",function(){e.scrollParent=e.getScrollParent()})},deactivated:function(){this.isLoading=!1,this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler)},activated:function(){this.scrollParent.addEventListener(\"scroll\",this.scrollHandler)},methods:{attemptLoad:function(e){var t=this,i=this.getCurrentDistance();!this.isComplete&&i<=this.distance&&this.$el.offsetWidth+this.$el.offsetHeight>0?(this.isLoading=!0,\"function\"==typeof this.onInfinite?this.onInfinite.call(null,this.stateChanger):this.$emit(\"infinite\",this.stateChanger),!e||this.forceUseInfiniteWrapper||this.infiniteLoopChecked||(this.continuousCallTimes+=1,clearTimeout(this.infiniteLoopTimer),this.infiniteLoopTimer=setTimeout(function(){t.infiniteLoopChecked=!0},1e3),this.continuousCallTimes>10&&(console.error(r.INFINITE_LOOP),this.infiniteLoopChecked=!0))):this.isLoading=!1},getCurrentDistance:function(){var e=void 0;if(\"top\"===this.direction)e=isNaN(this.scrollParent.scrollTop)?this.scrollParent.pageYOffset:this.scrollParent.scrollTop;else{e=this.$el.getBoundingClientRect().top-(this.scrollParent===window?window.innerHeight:this.scrollParent.getBoundingClientRect().bottom)}return e},getScrollParent:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.$el,t=void 0;return\"BODY\"===e.tagName?t=window:!this.forceUseInfiniteWrapper&&[\"scroll\",\"auto\"].indexOf(getComputedStyle(e).overflowY)>-1?t=e:(e.hasAttribute(\"infinite-wrapper\")||e.hasAttribute(\"data-infinite-wrapper\"))&&(t=e),t||this.getScrollParent(e.parentNode)}},destroyed:function(){this.isComplete||this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler)}}},function(e,t,i){\"use strict\";function n(e){i(10)}var a=i(12),r=i(13),o=i(2),s=n,l=o(a.a,r.a,!1,s,\"data-v-6e1fd88f\",null);t.a=l.exports},function(e,t,i){var n=i(11);\"string\"==typeof n&&(n=[[e.i,n,\"\"]]),n.locals&&(e.exports=n.locals);i(1)(\"29881045\",n,!0)},function(e,t,i){t=e.exports=i(0)(void 0),t.push([e.i,'.loading-wave-dots[data-v-6e1fd88f]{position:relative}.loading-wave-dots[data-v-6e1fd88f] .wave-item{position:absolute;top:50%;left:50%;display:inline-block;margin-top:-4px;width:8px;height:8px;border-radius:50%;-webkit-animation:loading-wave-dots-data-v-6e1fd88f linear 2.8s infinite;animation:loading-wave-dots-data-v-6e1fd88f linear 2.8s infinite}.loading-wave-dots[data-v-6e1fd88f] .wave-item:first-child{margin-left:-36px}.loading-wave-dots[data-v-6e1fd88f] .wave-item:nth-child(2){margin-left:-20px;-webkit-animation-delay:.14s;animation-delay:.14s}.loading-wave-dots[data-v-6e1fd88f] .wave-item:nth-child(3){margin-left:-4px;-webkit-animation-delay:.28s;animation-delay:.28s}.loading-wave-dots[data-v-6e1fd88f] .wave-item:nth-child(4){margin-left:12px;-webkit-animation-delay:.42s;animation-delay:.42s}.loading-wave-dots[data-v-6e1fd88f] .wave-item:last-child{margin-left:28px;-webkit-animation-delay:.56s;animation-delay:.56s}@-webkit-keyframes loading-wave-dots-data-v-6e1fd88f{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}@keyframes loading-wave-dots-data-v-6e1fd88f{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}.loading-circles[data-v-6e1fd88f] .circle-item{width:5px;height:5px;-webkit-animation:loading-circles-data-v-6e1fd88f linear .75s infinite;animation:loading-circles-data-v-6e1fd88f linear .75s infinite}.loading-circles[data-v-6e1fd88f] .circle-item:first-child{margin-top:-14.5px;margin-left:-2.5px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(2){margin-top:-11.26px;margin-left:6.26px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(3){margin-top:-2.5px;margin-left:9.5px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(4){margin-top:6.26px;margin-left:6.26px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(5){margin-top:9.5px;margin-left:-2.5px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(6){margin-top:6.26px;margin-left:-11.26px}.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(7){margin-top:-2.5px;margin-left:-14.5px}.loading-circles[data-v-6e1fd88f] .circle-item:last-child{margin-top:-11.26px;margin-left:-11.26px}@-webkit-keyframes loading-circles-data-v-6e1fd88f{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}@keyframes loading-circles-data-v-6e1fd88f{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}.loading-bubbles[data-v-6e1fd88f] .bubble-item{background:#666;-webkit-animation:loading-bubbles-data-v-6e1fd88f linear .75s infinite;animation:loading-bubbles-data-v-6e1fd88f linear .75s infinite}.loading-bubbles[data-v-6e1fd88f] .bubble-item:first-child{margin-top:-12.5px;margin-left:-.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(2){margin-top:-9.26px;margin-left:8.26px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(3){margin-top:-.5px;margin-left:11.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(4){margin-top:8.26px;margin-left:8.26px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(5){margin-top:11.5px;margin-left:-.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(6){margin-top:8.26px;margin-left:-9.26px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(7){margin-top:-.5px;margin-left:-12.5px}.loading-bubbles[data-v-6e1fd88f] .bubble-item:last-child{margin-top:-9.26px;margin-left:-9.26px}@-webkit-keyframes loading-bubbles-data-v-6e1fd88f{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}@keyframes loading-bubbles-data-v-6e1fd88f{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}.loading-default[data-v-6e1fd88f]{position:relative;border:1px solid #999;-webkit-animation:loading-rotating-data-v-6e1fd88f ease 1.5s infinite;animation:loading-rotating-data-v-6e1fd88f ease 1.5s infinite}.loading-default[data-v-6e1fd88f]:before{content:\"\";position:absolute;display:block;top:0;left:50%;margin-top:-3px;margin-left:-3px;width:6px;height:6px;background-color:#999;border-radius:50%}.loading-spiral[data-v-6e1fd88f]{border:2px solid #777;border-right-color:transparent;-webkit-animation:loading-rotating-data-v-6e1fd88f linear .85s infinite;animation:loading-rotating-data-v-6e1fd88f linear .85s infinite}@-webkit-keyframes loading-rotating-data-v-6e1fd88f{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loading-rotating-data-v-6e1fd88f{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loading-bubbles[data-v-6e1fd88f],.loading-circles[data-v-6e1fd88f]{position:relative}.loading-bubbles[data-v-6e1fd88f] .bubble-item,.loading-circles[data-v-6e1fd88f] .circle-item{position:absolute;top:50%;left:50%;display:inline-block;border-radius:50%}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(2),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(2){-webkit-animation-delay:93ms;animation-delay:93ms}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(3),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(3){-webkit-animation-delay:.186s;animation-delay:.186s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(4),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(4){-webkit-animation-delay:.279s;animation-delay:.279s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(5),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(5){-webkit-animation-delay:.372s;animation-delay:.372s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(6),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(6){-webkit-animation-delay:.465s;animation-delay:.465s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:nth-child(7),.loading-circles[data-v-6e1fd88f] .circle-item:nth-child(7){-webkit-animation-delay:.558s;animation-delay:.558s}.loading-bubbles[data-v-6e1fd88f] .bubble-item:last-child,.loading-circles[data-v-6e1fd88f] .circle-item:last-child{-webkit-animation-delay:.651s;animation-delay:.651s}',\"\"])},function(e,t,i){\"use strict\";var n={BUBBLES:{render:function(e){return e(\"span\",{attrs:{class:\"loading-bubbles\"}},Array.apply(Array,Array(8)).map(function(){return e(\"span\",{attrs:{class:\"bubble-item\"}})}))}},CIRCLES:{render:function(e){return e(\"span\",{attrs:{class:\"loading-circles\"}},Array.apply(Array,Array(8)).map(function(){return e(\"span\",{attrs:{class:\"circle-item\"}})}))}},DEFAULT:{render:function(e){return e(\"i\",{attrs:{class:\"loading-default\"}})}},SPIRAL:{render:function(e){return e(\"i\",{attrs:{class:\"loading-spiral\"}})}},WAVEDOTS:{render:function(e){return e(\"span\",{attrs:{class:\"loading-wave-dots\"}},Array.apply(Array,Array(5)).map(function(){return e(\"span\",{attrs:{class:\"wave-item\"}})}))}}};t.a={name:\"spinner\",computed:{spinnerView:function(){return n[(this.spinner||\"\").toUpperCase()]||n.DEFAULT}},props:{spinner:String}}},function(e,t,i){\"use strict\";var n=function(){var e=this,t=e.$createElement;return(e._self._c||t)(e.spinnerView,{tag:\"component\"})},a=[],r={render:n,staticRenderFns:a};t.a=r},function(e,t,i){\"use strict\";var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i(\"div\",{staticClass:\"infinite-loading-container\"},[i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isLoading,expression:\"isLoading\"}]},[e._t(\"spinner\",[i(\"spinner\",{attrs:{spinner:e.spinner}})])],2),e._v(\" \"),i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isNoResults,expression:\"isNoResults\"}],staticClass:\"infinite-status-prompt\"},[e._t(\"no-results\",[e._v(\"No results :(\")])],2),e._v(\" \"),i(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isNoMore,expression:\"isNoMore\"}],staticClass:\"infinite-status-prompt\"},[e._t(\"no-more\",[e._v(\"No more data :)\")])],2)])},a=[],r={render:n,staticRenderFns:a};t.a=r}])});","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(utils.merge(defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","/*!\n * Determine if an object is a Buffer\n *\n * @author Feross Aboukhadijeh <https://feross.org>\n * @license MIT\n */\n\n// The _isBuffer check is for Safari 5-7 support, because it's missing\n// Object.prototype.constructor. Remove this eventually\nmodule.exports = function (obj) {\n return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)\n}\n\nfunction isBuffer (obj) {\n return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)\n}\n\n// For Node v0.10 support. Remove this eventually.\nfunction isSlowBuffer (obj) {\n return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))\n}\n","'use strict';\n\nvar defaults = require('./../defaults');\nvar utils = require('./../utils');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = utils.merge({\n url: arguments[0]\n }, arguments[1]);\n }\n\n config = utils.merge(defaults, {method: 'get'}, this.defaults, config);\n config.method = config.method.toLowerCase();\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n // Note: status is not exposed by XDomainRequest\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n error.request = request;\n error.response = response;\n return error;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%40/gi, '@').\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\n// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js\n\nvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n\nfunction E() {\n this.message = 'String contains an invalid character';\n}\nE.prototype = new Error;\nE.prototype.code = 5;\nE.prototype.name = 'InvalidCharacterError';\n\nfunction btoa(input) {\n var str = String(input);\n var output = '';\n for (\n // initialize result and counter\n var block, charCode, idx = 0, map = chars;\n // if the next str index does not exist:\n // change the mapping table to \"=\"\n // check if d has no fractional digits\n str.charAt(idx | 0) || (map = '=', idx % 1);\n // \"8 - idx % 1 * 8\" generates the sequence 2, 4, 6, 8\n output += map.charAt(63 & block >> 8 - idx % 1 * 8)\n ) {\n charCode = str.charCodeAt(idx += 3 / 4);\n if (charCode > 0xFF) {\n throw new E();\n }\n block = block << 8 | charCode;\n }\n return output;\n}\n\nmodule.exports = btoa;\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\nvar isAbsoluteURL = require('./../helpers/isAbsoluteURL');\nvar combineURLs = require('./../helpers/combineURLs');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Support baseURL config\n if (config.baseURL && !isAbsoluteURL(config.url)) {\n config.url = combineURLs(config.baseURL, config.url);\n }\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers || {}\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","'use strict';\nvar $export = require('./_export');\nvar $typed = require('./_typed');\nvar buffer = require('./_typed-buffer');\nvar anObject = require('./_an-object');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar toLength = require('./_to-length');\nvar isObject = require('./_is-object');\nvar ArrayBuffer = require('./_global').ArrayBuffer;\nvar speciesConstructor = require('./_species-constructor');\nvar $ArrayBuffer = buffer.ArrayBuffer;\nvar $DataView = buffer.DataView;\nvar $isView = $typed.ABV && ArrayBuffer.isView;\nvar $slice = $ArrayBuffer.prototype.slice;\nvar VIEW = $typed.VIEW;\nvar ARRAY_BUFFER = 'ArrayBuffer';\n\n$export($export.G + $export.W + $export.F * (ArrayBuffer !== $ArrayBuffer), { ArrayBuffer: $ArrayBuffer });\n\n$export($export.S + $export.F * !$typed.CONSTR, ARRAY_BUFFER, {\n // 24.1.3.1 ArrayBuffer.isView(arg)\n isView: function isView(it) {\n return $isView && $isView(it) || isObject(it) && VIEW in it;\n }\n});\n\n$export($export.P + $export.U + $export.F * require('./_fails')(function () {\n return !new $ArrayBuffer(2).slice(1, undefined).byteLength;\n}), ARRAY_BUFFER, {\n // 24.1.4.3 ArrayBuffer.prototype.slice(start, end)\n slice: function slice(start, end) {\n if ($slice !== undefined && end === undefined) return $slice.call(anObject(this), start); // FF fix\n var len = anObject(this).byteLength;\n var first = toAbsoluteIndex(start, len);\n var final = toAbsoluteIndex(end === undefined ? len : end, len);\n var result = new (speciesConstructor(this, $ArrayBuffer))(toLength(final - first));\n var viewS = new $DataView(this);\n var viewT = new $DataView(result);\n var index = 0;\n while (first < final) {\n viewT.setUint8(index++, viewS.getUint8(first++));\n } return result;\n }\n});\n\nrequire('./_set-species')(ARRAY_BUFFER);\n","require('./_typed-array')('Int8', 1, function (init) {\n return function Int8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\nvar speciesConstructor = require('./_array-species-constructor');\n\nmodule.exports = function (original, length) {\n return new (speciesConstructor(original))(length);\n};\n","var isObject = require('./_is-object');\nvar isArray = require('./_is-array');\nvar SPECIES = require('./_wks')('species');\n\nmodule.exports = function (original) {\n var C;\n if (isArray(original)) {\n C = original.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return C === undefined ? Array : C;\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint8', 1, function (init) {\n return function Uint8ClampedArray(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n}, true);\n","require('./_typed-array')('Int16', 2, function (init) {\n return function Int16Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint16', 2, function (init) {\n return function Uint16Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Int32', 4, function (init) {\n return function Int32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Uint32', 4, function (init) {\n return function Uint32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Float32', 4, function (init) {\n return function Float32Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","require('./_typed-array')('Float64', 8, function (init) {\n return function Float64Array(data, byteOffset, length) {\n return init(this, data, byteOffset, length);\n };\n});\n","'use strict';\nvar strong = require('./_collection-strong');\nvar validate = require('./_validate-collection');\nvar MAP = 'Map';\n\n// 23.1 Map Objects\nmodule.exports = require('./_collection')(MAP, function (get) {\n return function Map() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = strong.getEntry(validate(this, MAP), key);\n return entry && entry.v;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return strong.def(validate(this, MAP), key === 0 ? 0 : key, value);\n }\n}, strong, true);\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","'use strict';\nvar strong = require('./_collection-strong');\nvar validate = require('./_validate-collection');\nvar SET = 'Set';\n\n// 23.2 Set Objects\nmodule.exports = require('./_collection')(SET, function (get) {\n return function Set() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return strong.def(validate(this, SET), value = value === 0 ? 0 : value, value);\n }\n}, strong);\n","'use strict';\nvar each = require('./_array-methods')(0);\nvar redefine = require('./_redefine');\nvar meta = require('./_meta');\nvar assign = require('./_object-assign');\nvar weak = require('./_collection-weak');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar validate = require('./_validate-collection');\nvar WEAK_MAP = 'WeakMap';\nvar getWeak = meta.getWeak;\nvar isExtensible = Object.isExtensible;\nvar uncaughtFrozenStore = weak.ufstore;\nvar tmp = {};\nvar InternalMap;\n\nvar wrapper = function (get) {\n return function WeakMap() {\n return get(this, arguments.length > 0 ? arguments[0] : undefined);\n };\n};\n\nvar methods = {\n // 23.3.3.3 WeakMap.prototype.get(key)\n get: function get(key) {\n if (isObject(key)) {\n var data = getWeak(key);\n if (data === true) return uncaughtFrozenStore(validate(this, WEAK_MAP)).get(key);\n return data ? data[this._i] : undefined;\n }\n },\n // 23.3.3.5 WeakMap.prototype.set(key, value)\n set: function set(key, value) {\n return weak.def(validate(this, WEAK_MAP), key, value);\n }\n};\n\n// 23.3 WeakMap Objects\nvar $WeakMap = module.exports = require('./_collection')(WEAK_MAP, wrapper, methods, weak, true, true);\n\n// IE11 WeakMap frozen keys fix\nif (fails(function () { return new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7; })) {\n InternalMap = weak.getConstructor(wrapper, WEAK_MAP);\n assign(InternalMap.prototype, methods);\n meta.NEED = true;\n each(['delete', 'has', 'get', 'set'], function (key) {\n var proto = $WeakMap.prototype;\n var method = proto[key];\n redefine(proto, key, function (a, b) {\n // store frozen objects on internal weakmap shim\n if (isObject(a) && !isExtensible(a)) {\n if (!this._f) this._f = new InternalMap();\n var result = this._f[key](a, b);\n return key == 'set' ? this : result;\n // store all the rest on native weakmap\n } return method.call(this, a, b);\n });\n });\n}\n","'use strict';\nvar weak = require('./_collection-weak');\nvar validate = require('./_validate-collection');\nvar WEAK_SET = 'WeakSet';\n\n// 23.4 WeakSet Objects\nrequire('./_collection')(WEAK_SET, function (get) {\n return function WeakSet() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };\n}, {\n // 23.4.3.1 WeakSet.prototype.add(value)\n add: function add(value) {\n return weak.def(validate(this, WEAK_SET), value, true);\n }\n}, weak, false, true);\n","// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)\nvar $export = require('./_export');\nvar aFunction = require('./_a-function');\nvar anObject = require('./_an-object');\nvar rApply = (require('./_global').Reflect || {}).apply;\nvar fApply = Function.apply;\n// MS Edge argumentsList argument is optional\n$export($export.S + $export.F * !require('./_fails')(function () {\n rApply(function () { /* empty */ });\n}), 'Reflect', {\n apply: function apply(target, thisArgument, argumentsList) {\n var T = aFunction(target);\n var L = anObject(argumentsList);\n return rApply ? rApply(T, thisArgument, L) : fApply.call(T, thisArgument, L);\n }\n});\n","// 26.1.2 Reflect.construct(target, argumentsList [, newTarget])\nvar $export = require('./_export');\nvar create = require('./_object-create');\nvar aFunction = require('./_a-function');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar fails = require('./_fails');\nvar bind = require('./_bind');\nvar rConstruct = (require('./_global').Reflect || {}).construct;\n\n// MS Edge supports only 2 arguments and argumentsList argument is optional\n// FF Nightly sets third argument as `new.target`, but does not create `this` from it\nvar NEW_TARGET_BUG = fails(function () {\n function F() { /* empty */ }\n return !(rConstruct(function () { /* empty */ }, [], F) instanceof F);\n});\nvar ARGS_BUG = !fails(function () {\n rConstruct(function () { /* empty */ });\n});\n\n$export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', {\n construct: function construct(Target, args /* , newTarget */) {\n aFunction(Target);\n anObject(args);\n var newTarget = arguments.length < 3 ? Target : aFunction(arguments[2]);\n if (ARGS_BUG && !NEW_TARGET_BUG) return rConstruct(Target, args, newTarget);\n if (Target == newTarget) {\n // w/o altered newTarget, optimization for 0-4 arguments\n switch (args.length) {\n case 0: return new Target();\n case 1: return new Target(args[0]);\n case 2: return new Target(args[0], args[1]);\n case 3: return new Target(args[0], args[1], args[2]);\n case 4: return new Target(args[0], args[1], args[2], args[3]);\n }\n // w/o altered newTarget, lot of arguments case\n var $args = [null];\n $args.push.apply($args, args);\n return new (bind.apply(Target, $args))();\n }\n // with altered newTarget, not support built-in constructors\n var proto = newTarget.prototype;\n var instance = create(isObject(proto) ? proto : Object.prototype);\n var result = Function.apply.call(Target, instance, args);\n return isObject(result) ? result : instance;\n }\n});\n","'use strict';\nvar aFunction = require('./_a-function');\nvar isObject = require('./_is-object');\nvar invoke = require('./_invoke');\nvar arraySlice = [].slice;\nvar factories = {};\n\nvar construct = function (F, len, args) {\n if (!(len in factories)) {\n for (var n = [], i = 0; i < len; i++) n[i] = 'a[' + i + ']';\n // eslint-disable-next-line no-new-func\n factories[len] = Function('F,a', 'return new F(' + n.join(',') + ')');\n } return factories[len](F, args);\n};\n\nmodule.exports = Function.bind || function bind(that /* , ...args */) {\n var fn = aFunction(this);\n var partArgs = arraySlice.call(arguments, 1);\n var bound = function (/* args... */) {\n var args = partArgs.concat(arraySlice.call(arguments));\n return this instanceof bound ? construct(fn, args.length, args) : invoke(fn, args, that);\n };\n if (isObject(fn.prototype)) bound.prototype = fn.prototype;\n return bound;\n};\n","// 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)\nvar dP = require('./_object-dp');\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar toPrimitive = require('./_to-primitive');\n\n// MS Edge has broken Reflect.defineProperty - throwing instead of returning false\n$export($export.S + $export.F * require('./_fails')(function () {\n // eslint-disable-next-line no-undef\n Reflect.defineProperty(dP.f({}, 1, { value: 1 }), 1, { value: 2 });\n}), 'Reflect', {\n defineProperty: function defineProperty(target, propertyKey, attributes) {\n anObject(target);\n propertyKey = toPrimitive(propertyKey, true);\n anObject(attributes);\n try {\n dP.f(target, propertyKey, attributes);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.4 Reflect.deleteProperty(target, propertyKey)\nvar $export = require('./_export');\nvar gOPD = require('./_object-gopd').f;\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n deleteProperty: function deleteProperty(target, propertyKey) {\n var desc = gOPD(anObject(target), propertyKey);\n return desc && !desc.configurable ? false : delete target[propertyKey];\n }\n});\n","// 26.1.6 Reflect.get(target, propertyKey [, receiver])\nvar gOPD = require('./_object-gopd');\nvar getPrototypeOf = require('./_object-gpo');\nvar has = require('./_has');\nvar $export = require('./_export');\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\n\nfunction get(target, propertyKey /* , receiver */) {\n var receiver = arguments.length < 3 ? target : arguments[2];\n var desc, proto;\n if (anObject(target) === receiver) return target[propertyKey];\n if (desc = gOPD.f(target, propertyKey)) return has(desc, 'value')\n ? desc.value\n : desc.get !== undefined\n ? desc.get.call(receiver)\n : undefined;\n if (isObject(proto = getPrototypeOf(target))) return get(proto, propertyKey, receiver);\n}\n\n$export($export.S, 'Reflect', { get: get });\n","// 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)\nvar gOPD = require('./_object-gopd');\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey) {\n return gOPD.f(anObject(target), propertyKey);\n }\n});\n","// 26.1.8 Reflect.getPrototypeOf(target)\nvar $export = require('./_export');\nvar getProto = require('./_object-gpo');\nvar anObject = require('./_an-object');\n\n$export($export.S, 'Reflect', {\n getPrototypeOf: function getPrototypeOf(target) {\n return getProto(anObject(target));\n }\n});\n","// 26.1.9 Reflect.has(target, propertyKey)\nvar $export = require('./_export');\n\n$export($export.S, 'Reflect', {\n has: function has(target, propertyKey) {\n return propertyKey in target;\n }\n});\n","// 26.1.10 Reflect.isExtensible(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar $isExtensible = Object.isExtensible;\n\n$export($export.S, 'Reflect', {\n isExtensible: function isExtensible(target) {\n anObject(target);\n return $isExtensible ? $isExtensible(target) : true;\n }\n});\n","// 26.1.11 Reflect.ownKeys(target)\nvar $export = require('./_export');\n\n$export($export.S, 'Reflect', { ownKeys: require('./_own-keys') });\n","// 26.1.12 Reflect.preventExtensions(target)\nvar $export = require('./_export');\nvar anObject = require('./_an-object');\nvar $preventExtensions = Object.preventExtensions;\n\n$export($export.S, 'Reflect', {\n preventExtensions: function preventExtensions(target) {\n anObject(target);\n try {\n if ($preventExtensions) $preventExtensions(target);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","// 26.1.13 Reflect.set(target, propertyKey, V [, receiver])\nvar dP = require('./_object-dp');\nvar gOPD = require('./_object-gopd');\nvar getPrototypeOf = require('./_object-gpo');\nvar has = require('./_has');\nvar $export = require('./_export');\nvar createDesc = require('./_property-desc');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\n\nfunction set(target, propertyKey, V /* , receiver */) {\n var receiver = arguments.length < 4 ? target : arguments[3];\n var ownDesc = gOPD.f(anObject(target), propertyKey);\n var existingDescriptor, proto;\n if (!ownDesc) {\n if (isObject(proto = getPrototypeOf(target))) {\n return set(proto, propertyKey, V, receiver);\n }\n ownDesc = createDesc(0);\n }\n if (has(ownDesc, 'value')) {\n if (ownDesc.writable === false || !isObject(receiver)) return false;\n if (existingDescriptor = gOPD.f(receiver, propertyKey)) {\n if (existingDescriptor.get || existingDescriptor.set || existingDescriptor.writable === false) return false;\n existingDescriptor.value = V;\n dP.f(receiver, propertyKey, existingDescriptor);\n } else dP.f(receiver, propertyKey, createDesc(0, V));\n return true;\n }\n return ownDesc.set === undefined ? false : (ownDesc.set.call(receiver, V), true);\n}\n\n$export($export.S, 'Reflect', { set: set });\n","// 26.1.14 Reflect.setPrototypeOf(target, proto)\nvar $export = require('./_export');\nvar setProto = require('./_set-proto');\n\nif (setProto) $export($export.S, 'Reflect', {\n setPrototypeOf: function setPrototypeOf(target, proto) {\n setProto.check(target, proto);\n try {\n setProto.set(target, proto);\n return true;\n } catch (e) {\n return false;\n }\n }\n});\n","'use strict';\nvar LIBRARY = require('./_library');\nvar global = require('./_global');\nvar ctx = require('./_ctx');\nvar classof = require('./_classof');\nvar $export = require('./_export');\nvar isObject = require('./_is-object');\nvar aFunction = require('./_a-function');\nvar anInstance = require('./_an-instance');\nvar forOf = require('./_for-of');\nvar speciesConstructor = require('./_species-constructor');\nvar task = require('./_task').set;\nvar microtask = require('./_microtask')();\nvar newPromiseCapabilityModule = require('./_new-promise-capability');\nvar perform = require('./_perform');\nvar promiseResolve = require('./_promise-resolve');\nvar PROMISE = 'Promise';\nvar TypeError = global.TypeError;\nvar process = global.process;\nvar $Promise = global[PROMISE];\nvar isNode = classof(process) == 'process';\nvar empty = function () { /* empty */ };\nvar Internal, newGenericPromiseCapability, OwnPromiseCapability, Wrapper;\nvar newPromiseCapability = newGenericPromiseCapability = newPromiseCapabilityModule.f;\n\nvar USE_NATIVE = !!function () {\n try {\n // correct subclassing with @@species support\n var promise = $Promise.resolve(1);\n var FakePromise = (promise.constructor = {})[require('./_wks')('species')] = function (exec) {\n exec(empty, empty);\n };\n // unhandled rejections tracking support, NodeJS Promise without it fails @@species test\n return (isNode || typeof PromiseRejectionEvent == 'function') && promise.then(empty) instanceof FakePromise;\n } catch (e) { /* empty */ }\n}();\n\n// helpers\nvar isThenable = function (it) {\n var then;\n return isObject(it) && typeof (then = it.then) == 'function' ? then : false;\n};\nvar notify = function (promise, isReject) {\n if (promise._n) return;\n promise._n = true;\n var chain = promise._c;\n microtask(function () {\n var value = promise._v;\n var ok = promise._s == 1;\n var i = 0;\n var run = function (reaction) {\n var handler = ok ? reaction.ok : reaction.fail;\n var resolve = reaction.resolve;\n var reject = reaction.reject;\n var domain = reaction.domain;\n var result, then, exited;\n try {\n if (handler) {\n if (!ok) {\n if (promise._h == 2) onHandleUnhandled(promise);\n promise._h = 1;\n }\n if (handler === true) result = value;\n else {\n if (domain) domain.enter();\n result = handler(value); // may throw\n if (domain) {\n domain.exit();\n exited = true;\n }\n }\n if (result === reaction.promise) {\n reject(TypeError('Promise-chain cycle'));\n } else if (then = isThenable(result)) {\n then.call(result, resolve, reject);\n } else resolve(result);\n } else reject(value);\n } catch (e) {\n if (domain && !exited) domain.exit();\n reject(e);\n }\n };\n while (chain.length > i) run(chain[i++]); // variable length - can't use forEach\n promise._c = [];\n promise._n = false;\n if (isReject && !promise._h) onUnhandled(promise);\n });\n};\nvar onUnhandled = function (promise) {\n task.call(global, function () {\n var value = promise._v;\n var unhandled = isUnhandled(promise);\n var result, handler, console;\n if (unhandled) {\n result = perform(function () {\n if (isNode) {\n process.emit('unhandledRejection', value, promise);\n } else if (handler = global.onunhandledrejection) {\n handler({ promise: promise, reason: value });\n } else if ((console = global.console) && console.error) {\n console.error('Unhandled promise rejection', value);\n }\n });\n // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should\n promise._h = isNode || isUnhandled(promise) ? 2 : 1;\n } promise._a = undefined;\n if (unhandled && result.e) throw result.v;\n });\n};\nvar isUnhandled = function (promise) {\n return promise._h !== 1 && (promise._a || promise._c).length === 0;\n};\nvar onHandleUnhandled = function (promise) {\n task.call(global, function () {\n var handler;\n if (isNode) {\n process.emit('rejectionHandled', promise);\n } else if (handler = global.onrejectionhandled) {\n handler({ promise: promise, reason: promise._v });\n }\n });\n};\nvar $reject = function (value) {\n var promise = this;\n if (promise._d) return;\n promise._d = true;\n promise = promise._w || promise; // unwrap\n promise._v = value;\n promise._s = 2;\n if (!promise._a) promise._a = promise._c.slice();\n notify(promise, true);\n};\nvar $resolve = function (value) {\n var promise = this;\n var then;\n if (promise._d) return;\n promise._d = true;\n promise = promise._w || promise; // unwrap\n try {\n if (promise === value) throw TypeError(\"Promise can't be resolved itself\");\n if (then = isThenable(value)) {\n microtask(function () {\n var wrapper = { _w: promise, _d: false }; // wrap\n try {\n then.call(value, ctx($resolve, wrapper, 1), ctx($reject, wrapper, 1));\n } catch (e) {\n $reject.call(wrapper, e);\n }\n });\n } else {\n promise._v = value;\n promise._s = 1;\n notify(promise, false);\n }\n } catch (e) {\n $reject.call({ _w: promise, _d: false }, e); // wrap\n }\n};\n\n// constructor polyfill\nif (!USE_NATIVE) {\n // 25.4.3.1 Promise(executor)\n $Promise = function Promise(executor) {\n anInstance(this, $Promise, PROMISE, '_h');\n aFunction(executor);\n Internal.call(this);\n try {\n executor(ctx($resolve, this, 1), ctx($reject, this, 1));\n } catch (err) {\n $reject.call(this, err);\n }\n };\n // eslint-disable-next-line no-unused-vars\n Internal = function Promise(executor) {\n this._c = []; // <- awaiting reactions\n this._a = undefined; // <- checked in isUnhandled reactions\n this._s = 0; // <- state\n this._d = false; // <- done\n this._v = undefined; // <- value\n this._h = 0; // <- rejection state, 0 - default, 1 - handled, 2 - unhandled\n this._n = false; // <- notify\n };\n Internal.prototype = require('./_redefine-all')($Promise.prototype, {\n // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)\n then: function then(onFulfilled, onRejected) {\n var reaction = newPromiseCapability(speciesConstructor(this, $Promise));\n reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;\n reaction.fail = typeof onRejected == 'function' && onRejected;\n reaction.domain = isNode ? process.domain : undefined;\n this._c.push(reaction);\n if (this._a) this._a.push(reaction);\n if (this._s) notify(this, false);\n return reaction.promise;\n },\n // 25.4.5.1 Promise.prototype.catch(onRejected)\n 'catch': function (onRejected) {\n return this.then(undefined, onRejected);\n }\n });\n OwnPromiseCapability = function () {\n var promise = new Internal();\n this.promise = promise;\n this.resolve = ctx($resolve, promise, 1);\n this.reject = ctx($reject, promise, 1);\n };\n newPromiseCapabilityModule.f = newPromiseCapability = function (C) {\n return C === $Promise || C === Wrapper\n ? new OwnPromiseCapability(C)\n : newGenericPromiseCapability(C);\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Promise: $Promise });\nrequire('./_set-to-string-tag')($Promise, PROMISE);\nrequire('./_set-species')(PROMISE);\nWrapper = require('./_core')[PROMISE];\n\n// statics\n$export($export.S + $export.F * !USE_NATIVE, PROMISE, {\n // 25.4.4.5 Promise.reject(r)\n reject: function reject(r) {\n var capability = newPromiseCapability(this);\n var $$reject = capability.reject;\n $$reject(r);\n return capability.promise;\n }\n});\n$export($export.S + $export.F * (LIBRARY || !USE_NATIVE), PROMISE, {\n // 25.4.4.6 Promise.resolve(x)\n resolve: function resolve(x) {\n return promiseResolve(LIBRARY && this === Wrapper ? $Promise : this, x);\n }\n});\n$export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(function (iter) {\n $Promise.all(iter)['catch'](empty);\n})), PROMISE, {\n // 25.4.4.1 Promise.all(iterable)\n all: function all(iterable) {\n var C = this;\n var capability = newPromiseCapability(C);\n var resolve = capability.resolve;\n var reject = capability.reject;\n var result = perform(function () {\n var values = [];\n var index = 0;\n var remaining = 1;\n forOf(iterable, false, function (promise) {\n var $index = index++;\n var alreadyCalled = false;\n values.push(undefined);\n remaining++;\n C.resolve(promise).then(function (value) {\n if (alreadyCalled) return;\n alreadyCalled = true;\n values[$index] = value;\n --remaining || resolve(values);\n }, reject);\n });\n --remaining || resolve(values);\n });\n if (result.e) reject(result.v);\n return capability.promise;\n },\n // 25.4.4.4 Promise.race(iterable)\n race: function race(iterable) {\n var C = this;\n var capability = newPromiseCapability(C);\n var reject = capability.reject;\n var result = perform(function () {\n forOf(iterable, false, function (promise) {\n C.resolve(promise).then(capability.resolve, reject);\n });\n });\n if (result.e) reject(result.v);\n return capability.promise;\n }\n});\n","var global = require('./_global');\nvar macrotask = require('./_task').set;\nvar Observer = global.MutationObserver || global.WebKitMutationObserver;\nvar process = global.process;\nvar Promise = global.Promise;\nvar isNode = require('./_cof')(process) == 'process';\n\nmodule.exports = function () {\n var head, last, notify;\n\n var flush = function () {\n var parent, fn;\n if (isNode && (parent = process.domain)) parent.exit();\n while (head) {\n fn = head.fn;\n head = head.next;\n try {\n fn();\n } catch (e) {\n if (head) notify();\n else last = undefined;\n throw e;\n }\n } last = undefined;\n if (parent) parent.enter();\n };\n\n // Node.js\n if (isNode) {\n notify = function () {\n process.nextTick(flush);\n };\n // browsers with MutationObserver, except iOS Safari - https://github.com/zloirock/core-js/issues/339\n } else if (Observer && !(global.navigator && global.navigator.standalone)) {\n var toggle = true;\n var node = document.createTextNode('');\n new Observer(flush).observe(node, { characterData: true }); // eslint-disable-line no-new\n notify = function () {\n node.data = toggle = !toggle;\n };\n // environments with maybe non-completely correct, but existent Promise\n } else if (Promise && Promise.resolve) {\n var promise = Promise.resolve();\n notify = function () {\n promise.then(flush);\n };\n // for other environments - macrotask based on:\n // - setImmediate\n // - MessageChannel\n // - window.postMessag\n // - onreadystatechange\n // - setTimeout\n } else {\n notify = function () {\n // strange IE + webpack dev server bug - use .call(global)\n macrotask.call(global, flush);\n };\n }\n\n return function (fn) {\n var task = { fn: fn, next: undefined };\n if (last) last.next = task;\n if (!head) {\n head = task;\n notify();\n } last = task;\n };\n};\n","module.exports = function (exec) {\n try {\n return { e: false, v: exec() };\n } catch (e) {\n return { e: true, v: e };\n }\n};\n","var anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar newPromiseCapability = require('./_new-promise-capability');\n\nmodule.exports = function (C, x) {\n anObject(C);\n if (isObject(x) && x.constructor === C) return x;\n var promiseCapability = newPromiseCapability.f(C);\n var resolve = promiseCapability.resolve;\n resolve(x);\n return promiseCapability.promise;\n};\n","'use strict';\n// ECMAScript 6 symbols shim\nvar global = require('./_global');\nvar has = require('./_has');\nvar DESCRIPTORS = require('./_descriptors');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar META = require('./_meta').KEY;\nvar $fails = require('./_fails');\nvar shared = require('./_shared');\nvar setToStringTag = require('./_set-to-string-tag');\nvar uid = require('./_uid');\nvar wks = require('./_wks');\nvar wksExt = require('./_wks-ext');\nvar wksDefine = require('./_wks-define');\nvar enumKeys = require('./_enum-keys');\nvar isArray = require('./_is-array');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar createDesc = require('./_property-desc');\nvar _create = require('./_object-create');\nvar gOPNExt = require('./_object-gopn-ext');\nvar $GOPD = require('./_object-gopd');\nvar $DP = require('./_object-dp');\nvar $keys = require('./_object-keys');\nvar gOPD = $GOPD.f;\nvar dP = $DP.f;\nvar gOPN = gOPNExt.f;\nvar $Symbol = global.Symbol;\nvar $JSON = global.JSON;\nvar _stringify = $JSON && $JSON.stringify;\nvar PROTOTYPE = 'prototype';\nvar HIDDEN = wks('_hidden');\nvar TO_PRIMITIVE = wks('toPrimitive');\nvar isEnum = {}.propertyIsEnumerable;\nvar SymbolRegistry = shared('symbol-registry');\nvar AllSymbols = shared('symbols');\nvar OPSymbols = shared('op-symbols');\nvar ObjectProto = Object[PROTOTYPE];\nvar USE_NATIVE = typeof $Symbol == 'function';\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n return _create(dP({}, 'a', {\n get: function () { return dP(this, 'a', { value: 7 }).a; }\n })).a != 7;\n}) ? function (it, key, D) {\n var protoDesc = gOPD(ObjectProto, key);\n if (protoDesc) delete ObjectProto[key];\n dP(it, key, D);\n if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n} : dP;\n\nvar wrap = function (tag) {\n var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n sym._k = tag;\n return sym;\n};\n\nvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n return it instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(it, key, D) {\n if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n anObject(it);\n key = toPrimitive(key, true);\n anObject(D);\n if (has(AllSymbols, key)) {\n if (!D.enumerable) {\n if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n it[HIDDEN][key] = true;\n } else {\n if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n D = _create(D, { enumerable: createDesc(0, false) });\n } return setSymbolDesc(it, key, D);\n } return dP(it, key, D);\n};\nvar $defineProperties = function defineProperties(it, P) {\n anObject(it);\n var keys = enumKeys(P = toIObject(P));\n var i = 0;\n var l = keys.length;\n var key;\n while (l > i) $defineProperty(it, key = keys[i++], P[key]);\n return it;\n};\nvar $create = function create(it, P) {\n return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n};\nvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n var E = isEnum.call(this, key = toPrimitive(key, true));\n if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n};\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n it = toIObject(it);\n key = toPrimitive(key, true);\n if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n var D = gOPD(it, key);\n if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n return D;\n};\nvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n var names = gOPN(toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n } return result;\n};\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n var IS_OP = it === ObjectProto;\n var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n } return result;\n};\n\n// 19.4.1.1 Symbol([description])\nif (!USE_NATIVE) {\n $Symbol = function Symbol() {\n if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n var $set = function (value) {\n if (this === ObjectProto) $set.call(OPSymbols, value);\n if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n setSymbolDesc(this, tag, createDesc(1, value));\n };\n if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n return wrap(tag);\n };\n redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n return this._k;\n });\n\n $GOPD.f = $getOwnPropertyDescriptor;\n $DP.f = $defineProperty;\n require('./_object-gopn').f = gOPNExt.f = $getOwnPropertyNames;\n require('./_object-pie').f = $propertyIsEnumerable;\n require('./_object-gops').f = $getOwnPropertySymbols;\n\n if (DESCRIPTORS && !require('./_library')) {\n redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n }\n\n wksExt.f = function (name) {\n return wrap(wks(name));\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\nfor (var es6Symbols = (\n // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);\n\nfor (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);\n\n$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n // 19.4.2.1 Symbol.for(key)\n 'for': function (key) {\n return has(SymbolRegistry, key += '')\n ? SymbolRegistry[key]\n : SymbolRegistry[key] = $Symbol(key);\n },\n // 19.4.2.5 Symbol.keyFor(sym)\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');\n for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;\n },\n useSetter: function () { setter = true; },\n useSimple: function () { setter = false; }\n});\n\n$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n // 19.1.2.2 Object.create(O [, Properties])\n create: $create,\n // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n defineProperty: $defineProperty,\n // 19.1.2.3 Object.defineProperties(O, Properties)\n defineProperties: $defineProperties,\n // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n // 19.1.2.7 Object.getOwnPropertyNames(O)\n getOwnPropertyNames: $getOwnPropertyNames,\n // 19.1.2.8 Object.getOwnPropertySymbols(O)\n getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// 24.3.2 JSON.stringify(value [, replacer [, space]])\n$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n var S = $Symbol();\n // MS Edge converts symbol values to JSON as {}\n // WebKit converts symbol values to JSON as null\n // V8 throws on boxed symbols\n return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n})), 'JSON', {\n stringify: function stringify(it) {\n var args = [it];\n var i = 1;\n var replacer, $replacer;\n while (arguments.length > i) args.push(arguments[i++]);\n $replacer = replacer = args[1];\n if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n if (!isArray(replacer)) replacer = function (key, value) {\n if (typeof $replacer == 'function') value = $replacer.call(this, key, value);\n if (!isSymbol(value)) return value;\n };\n args[1] = replacer;\n return _stringify.apply($JSON, args);\n }\n});\n\n// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n$Symbol[PROTOTYPE][TO_PRIMITIVE] || require('./_hide')($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// 19.4.3.5 Symbol.prototype[@@toStringTag]\nsetToStringTag($Symbol, 'Symbol');\n// 20.2.1.9 Math[@@toStringTag]\nsetToStringTag(Math, 'Math', true);\n// 24.3.3 JSON[@@toStringTag]\nsetToStringTag(global.JSON, 'JSON', true);\n","var global = require('./_global');\nvar core = require('./_core');\nvar LIBRARY = require('./_library');\nvar wksExt = require('./_wks-ext');\nvar defineProperty = require('./_object-dp').f;\nmodule.exports = function (name) {\n var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n};\n","// all enumerable object keys, includes symbols\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nmodule.exports = function (it) {\n var result = getKeys(it);\n var getSymbols = gOPS.f;\n if (getSymbols) {\n var symbols = getSymbols(it);\n var isEnum = pIE.f;\n var i = 0;\n var key;\n while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n } return result;\n};\n","// 19.1.2.5 Object.freeze(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('freeze', function ($freeze) {\n return function freeze(it) {\n return $freeze && isObject(it) ? $freeze(meta(it)) : it;\n };\n});\n","// 19.1.2.17 Object.seal(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('seal', function ($seal) {\n return function seal(it) {\n return $seal && isObject(it) ? $seal(meta(it)) : it;\n };\n});\n","// 19.1.2.15 Object.preventExtensions(O)\nvar isObject = require('./_is-object');\nvar meta = require('./_meta').onFreeze;\n\nrequire('./_object-sap')('preventExtensions', function ($preventExtensions) {\n return function preventExtensions(it) {\n return $preventExtensions && isObject(it) ? $preventExtensions(meta(it)) : it;\n };\n});\n","// 19.1.2.12 Object.isFrozen(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isFrozen', function ($isFrozen) {\n return function isFrozen(it) {\n return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;\n };\n});\n","// 19.1.2.13 Object.isSealed(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isSealed', function ($isSealed) {\n return function isSealed(it) {\n return isObject(it) ? $isSealed ? $isSealed(it) : false : true;\n };\n});\n","// 19.1.2.11 Object.isExtensible(O)\nvar isObject = require('./_is-object');\n\nrequire('./_object-sap')('isExtensible', function ($isExtensible) {\n return function isExtensible(it) {\n return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;\n };\n});\n","// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\nvar toIObject = require('./_to-iobject');\nvar $getOwnPropertyDescriptor = require('./_object-gopd').f;\n\nrequire('./_object-sap')('getOwnPropertyDescriptor', function () {\n return function getOwnPropertyDescriptor(it, key) {\n return $getOwnPropertyDescriptor(toIObject(it), key);\n };\n});\n","// 19.1.2.9 Object.getPrototypeOf(O)\nvar toObject = require('./_to-object');\nvar $getPrototypeOf = require('./_object-gpo');\n\nrequire('./_object-sap')('getPrototypeOf', function () {\n return function getPrototypeOf(it) {\n return $getPrototypeOf(toObject(it));\n };\n});\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// 19.1.2.7 Object.getOwnPropertyNames(O)\nrequire('./_object-sap')('getOwnPropertyNames', function () {\n return require('./_object-gopn-ext').f;\n});\n","// 19.1.3.1 Object.assign(target, source)\nvar $export = require('./_export');\n\n$export($export.S + $export.F, 'Object', { assign: require('./_object-assign') });\n","// 19.1.3.10 Object.is(value1, value2)\nvar $export = require('./_export');\n$export($export.S, 'Object', { is: require('./_same-value') });\n","// 7.2.9 SameValue(x, y)\nmodule.exports = Object.is || function is(x, y) {\n // eslint-disable-next-line no-self-compare\n return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;\n};\n","// 19.1.3.19 Object.setPrototypeOf(O, proto)\nvar $export = require('./_export');\n$export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set });\n","var dP = require('./_object-dp').f;\nvar FProto = Function.prototype;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name';\n\n// 19.2.4.2 name\nNAME in FProto || require('./_descriptors') && dP(FProto, NAME, {\n configurable: true,\n get: function () {\n try {\n return ('' + this).match(nameRE)[1];\n } catch (e) {\n return '';\n }\n }\n});\n","var $export = require('./_export');\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\n\n$export($export.S, 'String', {\n // 21.1.2.4 String.raw(callSite, ...substitutions)\n raw: function raw(callSite) {\n var tpl = toIObject(callSite.raw);\n var len = toLength(tpl.length);\n var aLen = arguments.length;\n var res = [];\n var i = 0;\n while (len > i) {\n res.push(String(tpl[i++]));\n if (i < aLen) res.push(String(arguments[i]));\n } return res.join('');\n }\n});\n","var $export = require('./_export');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nvar fromCharCode = String.fromCharCode;\nvar $fromCodePoint = String.fromCodePoint;\n\n// length should be 1, old FF problem\n$export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {\n // 21.1.2.2 String.fromCodePoint(...codePoints)\n fromCodePoint: function fromCodePoint(x) { // eslint-disable-line no-unused-vars\n var res = [];\n var aLen = arguments.length;\n var i = 0;\n var code;\n while (aLen > i) {\n code = +arguments[i++];\n if (toAbsoluteIndex(code, 0x10ffff) !== code) throw RangeError(code + ' is not a valid code point');\n res.push(code < 0x10000\n ? fromCharCode(code)\n : fromCharCode(((code -= 0x10000) >> 10) + 0xd800, code % 0x400 + 0xdc00)\n );\n } return res.join('');\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar $at = require('./_string-at')(false);\n$export($export.P, 'String', {\n // 21.1.3.3 String.prototype.codePointAt(pos)\n codePointAt: function codePointAt(pos) {\n return $at(this, pos);\n }\n});\n","var toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n// true -> String#at\n// false -> String#codePointAt\nmodule.exports = function (TO_STRING) {\n return function (that, pos) {\n var s = String(defined(that));\n var i = toInteger(pos);\n var l = s.length;\n var a, b;\n if (i < 0 || i >= l) return TO_STRING ? '' : undefined;\n a = s.charCodeAt(i);\n return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff\n ? TO_STRING ? s.charAt(i) : a\n : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;\n };\n};\n","var $export = require('./_export');\n\n$export($export.P, 'String', {\n // 21.1.3.13 String.prototype.repeat(count)\n repeat: require('./_string-repeat')\n});\n","// 21.1.3.18 String.prototype.startsWith(searchString [, position ])\n'use strict';\nvar $export = require('./_export');\nvar toLength = require('./_to-length');\nvar context = require('./_string-context');\nvar STARTS_WITH = 'startsWith';\nvar $startsWith = ''[STARTS_WITH];\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'String', {\n startsWith: function startsWith(searchString /* , position = 0 */) {\n var that = context(this, searchString, STARTS_WITH);\n var index = toLength(Math.min(arguments.length > 1 ? arguments[1] : undefined, that.length));\n var search = String(searchString);\n return $startsWith\n ? $startsWith.call(that, search, index)\n : that.slice(index, index + search.length) === search;\n }\n});\n","// 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])\n'use strict';\nvar $export = require('./_export');\nvar toLength = require('./_to-length');\nvar context = require('./_string-context');\nvar ENDS_WITH = 'endsWith';\nvar $endsWith = ''[ENDS_WITH];\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'String', {\n endsWith: function endsWith(searchString /* , endPosition = @length */) {\n var that = context(this, searchString, ENDS_WITH);\n var endPosition = arguments.length > 1 ? arguments[1] : undefined;\n var len = toLength(that.length);\n var end = endPosition === undefined ? len : Math.min(toLength(endPosition), len);\n var search = String(searchString);\n return $endsWith\n ? $endsWith.call(that, search, end)\n : that.slice(end - search.length, end) === search;\n }\n});\n","// 21.1.3.7 String.prototype.includes(searchString, position = 0)\n'use strict';\nvar $export = require('./_export');\nvar context = require('./_string-context');\nvar INCLUDES = 'includes';\n\n$export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String', {\n includes: function includes(searchString /* , position = 0 */) {\n return !!~context(this, searchString, INCLUDES)\n .indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","// 21.2.5.3 get RegExp.prototype.flags()\nif (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', {\n configurable: true,\n get: require('./_flags')\n});\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","// @@match logic\nrequire('./_fix-re-wks')('match', 1, function (defined, MATCH, $match) {\n // 21.1.3.11 String.prototype.match(regexp)\n return [function match(regexp) {\n 'use strict';\n var O = defined(this);\n var fn = regexp == undefined ? undefined : regexp[MATCH];\n return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));\n }, $match];\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","// @@split logic\nrequire('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split) {\n 'use strict';\n var isRegExp = require('./_is-regexp');\n var _split = $split;\n var $push = [].push;\n var $SPLIT = 'split';\n var LENGTH = 'length';\n var LAST_INDEX = 'lastIndex';\n if (\n 'abbc'[$SPLIT](/(b)*/)[1] == 'c' ||\n 'test'[$SPLIT](/(?:)/, -1)[LENGTH] != 4 ||\n 'ab'[$SPLIT](/(?:ab)*/)[LENGTH] != 2 ||\n '.'[$SPLIT](/(.?)(.?)/)[LENGTH] != 4 ||\n '.'[$SPLIT](/()()/)[LENGTH] > 1 ||\n ''[$SPLIT](/.?/)[LENGTH]\n ) {\n var NPCG = /()??/.exec('')[1] === undefined; // nonparticipating capturing group\n // based on es5-shim implementation, need to rework it\n $split = function (separator, limit) {\n var string = String(this);\n if (separator === undefined && limit === 0) return [];\n // If `separator` is not a regex, use native split\n if (!isRegExp(separator)) return _split.call(string, separator, limit);\n var output = [];\n var flags = (separator.ignoreCase ? 'i' : '') +\n (separator.multiline ? 'm' : '') +\n (separator.unicode ? 'u' : '') +\n (separator.sticky ? 'y' : '');\n var lastLastIndex = 0;\n var splitLimit = limit === undefined ? 4294967295 : limit >>> 0;\n // Make `global` and avoid `lastIndex` issues by working with a copy\n var separatorCopy = new RegExp(separator.source, flags + 'g');\n var separator2, match, lastIndex, lastLength, i;\n // Doesn't need flags gy, but they don't hurt\n if (!NPCG) separator2 = new RegExp('^' + separatorCopy.source + '$(?!\\\\s)', flags);\n while (match = separatorCopy.exec(string)) {\n // `separatorCopy.lastIndex` is not reliable cross-browser\n lastIndex = match.index + match[0][LENGTH];\n if (lastIndex > lastLastIndex) {\n output.push(string.slice(lastLastIndex, match.index));\n // Fix browsers whose `exec` methods don't consistently return `undefined` for NPCG\n // eslint-disable-next-line no-loop-func\n if (!NPCG && match[LENGTH] > 1) match[0].replace(separator2, function () {\n for (i = 1; i < arguments[LENGTH] - 2; i++) if (arguments[i] === undefined) match[i] = undefined;\n });\n if (match[LENGTH] > 1 && match.index < string[LENGTH]) $push.apply(output, match.slice(1));\n lastLength = match[0][LENGTH];\n lastLastIndex = lastIndex;\n if (output[LENGTH] >= splitLimit) break;\n }\n if (separatorCopy[LAST_INDEX] === match.index) separatorCopy[LAST_INDEX]++; // Avoid an infinite loop\n }\n if (lastLastIndex === string[LENGTH]) {\n if (lastLength || !separatorCopy.test('')) output.push('');\n } else output.push(string.slice(lastLastIndex));\n return output[LENGTH] > splitLimit ? output.slice(0, splitLimit) : output;\n };\n // Chakra, V8\n } else if ('0'[$SPLIT](undefined, 0)[LENGTH]) {\n $split = function (separator, limit) {\n return separator === undefined && limit === 0 ? [] : _split.call(this, separator, limit);\n };\n }\n // 21.1.3.17 String.prototype.split(separator, limit)\n return [function split(separator, limit) {\n var O = defined(this);\n var fn = separator == undefined ? undefined : separator[SPLIT];\n return fn !== undefined ? fn.call(separator, O, limit) : $split.call(String(O), separator, limit);\n }, $split];\n});\n","// @@search logic\nrequire('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) {\n // 21.1.3.15 String.prototype.search(regexp)\n return [function search(regexp) {\n 'use strict';\n var O = defined(this);\n var fn = regexp == undefined ? undefined : regexp[SEARCH];\n return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));\n }, $search];\n});\n","'use strict';\nvar ctx = require('./_ctx');\nvar $export = require('./_export');\nvar toObject = require('./_to-object');\nvar call = require('./_iter-call');\nvar isArrayIter = require('./_is-array-iter');\nvar toLength = require('./_to-length');\nvar createProperty = require('./_create-property');\nvar getIterFn = require('./core.get-iterator-method');\n\n$export($export.S + $export.F * !require('./_iter-detect')(function (iter) { Array.from(iter); }), 'Array', {\n // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)\n from: function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {\n var O = toObject(arrayLike);\n var C = typeof this == 'function' ? this : Array;\n var aLen = arguments.length;\n var mapfn = aLen > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var index = 0;\n var iterFn = getIterFn(O);\n var length, result, step, iterator;\n if (mapping) mapfn = ctx(mapfn, aLen > 2 ? arguments[2] : undefined, 2);\n // if object isn't iterable or it's array with default iterator - use simple case\n if (iterFn != undefined && !(C == Array && isArrayIter(iterFn))) {\n for (iterator = iterFn.call(O), result = new C(); !(step = iterator.next()).done; index++) {\n createProperty(result, index, mapping ? call(iterator, mapfn, [step.value, index], true) : step.value);\n }\n } else {\n length = toLength(O.length);\n for (result = new C(length); length > index; index++) {\n createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);\n }\n }\n result.length = index;\n return result;\n }\n});\n","'use strict';\nvar $export = require('./_export');\nvar createProperty = require('./_create-property');\n\n// WebKit Array.of isn't generic\n$export($export.S + $export.F * require('./_fails')(function () {\n function F() { /* empty */ }\n return !(Array.of.call(F) instanceof F);\n}), 'Array', {\n // 22.1.2.3 Array.of( ...items)\n of: function of(/* ...args */) {\n var index = 0;\n var aLen = arguments.length;\n var result = new (typeof this == 'function' ? this : Array)(aLen);\n while (aLen > index) createProperty(result, index, arguments[index++]);\n result.length = aLen;\n return result;\n }\n});\n","// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)\nvar $export = require('./_export');\n\n$export($export.P, 'Array', { copyWithin: require('./_array-copy-within') });\n\nrequire('./_add-to-unscopables')('copyWithin');\n","'use strict';\n// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(5);\nvar KEY = 'find';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","'use strict';\n// 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)\nvar $export = require('./_export');\nvar $find = require('./_array-methods')(6);\nvar KEY = 'findIndex';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n findIndex: function findIndex(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\nrequire('./_add-to-unscopables')(KEY);\n","// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)\nvar $export = require('./_export');\n\n$export($export.P, 'Array', { fill: require('./_array-fill') });\n\nrequire('./_add-to-unscopables')('fill');\n","// 20.1.2.2 Number.isFinite(number)\nvar $export = require('./_export');\nvar _isFinite = require('./_global').isFinite;\n\n$export($export.S, 'Number', {\n isFinite: function isFinite(it) {\n return typeof it == 'number' && _isFinite(it);\n }\n});\n","// 20.1.2.3 Number.isInteger(number)\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { isInteger: require('./_is-integer') });\n","// 20.1.2.5 Number.isSafeInteger(number)\nvar $export = require('./_export');\nvar isInteger = require('./_is-integer');\nvar abs = Math.abs;\n\n$export($export.S, 'Number', {\n isSafeInteger: function isSafeInteger(number) {\n return isInteger(number) && abs(number) <= 0x1fffffffffffff;\n }\n});\n","// 20.1.2.4 Number.isNaN(number)\nvar $export = require('./_export');\n\n$export($export.S, 'Number', {\n isNaN: function isNaN(number) {\n // eslint-disable-next-line no-self-compare\n return number != number;\n }\n});\n","// 20.1.2.1 Number.EPSILON\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { EPSILON: Math.pow(2, -52) });\n","// 20.1.2.10 Number.MIN_SAFE_INTEGER\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff });\n","// 20.1.2.6 Number.MAX_SAFE_INTEGER\nvar $export = require('./_export');\n\n$export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff });\n","// 20.2.2.3 Math.acosh(x)\nvar $export = require('./_export');\nvar log1p = require('./_math-log1p');\nvar sqrt = Math.sqrt;\nvar $acosh = Math.acosh;\n\n$export($export.S + $export.F * !($acosh\n // V8 bug: https://code.google.com/p/v8/issues/detail?id=3509\n && Math.floor($acosh(Number.MAX_VALUE)) == 710\n // Tor Browser bug: Math.acosh(Infinity) -> NaN\n && $acosh(Infinity) == Infinity\n), 'Math', {\n acosh: function acosh(x) {\n return (x = +x) < 1 ? NaN : x > 94906265.62425156\n ? Math.log(x) + Math.LN2\n : log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));\n }\n});\n","// 20.2.2.5 Math.asinh(x)\nvar $export = require('./_export');\nvar $asinh = Math.asinh;\n\nfunction asinh(x) {\n return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));\n}\n\n// Tor Browser bug: Math.asinh(0) -> -0\n$export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh });\n","// 20.2.2.7 Math.atanh(x)\nvar $export = require('./_export');\nvar $atanh = Math.atanh;\n\n// Tor Browser bug: Math.atanh(-0) -> 0\n$export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', {\n atanh: function atanh(x) {\n return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;\n }\n});\n","// 20.2.2.9 Math.cbrt(x)\nvar $export = require('./_export');\nvar sign = require('./_math-sign');\n\n$export($export.S, 'Math', {\n cbrt: function cbrt(x) {\n return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);\n }\n});\n","// 20.2.2.11 Math.clz32(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n clz32: function clz32(x) {\n return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;\n }\n});\n","// 20.2.2.12 Math.cosh(x)\nvar $export = require('./_export');\nvar exp = Math.exp;\n\n$export($export.S, 'Math', {\n cosh: function cosh(x) {\n return (exp(x = +x) + exp(-x)) / 2;\n }\n});\n","// 20.2.2.14 Math.expm1(x)\nvar $export = require('./_export');\nvar $expm1 = require('./_math-expm1');\n\n$export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 });\n","// 20.2.2.16 Math.fround(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { fround: require('./_math-fround') });\n","// 20.2.2.16 Math.fround(x)\nvar sign = require('./_math-sign');\nvar pow = Math.pow;\nvar EPSILON = pow(2, -52);\nvar EPSILON32 = pow(2, -23);\nvar MAX32 = pow(2, 127) * (2 - EPSILON32);\nvar MIN32 = pow(2, -126);\n\nvar roundTiesToEven = function (n) {\n return n + 1 / EPSILON - 1 / EPSILON;\n};\n\nmodule.exports = Math.fround || function fround(x) {\n var $abs = Math.abs(x);\n var $sign = sign(x);\n var a, result;\n if ($abs < MIN32) return $sign * roundTiesToEven($abs / MIN32 / EPSILON32) * MIN32 * EPSILON32;\n a = (1 + EPSILON32 / EPSILON) * $abs;\n result = a - (a - $abs);\n // eslint-disable-next-line no-self-compare\n if (result > MAX32 || result != result) return $sign * Infinity;\n return $sign * result;\n};\n","// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])\nvar $export = require('./_export');\nvar abs = Math.abs;\n\n$export($export.S, 'Math', {\n hypot: function hypot(value1, value2) { // eslint-disable-line no-unused-vars\n var sum = 0;\n var i = 0;\n var aLen = arguments.length;\n var larg = 0;\n var arg, div;\n while (i < aLen) {\n arg = abs(arguments[i++]);\n if (larg < arg) {\n div = larg / arg;\n sum = sum * div * div + 1;\n larg = arg;\n } else if (arg > 0) {\n div = arg / larg;\n sum += div * div;\n } else sum += arg;\n }\n return larg === Infinity ? Infinity : larg * Math.sqrt(sum);\n }\n});\n","// 20.2.2.18 Math.imul(x, y)\nvar $export = require('./_export');\nvar $imul = Math.imul;\n\n// some WebKit versions fails with big numbers, some has wrong arity\n$export($export.S + $export.F * require('./_fails')(function () {\n return $imul(0xffffffff, 5) != -5 || $imul.length != 2;\n}), 'Math', {\n imul: function imul(x, y) {\n var UINT16 = 0xffff;\n var xn = +x;\n var yn = +y;\n var xl = UINT16 & xn;\n var yl = UINT16 & yn;\n return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);\n }\n});\n","// 20.2.2.20 Math.log1p(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { log1p: require('./_math-log1p') });\n","// 20.2.2.21 Math.log10(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n log10: function log10(x) {\n return Math.log(x) * Math.LOG10E;\n }\n});\n","// 20.2.2.22 Math.log2(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n log2: function log2(x) {\n return Math.log(x) / Math.LN2;\n }\n});\n","// 20.2.2.28 Math.sign(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', { sign: require('./_math-sign') });\n","// 20.2.2.30 Math.sinh(x)\nvar $export = require('./_export');\nvar expm1 = require('./_math-expm1');\nvar exp = Math.exp;\n\n// V8 near Chromium 38 has a problem with very small numbers\n$export($export.S + $export.F * require('./_fails')(function () {\n return !Math.sinh(-2e-17) != -2e-17;\n}), 'Math', {\n sinh: function sinh(x) {\n return Math.abs(x = +x) < 1\n ? (expm1(x) - expm1(-x)) / 2\n : (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);\n }\n});\n","// 20.2.2.33 Math.tanh(x)\nvar $export = require('./_export');\nvar expm1 = require('./_math-expm1');\nvar exp = Math.exp;\n\n$export($export.S, 'Math', {\n tanh: function tanh(x) {\n var a = expm1(x = +x);\n var b = expm1(-x);\n return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));\n }\n});\n","// 20.2.2.34 Math.trunc(x)\nvar $export = require('./_export');\n\n$export($export.S, 'Math', {\n trunc: function trunc(it) {\n return (it > 0 ? Math.floor : Math.ceil)(it);\n }\n});\n","'use strict';\n// https://github.com/tc39/Array.prototype.includes\nvar $export = require('./_export');\nvar $includes = require('./_array-includes')(true);\n\n$export($export.P, 'Array', {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\nrequire('./_add-to-unscopables')('includes');\n","// https://github.com/tc39/proposal-object-values-entries\nvar $export = require('./_export');\nvar $values = require('./_object-to-array')(false);\n\n$export($export.S, 'Object', {\n values: function values(it) {\n return $values(it);\n }\n});\n","// https://github.com/tc39/proposal-object-values-entries\nvar $export = require('./_export');\nvar $entries = require('./_object-to-array')(true);\n\n$export($export.S, 'Object', {\n entries: function entries(it) {\n return $entries(it);\n }\n});\n","// https://github.com/tc39/proposal-object-getownpropertydescriptors\nvar $export = require('./_export');\nvar ownKeys = require('./_own-keys');\nvar toIObject = require('./_to-iobject');\nvar gOPD = require('./_object-gopd');\nvar createProperty = require('./_create-property');\n\n$export($export.S, 'Object', {\n getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) {\n var O = toIObject(object);\n var getDesc = gOPD.f;\n var keys = ownKeys(O);\n var result = {};\n var i = 0;\n var key, desc;\n while (keys.length > i) {\n desc = getDesc(O, key = keys[i++]);\n if (desc !== undefined) createProperty(result, key, desc);\n }\n return result;\n }\n});\n","'use strict';\n// https://github.com/tc39/proposal-string-pad-start-end\nvar $export = require('./_export');\nvar $pad = require('./_string-pad');\nvar userAgent = require('./_user-agent');\n\n// https://github.com/zloirock/core-js/issues/280\n$export($export.P + $export.F * /Version\\/10\\.\\d+(\\.\\d+)? Safari\\//.test(userAgent), 'String', {\n padStart: function padStart(maxLength /* , fillString = ' ' */) {\n return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, true);\n }\n});\n","'use strict';\n// https://github.com/tc39/proposal-string-pad-start-end\nvar $export = require('./_export');\nvar $pad = require('./_string-pad');\nvar userAgent = require('./_user-agent');\n\n// https://github.com/zloirock/core-js/issues/280\n$export($export.P + $export.F * /Version\\/10\\.\\d+(\\.\\d+)? Safari\\//.test(userAgent), 'String', {\n padEnd: function padEnd(maxLength /* , fillString = ' ' */) {\n return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false);\n }\n});\n","// ie9- setTimeout & setInterval additional parameters fix\nvar global = require('./_global');\nvar $export = require('./_export');\nvar userAgent = require('./_user-agent');\nvar slice = [].slice;\nvar MSIE = /MSIE .\\./.test(userAgent); // <- dirty ie9- check\nvar wrap = function (set) {\n return function (fn, time /* , ...args */) {\n var boundArgs = arguments.length > 2;\n var args = boundArgs ? slice.call(arguments, 2) : false;\n return set(boundArgs ? function () {\n // eslint-disable-next-line no-new-func\n (typeof fn == 'function' ? fn : Function(fn)).apply(this, args);\n } : fn, time);\n };\n};\n$export($export.G + $export.B + $export.F * MSIE, {\n setTimeout: wrap(global.setTimeout),\n setInterval: wrap(global.setInterval)\n});\n","var $export = require('./_export');\nvar $task = require('./_task');\n$export($export.G + $export.B, {\n setImmediate: $task.set,\n clearImmediate: $task.clear\n});\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n!(function(global) {\n \"use strict\";\n\n var Op = Object.prototype;\n var hasOwn = Op.hasOwnProperty;\n var undefined; // More compressible than void 0.\n var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n var inModule = typeof module === \"object\";\n var runtime = global.regeneratorRuntime;\n if (runtime) {\n if (inModule) {\n // If regeneratorRuntime is defined globally and we're in a module,\n // make the exports object identical to regeneratorRuntime.\n module.exports = runtime;\n }\n // Don't bother evaluating the rest of this file if the runtime was\n // already defined globally.\n return;\n }\n\n // Define the runtime globally (as expected by generated code) as either\n // module.exports (if we're in a module) or a new, empty object.\n runtime = global.regeneratorRuntime = inModule ? module.exports : {};\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n var generator = Object.create(protoGenerator.prototype);\n var context = new Context(tryLocsList || []);\n\n // The ._invoke method unifies the implementations of the .next,\n // .throw, and .return methods.\n generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n return generator;\n }\n runtime.wrap = wrap;\n\n // Try/catch helper to minimize deoptimizations. Returns a completion\n // record like context.tryEntries[i].completion. This interface could\n // have been (and was previously) designed to take a closure to be\n // invoked without arguments, but in all the cases we care about we\n // already have an existing method we want to call, so there's no need\n // to create a new function object. We can even get away with assuming\n // the method takes exactly one argument, since that happens to be true\n // in every case, so we don't have to touch the arguments object. The\n // only additional allocation required is the completion record, which\n // has a stable shape and so hopefully should be cheap to allocate.\n function tryCatch(fn, obj, arg) {\n try {\n return { type: \"normal\", arg: fn.call(obj, arg) };\n } catch (err) {\n return { type: \"throw\", arg: err };\n }\n }\n\n var GenStateSuspendedStart = \"suspendedStart\";\n var GenStateSuspendedYield = \"suspendedYield\";\n var GenStateExecuting = \"executing\";\n var GenStateCompleted = \"completed\";\n\n // Returning this object from the innerFn has the same effect as\n // breaking out of the dispatch switch statement.\n var ContinueSentinel = {};\n\n // Dummy constructor functions that we use as the .constructor and\n // .constructor.prototype properties for functions that return Generator\n // objects. For full spec compliance, you may wish to configure your\n // minifier not to mangle the names of these two functions.\n function Generator() {}\n function GeneratorFunction() {}\n function GeneratorFunctionPrototype() {}\n\n // This is a polyfill for %IteratorPrototype% for environments that\n // don't natively support it.\n var IteratorPrototype = {};\n IteratorPrototype[iteratorSymbol] = function () {\n return this;\n };\n\n var getProto = Object.getPrototypeOf;\n var NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n if (NativeIteratorPrototype &&\n NativeIteratorPrototype !== Op &&\n hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {\n // This environment has a native %IteratorPrototype%; use it instead\n // of the polyfill.\n IteratorPrototype = NativeIteratorPrototype;\n }\n\n var Gp = GeneratorFunctionPrototype.prototype =\n Generator.prototype = Object.create(IteratorPrototype);\n GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;\n GeneratorFunctionPrototype.constructor = GeneratorFunction;\n GeneratorFunctionPrototype[toStringTagSymbol] =\n GeneratorFunction.displayName = \"GeneratorFunction\";\n\n // Helper for defining the .next, .throw, and .return methods of the\n // Iterator interface in terms of a single ._invoke method.\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function(method) {\n prototype[method] = function(arg) {\n return this._invoke(method, arg);\n };\n });\n }\n\n runtime.isGeneratorFunction = function(genFun) {\n var ctor = typeof genFun === \"function\" && genFun.constructor;\n return ctor\n ? ctor === GeneratorFunction ||\n // For the native GeneratorFunction constructor, the best we can\n // do is to check its .name property.\n (ctor.displayName || ctor.name) === \"GeneratorFunction\"\n : false;\n };\n\n runtime.mark = function(genFun) {\n if (Object.setPrototypeOf) {\n Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);\n } else {\n genFun.__proto__ = GeneratorFunctionPrototype;\n if (!(toStringTagSymbol in genFun)) {\n genFun[toStringTagSymbol] = \"GeneratorFunction\";\n }\n }\n genFun.prototype = Object.create(Gp);\n return genFun;\n };\n\n // Within the body of any async function, `await x` is transformed to\n // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test\n // `hasOwn.call(value, \"__await\")` to determine if the yielded value is\n // meant to be awaited.\n runtime.awrap = function(arg) {\n return { __await: arg };\n };\n\n function AsyncIterator(generator) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n if (record.type === \"throw\") {\n reject(record.arg);\n } else {\n var result = record.arg;\n var value = result.value;\n if (value &&\n typeof value === \"object\" &&\n hasOwn.call(value, \"__await\")) {\n return Promise.resolve(value.__await).then(function(value) {\n invoke(\"next\", value, resolve, reject);\n }, function(err) {\n invoke(\"throw\", err, resolve, reject);\n });\n }\n\n return Promise.resolve(value).then(function(unwrapped) {\n // When a yielded Promise is resolved, its final value becomes\n // the .value of the Promise<{value,done}> result for the\n // current iteration. If the Promise is rejected, however, the\n // result for this iteration will be rejected with the same\n // reason. Note that rejections of yielded Promises are not\n // thrown back into the generator function, as is the case\n // when an awaited Promise is rejected. This difference in\n // behavior between yield and await is important, because it\n // allows the consumer to decide what to do with the yielded\n // rejection (swallow it and continue, manually .throw it back\n // into the generator, abandon iteration, whatever). With\n // await, by contrast, there is no opportunity to examine the\n // rejection reason outside the generator function, so the\n // only option is to throw it from the await expression, and\n // let the generator function handle the exception.\n result.value = unwrapped;\n resolve(result);\n }, reject);\n }\n }\n\n var previousPromise;\n\n function enqueue(method, arg) {\n function callInvokeWithMethodAndArg() {\n return new Promise(function(resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise =\n // If enqueue has been called before, then we want to wait until\n // all previous Promises have been resolved before calling invoke,\n // so that results are always delivered in the correct order. If\n // enqueue has not been called before, then it is important to\n // call invoke immediately, without waiting on a callback to fire,\n // so that the async generator function has the opportunity to do\n // any necessary setup in a predictable way. This predictability\n // is why the Promise constructor synchronously invokes its\n // executor callback, and why async functions synchronously\n // execute code before the first await. Since we implement simple\n // async functions in terms of async generators, it is especially\n // important to get this right, even though it requires care.\n previousPromise ? previousPromise.then(\n callInvokeWithMethodAndArg,\n // Avoid propagating failures to Promises returned by later\n // invocations of the iterator.\n callInvokeWithMethodAndArg\n ) : callInvokeWithMethodAndArg();\n }\n\n // Define the unified helper method that is used to implement .next,\n // .throw, and .return (see defineIteratorMethods).\n this._invoke = enqueue;\n }\n\n defineIteratorMethods(AsyncIterator.prototype);\n AsyncIterator.prototype[asyncIteratorSymbol] = function () {\n return this;\n };\n runtime.AsyncIterator = AsyncIterator;\n\n // Note that simple async functions are implemented on top of\n // AsyncIterator objects; they just return a Promise for the value of\n // the final result produced by the iterator.\n runtime.async = function(innerFn, outerFn, self, tryLocsList) {\n var iter = new AsyncIterator(\n wrap(innerFn, outerFn, self, tryLocsList)\n );\n\n return runtime.isGeneratorFunction(outerFn)\n ? iter // If outerFn is a generator, return the full iterator.\n : iter.next().then(function(result) {\n return result.done ? result.value : iter.next();\n });\n };\n\n function makeInvokeMethod(innerFn, self, context) {\n var state = GenStateSuspendedStart;\n\n return function invoke(method, arg) {\n if (state === GenStateExecuting) {\n throw new Error(\"Generator is already running\");\n }\n\n if (state === GenStateCompleted) {\n if (method === \"throw\") {\n throw arg;\n }\n\n // Be forgiving, per 25.3.3.3.3 of the spec:\n // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume\n return doneResult();\n }\n\n context.method = method;\n context.arg = arg;\n\n while (true) {\n var delegate = context.delegate;\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (context.method === \"next\") {\n // Setting context._sent for legacy support of Babel's\n // function.sent implementation.\n context.sent = context._sent = context.arg;\n\n } else if (context.method === \"throw\") {\n if (state === GenStateSuspendedStart) {\n state = GenStateCompleted;\n throw context.arg;\n }\n\n context.dispatchException(context.arg);\n\n } else if (context.method === \"return\") {\n context.abrupt(\"return\", context.arg);\n }\n\n state = GenStateExecuting;\n\n var record = tryCatch(innerFn, self, context);\n if (record.type === \"normal\") {\n // If an exception is thrown from innerFn, we leave state ===\n // GenStateExecuting and loop back for another invocation.\n state = context.done\n ? GenStateCompleted\n : GenStateSuspendedYield;\n\n if (record.arg === ContinueSentinel) {\n continue;\n }\n\n return {\n value: record.arg,\n done: context.done\n };\n\n } else if (record.type === \"throw\") {\n state = GenStateCompleted;\n // Dispatch the exception by looping back around to the\n // context.dispatchException(context.arg) call above.\n context.method = \"throw\";\n context.arg = record.arg;\n }\n }\n };\n }\n\n // Call delegate.iterator[context.method](context.arg) and handle the\n // result, either by returning a { value, done } result from the\n // delegate iterator, or by modifying context.method and context.arg,\n // setting context.delegate to null, and returning the ContinueSentinel.\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n if (method === undefined) {\n // A .throw or .return when the delegate iterator has no .throw\n // method always terminates the yield* loop.\n context.delegate = null;\n\n if (context.method === \"throw\") {\n if (delegate.iterator.return) {\n // If the delegate iterator has a return method, give it a\n // chance to clean up.\n context.method = \"return\";\n context.arg = undefined;\n maybeInvokeDelegate(delegate, context);\n\n if (context.method === \"throw\") {\n // If maybeInvokeDelegate(context) changed context.method from\n // \"return\" to \"throw\", let that override the TypeError below.\n return ContinueSentinel;\n }\n }\n\n context.method = \"throw\";\n context.arg = new TypeError(\n \"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n\n if (record.type === \"throw\") {\n context.method = \"throw\";\n context.arg = record.arg;\n context.delegate = null;\n return ContinueSentinel;\n }\n\n var info = record.arg;\n\n if (! info) {\n context.method = \"throw\";\n context.arg = new TypeError(\"iterator result is not an object\");\n context.delegate = null;\n return ContinueSentinel;\n }\n\n if (info.done) {\n // Assign the result of the finished delegate to the temporary\n // variable specified by delegate.resultName (see delegateYield).\n context[delegate.resultName] = info.value;\n\n // Resume execution at the desired location (see delegateYield).\n context.next = delegate.nextLoc;\n\n // If context.method was \"throw\" but the delegate handled the\n // exception, let the outer generator proceed normally. If\n // context.method was \"next\", forget context.arg since it has been\n // \"consumed\" by the delegate iterator. If context.method was\n // \"return\", allow the original .return call to continue in the\n // outer generator.\n if (context.method !== \"return\") {\n context.method = \"next\";\n context.arg = undefined;\n }\n\n } else {\n // Re-yield the result returned by the delegate method.\n return info;\n }\n\n // The delegate iterator is finished, so forget it and continue with\n // the outer generator.\n context.delegate = null;\n return ContinueSentinel;\n }\n\n // Define Generator.prototype.{next,throw,return} in terms of the\n // unified ._invoke helper method.\n defineIteratorMethods(Gp);\n\n Gp[toStringTagSymbol] = \"Generator\";\n\n // A Generator should always return itself as the iterator object when the\n // @@iterator function is called on it. Some browsers' implementations of the\n // iterator prototype chain incorrectly implement this, causing the Generator\n // object to not be returned from this call. This ensures that doesn't happen.\n // See https://github.com/facebook/regenerator/issues/274 for more details.\n Gp[iteratorSymbol] = function() {\n return this;\n };\n\n Gp.toString = function() {\n return \"[object Generator]\";\n };\n\n function pushTryEntry(locs) {\n var entry = { tryLoc: locs[0] };\n\n if (1 in locs) {\n entry.catchLoc = locs[1];\n }\n\n if (2 in locs) {\n entry.finallyLoc = locs[2];\n entry.afterLoc = locs[3];\n }\n\n this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\";\n delete record.arg;\n entry.completion = record;\n }\n\n function Context(tryLocsList) {\n // The root entry object (effectively a try statement without a catch\n // or a finally block) gives us a place to store values thrown from\n // locations where there is no enclosing try statement.\n this.tryEntries = [{ tryLoc: \"root\" }];\n tryLocsList.forEach(pushTryEntry, this);\n this.reset(true);\n }\n\n runtime.keys = function(object) {\n var keys = [];\n for (var key in object) {\n keys.push(key);\n }\n keys.reverse();\n\n // Rather than returning an object with a next method, we keep\n // things simple and return the next function itself.\n return function next() {\n while (keys.length) {\n var key = keys.pop();\n if (key in object) {\n next.value = key;\n next.done = false;\n return next;\n }\n }\n\n // To avoid creating an additional object, we just hang the .value\n // and .done properties off the next function object itself. This\n // also ensures that the minifier will not anonymize the function.\n next.done = true;\n return next;\n };\n };\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) {\n return iteratorMethod.call(iterable);\n }\n\n if (typeof iterable.next === \"function\") {\n return iterable;\n }\n\n if (!isNaN(iterable.length)) {\n var i = -1, next = function next() {\n while (++i < iterable.length) {\n if (hasOwn.call(iterable, i)) {\n next.value = iterable[i];\n next.done = false;\n return next;\n }\n }\n\n next.value = undefined;\n next.done = true;\n\n return next;\n };\n\n return next.next = next;\n }\n }\n\n // Return an iterator with no values.\n return { next: doneResult };\n }\n runtime.values = values;\n\n function doneResult() {\n return { value: undefined, done: true };\n }\n\n Context.prototype = {\n constructor: Context,\n\n reset: function(skipTempReset) {\n this.prev = 0;\n this.next = 0;\n // Resetting context._sent for legacy support of Babel's\n // function.sent implementation.\n this.sent = this._sent = undefined;\n this.done = false;\n this.delegate = null;\n\n this.method = \"next\";\n this.arg = undefined;\n\n this.tryEntries.forEach(resetTryEntry);\n\n if (!skipTempReset) {\n for (var name in this) {\n // Not sure about the optimal order of these conditions:\n if (name.charAt(0) === \"t\" &&\n hasOwn.call(this, name) &&\n !isNaN(+name.slice(1))) {\n this[name] = undefined;\n }\n }\n }\n },\n\n stop: function() {\n this.done = true;\n\n var rootEntry = this.tryEntries[0];\n var rootRecord = rootEntry.completion;\n if (rootRecord.type === \"throw\") {\n throw rootRecord.arg;\n }\n\n return this.rval;\n },\n\n dispatchException: function(exception) {\n if (this.done) {\n throw exception;\n }\n\n var context = this;\n function handle(loc, caught) {\n record.type = \"throw\";\n record.arg = exception;\n context.next = loc;\n\n if (caught) {\n // If the dispatched exception was caught by a catch block,\n // then let that catch block handle the exception normally.\n context.method = \"next\";\n context.arg = undefined;\n }\n\n return !! caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n var record = entry.completion;\n\n if (entry.tryLoc === \"root\") {\n // Exception thrown outside of any try block that could handle\n // it, so set the completion value of the entire function to\n // throw the exception.\n return handle(\"end\");\n }\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\");\n var hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n } else if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) {\n return handle(entry.catchLoc, true);\n }\n\n } else if (hasFinally) {\n if (this.prev < entry.finallyLoc) {\n return handle(entry.finallyLoc);\n }\n\n } else {\n throw new Error(\"try statement without catch or finally\");\n }\n }\n }\n },\n\n abrupt: function(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc <= this.prev &&\n hasOwn.call(entry, \"finallyLoc\") &&\n this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n if (finallyEntry &&\n (type === \"break\" ||\n type === \"continue\") &&\n finallyEntry.tryLoc <= arg &&\n arg <= finallyEntry.finallyLoc) {\n // Ignore the finally entry if control is not jumping to a\n // location outside the try/catch block.\n finallyEntry = null;\n }\n\n var record = finallyEntry ? finallyEntry.completion : {};\n record.type = type;\n record.arg = arg;\n\n if (finallyEntry) {\n this.method = \"next\";\n this.next = finallyEntry.finallyLoc;\n return ContinueSentinel;\n }\n\n return this.complete(record);\n },\n\n complete: function(record, afterLoc) {\n if (record.type === \"throw\") {\n throw record.arg;\n }\n\n if (record.type === \"break\" ||\n record.type === \"continue\") {\n this.next = record.arg;\n } else if (record.type === \"return\") {\n this.rval = this.arg = record.arg;\n this.method = \"return\";\n this.next = \"end\";\n } else if (record.type === \"normal\" && afterLoc) {\n this.next = afterLoc;\n }\n\n return ContinueSentinel;\n },\n\n finish: function(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) {\n this.complete(entry.completion, entry.afterLoc);\n resetTryEntry(entry);\n return ContinueSentinel;\n }\n }\n },\n\n \"catch\": function(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n if (record.type === \"throw\") {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n return thrown;\n }\n }\n\n // The context.catch method must only be called with a location\n // argument that corresponds to a known catch block.\n throw new Error(\"illegal catch attempt\");\n },\n\n delegateYield: function(iterable, resultName, nextLoc) {\n this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n };\n\n if (this.method === \"next\") {\n // Deliberately forget the last sent value so that we don't\n // accidentally pass it on to the delegate.\n this.arg = undefined;\n }\n\n return ContinueSentinel;\n }\n };\n})(\n // In sloppy mode, unbound `this` refers to the global object, fallback to\n // Function constructor if we're in global strict mode. That is sadly a form\n // of indirect eval which violates Content Security Policy.\n (function() { return this })() || Function(\"return this\")()\n);\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"router-view\")\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=7ba5bd90&\"\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('7ba5bd90', component.options)\n } else {\n api.reload('7ba5bd90', component.options)\n }\n module.hot.accept(\"./App.vue?vue&type=template&id=7ba5bd90&\", function () {\n api.rerender('7ba5bd90', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/App.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<router-view></router-view>\n</template>\n\n<script>\nexport default {\n\tname: 'App',\n\tbeforeMount: function() {\n\t\t// importing server data into the store\n\t\tconst serverDataElmt = document.getElementById('serverData');\n\t\tif (serverDataElmt !== null) {\n\t\t\tthis.$store.commit('setServerData', JSON.parse(document.getElementById('serverData').dataset.server));\n\t\t}\n\t}\n}\n</script>\n","/**\n * vue-router v3.0.1\n * (c) 2017 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (process.env.NODE_ENV !== 'production' && !condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nvar View = {\n name: 'router-view',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n if (parent.$vnode && parent.$vnode.data.routerView) {\n depth++;\n }\n if (parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n return h(cache[name], data, children)\n }\n\n var matched = route.matched[depth];\n // render empty node if no matched route\n if (!matched) {\n cache[name] = null;\n return h()\n }\n\n var component = cache[name] = matched.components[name];\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // resolve props\n var propsToPass = data.props = resolveProps(route, matched.props && matched.props[name]);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n\n return h(component, data, children)\n }\n};\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\nfunction extend (to, from) {\n for (var key in from) {\n to[key] = from[key];\n }\n return to\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nvar decode = decodeURIComponent;\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n parsedQuery[key] = extraQuery[key];\n }\n return parsedQuery\n}\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0\n ? decode(parts.join('='))\n : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj ? Object.keys(obj).map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n }).filter(function (x) { return x.length > 0; }).join('&') : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery$$1 = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery$$1),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery$$1);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return (\n a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') &&\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query)\n )\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params)\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a);\n var bKeys = Object.keys(b);\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key) {\n var aVal = a[key];\n var bVal = b[key];\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar Link = {\n name: 'router-link',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n exact: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(this.to, current, this.append);\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback = globalActiveClass == null\n ? 'router-link-active'\n : globalActiveClass;\n var exactActiveClassFallback = globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass = this.activeClass == null\n ? activeClassFallback\n : this.activeClass;\n var exactActiveClass = this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n var compareTarget = location.path\n ? createRoute(null, location, null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget);\n classes[activeClass] = this.exact\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1.replace) {\n router.replace(location);\n } else {\n router.push(location);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) { on[e] = handler; });\n } else {\n on[this.event] = handler;\n }\n\n var data = {\n class: classes\n };\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href };\n } else {\n // find the first <a> child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the <a> is a static node\n a.isStatic = false;\n var extend = _Vue.util.extend;\n var aData = a.data = extend({}, a.data);\n aData.on = on;\n var aAttrs = a.data.attrs = extend({}, a.data.attrs);\n aAttrs.href = href;\n } else {\n // doesn't have <a> child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('router-view', View);\n Vue.component('router-link', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/\\//g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options))\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$');\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\n\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n return filler(params || {}, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n }\n}\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(path || name)) + \" cannot be a \" +\n \"string id. Use an actual component instead.\"\n );\n }\n\n var pathToRegexpOptions = route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(\n path,\n parent,\n pathToRegexpOptions.strict\n );\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n instances: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props: route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (route.name && !route.redirect && route.children.some(function (child) { return /^\\/?$/.test(child.path); })) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias)\n ? route.alias\n : [route.alias];\n\n aliases.forEach(function (alias) {\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (path, pathToRegexpOptions) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(!keys[key.name], (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\"));\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (path, parent, strict) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next.name || next._normalized) {\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = assign({}, next);\n next._normalized = true;\n var params = assign(assign({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction assign (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n if (record) {\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n }\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n var val = typeof m[i] === 'string' ? decodeURIComponent(m[i]) : m[i];\n if (key) {\n params[key.name] = val;\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Fix for #1585 for Firefox\n window.history.replaceState({ key: getStateKey() }, '');\n window.addEventListener('popstate', function (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n });\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior(to, from, isPop ? position : null);\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll.then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n }).catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n var el = document.querySelector(shouldScroll.selector);\n if (el) {\n var offset = shouldScroll.offset && typeof shouldScroll.offset === 'object' ? shouldScroll.offset : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n window.scrollTo(position.x, position.y);\n }\n}\n\n/* */\n\nvar supportsPushState = inBrowser && (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && 'pushState' in window.history\n})();\n\n// use User Timing api (if present) for more accurate key precision\nvar Time = inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nvar _key = genKey();\n\nfunction genKey () {\n return Time.now().toFixed(3)\n}\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n _key = key;\n}\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n history.replaceState({ key: _key }, '', url);\n } else {\n _key = genKey();\n history.pushState({ key: _key }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (location, onComplete, onAbort) {\n var this$1 = this;\n\n var route = this.router.match(location, this.current);\n this.confirmTransition(route, function () {\n this$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1.ensureURL();\n\n // fire ready cbs once\n if (!this$1.ready) {\n this$1.ready = true;\n this$1.readyCbs.forEach(function (cb) { cb(route); });\n }\n }, function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1.ready) {\n this$1.ready = true;\n this$1.readyErrorCbs.forEach(function (cb) { cb(err); });\n }\n });\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1 = this;\n\n var current = this.current;\n var abort = function (err) {\n if (isError(err)) {\n if (this$1.errorCbs.length) {\n this$1.errorCbs.forEach(function (cb) { cb(err); });\n } else {\n warn(false, 'uncaught error during route navigation:');\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n route.matched.length === current.matched.length\n ) {\n this.ensureURL();\n return abort()\n }\n\n var ref = resolveQueue(this.current.matched, route.matched);\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n this.pending = route;\n var iterator = function (hook, next) {\n if (this$1.pending !== route) {\n return abort()\n }\n try {\n hook(route, current, function (to) {\n if (to === false || isError(to)) {\n // next(false) -> abort navigation, ensure current URL\n this$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' && (\n typeof to.path === 'string' ||\n typeof to.name === 'string'\n ))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort();\n if (typeof to === 'object' && to.replace) {\n this$1.replace(to);\n } else {\n this$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n var postEnterCbs = [];\n var isValid = function () { return this$1.current === route; };\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated, postEnterCbs, isValid);\n var queue = enterGuards.concat(this$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1.pending !== route) {\n return abort()\n }\n this$1.pending = null;\n onComplete(route);\n if (this$1.router.app) {\n this$1.router.app.$nextTick(function () {\n postEnterCbs.forEach(function (cb) { cb(); });\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n var prev = this.current;\n this.current = route;\n this.cb && this.cb(route);\n this.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect <base> tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated,\n cbs,\n isValid\n) {\n return extractGuards(activated, 'beforeRouteEnter', function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key, cbs, isValid)\n })\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key,\n cbs,\n isValid\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n next(cb);\n if (typeof cb === 'function') {\n cbs.push(function () {\n // #750\n // if a router-view is wrapped with an out-in transition,\n // the instance may not have been registered at this time.\n // we will need to poll for registration until current route\n // is no longer valid.\n poll(cb, match.instances, key, isValid);\n });\n }\n })\n }\n}\n\nfunction poll (\n cb, // somehow flow cannot infer this is a function\n instances,\n key,\n isValid\n) {\n if (instances[key]) {\n cb(instances[key]);\n } else if (isValid()) {\n setTimeout(function () {\n poll(cb, instances, key, isValid);\n }, 16);\n }\n}\n\n/* */\n\n\nvar HTML5History = (function (History$$1) {\n function HTML5History (router, base) {\n var this$1 = this;\n\n History$$1.call(this, router, base);\n\n var expectScroll = router.options.scrollBehavior;\n\n if (expectScroll) {\n setupScroll();\n }\n\n var initLocation = getLocation(this.base);\n window.addEventListener('popstate', function (e) {\n var current = this$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1.base);\n if (this$1.current === START && location === initLocation) {\n return\n }\n\n this$1.transitionTo(location, function (route) {\n if (expectScroll) {\n handleScroll(router, route, current, true);\n }\n });\n });\n }\n\n if ( History$$1 ) HTML5History.__proto__ = History$$1;\n HTML5History.prototype = Object.create( History$$1 && History$$1.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1.base + route.fullPath));\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n if (base && path.indexOf(base) === 0) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\n\nvar HashHistory = (function (History$$1) {\n function HashHistory (router, base, fallback) {\n History$$1.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History$$1 ) HashHistory.__proto__ = History$$1;\n HashHistory.prototype = Object.create( History$$1 && History$$1.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1 = this;\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n setupScroll();\n }\n\n window.addEventListener(supportsPushState ? 'popstate' : 'hashchange', function () {\n var current = this$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(\n cleanPath(base + '/#' + location)\n );\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n return index === -1 ? '' : href.slice(index + 1)\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\n\nvar AbstractHistory = (function (History$$1) {\n function AbstractHistory (router, base) {\n History$$1.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History$$1 ) AbstractHistory.__proto__ = History$$1;\n AbstractHistory.prototype = Object.create( History$$1 && History$$1.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(location, function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index + 1).concat(route);\n this$1.index++;\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1 = this;\n\n this.transitionTo(location, function (route) {\n this$1.stack = this$1.stack.slice(0, this$1.index).concat(route);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(route, function () {\n this$1.index = targetIndex;\n this$1.updateRoute(route);\n });\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback = mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (\n raw,\n current,\n redirectedFrom\n) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1 = this;\n\n process.env.NODE_ENV !== 'production' && assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // main app already initialized.\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History) {\n history.transitionTo(history.getCurrentLocation());\n } else if (history instanceof HashHistory) {\n var setupHashListener = function () {\n history.setupListeners();\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupHashListener,\n setupHashListener\n );\n }\n\n history.listen(function (route) {\n this$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n this.history.push(location, onComplete, onAbort);\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n this.history.replace(location, onComplete, onAbort);\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply([], route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n }))\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n var location = normalizeLocation(\n to,\n current || this.history.current,\n append,\n this\n );\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\nVueRouter.install = install;\nVueRouter.version = '3.0.1';\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nexport default VueRouter;\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"app-settings\", attrs: { id: \"content\" } },\n [\n _c(\n \"app-navigation\",\n { attrs: { menu: _vm.menu } },\n [\n _c(\"template\", { slot: \"settings-content\" }, [\n _c(\n \"div\",\n [\n _c(\"p\", [_vm._v(_vm._s(_vm.t(\"settings\", \"Default quota :\")))]),\n _vm._v(\" \"),\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.defaultQuota,\n options: _vm.quotaOptions,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select default quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n allowEmpty: false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setDefaultQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLanguages,\n expression: \"showLanguages\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showLanguages\" },\n domProps: {\n checked: Array.isArray(_vm.showLanguages)\n ? _vm._i(_vm.showLanguages, null) > -1\n : _vm.showLanguages\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLanguages,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLanguages = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLanguages = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLanguages = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLanguages\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show Languages\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLastLogin,\n expression: \"showLastLogin\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showLastLogin\" },\n domProps: {\n checked: Array.isArray(_vm.showLastLogin)\n ? _vm._i(_vm.showLastLogin, null) > -1\n : _vm.showLastLogin\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLastLogin,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLastLogin = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLastLogin = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLastLogin = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLastLogin\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show last login\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showUserBackend,\n expression: \"showUserBackend\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showUserBackend\" },\n domProps: {\n checked: Array.isArray(_vm.showUserBackend)\n ? _vm._i(_vm.showUserBackend, null) > -1\n : _vm.showUserBackend\n },\n on: {\n change: function($event) {\n var $$a = _vm.showUserBackend,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showUserBackend = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showUserBackend = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showUserBackend = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showUserBackend\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show user backend\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showStoragePath,\n expression: \"showStoragePath\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { type: \"checkbox\", id: \"showStoragePath\" },\n domProps: {\n checked: Array.isArray(_vm.showStoragePath)\n ? _vm._i(_vm.showStoragePath, null) > -1\n : _vm.showStoragePath\n },\n on: {\n change: function($event) {\n var $$a = _vm.showStoragePath,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showStoragePath = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showStoragePath = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showStoragePath = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showStoragePath\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show storage path\")))\n ])\n ])\n ])\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\"user-list\", {\n attrs: {\n users: _vm.users,\n showConfig: _vm.showConfig,\n selectedGroup: _vm.selectedGroup,\n externalActions: _vm.externalActions\n }\n })\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n class: { \"icon-loading\": _vm.menu.loading },\n attrs: { id: \"app-navigation\" }\n },\n [\n _vm.menu.new\n ? _c(\"div\", { staticClass: \"app-navigation-new\" }, [\n _c(\n \"button\",\n {\n class: _vm.menu.new.icon,\n attrs: { type: \"button\", id: _vm.menu.new.id },\n on: { click: _vm.menu.new.action }\n },\n [_vm._v(_vm._s(_vm.menu.new.text))]\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { attrs: { id: _vm.menu.id } },\n _vm._l(_vm.menu.items, function(item) {\n return _c(\"navigation-item\", { key: item.key, attrs: { item: item } })\n })\n ),\n _vm._v(\" \"),\n !!_vm.$slots[\"settings-content\"]\n ? _c(\"div\", { attrs: { id: \"app-settings\" } }, [\n _c(\"div\", { attrs: { id: \"app-settings-header\" } }, [\n _c(\n \"button\",\n {\n staticClass: \"settings-button\",\n attrs: { \"data-apps-slide-toggle\": \"#app-settings-content\" }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Settings\")))]\n )\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { attrs: { id: \"app-settings-content\" } },\n [_vm._t(\"settings-content\")],\n 2\n )\n ])\n : _vm._e()\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _vm.item.caption\n ? _c(\"li\", { staticClass: \"app-navigation-caption\" }, [\n _vm._v(_vm._s(_vm.item.text))\n ])\n : _c(\n \"nav-element\",\n _vm._b(\n {\n class: [\n {\n \"icon-loading-small\": _vm.item.loading,\n open: _vm.item.opened,\n collapsible:\n _vm.item.collapsible &&\n _vm.item.children &&\n _vm.item.children.length > 0\n },\n _vm.item.classes\n ],\n attrs: { id: _vm.item.id }\n },\n \"nav-element\",\n _vm.navElement(_vm.item),\n false\n ),\n [\n _vm.item.bullet\n ? _c(\"div\", {\n staticClass: \"app-navigation-entry-bullet\",\n style: { backgroundColor: _vm.item.bullet }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"a\",\n {\n class: _vm.item.icon,\n attrs: { href: _vm.item.href ? _vm.item.href : \"#\" },\n on: { click: _vm.toggleCollapse }\n },\n [\n _vm.item.iconUrl\n ? _c(\"img\", {\n attrs: { alt: _vm.item.text, src: _vm.item.iconUrl }\n })\n : _vm._e(),\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.item.text) + \"\\n\\t\")\n ]\n ),\n _vm._v(\" \"),\n _vm.item.utils\n ? _c(\"div\", { staticClass: \"app-navigation-entry-utils\" }, [\n _c(\n \"ul\",\n [\n Number.isInteger(_vm.item.utils.counter)\n ? _c(\n \"li\",\n { staticClass: \"app-navigation-entry-utils-counter\" },\n [_vm._v(_vm._s(_vm.item.utils.counter))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.utils.actions &&\n _vm.item.utils.actions.length === 1\n ? _c(\n \"li\",\n {\n staticClass:\n \"app-navigation-entry-utils-menu-button\"\n },\n [\n _c(\"button\", {\n class: _vm.item.utils.actions[0].icon,\n attrs: { title: _vm.item.utils.actions[0].text },\n on: { click: _vm.item.utils.actions[0].action }\n })\n ]\n )\n : _vm.item.utils.actions &&\n _vm.item.utils.actions.length === 2 &&\n !Number.isInteger(_vm.item.utils.counter)\n ? _vm._l(_vm.item.utils.actions, function(action) {\n return _c(\n \"li\",\n {\n key: action.action,\n staticClass:\n \"app-navigation-entry-utils-menu-button\"\n },\n [\n _c(\"button\", {\n class: action.icon,\n attrs: { title: action.text },\n on: { click: action.action }\n })\n ]\n )\n })\n : _vm.item.utils.actions &&\n _vm.item.utils.actions.length > 1 &&\n (Number.isInteger(_vm.item.utils.counter) ||\n _vm.item.utils.actions.length > 2)\n ? _c(\n \"li\",\n {\n staticClass:\n \"app-navigation-entry-utils-menu-button\"\n },\n [\n _c(\"button\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n on: { click: _vm.showMenu }\n })\n ]\n )\n : _vm._e()\n ],\n 2\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.utils &&\n _vm.item.utils.actions &&\n _vm.item.utils.actions.length > 1 &&\n (Number.isInteger(_vm.item.utils.counter) ||\n _vm.item.utils.actions.length > 2)\n ? _c(\n \"div\",\n {\n staticClass: \"app-navigation-entry-menu\",\n class: { open: _vm.openedMenu }\n },\n [\n _c(\"popover-menu\", {\n attrs: { menu: _vm.item.utils.actions }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.undo\n ? _c(\"div\", { staticClass: \"app-navigation-entry-deleted\" }, [\n _c(\n \"div\",\n { staticClass: \"app-navigation-entry-deleted-description\" },\n [_vm._v(_vm._s(_vm.item.undo.text))]\n ),\n _vm._v(\" \"),\n _c(\"button\", {\n staticClass:\n \"app-navigation-entry-deleted-button icon-history\",\n attrs: { title: _vm.t(\"settings\", \"Undo\") }\n })\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.edit\n ? _c(\"div\", { staticClass: \"app-navigation-entry-edit\" }, [\n _c(\"form\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.item.text,\n expression: \"item.text\"\n }\n ],\n attrs: { type: \"text\" },\n domProps: { value: _vm.item.text },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.item, \"text\", $event.target.value)\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-close\",\n attrs: { type: \"submit\", value: \"\" },\n on: {\n click: function($event) {\n $event.stopPropagation()\n $event.preventDefault()\n return _vm.cancelEdit($event)\n }\n }\n })\n ])\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.item.children\n ? _c(\n \"ul\",\n _vm._l(_vm.item.children, function(item, key) {\n return _c(\"navigation-item\", {\n key: key,\n attrs: { item: item }\n })\n })\n )\n : _vm._e()\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"ul\",\n _vm._l(_vm.menu, function(item, key) {\n return _c(\"popover-item\", { key: key, attrs: { item: item } })\n })\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"li\", [\n _vm.item.href\n ? _c(\n \"a\",\n {\n attrs: {\n href: _vm.item.href ? _vm.item.href : \"#\",\n target: _vm.item.target ? _vm.item.target : \"\",\n rel: \"noreferrer noopener\"\n },\n on: { click: _vm.item.action }\n },\n [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ]\n )\n : _vm.item.action\n ? _c(\"button\", { on: { click: _vm.item.action } }, [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ])\n : _c(\"span\", { staticClass: \"menuitem\" }, [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ])\n ])\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<li>\n\t\t<!-- If item.href is set, a link will be directly used -->\n\t\t<a @click=\"item.action\" v-if=\"item.href\" :href=\"(item.href) ? item.href : '#' \" :target=\"(item.target) ? item.target : '' \" rel=\"noreferrer noopener\">\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</a>\n\t\t<!-- If item.action is set instead, a button will be used -->\n\t\t<button @click=\"item.action\" v-else-if=\"item.action\">\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</button>\n\t\t<!-- If item.longtext is set AND the item does not have an action -->\n\t\t<span class=\"menuitem\" v-else>\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</span>\n\t</li>\n</template>\n\n<script>\nexport default {\n\tprops: ['item']\n};\n</script>\n","import { render, staticRenderFns } from \"./popoverItem.vue?vue&type=template&id=4c6af9e6&\"\nimport script from \"./popoverItem.vue?vue&type=script&lang=js&\"\nexport * from \"./popoverItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('4c6af9e6', component.options)\n } else {\n api.reload('4c6af9e6', component.options)\n }\n module.hot.accept(\"./popoverItem.vue?vue&type=template&id=4c6af9e6&\", function () {\n api.rerender('4c6af9e6', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/popoverMenu/popoverItem.vue\"\nexport default component.exports","import { render, staticRenderFns } from \"./popoverMenu.vue?vue&type=template&id=04ea21c4&\"\nimport script from \"./popoverMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./popoverMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('04ea21c4', component.options)\n } else {\n api.reload('04ea21c4', component.options)\n }\n module.hot.accept(\"./popoverMenu.vue?vue&type=template&id=04ea21c4&\", function () {\n api.rerender('04ea21c4', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/popoverMenu.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<ul>\n\t\t<popover-item v-for=\"(item, key) in menu\" :item=\"item\" :key=\"key\" />\n\t</ul>\n</template>\n\n\n<script>\nimport popoverItem from './popoverMenu/popoverItem';\n\nexport default {\n\tname: 'popoverMenu',\n\tprops: ['menu'],\n\tcomponents: {\n\t\tpopoverItem\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./navigationItem.vue?vue&type=template&id=2cb61dde&\"\nimport script from \"./navigationItem.vue?vue&type=script&lang=js&\"\nexport * from \"./navigationItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('2cb61dde', component.options)\n } else {\n api.reload('2cb61dde', component.options)\n }\n module.hot.accept(\"./navigationItem.vue?vue&type=template&id=2cb61dde&\", function () {\n api.rerender('2cb61dde', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appNavigation/navigationItem.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n<template>\n\n\t<!-- Is this a caption ? -->\n\t<li class=\"app-navigation-caption\" v-if=\"item.caption\">{{item.text}}</li>\n\n\t<!-- Navigation item -->\n\t<nav-element v-else :id=\"item.id\" v-bind=\"navElement(item)\"\n\t\t\t\t :class=\"[{'icon-loading-small': item.loading, 'open': item.opened, 'collapsible': item.collapsible&&item.children&&item.children.length>0 }, item.classes]\">\n\n\t\t<!-- Bullet -->\n\t\t<div v-if=\"item.bullet\" class=\"app-navigation-entry-bullet\" :style=\"{ backgroundColor: item.bullet }\"></div>\n\n\t\t<!-- Main link -->\n\t\t<a :href=\"(item.href) ? item.href : '#' \" @click=\"toggleCollapse\" :class=\"item.icon\">\n\t\t\t<img v-if=\"item.iconUrl\" :alt=\"item.text\" :src=\"item.iconUrl\">\n\t\t\t{{item.text}}\n\t\t</a>\n\n\t\t<!-- Popover, counter and button(s) -->\n\t\t<div v-if=\"item.utils\" class=\"app-navigation-entry-utils\">\n\t\t\t<ul>\n\t\t\t\t<!-- counter -->\n\t\t\t\t<li v-if=\"Number.isInteger(item.utils.counter)\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-counter\">{{item.utils.counter}}</li>\n\n\t\t\t\t<!-- first action if only one action -->\n\t\t\t\t<li v-if=\"item.utils.actions && item.utils.actions.length === 1\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-menu-button\">\n\t\t\t\t\t<button @click=\"item.utils.actions[0].action\" :class=\"item.utils.actions[0].icon\" :title=\"item.utils.actions[0].text\"></button>\n\t\t\t\t</li>\n\n\t\t\t\t<!-- second action only two actions and no counter -->\n\t\t\t\t<li v-else-if=\"item.utils.actions && item.utils.actions.length === 2 && !Number.isInteger(item.utils.counter)\"\n\t\t\t\t\tv-for=\"action in item.utils.actions\" :key=\"action.action\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-menu-button\">\n\t\t\t\t\t<button @click=\"action.action\" :class=\"action.icon\" :title=\"action.text\"></button>\n\t\t\t\t</li>\n\n\t\t\t\t<!-- menu if only at least one action and counter OR two actions and no counter-->\n\t\t\t\t<li v-else-if=\"item.utils.actions && item.utils.actions.length > 1 && (Number.isInteger(item.utils.counter) || item.utils.actions.length > 2)\"\n\t\t\t\t\tclass=\"app-navigation-entry-utils-menu-button\">\n\t\t\t\t\t<button v-click-outside=\"hideMenu\" @click=\"showMenu\" ></button>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t</div>\n\n\t\t<!-- if more than 2 actions or more than 1 actions with counter -->\n\t\t<div v-if=\"item.utils && item.utils.actions && item.utils.actions.length > 1 && (Number.isInteger(item.utils.counter) || item.utils.actions.length > 2)\"\n\t\t\t class=\"app-navigation-entry-menu\" :class=\"{ 'open': openedMenu }\">\n\t\t\t <popover-menu :menu=\"item.utils.actions\"/>\n\t\t</div>\n\n\t\t<!-- undo entry -->\n\t\t<div class=\"app-navigation-entry-deleted\" v-if=\"item.undo\">\n\t\t\t<div class=\"app-navigation-entry-deleted-description\">{{item.undo.text}}</div>\n\t\t\t<button class=\"app-navigation-entry-deleted-button icon-history\" :title=\"t('settings', 'Undo')\"></button>\n\t\t</div>\n\n\t\t<!-- edit entry -->\n\t\t<div class=\"app-navigation-entry-edit\" v-if=\"item.edit\">\n\t\t\t<form>\n\t\t\t\t<input type=\"text\" v-model=\"item.text\">\n\t\t\t\t<input type=\"submit\" value=\"\" class=\"icon-confirm\">\n\t\t\t\t<input type=\"submit\" value=\"\" class=\"icon-close\" @click.stop.prevent=\"cancelEdit\">\n\t\t\t</form>\n\t\t</div>\n\n\t\t<!-- if the item has children, inject the component with proper data -->\n\t\t<ul v-if=\"item.children\">\n\t\t\t<navigation-item v-for=\"(item, key) in item.children\" :item=\"item\" :key=\"key\" />\n\t\t</ul>\n\t</nav-element>\n</template>\n\n<script>\nimport popoverMenu from '../popoverMenu';\nimport ClickOutside from 'vue-click-outside';\nimport Vue from 'vue';\n\nexport default {\n\tname: 'navigationItem',\n\tprops: ['item'],\n\tcomponents: {\n\t\tpopoverMenu\n\t},\n\tdirectives: {\n\t\tClickOutside\n\t},\n\tdata() {\n\t\treturn {\n\t\t\topenedMenu: false\n\t\t};\n\t},\n\tmethods: {\n\t\tshowMenu() {\n\t\t\tthis.openedMenu = true;\n\t\t},\n\t\thideMenu() {\n\t\t\tthis.openedMenu = false;\n\t\t},\n\t\ttoggleCollapse() {\n\t\t\t// if item.opened isn't set, Vue won't trigger view updates https://vuejs.org/v2/api/#Vue-set\n\t\t\t// ternary is here to detect the undefined state of item.opened\n\t\t\tVue.set(this.item, 'opened', this.item.opened ? !this.item.opened : true);\n\t\t},\n\t\tcancelEdit() {\n\t\t\t// remove the editing class\n\t\t\tif (Array.isArray(this.item.classes))\n\t\t\t\tthis.item.classes = this.item.classes.filter(\n\t\t\t\t\titem => item !== 'editing'\n\t\t\t\t);\n\t\t},\n\t\t// This is used to decide which outter element type to use\n\t\t// li or router-link\n\t\tnavElement(item) {\n\t\t\tif (item.href) {\n\t\t\t\treturn {\n\t\t\t\t\tis: 'li'\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tis: 'router-link',\n\t\t\t\ttag: 'li',\n\t\t\t\tto: item.router,\n\t\t\t\texact: true\n\t\t\t};\n\t\t}\n\t},\n\tmounted() {\n\t\t// prevent click outside event with popupItem.\n\t\tthis.popupItem = this.$el;\n\t}\n};\n</script>\n","import { render, staticRenderFns } from \"./appNavigation.vue?vue&type=template&id=142c1cb5&\"\nimport script from \"./appNavigation.vue?vue&type=script&lang=js&\"\nexport * from \"./appNavigation.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('142c1cb5', component.options)\n } else {\n api.reload('142c1cb5', component.options)\n }\n module.hot.accept(\"./appNavigation.vue?vue&type=template&id=142c1cb5&\", function () {\n api.rerender('142c1cb5', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appNavigation.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"app-navigation\" :class=\"{'icon-loading': menu.loading}\">\n\t\t<div class=\"app-navigation-new\" v-if=\"menu.new\">\n\t\t\t<button type=\"button\" :id=\"menu.new.id\" :class=\"menu.new.icon\" @click=\"menu.new.action\">{{menu.new.text}}</button>\n\t\t</div>\n\t\t<ul :id=\"menu.id\">\n\t\t\t<navigation-item v-for=\"item in menu.items\" :item=\"item\" :key=\"item.key\" />\n\t\t</ul>\n\t\t<div id=\"app-settings\" v-if=\"!!$slots['settings-content']\">\n\t\t\t<div id=\"app-settings-header\">\n\t\t\t\t<button class=\"settings-button\"\n\t\t\t\t\t\tdata-apps-slide-toggle=\"#app-settings-content\"\n\t\t\t\t>{{t('settings', 'Settings')}}</button>\n\t\t\t</div>\n\t\t\t<div id=\"app-settings-content\">\n\t\t\t\t<slot name=\"settings-content\"></slot>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</template>\n\n<script>\nimport navigationItem from './appNavigation/navigationItem';\n\nexport default {\n\tname: 'appNavigation',\n\tprops: ['menu'],\n\tcomponents: {\n\t\tnavigationItem\n\t}\n};\n</script>\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"user-list-grid\",\n attrs: { id: \"app-content\" },\n on: {\n \"&scroll\": function($event) {\n return _vm.onScroll($event)\n }\n }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && !_vm.showConfig.showNewUserForm },\n attrs: { id: \"grid-header\" }\n },\n [\n _c(\"div\", { staticClass: \"avatar\", attrs: { id: \"headerAvatar\" } }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\", attrs: { id: \"headerName\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Username\")))\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"displayName\", attrs: { id: \"headerDisplayName\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Display name\")))]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"password\", attrs: { id: \"headerPassword\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Password\")))]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"mailAddress\", attrs: { id: \"headerAddress\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Email\")))]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\", attrs: { id: \"headerGroups\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Groups\")))\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\", attrs: { id: \"headerSubAdmins\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Group admin for\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"quota\", attrs: { id: \"headerQuota\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Quota\")))\n ]),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\", attrs: { id: \"headerLanguages\" } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Language\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\n \"div\",\n { staticClass: \"headerStorageLocation storageLocation\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Storage location\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"headerUserBackend userBackend\" }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"User backend\")))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"headerLastLogin lastLogin\" }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Last login\")))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.showConfig.showNewUserForm,\n expression: \"showConfig.showNewUserForm\"\n }\n ],\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && _vm.showConfig.showNewUserForm },\n attrs: { id: \"new-user\", disabled: _vm.loading },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.createUser($event)\n }\n }\n },\n [\n _c(\"div\", { class: _vm.loading ? \"icon-loading-small\" : \"icon-add\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.id,\n expression: \"newUser.id\"\n }\n ],\n attrs: {\n id: \"newusername\",\n type: \"text\",\n required: \"\",\n placeholder: _vm.t(\"settings\", \"Username\"),\n name: \"username\",\n autocomplete: \"off\",\n autocapitalize: \"none\",\n autocorrect: \"off\",\n pattern: \"[a-zA-Z0-9 _\\\\.@\\\\-']+\"\n },\n domProps: { value: _vm.newUser.id },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"id\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.displayName,\n expression: \"newUser.displayName\"\n }\n ],\n attrs: {\n id: \"newdisplayname\",\n type: \"text\",\n placeholder: _vm.t(\"settings\", \"Display name\"),\n name: \"displayname\",\n autocomplete: \"off\",\n autocapitalize: \"none\",\n autocorrect: \"off\"\n },\n domProps: { value: _vm.newUser.displayName },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"displayName\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"password\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.password,\n expression: \"newUser.password\"\n }\n ],\n attrs: {\n id: \"newuserpassword\",\n type: \"password\",\n required: _vm.newUser.mailAddress === \"\",\n placeholder: _vm.t(\"settings\", \"Password\"),\n name: \"password\",\n autocomplete: \"new-password\",\n autocapitalize: \"none\",\n autocorrect: \"off\",\n minlength: _vm.minPasswordLength\n },\n domProps: { value: _vm.newUser.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"password\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.mailAddress,\n expression: \"newUser.mailAddress\"\n }\n ],\n attrs: {\n id: \"newemail\",\n type: \"email\",\n required: _vm.newUser.password === \"\",\n placeholder: _vm.t(\"settings\", \"Email\"),\n name: \"email\",\n autocomplete: \"off\",\n autocapitalize: \"none\",\n autocorrect: \"off\"\n },\n domProps: { value: _vm.newUser.mailAddress },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"mailAddress\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"groups\" },\n [\n !_vm.settings.isAdmin\n ? _c(\"input\", {\n attrs: {\n type: \"text\",\n tabindex: \"-1\",\n id: \"newgroups\",\n required: !_vm.settings.isAdmin\n },\n domProps: { value: _vm.newUser.groups }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.canAddGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false,\n allowEmpty: _vm.settings.isAdmin\n },\n model: {\n value: _vm.newUser.groups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"groups\", $$v)\n },\n expression: \"newUser.groups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\" },\n [\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false\n },\n model: {\n value: _vm.newUser.subAdminsGroups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"subAdminsGroups\", $$v)\n },\n expression: \"newUser.subAdminsGroups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"quota\" },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n allowEmpty: false,\n taggable: true\n },\n on: { tag: _vm.validateQuota },\n model: {\n value: _vm.newUser.quota,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"quota\", $$v)\n },\n expression: \"newUser.quota\"\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\" },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"Default language\"),\n label: \"name\",\n \"track-by\": \"code\",\n allowEmpty: false,\n \"group-values\": \"languages\",\n \"group-label\": \"label\"\n },\n model: {\n value: _vm.newUser.language,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"language\", $$v)\n },\n expression: \"newUser.language\"\n }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"lastLogin\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _c(\"input\", {\n staticClass: \"button primary icon-checkmark-white has-tooltip\",\n attrs: {\n type: \"submit\",\n id: \"newsubmit\",\n value: \"\",\n title: _vm.t(\"settings\", \"Add a new user\")\n }\n })\n ])\n ]\n ),\n _vm._v(\" \"),\n _vm._l(_vm.filteredUsers, function(user, key) {\n return _c(\"user-row\", {\n key: key,\n attrs: {\n user: user,\n settings: _vm.settings,\n showConfig: _vm.showConfig,\n groups: _vm.groups,\n subAdminsGroups: _vm.subAdminsGroups,\n quotaOptions: _vm.quotaOptions,\n languages: _vm.languages,\n externalActions: _vm.externalActions\n }\n })\n }),\n _vm._v(\" \"),\n _c(\n \"infinite-loading\",\n { ref: \"infiniteLoading\", on: { infinite: _vm.infiniteHandler } },\n [\n _c(\"div\", { attrs: { slot: \"spinner\" }, slot: \"spinner\" }, [\n _c(\"div\", { staticClass: \"users-icon-loading icon-loading\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-more\" }, slot: \"no-more\" }, [\n _c(\"div\", { staticClass: \"users-list-end\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-results\" }, slot: \"no-results\" }, [\n _c(\"div\", { attrs: { id: \"emptycontent\" } }, [\n _c(\"div\", { staticClass: \"icon-contacts-dark\" }),\n _vm._v(\" \"),\n _c(\"h2\", [_vm._v(_vm._s(_vm.t(\"settings\", \"No users in here\")))])\n ])\n ])\n ]\n )\n ],\n 2\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return Object.keys(_vm.user).length === 1\n ? _c(\"div\", { staticClass: \"row\", attrs: { \"data-id\": _vm.user.id } }, [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\": _vm.loading.delete || _vm.loading.disable\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [_vm._v(_vm._s(_vm.user.id))]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"obfuscated\" }, [\n _vm._v(\n _vm._s(\n _vm.t(\n \"settings\",\n \"You do not have permissions to see the details of this user\"\n )\n )\n )\n ])\n ])\n : _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\": _vm.loading.delete || _vm.loading.disable\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [_vm._v(_vm._s(_vm.user.id))]),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"displayName\",\n class: { \"icon-loading-small\": _vm.loading.displayName },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateDisplayName($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"displayName\",\n attrs: {\n id: \"displayName\" + _vm.user.id + _vm.rand,\n type: \"text\",\n disabled: _vm.loading.displayName || _vm.loading.all,\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n autocapitalize: \"off\",\n spellcheck: \"false\"\n },\n domProps: { value: _vm.user.displayname }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _vm.settings.canChangePassword\n ? _c(\n \"form\",\n {\n staticClass: \"password\",\n class: { \"icon-loading-small\": _vm.loading.password },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updatePassword($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"password\",\n attrs: {\n id: \"password\" + _vm.user.id + _vm.rand,\n type: \"password\",\n required: \"\",\n disabled: _vm.loading.password || _vm.loading.all,\n minlength: _vm.minPasswordLength,\n value: \"\",\n placeholder: _vm.t(\"settings\", \"New password\"),\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n autocapitalize: \"off\",\n spellcheck: \"false\"\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n )\n : _c(\"div\"),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"mailAddress\",\n class: { \"icon-loading-small\": _vm.loading.mailAddress },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateEmail($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"mailAddress\",\n attrs: {\n id: \"mailAddress\" + _vm.user.id + _vm.rand,\n type: \"email\",\n disabled: _vm.loading.mailAddress || _vm.loading.all,\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n autocapitalize: \"off\",\n spellcheck: \"false\"\n },\n domProps: { value: _vm.user.email }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"groups\",\n class: { \"icon-loading-small\": _vm.loading.groups }\n },\n [\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userGroups,\n options: _vm.availableGroups,\n disabled: _vm.loading.groups || _vm.loading.all,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n label: \"name\",\n \"track-by\": \"id\",\n limit: 2,\n multiple: true,\n taggable: _vm.settings.isAdmin,\n closeOnSelect: false\n },\n on: {\n tag: _vm.createGroup,\n select: _vm.addUserGroup,\n remove: _vm.removeUserGroup\n }\n },\n [\n _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.formatGroupsTitle(_vm.userGroups),\n expression: \"formatGroupsTitle(userGroups)\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"multiselect__limit\",\n attrs: { slot: \"limit\" },\n slot: \"limit\"\n },\n [_vm._v(\"+\" + _vm._s(_vm.userGroups.length - 2))]\n ),\n _vm._v(\" \"),\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n {\n staticClass: \"subadmins\",\n class: { \"icon-loading-small\": _vm.loading.subadmins }\n },\n [\n _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userSubAdminsGroups,\n options: _vm.subAdminsGroups,\n disabled: _vm.loading.subadmins || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n label: \"name\",\n \"track-by\": \"id\",\n limit: 2,\n multiple: true,\n closeOnSelect: false\n },\n on: {\n select: _vm.addUserSubAdmin,\n remove: _vm.removeUserSubAdmin\n }\n },\n [\n _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.formatGroupsTitle(\n _vm.userSubAdminsGroups\n ),\n expression:\n \"formatGroupsTitle(userSubAdminsGroups)\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"multiselect__limit\",\n attrs: { slot: \"limit\" },\n slot: \"limit\"\n },\n [\n _vm._v(\n \"+\" + _vm._s(_vm.userSubAdminsGroups.length - 2)\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"quota\",\n class: { \"icon-loading-small\": _vm.loading.quota }\n },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userQuota,\n options: _vm.quotaOptions,\n disabled: _vm.loading.quota || _vm.loading.all,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n allowEmpty: false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setUserQuota }\n }),\n _vm._v(\" \"),\n _c(\"progress\", {\n staticClass: \"quota-user-progress\",\n class: { warn: _vm.usedQuota > 80 },\n attrs: { max: \"100\" },\n domProps: { value: _vm.usedQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n {\n staticClass: \"languages\",\n class: { \"icon-loading-small\": _vm.loading.languages }\n },\n [\n _c(\"multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n value: _vm.userLanguage,\n options: _vm.languages,\n disabled: _vm.loading.languages || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"No language set\"),\n label: \"name\",\n \"track-by\": \"code\",\n allowEmpty: false,\n \"group-values\": \"languages\",\n \"group-label\": \"label\"\n },\n on: { input: _vm.setUserLanguage }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" }, [\n _vm._v(_vm._s(_vm.user.storageLocation))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(_vm._s(_vm.user.backend))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value:\n _vm.user.lastLogin > 0\n ? _vm.OC.Util.formatDate(_vm.user.lastLogin)\n : \"\",\n expression:\n \"user.lastLogin>0 ? OC.Util.formatDate(user.lastLogin) : ''\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"lastLogin\"\n },\n [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.user.lastLogin > 0\n ? _vm.OC.Util.relativeModifiedDate(_vm.user.lastLogin)\n : _vm.t(\"settings\", \"Never\")\n ) +\n \"\\n\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.OC.currentUser !== _vm.user.id &&\n _vm.user.id !== \"admin\" &&\n !_vm.loading.all\n ? _c(\"div\", { staticClass: \"toggleUserActions\" }, [\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: { click: _vm.toggleMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"popover-menu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<!-- Obfuscated user: Logged in user does not have permissions to see all of the data -->\n\t<div class=\"row\" v-if=\"Object.keys(user).length ===1\" :data-id=\"user.id\">\n\t\t<div class=\"avatar\" :class=\"{'icon-loading-small': loading.delete || loading.disable}\">\n\t\t\t<img alt=\"\" width=\"32\" height=\"32\" :src=\"generateAvatar(user.id, 32)\"\n\t\t\t\t :srcset=\"generateAvatar(user.id, 64)+' 2x, '+generateAvatar(user.id, 128)+' 4x'\"\n\t\t\t\t v-if=\"!loading.delete && !loading.disable\">\n\t\t</div>\n\t\t<div class=\"name\">{{user.id}}</div>\n\t\t<div class=\"obfuscated\">{{t('settings','You do not have permissions to see the details of this user')}}</div>\n\t</div>\n\n\t<!-- User full data -->\n\t<div class=\"row\" v-else :class=\"{'disabled': loading.delete || loading.disable}\" :data-id=\"user.id\">\n\t\t<div class=\"avatar\" :class=\"{'icon-loading-small': loading.delete || loading.disable}\">\n\t\t\t<img alt=\"\" width=\"32\" height=\"32\" :src=\"generateAvatar(user.id, 32)\"\n\t\t\t\t :srcset=\"generateAvatar(user.id, 64)+' 2x, '+generateAvatar(user.id, 128)+' 4x'\"\n\t\t\t\t v-if=\"!loading.delete && !loading.disable\">\n\t\t</div>\n\t\t<!-- dirty hack to ellipsis on two lines -->\n\t\t<div class=\"name\">{{user.id}}</div>\n\t\t<form class=\"displayName\" :class=\"{'icon-loading-small': loading.displayName}\" v-on:submit.prevent=\"updateDisplayName\">\n\t\t\t<input :id=\"'displayName'+user.id+rand\" type=\"text\"\n\t\t\t\t\t:disabled=\"loading.displayName||loading.all\"\n\t\t\t\t\t:value=\"user.displayname\" ref=\"displayName\"\n\t\t\t\t\tautocomplete=\"new-password\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n\t\t\t<input type=\"submit\" class=\"icon-confirm\" value=\"\" />\n\t\t</form>\n\t\t<form class=\"password\" v-if=\"settings.canChangePassword\" :class=\"{'icon-loading-small': loading.password}\"\n\t\t\t v-on:submit.prevent=\"updatePassword\">\n\t\t\t<input :id=\"'password'+user.id+rand\" type=\"password\" required\n\t\t\t\t\t:disabled=\"loading.password||loading.all\" :minlength=\"minPasswordLength\"\n\t\t\t\t\tvalue=\"\" :placeholder=\"t('settings', 'New password')\" ref=\"password\"\n\t\t\t\t\tautocomplete=\"new-password\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n\t\t\t<input type=\"submit\" class=\"icon-confirm\" value=\"\" />\n\t\t</form>\n\t\t<div v-else></div>\n\t\t<form class=\"mailAddress\" :class=\"{'icon-loading-small': loading.mailAddress}\" v-on:submit.prevent=\"updateEmail\">\n\t\t\t<input :id=\"'mailAddress'+user.id+rand\" type=\"email\"\n\t\t\t\t\t:disabled=\"loading.mailAddress||loading.all\"\n\t\t\t\t\t:value=\"user.email\" ref=\"mailAddress\"\n\t\t\t\t\tautocomplete=\"new-password\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n\t\t\t<input type=\"submit\" class=\"icon-confirm\" value=\"\" />\n\t\t</form>\n\t\t<div class=\"groups\" :class=\"{'icon-loading-small': loading.groups}\">\n\t\t\t<multiselect :value=\"userGroups\" :options=\"availableGroups\" :disabled=\"loading.groups||loading.all\"\n\t\t\t\t\t\t tag-placeholder=\"create\" :placeholder=\"t('settings', 'Add user in group')\"\n\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\" :limit=\"2\"\n\t\t\t\t\t\t :multiple=\"true\" :taggable=\"settings.isAdmin\" :closeOnSelect=\"false\"\n\t\t\t\t\t\t @tag=\"createGroup\" @select=\"addUserGroup\" @remove=\"removeUserGroup\">\n\t\t\t\t<span slot=\"limit\" class=\"multiselect__limit\" v-tooltip.auto=\"formatGroupsTitle(userGroups)\">+{{userGroups.length-2}}</span>\n\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t</multiselect>\n\t\t</div>\n\t\t<div class=\"subadmins\" v-if=\"subAdminsGroups.length>0 && settings.isAdmin\" :class=\"{'icon-loading-small': loading.subadmins}\">\n\t\t\t<multiselect :value=\"userSubAdminsGroups\" :options=\"subAdminsGroups\" :disabled=\"loading.subadmins||loading.all\"\n\t\t\t\t\t\t :placeholder=\"t('settings', 'Set user as admin for')\"\n\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\" :limit=\"2\"\n\t\t\t\t\t\t :multiple=\"true\" :closeOnSelect=\"false\"\n\t\t\t\t\t\t @select=\"addUserSubAdmin\" @remove=\"removeUserSubAdmin\">\n\t\t\t\t<span slot=\"limit\" class=\"multiselect__limit\" v-tooltip.auto=\"formatGroupsTitle(userSubAdminsGroups)\">+{{userSubAdminsGroups.length-2}}</span>\n\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t</multiselect>\n\t\t</div>\n\t\t<div class=\"quota\" :class=\"{'icon-loading-small': loading.quota}\">\n\t\t\t<multiselect :value=\"userQuota\" :options=\"quotaOptions\" :disabled=\"loading.quota||loading.all\"\n\t\t\t\t\t\t tag-placeholder=\"create\" :placeholder=\"t('settings', 'Select user quota')\"\n\t\t\t\t\t\t label=\"label\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t :allowEmpty=\"false\" :taggable=\"true\"\n\t\t\t\t\t\t @tag=\"validateQuota\" @input=\"setUserQuota\">\n\t\t\t</multiselect>\n\t\t\t<progress class=\"quota-user-progress\" :class=\"{'warn':usedQuota>80}\" :value=\"usedQuota\" max=\"100\"></progress>\n\t\t</div>\n\t\t<div class=\"languages\" :class=\"{'icon-loading-small': loading.languages}\"\n\t\t\t v-if=\"showConfig.showLanguages\">\n\t\t\t<multiselect :value=\"userLanguage\" :options=\"languages\" :disabled=\"loading.languages||loading.all\"\n\t\t\t\t\t\t :placeholder=\"t('settings', 'No language set')\"\n\t\t\t\t\t\t label=\"name\" track-by=\"code\" class=\"multiselect-vue\"\n\t\t\t\t\t\t :allowEmpty=\"false\" group-values=\"languages\" group-label=\"label\"\n\t\t\t\t\t\t @input=\"setUserLanguage\">\n\t\t\t</multiselect>\n\t\t</div>\n\t\t<div class=\"storageLocation\" v-if=\"showConfig.showStoragePath\">{{user.storageLocation}}</div>\n\t\t<div class=\"userBackend\" v-if=\"showConfig.showUserBackend\">{{user.backend}}</div>\n\t\t<div class=\"lastLogin\" v-if=\"showConfig.showLastLogin\" v-tooltip.auto=\"user.lastLogin>0 ? OC.Util.formatDate(user.lastLogin) : ''\">\n\t\t\t{{user.lastLogin>0 ? OC.Util.relativeModifiedDate(user.lastLogin) : t('settings','Never')}}\n\t\t</div>\n\t\t<div class=\"userActions\">\n\t\t\t<div class=\"toggleUserActions\" v-if=\"OC.currentUser !== user.id && user.id !== 'admin' && !loading.all\">\n\t\t\t\t<div class=\"icon-more\" v-click-outside=\"hideMenu\" @click=\"toggleMenu\"></div>\n\t\t\t\t<div class=\"popovermenu\" :class=\"{ 'open': openedMenu }\">\n\t\t\t\t\t<popover-menu :menu=\"userActions\" />\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div class=\"feedback\" :style=\"{opacity: feedbackMessage !== '' ? 1 : 0}\">\n\t\t\t\t<div class=\"icon-checkmark\"></div>\n\t\t\t\t{{feedbackMessage}}\n\t\t\t</div>\n\t\t</div>\n\t\t</div>\n</template>\n\n<script>\nimport popoverMenu from '../popoverMenu';\nimport ClickOutside from 'vue-click-outside';\nimport Multiselect from 'vue-multiselect';\nimport Vue from 'vue'\nimport VTooltip from 'v-tooltip'\n\nVue.use(VTooltip)\n\nexport default {\n\tname: 'userRow',\n\tprops: ['user', 'settings', 'groups', 'subAdminsGroups', 'quotaOptions', 'showConfig', 'languages', 'externalActions'],\n\tcomponents: {\n\t\tpopoverMenu,\n\t\tMultiselect\n\t},\n\tdirectives: {\n\t\tClickOutside\n\t},\n\tmounted() {\n\t\t// required if popup needs to stay opened after menu click\n\t\t// since we only have disable/delete actions, let's close it directly\n\t\t// this.popupItem = this.$el;\n\t},\n\tdata() {\n\t\treturn {\n\t\t\trand: parseInt(Math.random() * 1000),\n\t\t\topenedMenu: false,\n\t\t\tfeedbackMessage: '',\n\t\t\tloading: {\n\t\t\t\tall: false,\n\t\t\t\tdisplayName: false,\n\t\t\t\tpassword: false,\n\t\t\t\tmailAddress: false,\n\t\t\t\tgroups: false,\n\t\t\t\tsubadmins: false,\n\t\t\t\tquota: false,\n\t\t\t\tdelete: false,\n\t\t\t\tdisable: false,\n\t\t\t\tlanguages: false\n\t\t\t}\n\t\t}\n\t},\n\tcomputed: {\n\t\t/* USER POPOVERMENU ACTIONS */\n\t\tuserActions() {\n\t\t\tlet actions = [{\n\t\t\t\ticon: 'icon-delete',\n\t\t\t\ttext: t('settings','Delete user'),\n\t\t\t\taction: this.deleteUser\n\t\t\t},{\n\t\t\t\ticon: this.user.enabled ? 'icon-close' : 'icon-add',\n\t\t\t\ttext: this.user.enabled ? t('settings','Disable user') : t('settings','Enable user'),\n\t\t\t\taction: this.enableDisableUser\n\t\t\t}];\n\t\t\tif (this.user.email !== null && this.user.email !== '') {\n\t\t\t\tactions.push({\n\t\t\t\t\ticon: 'icon-mail',\n\t\t\t\t\ttext: t('settings','Resend welcome email'),\n\t\t\t\t\taction: this.sendWelcomeMail\n\t\t\t\t})\n\t\t\t}\n\t\t\treturn actions.concat(this.externalActions);\n\t\t},\n\n\t\t/* GROUPS MANAGEMENT */\n\t\tuserGroups() {\n\t\t\tlet userGroups = this.groups.filter(group => this.user.groups.includes(group.id));\n\t\t\treturn userGroups;\n\t\t},\n\t\tuserSubAdminsGroups() {\n\t\t\tlet userSubAdminsGroups = this.subAdminsGroups.filter(group => this.user.subadmin.includes(group.id));\n\t\t\treturn userSubAdminsGroups;\n\t\t},\n\t\tavailableGroups() {\n\t\t\treturn this.groups.map((group) => {\n\t\t\t\t// clone object because we don't want\n\t\t\t\t// to edit the original groups\n\t\t\t\tlet groupClone = Object.assign({}, group);\n\n\t\t\t\t// two settings here:\n\t\t\t\t// 1. user NOT in group but no permission to add\n\t\t\t\t// 2. user is in group but no permission to remove\n\t\t\t\tgroupClone.$isDisabled =\n\t\t\t\t\t(group.canAdd === false &&\n\t\t\t\t\t\t!this.user.groups.includes(group.id)) ||\n\t\t\t\t\t(group.canRemove === false &&\n\t\t\t\t\t\tthis.user.groups.includes(group.id));\n\t\t\t\treturn groupClone;\n\t\t\t});\n\t\t},\n\n\t\t/* QUOTA MANAGEMENT */\n\t\tusedQuota() {\n\t\t\tlet quota = this.user.quota.quota;\n\t\t\tif (quota > 0) {\n\t\t\t\tquota = Math.min(100, Math.round(this.user.quota.used / quota * 100));\n\t\t\t} else {\n\t\t\t\tvar usedInGB = this.user.quota.used / (10 * Math.pow(2, 30));\n\t\t\t\t//asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota\n\t\t\t\tquota = 95 * (1 - (1 / (usedInGB + 1)));\n\t\t\t}\n\t\t\treturn isNaN(quota) ? 0 : quota;\n\t\t},\n\t\t// Mapping saved values to objects\n\t\tuserQuota() {\n\t\t\tif (this.user.quota.quota >= 0) {\n\t\t\t\t// if value is valid, let's map the quotaOptions or return custom quota\n\t\t\t\tlet humanQuota = OC.Util.humanFileSize(this.user.quota.quota);\n\t\t\t\tlet userQuota = this.quotaOptions.find(quota => quota.id === humanQuota);\n\t\t\t\treturn userQuota ? userQuota : {id:humanQuota, label:humanQuota};\n\t\t\t} else if (this.user.quota.quota === 'default') {\n\t\t\t\t// default quota is replaced by the proper value on load\n\t\t\t\treturn this.quotaOptions[0];\n\t\t\t}\n\t\t\treturn this.quotaOptions[1]; // unlimited\n\t\t},\n\n\t\t/* PASSWORD POLICY? */\n\t\tminPasswordLength() {\n\t\t\treturn this.$store.getters.getPasswordPolicyMinLength;\n\t\t},\n\n\t\t/* LANGUAGE */\n\t\tuserLanguage() {\n\t\t\tlet availableLanguages = this.languages[0].languages.concat(this.languages[1].languages);\n\t\t\tlet userLang = availableLanguages.find(lang => lang.code === this.user.language);\n\t\t\tif (typeof userLang !== 'object' && this.user.language !== '') {\n\t\t\t\treturn {\n\t\t\t\t\tcode: this.user.language,\n\t\t\t\t\tname: this.user.language\n\t\t\t\t}\n\t\t\t} else if(this.user.language === '') {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn userLang;\n\t\t}\n\t},\n\tmethods: {\n\t\t/* MENU HANDLING */\n\t\ttoggleMenu() {\n\t\t\tthis.openedMenu = !this.openedMenu;\n\t\t},\n\t\thideMenu() {\n\t\t\tthis.openedMenu = false;\n\t\t},\n\n\t\t/**\n\t\t * Generate avatar url\n\t\t * \n\t\t * @param {string} user The user name\n\t\t * @param {int} size Size integer, default 32\n\t\t * @returns {string}\n\t\t */\n\t\tgenerateAvatar(user, size=32) {\n\t\t\treturn OC.generateUrl(\n\t\t\t\t'/avatar/{user}/{size}?v={version}',\n\t\t\t\t{\n\t\t\t\t\tuser: user,\n\t\t\t\t\tsize: size,\n\t\t\t\t\tversion: oc_userconfig.avatar.version\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\t/**\n\t\t * Format array of groups objects to a string for the popup\n\t\t * \n\t\t * @param {array} groups The groups\n\t\t * @returns {string}\n\t\t */\n\t\tformatGroupsTitle(groups) {\n\t\t\tlet names = groups.map(group => group.name);\n\t\t\treturn names.slice(2,).join(', ');\n\t\t},\n\n\t\tdeleteUser() {\n\t\t\tthis.loading.delete = true;\n\t\t\tthis.loading.all = true;\n\t\t\tlet userid = this.user.id;\n\t\t\treturn this.$store.dispatch('deleteUser', userid)\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading.delete = false\n\t\t\t\t\tthis.loading.all = false\n\t\t\t\t});\n\t\t},\n\n\t\tenableDisableUser() {\n\t\t\tthis.loading.delete = true;\n\t\t\tthis.loading.all = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet enabled = !this.user.enabled;\n\t\t\treturn this.$store.dispatch('enableDisableUser', {userid, enabled})\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading.delete = false\n\t\t\t\t\tthis.loading.all = false\n\t\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Set user displayName\n\t\t * \n\t\t * @param {string} displayName The display name\n\t\t * @returns {Promise}\n\t\t */\n\t\tupdateDisplayName() {\n\t\t\tlet displayName = this.$refs.displayName.value;\n\t\t\tthis.loading.displayName = true;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id, \n\t\t\t\tkey: 'displayname',\n\t\t\t\tvalue: displayName\n\t\t\t}).then(() => {\n\t\t\t\tthis.loading.displayName = false;\n\t\t\t\tthis.$refs.displayName.value = displayName;\n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Set user password\n\t\t * \n\t\t * @param {string} password The email adress\n\t\t * @returns {Promise}\n\t\t */\n\t\tupdatePassword() {\n\t\t\tlet password = this.$refs.password.value;\n\t\t\tthis.loading.password = true;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id,\n\t\t\t\tkey: 'password',\n\t\t\t\tvalue: password\n\t\t\t}).then(() => {\n\t\t\t\tthis.loading.password = false;\n\t\t\t\tthis.$refs.password.value = ''; // empty & show placeholder \n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Set user mailAddress\n\t\t * \n\t\t * @param {string} mailAddress The email adress\n\t\t * @returns {Promise}\n\t\t */\n\t\tupdateEmail() {\n\t\t\tlet mailAddress = this.$refs.mailAddress.value;\n\t\t\tthis.loading.mailAddress = true;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id,\n\t\t\t\tkey: 'email',\n\t\t\t\tvalue: mailAddress\n\t\t\t}).then(() => {\n\t\t\t\tthis.loading.mailAddress = false;\n\t\t\t\tthis.$refs.mailAddress.value = mailAddress;\n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Create a new group and add user to it\n\t\t * \n\t\t * @param {string} groups Group id\n\t\t * @returns {Promise}\n\t\t */\n\t\tcreateGroup(gid) {\n\t\t\tthis.loading = {groups:true, subadmins:true}\n\t\t\tthis.$store.dispatch('addGroup', gid)\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading = {groups:false, subadmins:false};\n\t\t\t\t\tlet userid = this.user.id;\n\t\t\t\t\tthis.$store.dispatch('addUserGroup', {userid, gid});\n\t\t\t\t})\n\t\t\t\t.catch(() => {\n\t\t\t\t\tthis.loading = {groups:false, subadmins:false};\n\t\t\t\t});\n\t\t\treturn this.$store.getters.getGroups[this.groups.length];\n\t\t},\n\n\t\t/**\n\t\t * Add user to group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\taddUserGroup(group) {\n\t\t\tif (group.canAdd === false) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis.loading.groups = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('addUserGroup', {userid, gid})\n\t\t\t\t.then(() => this.loading.groups = false);\n\t\t},\n\n\t\t/**\n\t\t * Remove user from group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\tremoveUserGroup(group) {\n\t\t\tif (group.canRemove === false) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis.loading.groups = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('removeUserGroup', {userid, gid})\n\t\t\t\t.then(() => {\n\t\t\t\t\tthis.loading.groups = false\n\t\t\t\t\t// remove user from current list if current list is the removed group\n\t\t\t\t\tif (this.$route.params.selectedGroup === gid) {\n\t\t\t\t\t\tthis.$store.commit('deleteUser', userid);\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t\t.catch(() => {\n\t\t\t\t\tthis.loading.groups = false\n\t\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Add user to group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\taddUserSubAdmin(group) {\n\t\t\tthis.loading.subadmins = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('addUserSubAdmin', {userid, gid})\n\t\t\t\t.then(() => this.loading.subadmins = false);\n\t\t},\n\n\t\t/**\n\t\t * Remove user from group\n\t\t * \n\t\t * @param {object} group Group object\n\t\t * @returns {Promise}\n\t\t */\n\t\tremoveUserSubAdmin(group) {\n\t\t\tthis.loading.subadmins = true;\n\t\t\tlet userid = this.user.id;\n\t\t\tlet gid = group.id;\n\t\t\treturn this.$store.dispatch('removeUserSubAdmin', {userid, gid})\n\t\t\t\t.then(() => this.loading.subadmins = false);\n\t\t},\n\n\t\t/**\n\t\t * Dispatch quota set request\n\t\t * \n\t\t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n\t\t * @returns {string}\n\t\t */\n\t\tsetUserQuota(quota = 'none') {\n\t\t\tthis.loading.quota = true;\n\t\t\t// ensure we only send the preset id\n\t\t\tquota = quota.id ? quota.id : quota;\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id, \n\t\t\t\tkey: 'quota',\n\t\t\t\tvalue: quota\n\t\t\t}).then(() => this.loading.quota = false);\n\t\t\treturn quota;\n\t\t},\n\n\t\t/**\n\t\t * Validate quota string to make sure it's a valid human file size\n\t\t * \n\t\t * @param {string} quota Quota in readable format '5 GB'\n\t\t * @returns {Promise|boolean}\n\t\t */\n\t\tvalidateQuota(quota) {\n\t\t\t// only used for new presets sent through @Tag\n\t\t\tlet validQuota = OC.Util.computerFileSize(quota);\n\t\t\tif (validQuota !== null && validQuota >= 0) {\n\t\t\t\t// unify format output\n\t\t\t\treturn this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n\t\t\t}\n\t\t\t// if no valid do not change\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * Dispatch language set request\n\t\t * \n\t\t * @param {Object} lang language object {code:'en', name:'English'}\n\t\t * @returns {Object}\n\t\t */\n\t\tsetUserLanguage(lang) {\n\t\t\tthis.loading.languages = true;\n\t\t\t// ensure we only send the preset id\n\t\t\tthis.$store.dispatch('setUserData', {\n\t\t\t\tuserid: this.user.id, \n\t\t\t\tkey: 'language',\n\t\t\t\tvalue: lang.code\n\t\t\t}).then(() => this.loading.languages = false);\n\t\t\treturn lang;\n\t\t},\n\n\t\t/**\n\t\t * Dispatch new welcome mail request\n\t\t */\n\t\tsendWelcomeMail() {\n\t\t\tthis.loading.all = true;\n\t\t\tthis.$store.dispatch('sendWelcomeMail', this.user.id)\n\t\t\t\t.then(success => {\n\t\t\t\t\tif (success) {\n\t\t\t\t\t\t// Show feedback to indicate the success\n\t\t\t\t\t\tthis.feedbackMessage = t('setting', 'Welcome mail sent!');\n\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\tthis.feedbackMessage = '';\n\t\t\t\t\t\t}, 2000);\n\t\t\t\t\t}\n\t\t\t\t\tthis.loading.all = false;\n\t\t\t\t});\n\t\t}\n\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./userRow.vue?vue&type=template&id=d19586ce&\"\nimport script from \"./userRow.vue?vue&type=script&lang=js&\"\nexport * from \"./userRow.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('d19586ce', component.options)\n } else {\n api.reload('d19586ce', component.options)\n }\n module.hot.accept(\"./userRow.vue?vue&type=template&id=d19586ce&\", function () {\n api.rerender('d19586ce', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/userList/userRow.vue\"\nexport default component.exports","import { render, staticRenderFns } from \"./userList.vue?vue&type=template&id=40745299&\"\nimport script from \"./userList.vue?vue&type=script&lang=js&\"\nexport * from \"./userList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('40745299', component.options)\n } else {\n api.reload('40745299', component.options)\n }\n module.hot.accept(\"./userList.vue?vue&type=template&id=40745299&\", function () {\n api.rerender('40745299', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/userList.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n \n<template>\n\t<div id=\"app-content\" class=\"user-list-grid\" v-on:scroll.passive=\"onScroll\">\n\t\t<div class=\"row\" id=\"grid-header\" :class=\"{'sticky': scrolled && !showConfig.showNewUserForm}\">\n\t\t\t<div id=\"headerAvatar\" class=\"avatar\"></div>\n\t\t\t<div id=\"headerName\" class=\"name\">{{ t('settings', 'Username') }}</div>\n\t\t\t<div id=\"headerDisplayName\" class=\"displayName\">{{ t('settings', 'Display name') }}</div>\n\t\t\t<div id=\"headerPassword\" class=\"password\">{{ t('settings', 'Password') }}</div>\n\t\t\t<div id=\"headerAddress\" class=\"mailAddress\">{{ t('settings', 'Email') }}</div>\n\t\t\t<div id=\"headerGroups\" class=\"groups\">{{ t('settings', 'Groups') }}</div>\n\t\t\t<div id=\"headerSubAdmins\" class=\"subadmins\"\n\t\t\t\t v-if=\"subAdminsGroups.length>0 && settings.isAdmin\">{{ t('settings', 'Group admin for') }}</div>\n\t\t\t<div id=\"headerQuota\" class=\"quota\">{{ t('settings', 'Quota') }}</div>\n\t\t\t<div id=\"headerLanguages\" class=\"languages\"\n\t\t\t\t v-if=\"showConfig.showLanguages\">{{ t('settings', 'Language') }}</div>\n\t\t\t<div class=\"headerStorageLocation storageLocation\"\n\t\t\t\t v-if=\"showConfig.showStoragePath\">{{ t('settings', 'Storage location') }}</div>\n\t\t\t<div class=\"headerUserBackend userBackend\"\n\t\t\t\t v-if=\"showConfig.showUserBackend\">{{ t('settings', 'User backend') }}</div>\n\t\t\t<div class=\"headerLastLogin lastLogin\" \n\t\t\t\t v-if=\"showConfig.showLastLogin\">{{ t('settings', 'Last login') }}</div>\n\t\t\t<div class=\"userActions\"></div>\n\t\t</div>\n\n\t\t<form class=\"row\" id=\"new-user\" v-show=\"showConfig.showNewUserForm\"\n\t\t\t v-on:submit.prevent=\"createUser\" :disabled=\"loading\"\n\t\t\t :class=\"{'sticky': scrolled && showConfig.showNewUserForm}\">\n\t\t\t<div :class=\"loading?'icon-loading-small':'icon-add'\"></div>\n\t\t\t<div class=\"name\">\n\t\t\t\t<input id=\"newusername\" type=\"text\" required v-model=\"newUser.id\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Username')\" name=\"username\"\n\t\t\t\t\t autocomplete=\"off\" autocapitalize=\"none\" autocorrect=\"off\"\n\t\t\t\t\t pattern=\"[a-zA-Z0-9 _\\.@\\-']+\">\n\t\t\t</div>\n\t\t\t<div class=\"displayName\">\n\t\t\t\t<input id=\"newdisplayname\" type=\"text\" v-model=\"newUser.displayName\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Display name')\" name=\"displayname\"\n\t\t\t\t\t autocomplete=\"off\" autocapitalize=\"none\" autocorrect=\"off\">\n\t\t\t</div>\n\t\t\t<div class=\"password\">\n\t\t\t\t<input id=\"newuserpassword\" type=\"password\" v-model=\"newUser.password\"\n\t\t\t\t\t :required=\"newUser.mailAddress===''\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Password')\" name=\"password\"\n\t\t\t\t\t autocomplete=\"new-password\" autocapitalize=\"none\" autocorrect=\"off\"\n\t\t\t\t\t :minlength=\"minPasswordLength\">\n\t\t\t</div>\n\t\t\t<div class=\"mailAddress\">\n\t\t\t\t<input id=\"newemail\" type=\"email\" v-model=\"newUser.mailAddress\"\n\t\t\t\t\t :required=\"newUser.password===''\"\n\t\t\t\t\t :placeholder=\"t('settings', 'Email')\" name=\"email\"\n\t\t\t\t\t autocomplete=\"off\" autocapitalize=\"none\" autocorrect=\"off\">\n\t\t\t</div>\n\t\t\t<div class=\"groups\">\n\t\t\t\t<!-- hidden input trick for vanilla html5 form validation -->\n\t\t\t\t<input type=\"text\" :value=\"newUser.groups\" v-if=\"!settings.isAdmin\"\n\t\t\t\t\t tabindex=\"-1\" id=\"newgroups\" :required=\"!settings.isAdmin\" />\n\t\t\t\t<multiselect :options=\"canAddGroups\" v-model=\"newUser.groups\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Add user in group')\"\n\t\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :multiple=\"true\" :close-on-select=\"false\"\n\t\t\t\t\t\t\t :allowEmpty=\"settings.isAdmin\">\n\t\t\t\t\t\t\t <!-- If user is not admin, he is a subadmin.\n\t\t\t\t\t\t\t \t Subadmins can't create users outside their groups\n\t\t\t\t\t\t\t\t Therefore, empty select is forbidden -->\n\t\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"subadmins\" v-if=\"subAdminsGroups.length>0 && settings.isAdmin\">\n\t\t\t\t<multiselect :options=\"subAdminsGroups\" v-model=\"newUser.subAdminsGroups\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Set user as admin for')\"\n\t\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :multiple=\"true\" :close-on-select=\"false\">\n\t\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"quota\">\n\t\t\t\t<multiselect :options=\"quotaOptions\" v-model=\"newUser.quota\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Select user quota')\"\n\t\t\t\t\t\t\t label=\"label\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :allowEmpty=\"false\" :taggable=\"true\"\n\t\t\t\t\t\t \t @tag=\"validateQuota\" >\n\t\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"languages\" v-if=\"showConfig.showLanguages\">\n\t\t\t\t<multiselect :options=\"languages\" v-model=\"newUser.language\"\n\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Default language')\"\n\t\t\t\t\t\t\t label=\"name\" track-by=\"code\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t :allowEmpty=\"false\" group-values=\"languages\" group-label=\"label\">\n\t\t\t\t</multiselect>\n\t\t\t</div>\n\t\t\t<div class=\"storageLocation\" v-if=\"showConfig.showStoragePath\"></div>\n\t\t\t<div class=\"userBackend\" v-if=\"showConfig.showUserBackend\"></div>\n\t\t\t<div class=\"lastLogin\" v-if=\"showConfig.showLastLogin\"></div>\n\t\t\t<div class=\"userActions\">\n\t\t\t\t<input type=\"submit\" id=\"newsubmit\" class=\"button primary icon-checkmark-white has-tooltip\"\n\t\t\t\t\t value=\"\" :title=\"t('settings', 'Add a new user')\">\n\t\t\t</div>\n\t\t</form>\n\n\t\t<user-row v-for=\"(user, key) in filteredUsers\" :user=\"user\" :key=\"key\" :settings=\"settings\" :showConfig=\"showConfig\"\n\t\t\t\t :groups=\"groups\" :subAdminsGroups=\"subAdminsGroups\" :quotaOptions=\"quotaOptions\" :languages=\"languages\"\n\t\t\t\t :externalActions=\"externalActions\" />\n\t\t<infinite-loading @infinite=\"infiniteHandler\" ref=\"infiniteLoading\">\n\t\t\t<div slot=\"spinner\"><div class=\"users-icon-loading icon-loading\"></div></div>\n\t\t\t<div slot=\"no-more\"><div class=\"users-list-end\"></div></div>\n\t\t\t<div slot=\"no-results\">\n\t\t\t\t<div id=\"emptycontent\">\n\t\t\t\t\t<div class=\"icon-contacts-dark\"></div>\n\t\t\t\t\t<h2>{{t('settings', 'No users in here')}}</h2>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</infinite-loading>\n\t</div>\n</template>\n\n<script>\nimport userRow from './userList/userRow';\nimport Multiselect from 'vue-multiselect';\nimport InfiniteLoading from 'vue-infinite-loading';\nimport Vue from 'vue';\n\nexport default {\n\tname: 'userList',\n\tprops: ['users', 'showConfig', 'selectedGroup', 'externalActions'],\n\tcomponents: {\n\t\tuserRow,\n\t\tMultiselect,\n\t\tInfiniteLoading\n\t},\n\tdata() {\n\t\tlet unlimitedQuota = {id:'none', label:t('settings', 'Unlimited')},\n\t\t\tdefaultQuota = {id:'default', label:t('settings', 'Default quota')};\n\t\treturn {\n\t\t\tunlimitedQuota: unlimitedQuota,\n\t\t\tdefaultQuota: defaultQuota,\n\t\t\tloading: false,\n\t\t\tscrolled: false,\n\t\t\tsearchQuery: '',\n\t\t\tnewUser: {\n\t\t\t\tid:'',\n\t\t\t\tdisplayName:'',\n\t\t\t\tpassword:'',\n\t\t\t\tmailAddress:'',\n\t\t\t\tgroups: [],\n\t\t\t\tsubAdminsGroups: [],\n\t\t\t\tquota: defaultQuota,\n\t\t\t\tlanguage: {code: 'en', name: t('settings', 'Default language')}\n\t\t\t}\n\t\t};\n\t},\n\tmounted() {\n\t\tif (!this.settings.canChangePassword) {\n\t\t\tOC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'));\n\t\t}\n\n\t\t/** \n\t\t * Init default language from server data. The use of this.settings\n\t\t * requires a computed variable, which break the v-model binding of the form,\n\t\t * this is a much easier solution than getter and setter on a computed var\n\t\t */\n\t\tVue.set(this.newUser.language, 'code', this.settings.defaultLanguage);\n\n\t\t/**\n\t\t * In case the user directly loaded the user list within a group\n\t\t * the watch won't be triggered. We need to initialize it.\n\t\t */\n\t\tthis.setNewUserDefaultGroup(this.$route.params.selectedGroup);\n\n\t\t/** \n\t\t * Register search\n\t\t */\n\t\tthis.userSearch = new OCA.Search(this.search, this.resetSearch);\n\t},\n\tcomputed: {\n\t\tsettings() {\n\t\t\treturn this.$store.getters.getServerData;\n\t\t},\n\t\tfilteredUsers() {\n\t\t\tif (this.selectedGroup === 'disabled') {\n\t\t\t\tlet disabledUsers = this.users.filter(user => user.enabled === false);\n\t\t\t\tif (disabledUsers.length===0 && this.$refs.infiniteLoading && this.$refs.infiniteLoading.isComplete) {\n\t\t\t\t\t// disabled group is empty, redirection to all users\n\t\t\t\t\tthis.$router.push({name: 'users'});\n\t\t\t\t\tthis.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');\n\t\t\t\t}\n\t\t\t\treturn disabledUsers;\n\t\t\t}\n\t\t\tif (!this.settings.isAdmin) {\n\t\t\t\t// we don't want subadmins to edit themselves\n\t\t\t\treturn this.users.filter(user => user.enabled !== false && user.id !== oc_current_user);\n\t\t\t}\n\t\t\treturn this.users.filter(user => user.enabled !== false);\n\t\t},\n\t\tgroups() {\n\t\t\t// data provided php side + remove the disabled group\n\t\t\treturn this.$store.getters.getGroups\n\t\t\t\t.filter(group => group.id !== 'disabled')\n\t\t\t\t.sort((a, b) => a.name.localeCompare(b.name));\n\t\t},\n\t\tcanAddGroups() {\n\t\t\t// disabled if no permission to add new users to group\n\t\t\treturn this.groups.map(group => {\n\t\t\t\t// clone object because we don't want\n\t\t\t\t// to edit the original groups\n\t\t\t\tgroup = Object.assign({}, group);\n\t\t\t\tgroup.$isDisabled = group.canAdd === false;\n\t\t\t\treturn group;\n\t\t\t});\n\t\t},\n\t\tsubAdminsGroups() {\n\t\t\t// data provided php side\n\t\t\treturn this.$store.getters.getSubadminGroups;\n\t\t},\n\t\tquotaOptions() {\n\t\t\t// convert the preset array into objects\n\t\t\tlet quotaPreset = this.settings.quotaPreset.reduce((acc, cur) => acc.concat({id: cur, label: cur}), []);\n\t\t\t// add default presets\n\t\t\tquotaPreset.unshift(this.unlimitedQuota);\n\t\t\tquotaPreset.unshift(this.defaultQuota);\n\t\t\treturn quotaPreset;\n\t\t},\n\t\tminPasswordLength() {\n\t\t\treturn this.$store.getters.getPasswordPolicyMinLength;\n\t\t},\n\t\tusersOffset() {\n\t\t\treturn this.$store.getters.getUsersOffset;\n\t\t},\n\t\tusersLimit() {\n\t\t\treturn this.$store.getters.getUsersLimit;\n\t\t},\n\n\t\t/* LANGUAGES */\n\t\tlanguages() {\n\t\t\treturn Array(\n\t\t\t\t{\n\t\t\t\t\tlabel: t('settings', 'Common languages'),\n\t\t\t\t\tlanguages: this.settings.languages.commonlanguages\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t('settings', 'All languages'),\n\t\t\t\t\tlanguages: this.settings.languages.languages\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t},\n\twatch: {\n\t\t// watch url change and group select\n\t\tselectedGroup: function (val, old) {\n\t\t\tthis.$store.commit('resetUsers');\n\t\t\tthis.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');\n\t\t\tthis.setNewUserDefaultGroup(val);\n\t\t}\n\t},\n\tmethods: {\n\t\tonScroll(event) {\n\t\t\tthis.scrolled = event.target.scrollTo > 0;\n\t\t},\n\n\t\t/**\n\t\t * Validate quota string to make sure it's a valid human file size\n\t\t * \n\t\t * @param {string} quota Quota in readable format '5 GB'\n\t\t * @returns {Object}\n\t\t */\n\t\tvalidateQuota(quota) {\n\t\t\t// only used for new presets sent through @Tag\n\t\t\tlet validQuota = OC.Util.computerFileSize(quota);\n\t\t\tif (validQuota !== null && validQuota >= 0) {\n\t\t\t\t// unify format output\n\t\t\t\tquota = OC.Util.humanFileSize(OC.Util.computerFileSize(quota));\n\t\t\t\treturn this.newUser.quota = {id: quota, label: quota};\n\t\t\t}\n\t\t\t// Default is unlimited\n\t\t\treturn this.newUser.quota = this.quotaOptions[0];\n\t\t},\n\n\t\tinfiniteHandler($state) {\n\t\t\tthis.$store.dispatch('getUsers', {\n\t\t\t\toffset: this.usersOffset,\n\t\t\t\tlimit: this.usersLimit,\n\t\t\t\tgroup: this.selectedGroup !== 'disabled' ? this.selectedGroup : '',\n\t\t\t\tsearch: this.searchQuery\n\t\t\t})\n\t\t\t.then((response) => { response ? $state.loaded() : $state.complete() });\n\t\t},\n\n\t\t/* SEARCH */\n\t\tsearch(query) {\n\t\t\tthis.searchQuery = query;\n\t\t\tthis.$store.commit('resetUsers');\n\t\t\tthis.$refs.infiniteLoading.$emit('$InfiniteLoading:reset');\n\t\t},\n\t\tresetSearch() {\n\t\t\tthis.search('');\n\t\t},\n\n\t\tresetForm() {\n\t\t\t// revert form to original state\n\t\t\tObject.assign(this.newUser, this.$options.data.call(this).newUser);\n\t\t\tthis.loading = false;\n\t\t},\n\t\tcreateUser() {\n\t\t\tthis.loading = true;\n\t\t\tthis.$store.dispatch('addUser', {\n\t\t\t\tuserid: this.newUser.id,\n\t\t\t\tpassword: this.newUser.password,\n\t\t\t\tdisplayName: this.newUser.displayName,\n\t\t\t\temail: this.newUser.mailAddress,\n\t\t\t\tgroups: this.newUser.groups.map(group => group.id),\n\t\t\t\tsubadmin: this.newUser.subAdminsGroups.map(group => group.id),\n\t\t\t\tquota: this.newUser.quota.id,\n\t\t\t\tlanguage: this.newUser.language.code,\n\t\t\t}).then(() => this.resetForm())\n\t\t\t.catch(() => this.loading = false);\n\t\t},\n\t\tsetNewUserDefaultGroup(value) {\n\t\t\tif (value && value.length > 0) {\n\t\t\t\t// setting new user default group to the current selected one\n\t\t\t\tlet currentGroup = this.groups.find(group => group.id === value);\n\t\t\t\tif (currentGroup) {\n\t\t\t\t\tthis.newUser.groups = [currentGroup];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// fallback, empty selected group\n\t\t\tthis.newUser.groups = [];\n\t\t}\n\t}\n}\n</script>\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport axios from 'axios';\n\nconst requestToken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken');\nconst tokenHeaders = { headers: { requesttoken: requestToken } };\n\nconst sanitize = function(url) {\n\treturn url.replace(/\\/$/, ''); // Remove last url slash\n};\n\nexport default {\n\n\t/**\n\t * This Promise is used to chain a request that require an admin password confirmation\n\t * Since chaining Promise have a very precise behavior concerning catch and then,\n\t * you'll need to be careful when using it.\n\t * e.g\n\t * // store\n\t * \taction(context) {\n\t *\t\treturn api.requireAdmin().then((response) => {\n\t *\t\t\treturn api.get('url')\n\t *\t\t\t\t.then((response) => {API success})\n\t *\t\t\t\t.catch((error) => {API failure});\n\t *\t\t}).catch((error) => {requireAdmin failure});\n\t *\t}\n\t * // vue\n\t *\tthis.$store.dispatch('action').then(() => {always executed})\n\t *\n\t * Since Promise.then().catch().then() will always execute the last then\n\t * this.$store.dispatch('action').then will always be executed\n\t * \n\t * If you want requireAdmin failure to also catch the API request failure\n\t * you will need to throw a new error in the api.get.catch()\n\t * \n\t * e.g\n\t *\tapi.requireAdmin().then((response) => {\n\t *\t\tapi.get('url')\n\t *\t\t\t.then((response) => {API success})\n\t *\t\t\t.catch((error) => {throw error;});\n\t *\t}).catch((error) => {requireAdmin OR API failure});\n\t * \n\t * @returns {Promise}\n\t */\n\trequireAdmin() {\n\t\treturn new Promise(function(resolve, reject) {\n\t\t\t// TODO: migrate the OC.dialog to Vue and avoid this mess\n\t\t\t// wait for password confirmation\n\t\t\tlet passwordTimeout;\n\t\t\tlet waitForpassword = function() {\n\t\t\t\tif (OC.PasswordConfirmation.requiresPasswordConfirmation()) {\n\t\t\t\t\tpasswordTimeout = setTimeout(waitForpassword, 500);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tclearTimeout(passwordTimeout);\n\t\t\t\tclearTimeout(promiseTimeout);\n\t\t\t\tresolve();\n\t\t\t};\n\n\t\t\t// automatically reject after 5s if not resolved\n\t\t\tlet promiseTimeout = setTimeout(() => {\n\t\t\t\tclearTimeout(passwordTimeout);\n\t\t\t\t// close dialog\n\t\t\t\tif (document.getElementsByClassName('oc-dialog-close').length>0) {\n\t\t\t\t\tdocument.getElementsByClassName('oc-dialog-close')[0].click();\n\t\t\t\t}\n\t\t\t\tOC.Notification.showTemporary(t('settings', 'You did not enter the password in time'));\n\t\t\t\treject('Password request cancelled');\n\t\t\t}, 7000); \n\n\t\t\t// request password\n\t\t\tOC.PasswordConfirmation.requirePasswordConfirmation();\n\t\t\twaitForpassword();\n\t\t});\n\t},\n\tget(url) {\n\t\treturn axios.get(sanitize(url), tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tpost(url, data) {\n\t\treturn axios.post(sanitize(url), data, tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tpatch(url, data) {\n\t\treturn axios.patch(sanitize(url), data, tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tput(url, data) {\n\t\treturn axios.put(sanitize(url), data, tokenHeaders)\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t},\n\tdelete(url, data) {\n\t\treturn axios.delete(sanitize(url), { data: data, headers: tokenHeaders.headers })\n\t\t\t.then((response) => Promise.resolve(response))\n\t\t\t.catch((error) => Promise.reject(error));\n\t}\n};","<!--\n - @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"content\" class=\"app-settings\">\n\t\t<app-navigation :menu=\"menu\">\n\t\t\t<template slot=\"settings-content\">\n\t\t\t\t<div>\n\t\t\t\t\t<p>{{t('settings', 'Default quota :')}}</p>\n\t\t\t\t\t<multiselect :value=\"defaultQuota\" :options=\"quotaOptions\"\n\t\t\t\t\t\t\t\ttag-placeholder=\"create\" :placeholder=\"t('settings', 'Select default quota')\"\n\t\t\t\t\t\t\t\tlabel=\"label\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t\t:allowEmpty=\"false\" :taggable=\"true\"\n\t\t\t\t\t\t\t\t@tag=\"validateQuota\" @input=\"setDefaultQuota\">\n\t\t\t\t\t</multiselect>\n\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showLanguages\" class=\"checkbox\" v-model=\"showLanguages\">\n\t\t\t\t\t<label for=\"showLanguages\">{{t('settings', 'Show Languages')}}</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showLastLogin\" class=\"checkbox\" v-model=\"showLastLogin\">\n\t\t\t\t\t<label for=\"showLastLogin\">{{t('settings', 'Show last login')}}</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showUserBackend\" class=\"checkbox\" v-model=\"showUserBackend\">\n\t\t\t\t\t<label for=\"showUserBackend\">{{t('settings', 'Show user backend')}}</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<input type=\"checkbox\" id=\"showStoragePath\" class=\"checkbox\" v-model=\"showStoragePath\">\n\t\t\t\t\t<label for=\"showStoragePath\">{{t('settings', 'Show storage path')}}</label>\n\t\t\t\t</div>\n\t\t\t</template>\n\t\t</app-navigation>\n\t\t<user-list :users=\"users\" :showConfig=\"showConfig\" :selectedGroup=\"selectedGroup\" :externalActions=\"externalActions\" />\n\t</div>\n</template>\n\n<script>\nimport appNavigation from '../components/appNavigation';\nimport userList from '../components/userList';\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage'\nimport Multiselect from 'vue-multiselect';\nimport api from '../store/api';\n\nVue.use(VueLocalStorage)\nVue.use(VueLocalStorage)\n\nexport default {\n\tname: 'Users',\n\tprops: ['selectedGroup'],\n\tcomponents: {\n\t\tappNavigation,\n\t\tuserList,\n\t\tMultiselect\n\t},\n\tbeforeMount() {\n\t\tthis.$store.commit('initGroups', {\n\t\t\tgroups: this.$store.getters.getServerData.groups, \n\t\t\torderBy: this.$store.getters.getServerData.sortGroups,\n\t\t\tuserCount: this.$store.getters.getServerData.userCount\n\t\t});\n\t\tthis.$store.dispatch('getPasswordPolicyMinLength');\n\t},\n\tcreated() {\n\t\t// init the OCA.Settings.UserList object\n\t\t// and add the registerAction method\n\t\tObject.assign(OCA, {\n\t\t\tSettings: {\n\t\t\t\tUserList: {\n\t\t\t\t\tregisterAction: this.registerAction\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t},\n\tdata() {\n\t\treturn {\n\t\t\t// default quota is set to unlimited\n\t\t\tunlimitedQuota: {id: 'none', label: t('settings', 'Unlimited')},\n\t\t\t// temporary value used for multiselect change\n\t\t\tselectedQuota: false,\n\t\t\texternalActions: [],\n\t\t\tshowConfig: {\n\t\t\t\tshowStoragePath: false,\n\t\t\t\tshowUserBackend: false,\n\t\t\t\tshowLastLogin: false,\n\t\t\t\tshowNewUserForm: false,\n\t\t\t\tshowLanguages: false\n\t\t\t}\n\t\t}\n\t},\n\tmethods: {\n\t\ttoggleNewUserMenu() {\n\t\t\tthis.showConfig.showNewUserForm = !this.showConfig.showNewUserForm;\n\t\t\tif (this.showConfig.showNewUserForm) {\n\t\t\t\tVue.nextTick(() => {\n\t\t\t\t\twindow.newusername.focus();\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\t\tgetLocalstorage(key) {\n\t\t\t// force initialization\n\t\t\tlet localConfig = this.$localStorage.get(key);\n\t\t\t// if localstorage is null, fallback to original values\n\t\t\tthis.showConfig[key] = localConfig !== null ? localConfig === 'true' : this.showConfig[key];\n\t\t\treturn this.showConfig[key];\n\t\t},\n\t\tsetLocalStorage(key, status) {\n\t\t\tthis.showConfig[key] = status;\n\t\t\tthis.$localStorage.set(key, status);\n\t\t\treturn status;\n\t\t},\n\t\tremoveGroup(groupid) {\n\t\t\tlet self = this;\n\t\t\t// TODO migrate to a vue js confirm dialog component \n\t\t\tOC.dialogs.confirm(\n\t\t\t\tt('settings', 'You are about to remove the group {group}. The users will NOT be deleted.', {group: groupid}),\n\t\t\t\tt('settings','Please confirm the group removal '),\n\t\t\t\tfunction (success) {\n\t\t\t\t\tif (success) {\n\t\t\t\t\t\tself.$store.dispatch('removeGroup', groupid);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\n\t\t/**\n\t\t * Dispatch default quota set request\n\t\t * \n\t\t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n\t\t * @returns {string}\n\t\t */\n\t\tsetDefaultQuota(quota = 'none') {\n\t\t\tthis.$store.dispatch('setAppConfig', {\n\t\t\t\tapp: 'files',\n\t\t\t\tkey: 'default_quota',\n\t\t\t\t// ensure we only send the preset id\n\t\t\t\tvalue: quota.id ? quota.id : quota\n\t\t\t}).then(() => {\n\t\t\t\tif (typeof quota !== 'object') {\n\t\t\t\t\tquota = {id: quota, label: quota};\n\t\t\t\t}\n\t\t\t\tthis.defaultQuota = quota;\n\t\t\t});\n\t\t},\n\n\t\t/**\n\t\t * Validate quota string to make sure it's a valid human file size\n\t\t * \n\t\t * @param {string} quota Quota in readable format '5 GB'\n\t\t * @returns {Promise|boolean}\n\t\t */\n\t\tvalidateQuota(quota) {\n\t\t\t// only used for new presets sent through @Tag\n\t\t\tlet validQuota = OC.Util.computerFileSize(quota);\n\t\t\tif (validQuota === 0) {\n\t\t\t\treturn this.setDefaultQuota('none');\n\t\t\t} else if (validQuota !== null) {\n\t\t\t\t// unify format output\n\t\t\t\treturn this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n\t\t\t}\n\t\t\t// if no valid do not change\n\t\t\treturn false;\n\t\t},\n\n\t\t/**\n\t\t * Register a new action for the user menu\n\t\t * \n\t\t * @param {string} icon the icon class\n\t\t * @param {string} text the text to display\n\t\t * @param {function} action the function to run\n\t\t */\n\t\tregisterAction(icon, text, action) {\n\t\t\tthis.externalActions.push({\n\t\t\t\ticon: icon,\n\t\t\t\ttext: text,\n\t\t\t\taction: action\n\t\t\t});\n\t\t\treturn this.externalActions;\n\t\t}\n\t},\n\tcomputed: {\n\t\tusers() {\n\t\t\treturn this.$store.getters.getUsers;\n\t\t},\n\t\tloading() {\n\t\t\treturn Object.keys(this.users).length === 0;\n\t\t},\n\t\tusersOffset() {\n\t\t\treturn this.$store.getters.getUsersOffset;\n\t\t},\n\t\tusersLimit() {\n\t\t\treturn this.$store.getters.getUsersLimit;\n\t\t},\n\n\t\t// Local settings\n\t\tshowLanguages: {\n\t\t\tget: function() {return this.getLocalstorage('showLanguages')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showLanguages', status);\n\t\t\t}\n\t\t},\n\t\tshowLastLogin: {\n\t\t\tget: function() {return this.getLocalstorage('showLastLogin')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showLastLogin', status);\n\t\t\t}\n\t\t},\n\t\tshowUserBackend: {\n\t\t\tget: function() {return this.getLocalstorage('showUserBackend')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showUserBackend', status);\n\t\t\t}\n\t\t},\n\t\tshowStoragePath: {\n\t\t\tget: function() {return this.getLocalstorage('showStoragePath')},\n\t\t\tset: function(status) {\n\t\t\t\tthis.setLocalStorage('showStoragePath', status);\n\t\t\t}\n\t\t},\n\n\t\tuserCount() {\n\t\t\treturn this.$store.getters.getUserCount;\n\t\t},\n\t\tsettings() {\n\t\t\treturn this.$store.getters.getServerData;\n\t\t},\n\n\t\t// default quota\n\t\tquotaOptions() {\n\t\t\t// convert the preset array into objects\n\t\t\tlet quotaPreset = this.settings.quotaPreset.reduce((acc, cur) => acc.concat({id:cur, label:cur}), []);\n\t\t\t// add default presets\n\t\t\tquotaPreset.unshift(this.unlimitedQuota);\n\t\t\treturn quotaPreset;\n\t\t},\n\t\t// mapping saved values to objects\n\t\tdefaultQuota: {\n\t\t\tget: function() {\n\t\t\t\tif (this.selectedQuota !== false) {\n\t\t\t\t\treturn this.selectedQuota;\n\t\t\t\t}\n\t\t\t\tif (OC.Util.computerFileSize(this.settings.defaultQuota) > 0) {\n\t\t\t\t\t// if value is valid, let's map the quotaOptions or return custom quota\n\t\t\t\t\treturn {id:this.settings.defaultQuota, label:this.settings.defaultQuota};\n\t\t\t\t}\n\t\t\t\treturn this.unlimitedQuota; // unlimited\n\t\t\t},\n\t\t\tset: function(quota) {\n\t\t\t\tthis.selectedQuota = quota;\n\t\t\t}\n\t\t\t\n\t\t},\n\n\t\t// BUILD APP NAVIGATION MENU OBJECT\n\t\tmenu() {\n\t\t\t// Data provided php side\n\t\t\tlet groups = this.$store.getters.getGroups;\n\t\t\tgroups = Array.isArray(groups) ? groups : [];\n\n\t\t\t// Map groups\n\t\t\tgroups = groups.map(group => {\n\t\t\t\tlet item = {};\n\t\t\t\titem.id = group.id.replace(' ', '_');\n\t\t\t\titem.key = item.id;\n\t\t\t\titem.utils = {}\n\n\t\t\t\t// router link to\n\t\t\t\titem.router = {\n\t\t\t\t\tname: 'group',\n\t\t\t\t\tparams: {selectedGroup: group.id}\n\t\t\t\t};\n\n\t\t\t\t// group name\n\t\t\t\titem.text = group.name;\n\n\t\t\t\t// users count\n\t\t\t\tif (group.usercount - group.disabled > 0) {\n\t\t\t\t\titem.utils.counter = group.usercount - group.disabled;\n\t\t\t\t}\n\n\t\t\t\tif (item.id !== 'admin' && item.id !== 'disabled' && this.settings.isAdmin) {\n\t\t\t\t\t// add delete button on real groups\n\t\t\t\t\tlet self = this;\n\t\t\t\t\titem.utils.actions = [{\n\t\t\t\t\t\ticon: 'icon-delete',\n\t\t\t\t\t\ttext: t('settings', 'Remove group'),\n\t\t\t\t\t\taction: function() {self.removeGroup(group.id)}\n\t\t\t\t\t}];\n\t\t\t\t};\n\t\t\t\treturn item;\n\t\t\t});\n\n\t\t\t// Adjust data\n\t\t\tlet adminGroup = groups.find(group => group.id == 'admin');\n\t\t\tlet disabledGroupIndex = groups.findIndex(group => group.id == 'disabled');\n\t\t\tlet disabledGroup = groups[disabledGroupIndex];\n\t\t\tif (adminGroup && adminGroup.text) {\n\t\t\t\tadminGroup.text = t('settings', 'Admins'); // rename admin group\n\t\t\t\tadminGroup.icon = 'icon-user-admin'; // set icon\n\t\t\t}\n\t\t\tif (disabledGroup && disabledGroup.text) {\n\t\t\t\tdisabledGroup.text = t('settings', 'Disabled users'); // rename disabled group\n\t\t\t\tdisabledGroup.icon = 'icon-disabled-users'; // set icon\n\t\t\t\tif (!disabledGroup.utils.counter) {\n\t\t\t\t\tgroups.splice(disabledGroupIndex, 1); // remove disabled if empty\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add separator\n\t\t\tlet realGroups = groups.find((group) => {return group.id !== 'disabled' && group.id !== 'admin'});\n\t\t\trealGroups = typeof realGroups === 'undefined' ? [] : realGroups;\n\t\t\trealGroups = Array.isArray(realGroups) ? realGroups : [realGroups];\n\t\t\tif (realGroups.length > 0) {\n\t\t\t\tlet separator = {\n\t\t\t\t\tcaption: true,\n\t\t\t\t\ttext: t('settings', 'Groups')\n\t\t\t\t};\n\t\t\t\tgroups.unshift(separator);\n\t\t\t}\n\n\n\t\t\t// Add everyone group\n\t\t\tlet everyoneGroup = {\n\t\t\t\tid: 'everyone',\n\t\t\t\tkey: 'everyone',\n\t\t\t\ticon: 'icon-contacts-dark',\n\t\t\t\trouter: {name:'users'},\n\t\t\t\ttext: t('settings', 'Everyone'),\n\t\t\t};\n\t\t\t// users count\n\t\t\tif (this.userCount > 0) {\n\t\t\t\teveryoneGroup.utils = {counter: this.userCount};\n\t\t\t}\n\t\t\tgroups.unshift(everyoneGroup);\n\n\t\t\t// Return\n\t\t\treturn {\n\t\t\t\tid: 'usergrouplist',\n\t\t\t\tnew: {\n\t\t\t\t\tid:'new-user-button',\n\t\t\t\t\ttext: t('settings','New user'),\n\t\t\t\t\ticon: 'icon-add',\n\t\t\t\t\taction: this.toggleNewUserMenu\n\t\t\t\t},\n\t\t\t\titems: groups\n\t\t\t}\n\t\t},\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./Users.vue?vue&type=template&id=68be103e&\"\nimport script from \"./Users.vue?vue&type=script&lang=js&\"\nexport * from \"./Users.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('68be103e', component.options)\n } else {\n api.reload('68be103e', component.options)\n }\n module.hot.accept(\"./Users.vue?vue&type=template&id=68be103e&\", function () {\n api.rerender('68be103e', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/views/Users.vue\"\nexport default component.exports","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"app-settings\",\n class: { \"with-app-sidebar\": _vm.currentApp },\n attrs: { id: \"content\" }\n },\n [\n _c(\"app-navigation\", { attrs: { menu: _vm.menu } }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"app-settings-content\",\n class: { \"icon-loading\": _vm.loadingList },\n attrs: { id: \"app-content\" }\n },\n [\n _c(\"app-list\", {\n attrs: {\n category: _vm.category,\n app: _vm.currentApp,\n search: _vm.searchQuery\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.id && _vm.currentApp\n ? _c(\n \"div\",\n { attrs: { id: \"app-sidebar\" } },\n [\n _c(\"app-details\", {\n attrs: { category: _vm.category, app: _vm.currentApp }\n })\n ],\n 1\n )\n : _vm._e()\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"div\", { attrs: { id: \"app-content-inner\" } }, [\n _c(\n \"div\",\n {\n staticClass: \"apps-list\",\n class: {\n installed: _vm.useBundleView || _vm.useListView,\n store: _vm.useAppStoreView\n },\n attrs: { id: \"apps-list\" }\n },\n [\n _vm.useListView\n ? [\n _c(\n \"transition-group\",\n {\n staticClass: \"apps-list-container\",\n attrs: { name: \"app-list\", tag: \"div\" }\n },\n _vm._l(_vm.apps, function(app) {\n return _c(\"app-item\", {\n key: app.id,\n attrs: { app: app, category: _vm.category }\n })\n })\n )\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _vm._l(_vm.bundles, function(bundle) {\n return _vm.useBundleView && _vm.bundleApps(bundle.id).length > 0\n ? [\n _c(\n \"transition-group\",\n {\n staticClass: \"apps-list-container\",\n attrs: { name: \"app-list\", tag: \"div\" }\n },\n [\n _c(\"div\", { key: bundle.id, staticClass: \"apps-header\" }, [\n _c(\"div\", { staticClass: \"app-image\" }),\n _vm._v(\" \"),\n _c(\"h2\", [\n _vm._v(_vm._s(bundle.name) + \" \"),\n _c(\"input\", {\n attrs: {\n type: \"button\",\n value: _vm.bundleToggleText(bundle.id)\n },\n on: {\n click: function($event) {\n _vm.toggleBundle(bundle.id)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-version\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-level\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-groups\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [_vm._v(\" \")])\n ]),\n _vm._v(\" \"),\n _vm._l(_vm.bundleApps(bundle.id), function(app) {\n return _c(\"app-item\", {\n key: bundle.id + app.id,\n attrs: { app: app, category: _vm.category }\n })\n })\n ],\n 2\n )\n ]\n : _vm._e()\n }),\n _vm._v(\" \"),\n _vm.useAppStoreView\n ? _vm._l(_vm.apps, function(app) {\n return _c(\"app-item\", {\n key: app.id,\n attrs: { app: app, category: _vm.category, \"list-view\": false }\n })\n })\n : _vm._e()\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"apps-list installed\", attrs: { id: \"apps-list-search\" } },\n [\n _c(\n \"div\",\n { staticClass: \"apps-list-container\" },\n [\n _vm.search !== \"\" && _vm.searchApps.length > 0\n ? [\n _c(\"div\", { staticClass: \"section\" }, [\n _c(\"div\"),\n _vm._v(\" \"),\n _c(\"td\", { attrs: { colspan: \"5\" } }, [\n _c(\"h2\", [\n _vm._v(\n _vm._s(\n _vm.t(\"settings\", \"Results from other categories\")\n )\n )\n ])\n ])\n ]),\n _vm._v(\" \"),\n _vm._l(_vm.searchApps, function(app) {\n return _c(\"app-item\", {\n key: app.id,\n attrs: {\n app: app,\n category: _vm.category,\n \"list-view\": true\n }\n })\n })\n ]\n : _vm._e()\n ],\n 2\n )\n ]\n ),\n _vm._v(\" \"),\n !_vm.loading && _vm.searchApps.length === 0 && _vm.apps.length === 0\n ? _c(\n \"div\",\n {\n staticClass: \"emptycontent emptycontent-search\",\n attrs: { id: \"apps-list-empty\" }\n },\n [\n _c(\"div\", {\n staticClass: \"icon-settings-dark\",\n attrs: { id: \"app-list-empty-icon\" }\n }),\n _vm._v(\" \"),\n _c(\"h2\", [\n _vm._v(\n _vm._s(_vm.t(\"settings\", \"No apps found for your version\"))\n )\n ])\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { id: \"searchresults\" } })\n ])\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"section\",\n class: { selected: _vm.isSelected },\n on: { click: _vm.showAppDetails }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"app-image app-image-icon\",\n on: { click: _vm.showAppDetails }\n },\n [\n (_vm.listView && !_vm.app.preview) ||\n (!_vm.listView && !_vm.app.screenshot)\n ? _c(\"div\", { staticClass: \"icon-settings-dark\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.listView && _vm.app.preview\n ? _c(\n \"svg\",\n { attrs: { width: \"32\", height: \"32\", viewBox: \"0 0 32 32\" } },\n [\n _c(\"defs\", [\n _c(\n \"filter\",\n { attrs: { id: _vm.filterId } },\n [\n _c(\"feColorMatrix\", {\n attrs: {\n in: \"SourceGraphic\",\n type: \"matrix\",\n values: \"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"\n }\n })\n ],\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\"image\", {\n staticClass: \"app-icon\",\n attrs: {\n x: \"0\",\n y: \"0\",\n width: \"32\",\n height: \"32\",\n preserveAspectRatio: \"xMinYMin meet\",\n filter: _vm.filterUrl,\n \"xlink:href\": _vm.app.preview\n }\n })\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.listView && _vm.app.screenshot\n ? _c(\"img\", { attrs: { src: _vm.app.screenshot, width: \"100%\" } })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"app-name\", on: { click: _vm.showAppDetails } },\n [_vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.name) + \"\\n\\t\")]\n ),\n _vm._v(\" \"),\n !_vm.listView\n ? _c(\"div\", { staticClass: \"app-summary\" }, [\n _vm._v(_vm._s(_vm.app.summary))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.listView\n ? _c(\"div\", { staticClass: \"app-version\" }, [\n _vm.app.version\n ? _c(\"span\", [_vm._v(_vm._s(_vm.app.version))])\n : _vm.app.appstoreData.releases[0].version\n ? _c(\"span\", [\n _vm._v(_vm._s(_vm.app.appstoreData.releases[0].version))\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"app-level\" },\n [\n _vm.app.level === 200\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"Official apps are developed by and within the community. They offer central functionality and are ready for production use.\"\n ),\n expression:\n \"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"official icon-checkmark\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Official\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.listView\n ? _c(\"app-score\", { attrs: { score: _vm.app.score } })\n : _vm._e()\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _vm.app.error\n ? _c(\"div\", { staticClass: \"warning\" }, [\n _vm._v(_vm._s(_vm.app.error))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.loading(_vm.app.id)\n ? _c(\"div\", { staticClass: \"icon icon-loading-small\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.update\n ? _c(\"input\", {\n staticClass: \"update\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Update to {update}\", {\n update: _vm.app.update\n }),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.update(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.canUnInstall\n ? _c(\"input\", {\n staticClass: \"uninstall\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Remove\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.remove(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.active\n ? _c(\"input\", {\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Disable\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.disable(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.active\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.enableButtonTooltip,\n expression: \"enableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.enableButtonText,\n disabled:\n !_vm.app.canInstall ||\n _vm.installing ||\n _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n _vm.enable(_vm.app.id)\n }\n }\n })\n : _vm._e()\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"img\", {\n staticClass: \"app-score-image\",\n attrs: { src: _vm.scoreImage }\n })\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<img :src=\"scoreImage\" class=\"app-score-image\" />\n</template>\n<script>\n\texport default {\n\t\tname: 'appScore',\n\t\tprops: ['score'],\n\t\tcomputed: {\n\t\t\tscoreImage() {\n\t\t\t\tlet score = Math.round( this.score * 10 );\n\t\t\t\tlet imageName = 'rating/s' + score + '.svg';\n\t\t\t\treturn OC.imagePath('core', imageName);\n\t\t\t}\n\t\t}\n\t};\n</script>","import { render, staticRenderFns } from \"./appScore.vue?vue&type=template&id=71d71231&\"\nimport script from \"./appScore.vue?vue&type=script&lang=js&\"\nexport * from \"./appScore.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('71d71231', component.options)\n } else {\n api.reload('71d71231', component.options)\n }\n module.hot.accept(\"./appScore.vue?vue&type=template&id=71d71231&\", function () {\n api.rerender('71d71231', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appList/appScore.vue\"\nexport default component.exports","var render, staticRenderFns\nimport script from \"./appManagement.vue?vue&type=script&lang=js&\"\nexport * from \"./appManagement.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('1ae84938', component.options)\n } else {\n api.reload('1ae84938', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"src/components/appManagement.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<script>\n\texport default {\n\t\tmounted() {\n\t\t\tif (this.app.groups.length > 0) {\n\t\t\t\tthis.groupCheckedAppsData = true;\n\t\t\t}\n\t\t},\n\t\tcomputed: {\n\t\t\tappGroups() {\n\t\t\t\treturn this.app.groups.map(group => {return {id: group, name: group}});\n\t\t\t},\n\t\t\tloading() {\n\t\t\t\tlet self = this;\n\t\t\t\treturn function(id) {\n\t\t\t\t\treturn self.$store.getters.loading(id);\n\t\t\t\t}\n\t\t\t},\n\t\t\tinstalling() {\n\t\t\t\treturn this.$store.getters.loading('install');\n\t\t\t},\n\t\t\tenableButtonText() {\n\t\t\t\tif (this.app.needsDownload) {\n\t\t\t\t\treturn t('settings','Download and enable');\n\t\t\t\t}\n\t\t\t\treturn t('settings','Enable');\n\t\t\t},\n\t\t\tenableButtonTooltip() {\n\t\t\t\tif (this.app.needsDownload) {\n\t\t\t\t\treturn t('settings','The app will be downloaded from the app store');\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tmethods: {\n\t\t\tasyncFindGroup(query) {\n\t\t\t\treturn this.$store.dispatch('getGroups', {search: query, limit: 5, offset: 0});\n\t\t\t},\n\t\t\tisLimitedToGroups(app) {\n\t\t\t\tif (this.app.groups.length || this.groupCheckedAppsData) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\tsetGroupLimit: function() {\n\t\t\t\tif (!this.groupCheckedAppsData) {\n\t\t\t\t\tthis.$store.dispatch('enableApp', {appId: this.app.id, groups: []});\n\t\t\t\t}\n\t\t\t},\n\t\t\tcanLimitToGroups(app) {\n\t\t\t\tif (app.types && app.types.includes('filesystem')\n\t\t\t\t\t|| app.types.includes('prelogin')\n\t\t\t\t\t|| app.types.includes('authentication')\n\t\t\t\t\t|| app.types.includes('logging')\n\t\t\t\t\t|| app.types.includes('prevent_group_restriction')) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\treturn true;\n\t\t\t},\n\t\t\taddGroupLimitation(group) {\n\t\t\t\tlet groups = this.app.groups.concat([]).concat([group.id]);\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: this.app.id, groups: groups});\n\t\t\t},\n\t\t\tremoveGroupLimitation(group) {\n\t\t\t\tlet currentGroups = this.app.groups.concat([]);\n\t\t\t\tlet index = currentGroups.indexOf(group.id);\n\t\t\t\tif (index > -1) {\n\t\t\t\t\tcurrentGroups.splice(index, 1);\n\t\t\t\t}\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: this.app.id, groups: currentGroups});\n\t\t\t},\n\t\t\tenable(appId) {\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: appId, groups: [] })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tdisable(appId) {\n\t\t\t\tthis.$store.dispatch('disableApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tremove(appId) {\n\t\t\t\tthis.$store.dispatch('uninstallApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tinstall(appId) {\n\t\t\t\tthis.$store.dispatch('enableApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t},\n\t\t\tupdate(appId) {\n\t\t\t\tthis.$store.dispatch('updateApp', { appId: appId })\n\t\t\t\t\t.then((response) => { OC.Settings.Apps.rebuildNavigation(); })\n\t\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t\t}\n\t\t}\n\t}\n</script>\n","var render, staticRenderFns\nimport script from \"./svgFilterMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./svgFilterMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('66ac5316', component.options)\n } else {\n api.reload('66ac5316', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"src/components/svgFilterMixin.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<script>\n\texport default {\n\t\tname: 'svgFilterMixin',\n\t\tmounted() {\n\t\t\tthis.filterId = 'invertIconApps' + Math.floor((Math.random() * 100 )) + new Date().getSeconds() + new Date().getMilliseconds();\n\t\t},\n\t\tcomputed: {\n\t\t\tfilterUrl () {\n\t\t\t\treturn `url(#${this.filterId})`;\n\t\t\t},\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tfilterId: '',\n\t\t\t};\n\t\t},\n\t}\n</script>","import { render, staticRenderFns } from \"./appItem.vue?vue&type=template&id=1c68d544&\"\nimport script from \"./appItem.vue?vue&type=script&lang=js&\"\nexport * from \"./appItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('1c68d544', component.options)\n } else {\n api.reload('1c68d544', component.options)\n }\n module.hot.accept(\"./appItem.vue?vue&type=template&id=1c68d544&\", function () {\n api.rerender('1c68d544', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appList/appItem.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div class=\"section\" v-bind:class=\"{ selected: isSelected }\" v-on:click=\"showAppDetails\">\n\t\t<div class=\"app-image app-image-icon\" v-on:click=\"showAppDetails\">\n\t\t\t<div v-if=\"(listView && !app.preview) || (!listView && !app.screenshot)\" class=\"icon-settings-dark\"></div>\n\n\t\t\t<svg v-if=\"listView && app.preview\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n\t\t\t\t<defs><filter :id=\"filterId\"><feColorMatrix in=\"SourceGraphic\" type=\"matrix\" values=\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"></feColorMatrix></filter></defs>\n\t\t\t\t<image x=\"0\" y=\"0\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMinYMin meet\" :filter=\"filterUrl\" :xlink:href=\"app.preview\" class=\"app-icon\"></image>\n\t\t\t</svg>\n\n\t\t\t<img v-if=\"!listView && app.screenshot\" :src=\"app.screenshot\" width=\"100%\" />\n\t\t</div>\n\t\t<div class=\"app-name\" v-on:click=\"showAppDetails\">\n\t\t\t{{ app.name }}\n\t\t</div>\n\t\t<div class=\"app-summary\" v-if=\"!listView\">{{ app.summary }}</div>\n\t\t<div class=\"app-version\" v-if=\"listView\">\n\t\t\t<span v-if=\"app.version\">{{ app.version }}</span>\n\t\t\t<span v-else-if=\"app.appstoreData.releases[0].version\">{{ app.appstoreData.releases[0].version }}</span>\n\t\t</div>\n\n\t\t<div class=\"app-level\">\n\t\t\t<span class=\"official icon-checkmark\" v-if=\"app.level === 200\"\n\t\t\t\t v-tooltip.auto=\"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\">\n\t\t\t\t{{ t('settings', 'Official') }}</span>\n\t\t\t<app-score v-if=\"!listView\" :score=\"app.score\"></app-score>\n\t\t</div>\n\n\t\t<div class=\"actions\">\n\t\t\t<div class=\"warning\" v-if=\"app.error\">{{ app.error }}</div>\n\t\t\t<div class=\"icon icon-loading-small\" v-if=\"loading(app.id)\"></div>\n\t\t\t<input v-if=\"app.update\" class=\"update\" type=\"button\" :value=\"t('settings', 'Update to {update}', {update:app.update})\" v-on:click.stop=\"update(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t<input v-if=\"app.canUnInstall\" class=\"uninstall\" type=\"button\" :value=\"t('settings', 'Remove')\" v-on:click.stop=\"remove(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t<input v-if=\"app.active\" class=\"enable\" type=\"button\" :value=\"t('settings','Disable')\" v-on:click.stop=\"disable(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t<input v-if=\"!app.active\" class=\"enable\" type=\"button\" :value=\"enableButtonText\" v-on:click.stop=\"enable(app.id)\" v-tooltip.auto=\"enableButtonTooltip\" :disabled=\"!app.canInstall || installing || loading(app.id)\" />\n\t\t</div>\n\t</div>\n</template>\n\n<script>\n\timport Multiselect from 'vue-multiselect';\n\timport AppScore from './appScore';\n\timport AppManagement from '../appManagement';\n\timport SvgFilterMixin from '../svgFilterMixin';\n\n\texport default {\n\t\tname: 'appItem',\n\t\tmixins: [AppManagement, SvgFilterMixin],\n\t\tprops: {\n\t\t\tapp: {},\n\t\t\tcategory: {},\n\t\t\tlistView: {\n\t\t\t\ttype: Boolean,\n\t\t\t\tdefault: true,\n\t\t\t}\n\t\t},\n\t\twatch: {\n\t\t\t'$route.params.id': function (id) {\n\t\t\t\tthis.isSelected = (this.app.id === id);\n\t\t\t}\n\t\t},\n\t\tcomponents: {\n\t\t\tMultiselect,\n\t\t\tAppScore,\n\t\t},\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\tisSelected: false,\n\t\t\t\tscrolled: false,\n\t\t\t};\n\t\t},\n\t\tmounted() {\n\t\t\tthis.isSelected = (this.app.id === this.$route.params.id);\n\t\t},\n\t\tcomputed: {\n\n\t\t},\n\t\twatchers: {\n\n\t\t},\n\t\tmethods: {\n\t\t\tshowAppDetails(event) {\n\t\t\t\tif (event.currentTarget.tagName === 'INPUT' || event.currentTarget.tagName === 'A') {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tthis.$router.push({\n\t\t\t\t\tname: 'apps-details',\n\t\t\t\t\tparams: {category: this.category, id: this.app.id}\n\t\t\t\t});\n\t\t\t},\n\t\t\tprefix(prefix, content) {\n\t\t\t\treturn prefix + '_' + content;\n\t\t\t},\n\t\t}\n\t}\n</script>\n","var render, staticRenderFns\nimport script from \"./prefixMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./prefixMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('eb3bc8a2', component.options)\n } else {\n api.reload('eb3bc8a2', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"src/components/prefixMixin.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<script>\n\texport default {\n\t\tname: 'prefixMixin',\n\t\tmethods: {\n\t\t\tprefix (prefix, content) {\n\t\t\t\treturn prefix + '_' + content;\n\t\t\t},\n\t\t}\n\t}\n</script>","import { render, staticRenderFns } from \"./appList.vue?vue&type=template&id=a1862e02&\"\nimport script from \"./appList.vue?vue&type=script&lang=js&\"\nexport * from \"./appList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('a1862e02', component.options)\n } else {\n api.reload('a1862e02', component.options)\n }\n module.hot.accept(\"./appList.vue?vue&type=template&id=a1862e02&\", function () {\n api.rerender('a1862e02', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appList.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"app-content-inner\">\n\t\t<div id=\"apps-list\" class=\"apps-list\" :class=\"{installed: (useBundleView || useListView), store: useAppStoreView}\">\n\t\t\t<template v-if=\"useListView\">\n\t\t\t\t<transition-group name=\"app-list\" tag=\"div\" class=\"apps-list-container\">\n\t\t\t\t\t<app-item v-for=\"app in apps\" :key=\"app.id\" :app=\"app\" :category=\"category\" />\n\t\t\t\t</transition-group>\n\t\t\t</template>\n\t\t\t<template v-for=\"bundle in bundles\" v-if=\"useBundleView && bundleApps(bundle.id).length > 0\">\n\t\t\t\t<transition-group name=\"app-list\" tag=\"div\" class=\"apps-list-container\">\n\n\t\t\t\t\t<div class=\"apps-header\" :key=\"bundle.id\">\n\t\t\t\t\t\t<div class=\"app-image\"></div>\n\t\t\t\t\t\t<h2>{{ bundle.name }} <input type=\"button\" :value=\"bundleToggleText(bundle.id)\" v-on:click=\"toggleBundle(bundle.id)\"></h2>\n\t\t\t\t\t\t<div class=\"app-version\"></div>\n\t\t\t\t\t\t<div class=\"app-level\"></div>\n\t\t\t\t\t\t<div class=\"app-groups\"></div>\n\t\t\t\t\t\t<div class=\"actions\"> </div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<app-item v-for=\"app in bundleApps(bundle.id)\" :key=\"bundle.id + app.id\" :app=\"app\" :category=\"category\"/>\n\t\t\t\t</transition-group>\n\t\t\t</template>\n\t\t\t<template v-if=\"useAppStoreView\">\n\t\t\t\t<app-item v-for=\"app in apps\" :key=\"app.id\" :app=\"app\" :category=\"category\" :list-view=\"false\" />\n\t\t\t</template>\n\n\t\t</div>\n\n\t\t<div id=\"apps-list-search\" class=\"apps-list installed\">\n\t\t\t<div class=\"apps-list-container\">\n\t\t\t\t<template v-if=\"search !== '' && searchApps.length > 0\">\n\t\t\t\t\t<div class=\"section\">\n\t\t\t\t\t\t<div></div>\n\t\t\t\t\t\t<td colspan=\"5\">\n\t\t\t\t\t\t\t<h2>{{ t('settings', 'Results from other categories') }}</h2>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t</div>\n\t\t\t\t\t<app-item v-for=\"app in searchApps\" :key=\"app.id\" :app=\"app\" :category=\"category\" :list-view=\"true\" />\n\t\t\t\t</template>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<div id=\"apps-list-empty\" class=\"emptycontent emptycontent-search\" v-if=\"!loading && searchApps.length === 0 && apps.length === 0\">\n\t\t\t<div id=\"app-list-empty-icon\" class=\"icon-settings-dark\"></div>\n\t\t\t<h2>{{ t('settings', 'No apps found for your version')}}</h2>\n\t\t</div>\n\n\t\t<div id=\"searchresults\"></div>\n\t</div>\n</template>\n\n<script>\nimport appItem from './appList/appItem';\nimport Multiselect from 'vue-multiselect';\nimport prefix from './prefixMixin';\n\nexport default {\n\tname: 'appList',\n\tmixins: [prefix],\n\tprops: ['category', 'app', 'search'],\n\tcomponents: {\n\t\tMultiselect,\n\t\tappItem\n\t},\n\tcomputed: {\n\t\tloading() {\n\t\t\treturn this.$store.getters.loading('list');\n\t\t},\n\t\tapps() {\n\t\t\tlet apps = this.$store.getters.getAllApps\n\t\t\t\t.filter(app => app.name.toLowerCase().search(this.search.toLowerCase()) !== -1)\n\t\t\t\t.sort(function (a, b) {\n\t\t\t\t\tconst sortStringA = '' + (a.active ? 0 : 1) + (a.update ? 0 : 1) + a.name;\n\t\t\t\t\tconst sortStringB = '' + (b.active ? 0 : 1) + (b.update ? 0 : 1) + b.name;\n\t\t\t\t\treturn OC.Util.naturalSortCompare(sortStringA, sortStringB);\n\t\t\t\t});\n\n\t\t\tif (this.category === 'installed') {\n\t\t\t\treturn apps.filter(app => app.installed);\n\t\t\t}\n\t\t\tif (this.category === 'enabled') {\n\t\t\t\treturn apps.filter(app => app.active && app.installed);\n\t\t\t}\n\t\t\tif (this.category === 'disabled') {\n\t\t\t\treturn apps.filter(app => !app.active && app.installed);\n\t\t\t}\n\t\t\tif (this.category === 'app-bundles') {\n\t\t\t\treturn apps.filter(app => app.bundles);\n\t\t\t}\n\t\t\tif (this.category === 'updates') {\n\t\t\t\treturn apps.filter(app => app.update);\n\t\t\t}\n\t\t\t// filter app store categories\n\t\t\treturn apps.filter(app => {\n\t\t\t\treturn app.appstore && app.category !== undefined &&\n\t\t\t\t\t(app.category === this.category || app.category.indexOf(this.category) > -1);\n\t\t\t});\n\t\t},\n\t\tbundles() {\n\t\t\treturn this.$store.getters.getServerData.bundles;\n\t\t},\n\t\tbundleApps() {\n\t\t\treturn function(bundle) {\n\t\t\t\treturn this.$store.getters.getAllApps\n\t\t\t\t\t.filter(app => app.bundleId === bundle);\n\t\t\t}\n\t\t},\n\t\tsearchApps() {\n\t\t\tif (this.search === '') {\n\t\t\t\treturn [];\n\t\t\t}\n\t\t\treturn this.$store.getters.getAllApps\n\t\t\t\t.filter(app => {\n\t\t\t\t\tif (app.name.toLowerCase().search(this.search.toLowerCase()) !== -1) {\n\t\t\t\t\t\treturn (!this.apps.find(_app => _app.id === app.id));\n\t\t\t\t\t}\n\t\t\t\t\treturn false;\n\t\t\t\t});\n\t\t},\n\t\tuseAppStoreView() {\n\t\t\treturn !this.useListView && !this.useBundleView;\n\t\t},\n\t\tuseListView() {\n\t\t\treturn (this.category === 'installed' || this.category === 'enabled' || this.category === 'disabled' || this.category === 'updates');\n\t\t},\n\t\tuseBundleView() {\n\t\t\treturn (this.category === 'app-bundles');\n\t\t},\n\t\tallBundlesEnabled() {\n\t\t\tlet self = this;\n\t\t\treturn function(id) {\n\t\t\t\treturn self.bundleApps(id).filter(app => !app.active).length === 0;\n\t\t\t}\n\t\t},\n\t\tbundleToggleText() {\n\t\t\tlet self = this;\n\t\t\treturn function(id) {\n\t\t\t\tif (self.allBundlesEnabled(id)) {\n\t\t\t\t\treturn t('settings', 'Disable all');\n\t\t\t\t}\n\t\t\t\treturn t('settings', 'Enable all');\n\t\t\t}\n\t\t}\n\t},\n\tmethods: {\n\t\ttoggleBundle(id) {\n\t\t\tif (this.allBundlesEnabled(id)) {\n\t\t\t\treturn this.disableBundle(id);\n\t\t\t}\n\t\t\treturn this.enableBundle(id);\n\t\t},\n\t\tenableBundle(id) {\n\t\t\tlet apps = this.bundleApps(id).map(app => app.id);\n\t\t\tthis.$store.dispatch('enableApp', { appId: apps, groups: [] })\n\t\t\t\t.catch((error) => { console.log(error); OC.Notification.show(error)});\n\t\t},\n\t\tdisableBundle(id) {\n\t\t\tlet apps = this.bundleApps(id).map(app => app.id);\n\t\t\tthis.$store.dispatch('disableApp', { appId: apps, groups: [] })\n\t\t\t\t.catch((error) => { OC.Notification.show(error)});\n\t\t}\n\t},\n}\n</script>\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticStyle: { padding: \"20px\" }, attrs: { id: \"app-details-view\" } },\n [\n _c(\n \"a\",\n {\n staticClass: \"close icon-close\",\n attrs: { href: \"#\" },\n on: { click: _vm.hideAppDetails }\n },\n [_c(\"span\", { staticClass: \"hidden-visually\" }, [_vm._v(\"Close\")])]\n ),\n _vm._v(\" \"),\n _c(\"h2\", [\n !_vm.app.preview\n ? _c(\"div\", { staticClass: \"icon-settings-dark\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.previewAsIcon && _vm.app.preview\n ? _c(\n \"svg\",\n { attrs: { width: \"32\", height: \"32\", viewBox: \"0 0 32 32\" } },\n [\n _c(\"defs\", [\n _c(\n \"filter\",\n { attrs: { id: _vm.filterId } },\n [\n _c(\"feColorMatrix\", {\n attrs: {\n in: \"SourceGraphic\",\n type: \"matrix\",\n values: \"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"\n }\n })\n ],\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\"image\", {\n staticClass: \"app-icon\",\n attrs: {\n x: \"0\",\n y: \"0\",\n width: \"32\",\n height: \"32\",\n preserveAspectRatio: \"xMinYMin meet\",\n filter: _vm.filterUrl,\n \"xlink:href\": _vm.app.preview\n }\n })\n ]\n )\n : _vm._e(),\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.name))\n ]),\n _vm._v(\" \"),\n _vm.app.screenshot\n ? _c(\"img\", { attrs: { src: _vm.app.screenshot, width: \"100%\" } })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.level === 200 || _vm.hasRating\n ? _c(\n \"div\",\n { staticClass: \"app-level\" },\n [\n _vm.app.level === 200\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"Official apps are developed by and within the community. They offer central functionality and are ready for production use.\"\n ),\n expression:\n \"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"official icon-checkmark\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Official\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hasRating\n ? _c(\"app-score\", {\n attrs: { score: _vm.app.appstoreData.ratingOverall }\n })\n : _vm._e()\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.author\n ? _c(\n \"div\",\n { staticClass: \"app-author\" },\n [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.t(\"settings\", \"by\")) + \"\\n\\t\\t\"),\n _vm._l(_vm.author, function(a, index) {\n return _c(\"span\", [\n a[\"@attributes\"] && a[\"@attributes\"][\"homepage\"]\n ? _c(\n \"a\",\n { attrs: { href: a[\"@attributes\"][\"homepage\"] } },\n [_vm._v(_vm._s(a[\"@value\"]))]\n )\n : a[\"@value\"]\n ? _c(\"span\", [_vm._v(_vm._s(a[\"@value\"]))])\n : _c(\"span\", [_vm._v(_vm._s(a))]),\n index + 1 < _vm.author.length\n ? _c(\"span\", [_vm._v(\", \")])\n : _vm._e()\n ])\n })\n ],\n 2\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.licence\n ? _c(\"div\", { staticClass: \"app-licence\" }, [\n _vm._v(_vm._s(_vm.licence))\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _c(\"div\", { staticClass: \"actions-buttons\" }, [\n _vm.app.update\n ? _c(\"input\", {\n staticClass: \"update\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Update to {version}\", {\n version: _vm.app.update\n }),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.canUnInstall\n ? _c(\"input\", {\n staticClass: \"uninstall\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Remove\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n _vm.remove(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.active\n ? _c(\"input\", {\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Disable\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n _vm.disable(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.active\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.enableButtonTooltip,\n expression: \"enableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.enableButtonText,\n disabled:\n !_vm.app.canInstall ||\n _vm.installing ||\n _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n _vm.enable(_vm.app.id)\n }\n }\n })\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-groups\" }, [\n _vm.app.active && _vm.canLimitToGroups(_vm.app)\n ? _c(\n \"div\",\n { staticClass: \"groups-enable\" },\n [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.groupCheckedAppsData,\n expression: \"groupCheckedAppsData\"\n }\n ],\n staticClass: \"groups-enable__checkbox checkbox\",\n attrs: {\n type: \"checkbox\",\n id: _vm.prefix(\"groups_enable\", _vm.app.id)\n },\n domProps: {\n value: _vm.app.id,\n checked: Array.isArray(_vm.groupCheckedAppsData)\n ? _vm._i(_vm.groupCheckedAppsData, _vm.app.id) > -1\n : _vm.groupCheckedAppsData\n },\n on: {\n change: [\n function($event) {\n var $$a = _vm.groupCheckedAppsData,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = _vm.app.id,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 &&\n (_vm.groupCheckedAppsData = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.groupCheckedAppsData = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.groupCheckedAppsData = $$c\n }\n },\n _vm.setGroupLimit\n ]\n }\n }),\n _vm._v(\" \"),\n _c(\n \"label\",\n { attrs: { for: _vm.prefix(\"groups_enable\", _vm.app.id) } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Limit to groups\")))]\n ),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"group_select\",\n attrs: {\n type: \"hidden\",\n title: _vm.t(\"settings\", \"All\"),\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _vm.isLimitedToGroups(_vm.app)\n ? _c(\n \"multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.groups,\n value: _vm.appGroups,\n \"options-limit\": 5,\n placeholder: _vm.t(\n \"settings\",\n \"Limit app usage to groups\"\n ),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false\n },\n on: {\n select: _vm.addGroupLimitation,\n remove: _vm.removeGroupLimitation,\n \"search-change\": _vm.asyncFindGroup\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n : _vm._e()\n ],\n 1\n )\n : _vm._e()\n ])\n ]),\n _vm._v(\" \"),\n _c(\"p\", { staticClass: \"documentation\" }, [\n !_vm.app.internal\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.appstoreUrl,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"View in store\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.website\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.website,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Visit website\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.bugs\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.bugs,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Report a bug\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.user\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.user,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"User documentation\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.admin\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.admin,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Admin documentation\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.developer\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.developer,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"settings\", \"Developer documentation\")) + \" ↗\"\n )\n ]\n )\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"ul\", { staticClass: \"app-dependencies\" }, [\n _vm.app.missingMinOwnCloudVersion\n ? _c(\"li\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app has no minimum Nextcloud version assigned. This will be an error in the future.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.missingMaxOwnCloudVersion\n ? _c(\"li\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app has no maximum Nextcloud version assigned. This will be an error in the future.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.canInstall\n ? _c(\"li\", [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app cannot be installed because the following dependencies are not fulfilled:\"\n )\n ) +\n \"\\n\\t\\t\\t\"\n ),\n _c(\n \"ul\",\n { staticClass: \"missing-dependencies\" },\n _vm._l(_vm.app.missingDependencies, function(dep) {\n return _c(\"li\", [_vm._v(_vm._s(dep))])\n })\n )\n ])\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"div\", {\n staticClass: \"app-description\",\n domProps: { innerHTML: _vm._s(_vm.renderMarkdown) }\n })\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"app-details-view\" style=\"padding: 20px;\">\n\t\t<a class=\"close icon-close\" href=\"#\" v-on:click=\"hideAppDetails\"><span class=\"hidden-visually\">Close</span></a>\n\t\t<h2>\n\t\t\t<div v-if=\"!app.preview\" class=\"icon-settings-dark\"></div>\n\t\t\t<svg v-if=\"app.previewAsIcon && app.preview\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n\t\t\t\t<defs><filter :id=\"filterId\"><feColorMatrix in=\"SourceGraphic\" type=\"matrix\" values=\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"></feColorMatrix></filter></defs>\n\t\t\t\t<image x=\"0\" y=\"0\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMinYMin meet\" :filter=\"filterUrl\" :xlink:href=\"app.preview\" class=\"app-icon\"></image>\n\t\t\t</svg>\n\t\t\t{{ app.name }}</h2>\n\t\t<img v-if=\"app.screenshot\" :src=\"app.screenshot\" width=\"100%\" />\n\t\t<div class=\"app-level\" v-if=\"app.level === 200 || hasRating\">\n\t\t\t<span class=\"official icon-checkmark\" v-if=\"app.level === 200\"\n\t\t\t v-tooltip.auto=\"t('settings', 'Official apps are developed by and within the community. They offer central functionality and are ready for production use.')\">\n\t\t\t\t{{ t('settings', 'Official') }}</span>\n\t\t\t<app-score v-if=\"hasRating\" :score=\"app.appstoreData.ratingOverall\"></app-score>\n\t\t</div>\n\n\t\t<div class=\"app-author\" v-if=\"author\">\n\t\t\t{{ t('settings', 'by') }}\n\t\t\t<span v-for=\"(a, index) in author\">\n\t\t\t\t<a v-if=\"a['@attributes'] && a['@attributes']['homepage']\" :href=\"a['@attributes']['homepage']\">{{ a['@value'] }}</a><span v-else-if=\"a['@value']\">{{ a['@value'] }}</span><span v-else>{{ a }}</span><span v-if=\"index+1 < author.length\">, </span>\n\t\t\t</span>\n\t\t</div>\n\t\t<div class=\"app-licence\" v-if=\"licence\">{{ licence }}</div>\n\t\t<div class=\"actions\">\n\t\t\t<div class=\"actions-buttons\">\n\t\t\t\t<input v-if=\"app.update\" class=\"update\" type=\"button\" :value=\"t('settings', 'Update to {version}', {version: app.update})\" :disabled=\"installing || loading(app.id)\"/>\n\t\t\t\t<input v-if=\"app.canUnInstall\" class=\"uninstall\" type=\"button\" :value=\"t('settings', 'Remove')\" v-on:click=\"remove(app.id)\" :disabled=\"installing || loading(app.id)\"/>\n\t\t\t\t<input v-if=\"app.active\" class=\"enable\" type=\"button\" :value=\"t('settings','Disable')\" v-on:click=\"disable(app.id)\" :disabled=\"installing || loading(app.id)\" />\n\t\t\t\t<input v-if=\"!app.active\" class=\"enable\" type=\"button\" :value=\"enableButtonText\" v-on:click=\"enable(app.id)\" v-tooltip.auto=\"enableButtonTooltip\" :disabled=\"!app.canInstall || installing || loading(app.id)\" />\n\t\t\t</div>\n\t\t\t<div class=\"app-groups\">\n\t\t\t\t<div class=\"groups-enable\" v-if=\"app.active && canLimitToGroups(app)\">\n\t\t\t\t\t<input type=\"checkbox\" :value=\"app.id\" v-model=\"groupCheckedAppsData\" v-on:change=\"setGroupLimit\" class=\"groups-enable__checkbox checkbox\" :id=\"prefix('groups_enable', app.id)\">\n\t\t\t\t\t<label :for=\"prefix('groups_enable', app.id)\">{{ t('settings', 'Limit to groups') }}</label>\n\t\t\t\t\t<input type=\"hidden\" class=\"group_select\" :title=\"t('settings', 'All')\" value=\"\">\n\t\t\t\t\t<multiselect v-if=\"isLimitedToGroups(app)\" :options=\"groups\" :value=\"appGroups\" @select=\"addGroupLimitation\" @remove=\"removeGroupLimitation\" :options-limit=\"5\"\n\t\t\t\t\t\t\t\t :placeholder=\"t('settings', 'Limit app usage to groups')\"\n\t\t\t\t\t\t\t\t label=\"name\" track-by=\"id\" class=\"multiselect-vue\"\n\t\t\t\t\t\t\t\t :multiple=\"true\" :close-on-select=\"false\"\n\t\t\t\t\t\t\t\t @search-change=\"asyncFindGroup\">\n\t\t\t\t\t\t<span slot=\"noResult\">{{t('settings', 'No results')}}</span>\n\t\t\t\t\t</multiselect>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<p class=\"documentation\">\n\t\t\t<a class=\"appslink\" :href=\"appstoreUrl\" v-if=\"!app.internal\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'View in store')}} ↗</a>\n\n\t\t\t<a class=\"appslink\" v-if=\"app.website\" :href=\"app.website\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Visit website') }} ↗</a>\n\t\t\t<a class=\"appslink\" v-if=\"app.bugs\" :href=\"app.bugs\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Report a bug') }} ↗</a>\n\n\t\t\t<a class=\"appslink\" v-if=\"app.documentation && app.documentation.user\" :href=\"app.documentation.user\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'User documentation') }} ↗</a>\n\t\t\t<a class=\"appslink\" v-if=\"app.documentation && app.documentation.admin\" :href=\"app.documentation.admin\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Admin documentation') }} ↗</a>\n\t\t\t<a class=\"appslink\" v-if=\"app.documentation && app.documentation.developer\" :href=\"app.documentation.developer\" target=\"_blank\" rel=\"noreferrer noopener\">{{ t('settings', 'Developer documentation') }} ↗</a>\n\t\t</p>\n\n\t\t<ul class=\"app-dependencies\">\n\t\t\t<li v-if=\"app.missingMinOwnCloudVersion\">{{ t('settings', 'This app has no minimum Nextcloud version assigned. This will be an error in the future.') }}</li>\n\t\t\t<li v-if=\"app.missingMaxOwnCloudVersion\">{{ t('settings', 'This app has no maximum Nextcloud version assigned. This will be an error in the future.') }}</li>\n\t\t\t<li v-if=\"!app.canInstall\">\n\t\t\t\t{{ t('settings', 'This app cannot be installed because the following dependencies are not fulfilled:') }}\n\t\t\t\t<ul class=\"missing-dependencies\">\n\t\t\t\t\t<li v-for=\"dep in app.missingDependencies\">{{ dep }}</li>\n\t\t\t\t</ul>\n\t\t\t</li>\n\t\t</ul>\n\n\t\t<div class=\"app-description\" v-html=\"renderMarkdown\"></div>\n\t</div>\n</template>\n\n<script>\nimport Multiselect from 'vue-multiselect';\nimport AppScore from './appList/appScore';\nimport AppManagement from './appManagement';\nimport prefix from './prefixMixin';\nimport SvgFilterMixin from './svgFilterMixin';\n\nexport default {\n\tmixins: [AppManagement, prefix, SvgFilterMixin],\n\tname: 'appDetails',\n\tprops: ['category', 'app'],\n\tcomponents: {\n\t\tMultiselect,\n\t\tAppScore\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tgroupCheckedAppsData: false,\n\t\t}\n\t},\n\tmounted() {\n\t\tif (this.app.groups.length > 0) {\n\t\t\tthis.groupCheckedAppsData = true;\n\t\t}\n\t},\n\tmethods: {\n\t\thideAppDetails() {\n\t\t\tthis.$router.push({\n\t\t\t\tname: 'apps-category',\n\t\t\t\tparams: {category: this.category}\n\t\t\t});\n\t\t},\n\t},\n\tcomputed: {\n\t\tappstoreUrl() {\n\t\t\treturn `https://apps.nextcloud.com/apps/${this.app.id}`;\n\t\t},\n\t\tlicence() {\n\t\t\tif (this.app.licence) {\n\t\t\t\treturn t('settings', '{license}-licensed', { license: ('' + this.app.licence).toUpperCase() } );\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\thasRating() {\n\t\t\treturn this.app.appstoreData && this.app.appstoreData.ratingNumOverall > 5;\n\t\t},\n\t\tauthor() {\n\t\t\tif (typeof this.app.author === 'string') {\n\t\t\t\treturn [\n\t\t\t\t\t{\n\t\t\t\t\t\t'@value': this.app.author\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t\tif (this.app.author['@value']) {\n\t\t\t\treturn [this.app.author];\n\t\t\t}\n\t\t\treturn this.app.author;\n\t\t},\n\t\tappGroups() {\n\t\t\treturn this.app.groups.map(group => {return {id: group, name: group}});\n\t\t},\n\t\tgroups() {\n\t\t\treturn this.$store.getters.getGroups\n\t\t\t\t.filter(group => group.id !== 'disabled')\n\t\t\t\t.sort((a, b) => a.name.localeCompare(b.name));\n\t\t},\n\t\trenderMarkdown() {\n\t\t\t// TODO: bundle marked as well\n\t\t\tvar renderer = new window.marked.Renderer();\n\t\t\trenderer.link = function(href, title, text) {\n\t\t\t\ttry {\n\t\t\t\t\tvar prot = decodeURIComponent(unescape(href))\n\t\t\t\t\t\t.replace(/[^\\w:]/g, '')\n\t\t\t\t\t\t.toLowerCase();\n\t\t\t\t} catch (e) {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\n\t\t\t\tif (prot.indexOf('http:') !== 0 && prot.indexOf('https:') !== 0) {\n\t\t\t\t\treturn '';\n\t\t\t\t}\n\n\t\t\t\tvar out = '<a href=\"' + href + '\" rel=\"noreferrer noopener\"';\n\t\t\t\tif (title) {\n\t\t\t\t\tout += ' title=\"' + title + '\"';\n\t\t\t\t}\n\t\t\t\tout += '>' + text + '</a>';\n\t\t\t\treturn out;\n\t\t\t};\n\t\t\trenderer.image = function(href, title, text) {\n\t\t\t\tif (text) {\n\t\t\t\t\treturn text;\n\t\t\t\t}\n\t\t\t\treturn title;\n\t\t\t};\n\t\t\trenderer.blockquote = function(quote) {\n\t\t\t\treturn quote;\n\t\t\t};\n\t\t\treturn DOMPurify.sanitize(\n\t\t\t\twindow.marked(this.app.description.trim(), {\n\t\t\t\t\trenderer: renderer,\n\t\t\t\t\tgfm: false,\n\t\t\t\t\thighlight: false,\n\t\t\t\t\ttables: false,\n\t\t\t\t\tbreaks: false,\n\t\t\t\t\tpedantic: false,\n\t\t\t\t\tsanitize: true,\n\t\t\t\t\tsmartLists: true,\n\t\t\t\t\tsmartypants: false\n\t\t\t\t}),\n\t\t\t\t{\n\t\t\t\t\tSAFE_FOR_JQUERY: true,\n\t\t\t\t\tALLOWED_TAGS: [\n\t\t\t\t\t\t'strong',\n\t\t\t\t\t\t'p',\n\t\t\t\t\t\t'a',\n\t\t\t\t\t\t'ul',\n\t\t\t\t\t\t'ol',\n\t\t\t\t\t\t'li',\n\t\t\t\t\t\t'em',\n\t\t\t\t\t\t'del',\n\t\t\t\t\t\t'blockquote'\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./appDetails.vue?vue&type=template&id=273c8e71&\"\nimport script from \"./appDetails.vue?vue&type=script&lang=js&\"\nexport * from \"./appDetails.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('273c8e71', component.options)\n } else {\n api.reload('273c8e71', component.options)\n }\n module.hot.accept(\"./appDetails.vue?vue&type=template&id=273c8e71&\", function () {\n api.rerender('273c8e71', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/appDetails.vue\"\nexport default component.exports","<!--\n - @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n -\n - @author Julius Härtl <jus@bitgrid.net>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div id=\"content\" class=\"app-settings\" :class=\"{ 'with-app-sidebar': currentApp}\">\n\t\t<app-navigation :menu=\"menu\" />\n\t\t<div id=\"app-content\" class=\"app-settings-content\" :class=\"{ 'icon-loading': loadingList }\">\n\t\t\t<app-list :category=\"category\" :app=\"currentApp\" :search=\"searchQuery\"></app-list>\n\t\t</div>\n\t\t<div id=\"app-sidebar\" v-if=\"id && currentApp\">\n\t\t\t<app-details :category=\"category\" :app=\"currentApp\"></app-details>\n\t\t</div>\n\t</div>\n</template>\n\n\n<script>\nimport appNavigation from '../components/appNavigation';\nimport appList from '../components/appList';\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage'\nimport Multiselect from 'vue-multiselect';\nimport api from '../store/api';\nimport AppDetails from '../components/appDetails';\n\nVue.use(VueLocalStorage)\nVue.use(VueLocalStorage)\n\nexport default {\n\tname: 'Apps',\n\tprops: {\n\t\tcategory: {\n\t\t\ttype: String,\n\t\t\tdefault: 'installed',\n\t\t},\n\t\tid: {\n\t\t\ttype: String,\n\t\t\tdefault: '',\n\t\t}\n\t},\n\tcomponents: {\n\t\tAppDetails,\n\t\tappNavigation,\n\t\tappList,\n\t},\n\tmethods: {\n\t\tsetSearch(query) {\n\t\t\tthis.searchQuery = query;\n\t\t},\n\t\tresetSearch() {\n\t\t\tthis.setSearch('');\n\t\t}\n\t},\n\tbeforeMount() {\n\t\tthis.$store.dispatch('getCategories');\n\t\tthis.$store.dispatch('getAllApps');\n\t\tthis.$store.dispatch('getGroups', {offset: 0, limit: 5});\n\t\tthis.$store.commit('setUpdateCount', this.$store.getters.getServerData.updateCount)\n\t},\n\tmounted() {\n\t\t/** \n\t\t * Register search\n\t\t */\n\t\tthis.appSearch = new OCA.Search(this.setSearch, this.resetSearch);\n\t},\n\tdata() {\n\t\treturn {\n\t\t\tsearchQuery: ''\n\t\t}\n\t},\n\twatch: {\n\t\tcategory: function (val, old) {\n\t\t\tthis.setSearch('');\n\t\t}\n\t},\n\tcomputed: {\n\t\tloading() {\n\t\t\treturn this.$store.getters.loading('categories');\n\t\t},\n\t\tloadingList() {\n\t\t\treturn this.$store.getters.loading('list');\n\t\t},\n\t\tcurrentApp() {\n\t\t\treturn this.apps.find(app => app.id === this.id );\n\t\t},\n\t\tcategories() {\n\t\t\treturn this.$store.getters.getCategories;\n\t\t},\n\t\tapps() {\n\t\t\treturn this.$store.getters.getAllApps;\n\t\t},\n\t\tupdateCount() {\n\t\t\treturn this.$store.getters.getUpdateCount;\n\t\t},\n\t\tsettings() {\n\t\t\treturn this.$store.getters.getServerData;\n\t\t},\n\n\t\t// BUILD APP NAVIGATION MENU OBJECT\n\t\tmenu() {\n\t\t\t// Data provided php side\n\t\t\tlet categories = this.$store.getters.getCategories;\n\t\t\tcategories = Array.isArray(categories) ? categories : [];\n\n\t\t\t// Map groups\n\t\t\tcategories = categories.map(category => {\n\t\t\t\tlet item = {};\n\t\t\t\titem.id = 'app-category-' + category.ident;\n\t\t\t\titem.icon = 'icon-category-' + category.ident;\n\t\t\t\titem.classes = [];\t\t\t\t\t\t\t// empty classes, active will be set later\n\t\t\t\titem.router = {\t\t\t\t\t\t\t\t// router link to\n\t\t\t\t\tname: 'apps-category',\n\t\t\t\t\tparams: {category: category.ident}\n\t\t\t\t};\n\t\t\t\titem.text = category.displayName;\n\n\t\t\t\treturn item;\n\t\t\t});\n\n\n\t\t\t// Add everyone group\n\t\t\tlet defaultCategories = [\n\t\t\t\t{\n\t\t\t\t\tid: 'app-category-your-apps',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\trouter: {name: 'apps'},\n\t\t\t\t\ticon: 'icon-category-installed',\n\t\t\t\t\ttext: t('settings', 'Your apps'),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tid: 'app-category-enabled',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\ticon: 'icon-category-enabled',\n\t\t\t\t\trouter: {name: 'apps-category', params: {category: 'enabled'}},\n\t\t\t\t\ttext: t('settings', 'Active apps'),\n\t\t\t\t}, {\n\t\t\t\t\tid: 'app-category-disabled',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\ticon: 'icon-category-disabled',\n\t\t\t\t\trouter: {name: 'apps-category', params: {category: 'disabled'}},\n\t\t\t\t\ttext: t('settings', 'Disabled apps'),\n\t\t\t\t}\n\t\t\t];\n\n\t\t\tif (!this.settings.appstoreEnabled) {\n\t\t\t\treturn {\n\t\t\t\t\tid: 'appscategories',\n\t\t\t\t\titems: defaultCategories,\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (this.$store.getters.getUpdateCount > 0) {\n\t\t\t\tdefaultCategories.push({\n\t\t\t\t\tid: 'app-category-updates',\n\t\t\t\t\tclasses: [],\n\t\t\t\t\ticon: 'icon-download',\n\t\t\t\t\trouter: {name: 'apps-category', params: {category: 'updates'}},\n\t\t\t\t\ttext: t('settings', 'Updates'),\n\t\t\t\t\tutils: {counter: this.$store.getters.getUpdateCount}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tdefaultCategories.push({\n\t\t\t\tid: 'app-category-app-bundles',\n\t\t\t\tclasses: [],\n\t\t\t\ticon: 'icon-category-app-bundles',\n\t\t\t\trouter: {name: 'apps-category', params: {category: 'app-bundles'}},\n\t\t\t\ttext: t('settings', 'App bundles'),\n\t\t\t});\n\n\t\t\tcategories = defaultCategories.concat(categories);\n\n\t\t\t// Set current group as active\n\t\t\tlet activeGroup = categories.findIndex(group => group.id === 'app-category-' + this.category);\n\t\t\tif (activeGroup >= 0) {\n\t\t\t\tcategories[activeGroup].classes.push('active');\n\t\t\t} else {\n\t\t\t\tcategories[0].classes.push('active');\n\t\t\t}\n\n\t\t\tcategories.push({\n\t\t\t\tid: 'app-developer-docs',\n\t\t\t\tclasses: [],\n\t\t\t\thref: this.settings.developerDocumentation,\n\t\t\t\ttext: t('settings', 'Developer documentation') + ' ↗',\n\t\t\t});\n\n\t\t\t// Return\n\t\t\treturn {\n\t\t\t\tid: 'appscategories',\n\t\t\t\titems: categories,\n\t\t\t\tloading: this.loading\n\t\t\t}\n\t\t},\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./Apps.vue?vue&type=template&id=33a216a8&\"\nimport script from \"./Apps.vue?vue&type=script&lang=js&\"\nexport * from \"./Apps.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/settings/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('33a216a8', component.options)\n } else {\n api.reload('33a216a8', component.options)\n }\n module.hot.accept(\"./Apps.vue?vue&type=template&id=33a216a8&\", function () {\n api.rerender('33a216a8', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/views/Apps.vue\"\nexport default component.exports","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue';\nimport Router from 'vue-router';\nimport Users from './views/Users';\nimport Apps from './views/Apps';\n\nVue.use(Router);\n\n/*\n * This is the list of routes where the vuejs app will\n * take over php to provide data\n * You need to forward the php routing (routes.php) to\n * the settings-vue template, where the vue-router will\n * ensure the proper route.\n * ⚠️ Routes needs to match the php routes.\n */\n\nexport default new Router({\n\tmode: 'history',\n\t// if index.php is in the url AND we got this far, then it's working:\n\t// let's keep using index.php in the url\n\tbase: OC.generateUrl(''),\n\tlinkActiveClass: 'active',\n\troutes: [\n\t\t{\n\t\t\tpath: '/:index(index.php/)?settings/users',\n\t\t\tcomponent: Users,\n\t\t\tprops: true,\n\t\t\tname: 'users',\n\t\t\tchildren: [\n\t\t\t\t{\n\t\t\t\t\tpath: ':selectedGroup',\n\t\t\t\t\tname: 'group',\n\t\t\t\t\tcomponent: Users\n\t\t\t\t}\n\t\t\t]\n\t\t},\n\t\t{\n\t\t\tpath: '/:index(index.php/)?settings/apps',\n\t\t\tcomponent: Apps,\n\t\t\tprops: true,\n\t\t\tname: 'apps',\n\t\t\tchildren: [\n\t\t\t\t{\n\t\t\t\t\tpath: ':category',\n\t\t\t\t\tname: 'apps-category',\n\t\t\t\t\tcomponent: Apps,\n\t\t\t\t\tchildren: [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tpath: ':id',\n\t\t\t\t\t\t\tname: 'apps-details',\n\t\t\t\t\t\t\tcomponent: Apps\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n});\n","/**\n * vuex v3.0.1\n * (c) 2017 Evan You\n * @license MIT\n */\nvar applyMixin = function (Vue) {\n var version = Number(Vue.version.split('.')[0]);\n\n if (version >= 2) {\n Vue.mixin({ beforeCreate: vuexInit });\n } else {\n // override init and inject vuex init procedure\n // for 1.x backwards compatibility.\n var _init = Vue.prototype._init;\n Vue.prototype._init = function (options) {\n if ( options === void 0 ) options = {};\n\n options.init = options.init\n ? [vuexInit].concat(options.init)\n : vuexInit;\n _init.call(this, options);\n };\n }\n\n /**\n * Vuex init hook, injected into each instances init hooks list.\n */\n\n function vuexInit () {\n var options = this.$options;\n // store injection\n if (options.store) {\n this.$store = typeof options.store === 'function'\n ? options.store()\n : options.store;\n } else if (options.parent && options.parent.$store) {\n this.$store = options.parent.$store;\n }\n }\n};\n\nvar devtoolHook =\n typeof window !== 'undefined' &&\n window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\nfunction devtoolPlugin (store) {\n if (!devtoolHook) { return }\n\n store._devtoolHook = devtoolHook;\n\n devtoolHook.emit('vuex:init', store);\n\n devtoolHook.on('vuex:travel-to-state', function (targetState) {\n store.replaceState(targetState);\n });\n\n store.subscribe(function (mutation, state) {\n devtoolHook.emit('vuex:mutation', mutation, state);\n });\n}\n\n/**\n * Get the first item that pass the test\n * by second argument function\n *\n * @param {Array} list\n * @param {Function} f\n * @return {*}\n */\n/**\n * Deep copy the given object considering circular structure.\n * This function caches all nested objects and its copies.\n * If it detects circular structure, use cached copy to avoid infinite loop.\n *\n * @param {*} obj\n * @param {Array<Object>} cache\n * @return {*}\n */\n\n\n/**\n * forEach for object\n */\nfunction forEachValue (obj, fn) {\n Object.keys(obj).forEach(function (key) { return fn(obj[key], key); });\n}\n\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\nfunction isPromise (val) {\n return val && typeof val.then === 'function'\n}\n\nfunction assert (condition, msg) {\n if (!condition) { throw new Error((\"[vuex] \" + msg)) }\n}\n\nvar Module = function Module (rawModule, runtime) {\n this.runtime = runtime;\n this._children = Object.create(null);\n this._rawModule = rawModule;\n var rawState = rawModule.state;\n this.state = (typeof rawState === 'function' ? rawState() : rawState) || {};\n};\n\nvar prototypeAccessors$1 = { namespaced: { configurable: true } };\n\nprototypeAccessors$1.namespaced.get = function () {\n return !!this._rawModule.namespaced\n};\n\nModule.prototype.addChild = function addChild (key, module) {\n this._children[key] = module;\n};\n\nModule.prototype.removeChild = function removeChild (key) {\n delete this._children[key];\n};\n\nModule.prototype.getChild = function getChild (key) {\n return this._children[key]\n};\n\nModule.prototype.update = function update (rawModule) {\n this._rawModule.namespaced = rawModule.namespaced;\n if (rawModule.actions) {\n this._rawModule.actions = rawModule.actions;\n }\n if (rawModule.mutations) {\n this._rawModule.mutations = rawModule.mutations;\n }\n if (rawModule.getters) {\n this._rawModule.getters = rawModule.getters;\n }\n};\n\nModule.prototype.forEachChild = function forEachChild (fn) {\n forEachValue(this._children, fn);\n};\n\nModule.prototype.forEachGetter = function forEachGetter (fn) {\n if (this._rawModule.getters) {\n forEachValue(this._rawModule.getters, fn);\n }\n};\n\nModule.prototype.forEachAction = function forEachAction (fn) {\n if (this._rawModule.actions) {\n forEachValue(this._rawModule.actions, fn);\n }\n};\n\nModule.prototype.forEachMutation = function forEachMutation (fn) {\n if (this._rawModule.mutations) {\n forEachValue(this._rawModule.mutations, fn);\n }\n};\n\nObject.defineProperties( Module.prototype, prototypeAccessors$1 );\n\nvar ModuleCollection = function ModuleCollection (rawRootModule) {\n // register root module (Vuex.Store options)\n this.register([], rawRootModule, false);\n};\n\nModuleCollection.prototype.get = function get (path) {\n return path.reduce(function (module, key) {\n return module.getChild(key)\n }, this.root)\n};\n\nModuleCollection.prototype.getNamespace = function getNamespace (path) {\n var module = this.root;\n return path.reduce(function (namespace, key) {\n module = module.getChild(key);\n return namespace + (module.namespaced ? key + '/' : '')\n }, '')\n};\n\nModuleCollection.prototype.update = function update$1 (rawRootModule) {\n update([], this.root, rawRootModule);\n};\n\nModuleCollection.prototype.register = function register (path, rawModule, runtime) {\n var this$1 = this;\n if ( runtime === void 0 ) runtime = true;\n\n if (process.env.NODE_ENV !== 'production') {\n assertRawModule(path, rawModule);\n }\n\n var newModule = new Module(rawModule, runtime);\n if (path.length === 0) {\n this.root = newModule;\n } else {\n var parent = this.get(path.slice(0, -1));\n parent.addChild(path[path.length - 1], newModule);\n }\n\n // register nested modules\n if (rawModule.modules) {\n forEachValue(rawModule.modules, function (rawChildModule, key) {\n this$1.register(path.concat(key), rawChildModule, runtime);\n });\n }\n};\n\nModuleCollection.prototype.unregister = function unregister (path) {\n var parent = this.get(path.slice(0, -1));\n var key = path[path.length - 1];\n if (!parent.getChild(key).runtime) { return }\n\n parent.removeChild(key);\n};\n\nfunction update (path, targetModule, newModule) {\n if (process.env.NODE_ENV !== 'production') {\n assertRawModule(path, newModule);\n }\n\n // update target module\n targetModule.update(newModule);\n\n // update nested modules\n if (newModule.modules) {\n for (var key in newModule.modules) {\n if (!targetModule.getChild(key)) {\n if (process.env.NODE_ENV !== 'production') {\n console.warn(\n \"[vuex] trying to add a new module '\" + key + \"' on hot reloading, \" +\n 'manual reload is needed'\n );\n }\n return\n }\n update(\n path.concat(key),\n targetModule.getChild(key),\n newModule.modules[key]\n );\n }\n }\n}\n\nvar functionAssert = {\n assert: function (value) { return typeof value === 'function'; },\n expected: 'function'\n};\n\nvar objectAssert = {\n assert: function (value) { return typeof value === 'function' ||\n (typeof value === 'object' && typeof value.handler === 'function'); },\n expected: 'function or object with \"handler\" function'\n};\n\nvar assertTypes = {\n getters: functionAssert,\n mutations: functionAssert,\n actions: objectAssert\n};\n\nfunction assertRawModule (path, rawModule) {\n Object.keys(assertTypes).forEach(function (key) {\n if (!rawModule[key]) { return }\n\n var assertOptions = assertTypes[key];\n\n forEachValue(rawModule[key], function (value, type) {\n assert(\n assertOptions.assert(value),\n makeAssertionMessage(path, key, type, value, assertOptions.expected)\n );\n });\n });\n}\n\nfunction makeAssertionMessage (path, key, type, value, expected) {\n var buf = key + \" should be \" + expected + \" but \\\"\" + key + \".\" + type + \"\\\"\";\n if (path.length > 0) {\n buf += \" in module \\\"\" + (path.join('.')) + \"\\\"\";\n }\n buf += \" is \" + (JSON.stringify(value)) + \".\";\n return buf\n}\n\nvar Vue; // bind on install\n\nvar Store = function Store (options) {\n var this$1 = this;\n if ( options === void 0 ) options = {};\n\n // Auto install if it is not done yet and `window` has `Vue`.\n // To allow users to avoid auto-installation in some cases,\n // this code should be placed here. See #731\n if (!Vue && typeof window !== 'undefined' && window.Vue) {\n install(window.Vue);\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(Vue, \"must call Vue.use(Vuex) before creating a store instance.\");\n assert(typeof Promise !== 'undefined', \"vuex requires a Promise polyfill in this browser.\");\n assert(this instanceof Store, \"Store must be called with the new operator.\");\n }\n\n var plugins = options.plugins; if ( plugins === void 0 ) plugins = [];\n var strict = options.strict; if ( strict === void 0 ) strict = false;\n\n var state = options.state; if ( state === void 0 ) state = {};\n if (typeof state === 'function') {\n state = state() || {};\n }\n\n // store internal state\n this._committing = false;\n this._actions = Object.create(null);\n this._actionSubscribers = [];\n this._mutations = Object.create(null);\n this._wrappedGetters = Object.create(null);\n this._modules = new ModuleCollection(options);\n this._modulesNamespaceMap = Object.create(null);\n this._subscribers = [];\n this._watcherVM = new Vue();\n\n // bind commit and dispatch to self\n var store = this;\n var ref = this;\n var dispatch = ref.dispatch;\n var commit = ref.commit;\n this.dispatch = function boundDispatch (type, payload) {\n return dispatch.call(store, type, payload)\n };\n this.commit = function boundCommit (type, payload, options) {\n return commit.call(store, type, payload, options)\n };\n\n // strict mode\n this.strict = strict;\n\n // init root module.\n // this also recursively registers all sub-modules\n // and collects all module getters inside this._wrappedGetters\n installModule(this, state, [], this._modules.root);\n\n // initialize the store vm, which is responsible for the reactivity\n // (also registers _wrappedGetters as computed properties)\n resetStoreVM(this, state);\n\n // apply plugins\n plugins.forEach(function (plugin) { return plugin(this$1); });\n\n if (Vue.config.devtools) {\n devtoolPlugin(this);\n }\n};\n\nvar prototypeAccessors = { state: { configurable: true } };\n\nprototypeAccessors.state.get = function () {\n return this._vm._data.$$state\n};\n\nprototypeAccessors.state.set = function (v) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, \"Use store.replaceState() to explicit replace store state.\");\n }\n};\n\nStore.prototype.commit = function commit (_type, _payload, _options) {\n var this$1 = this;\n\n // check object-style commit\n var ref = unifyObjectStyle(_type, _payload, _options);\n var type = ref.type;\n var payload = ref.payload;\n var options = ref.options;\n\n var mutation = { type: type, payload: payload };\n var entry = this._mutations[type];\n if (!entry) {\n if (process.env.NODE_ENV !== 'production') {\n console.error((\"[vuex] unknown mutation type: \" + type));\n }\n return\n }\n this._withCommit(function () {\n entry.forEach(function commitIterator (handler) {\n handler(payload);\n });\n });\n this._subscribers.forEach(function (sub) { return sub(mutation, this$1.state); });\n\n if (\n process.env.NODE_ENV !== 'production' &&\n options && options.silent\n ) {\n console.warn(\n \"[vuex] mutation type: \" + type + \". Silent option has been removed. \" +\n 'Use the filter functionality in the vue-devtools'\n );\n }\n};\n\nStore.prototype.dispatch = function dispatch (_type, _payload) {\n var this$1 = this;\n\n // check object-style dispatch\n var ref = unifyObjectStyle(_type, _payload);\n var type = ref.type;\n var payload = ref.payload;\n\n var action = { type: type, payload: payload };\n var entry = this._actions[type];\n if (!entry) {\n if (process.env.NODE_ENV !== 'production') {\n console.error((\"[vuex] unknown action type: \" + type));\n }\n return\n }\n\n this._actionSubscribers.forEach(function (sub) { return sub(action, this$1.state); });\n\n return entry.length > 1\n ? Promise.all(entry.map(function (handler) { return handler(payload); }))\n : entry[0](payload)\n};\n\nStore.prototype.subscribe = function subscribe (fn) {\n return genericSubscribe(fn, this._subscribers)\n};\n\nStore.prototype.subscribeAction = function subscribeAction (fn) {\n return genericSubscribe(fn, this._actionSubscribers)\n};\n\nStore.prototype.watch = function watch (getter, cb, options) {\n var this$1 = this;\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof getter === 'function', \"store.watch only accepts a function.\");\n }\n return this._watcherVM.$watch(function () { return getter(this$1.state, this$1.getters); }, cb, options)\n};\n\nStore.prototype.replaceState = function replaceState (state) {\n var this$1 = this;\n\n this._withCommit(function () {\n this$1._vm._data.$$state = state;\n });\n};\n\nStore.prototype.registerModule = function registerModule (path, rawModule, options) {\n if ( options === void 0 ) options = {};\n\n if (typeof path === 'string') { path = [path]; }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n assert(path.length > 0, 'cannot register the root module by using registerModule.');\n }\n\n this._modules.register(path, rawModule);\n installModule(this, this.state, path, this._modules.get(path), options.preserveState);\n // reset store to update getters...\n resetStoreVM(this, this.state);\n};\n\nStore.prototype.unregisterModule = function unregisterModule (path) {\n var this$1 = this;\n\n if (typeof path === 'string') { path = [path]; }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(Array.isArray(path), \"module path must be a string or an Array.\");\n }\n\n this._modules.unregister(path);\n this._withCommit(function () {\n var parentState = getNestedState(this$1.state, path.slice(0, -1));\n Vue.delete(parentState, path[path.length - 1]);\n });\n resetStore(this);\n};\n\nStore.prototype.hotUpdate = function hotUpdate (newOptions) {\n this._modules.update(newOptions);\n resetStore(this, true);\n};\n\nStore.prototype._withCommit = function _withCommit (fn) {\n var committing = this._committing;\n this._committing = true;\n fn();\n this._committing = committing;\n};\n\nObject.defineProperties( Store.prototype, prototypeAccessors );\n\nfunction genericSubscribe (fn, subs) {\n if (subs.indexOf(fn) < 0) {\n subs.push(fn);\n }\n return function () {\n var i = subs.indexOf(fn);\n if (i > -1) {\n subs.splice(i, 1);\n }\n }\n}\n\nfunction resetStore (store, hot) {\n store._actions = Object.create(null);\n store._mutations = Object.create(null);\n store._wrappedGetters = Object.create(null);\n store._modulesNamespaceMap = Object.create(null);\n var state = store.state;\n // init all modules\n installModule(store, state, [], store._modules.root, true);\n // reset vm\n resetStoreVM(store, state, hot);\n}\n\nfunction resetStoreVM (store, state, hot) {\n var oldVm = store._vm;\n\n // bind store public getters\n store.getters = {};\n var wrappedGetters = store._wrappedGetters;\n var computed = {};\n forEachValue(wrappedGetters, function (fn, key) {\n // use computed to leverage its lazy-caching mechanism\n computed[key] = function () { return fn(store); };\n Object.defineProperty(store.getters, key, {\n get: function () { return store._vm[key]; },\n enumerable: true // for local getters\n });\n });\n\n // use a Vue instance to store the state tree\n // suppress warnings just in case the user has added\n // some funky global mixins\n var silent = Vue.config.silent;\n Vue.config.silent = true;\n store._vm = new Vue({\n data: {\n $$state: state\n },\n computed: computed\n });\n Vue.config.silent = silent;\n\n // enable strict mode for new vm\n if (store.strict) {\n enableStrictMode(store);\n }\n\n if (oldVm) {\n if (hot) {\n // dispatch changes in all subscribed watchers\n // to force getter re-evaluation for hot reloading.\n store._withCommit(function () {\n oldVm._data.$$state = null;\n });\n }\n Vue.nextTick(function () { return oldVm.$destroy(); });\n }\n}\n\nfunction installModule (store, rootState, path, module, hot) {\n var isRoot = !path.length;\n var namespace = store._modules.getNamespace(path);\n\n // register in namespace map\n if (module.namespaced) {\n store._modulesNamespaceMap[namespace] = module;\n }\n\n // set state\n if (!isRoot && !hot) {\n var parentState = getNestedState(rootState, path.slice(0, -1));\n var moduleName = path[path.length - 1];\n store._withCommit(function () {\n Vue.set(parentState, moduleName, module.state);\n });\n }\n\n var local = module.context = makeLocalContext(store, namespace, path);\n\n module.forEachMutation(function (mutation, key) {\n var namespacedType = namespace + key;\n registerMutation(store, namespacedType, mutation, local);\n });\n\n module.forEachAction(function (action, key) {\n var type = action.root ? key : namespace + key;\n var handler = action.handler || action;\n registerAction(store, type, handler, local);\n });\n\n module.forEachGetter(function (getter, key) {\n var namespacedType = namespace + key;\n registerGetter(store, namespacedType, getter, local);\n });\n\n module.forEachChild(function (child, key) {\n installModule(store, rootState, path.concat(key), child, hot);\n });\n}\n\n/**\n * make localized dispatch, commit, getters and state\n * if there is no namespace, just use root ones\n */\nfunction makeLocalContext (store, namespace, path) {\n var noNamespace = namespace === '';\n\n var local = {\n dispatch: noNamespace ? store.dispatch : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if (process.env.NODE_ENV !== 'production' && !store._actions[type]) {\n console.error((\"[vuex] unknown local action type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n return store.dispatch(type, payload)\n },\n\n commit: noNamespace ? store.commit : function (_type, _payload, _options) {\n var args = unifyObjectStyle(_type, _payload, _options);\n var payload = args.payload;\n var options = args.options;\n var type = args.type;\n\n if (!options || !options.root) {\n type = namespace + type;\n if (process.env.NODE_ENV !== 'production' && !store._mutations[type]) {\n console.error((\"[vuex] unknown local mutation type: \" + (args.type) + \", global type: \" + type));\n return\n }\n }\n\n store.commit(type, payload, options);\n }\n };\n\n // getters and state object must be gotten lazily\n // because they will be changed by vm update\n Object.defineProperties(local, {\n getters: {\n get: noNamespace\n ? function () { return store.getters; }\n : function () { return makeLocalGetters(store, namespace); }\n },\n state: {\n get: function () { return getNestedState(store.state, path); }\n }\n });\n\n return local\n}\n\nfunction makeLocalGetters (store, namespace) {\n var gettersProxy = {};\n\n var splitPos = namespace.length;\n Object.keys(store.getters).forEach(function (type) {\n // skip if the target getter is not match this namespace\n if (type.slice(0, splitPos) !== namespace) { return }\n\n // extract local getter type\n var localType = type.slice(splitPos);\n\n // Add a port to the getters proxy.\n // Define as getter property because\n // we do not want to evaluate the getters in this time.\n Object.defineProperty(gettersProxy, localType, {\n get: function () { return store.getters[type]; },\n enumerable: true\n });\n });\n\n return gettersProxy\n}\n\nfunction registerMutation (store, type, handler, local) {\n var entry = store._mutations[type] || (store._mutations[type] = []);\n entry.push(function wrappedMutationHandler (payload) {\n handler.call(store, local.state, payload);\n });\n}\n\nfunction registerAction (store, type, handler, local) {\n var entry = store._actions[type] || (store._actions[type] = []);\n entry.push(function wrappedActionHandler (payload, cb) {\n var res = handler.call(store, {\n dispatch: local.dispatch,\n commit: local.commit,\n getters: local.getters,\n state: local.state,\n rootGetters: store.getters,\n rootState: store.state\n }, payload, cb);\n if (!isPromise(res)) {\n res = Promise.resolve(res);\n }\n if (store._devtoolHook) {\n return res.catch(function (err) {\n store._devtoolHook.emit('vuex:error', err);\n throw err\n })\n } else {\n return res\n }\n });\n}\n\nfunction registerGetter (store, type, rawGetter, local) {\n if (store._wrappedGetters[type]) {\n if (process.env.NODE_ENV !== 'production') {\n console.error((\"[vuex] duplicate getter key: \" + type));\n }\n return\n }\n store._wrappedGetters[type] = function wrappedGetter (store) {\n return rawGetter(\n local.state, // local state\n local.getters, // local getters\n store.state, // root state\n store.getters // root getters\n )\n };\n}\n\nfunction enableStrictMode (store) {\n store._vm.$watch(function () { return this._data.$$state }, function () {\n if (process.env.NODE_ENV !== 'production') {\n assert(store._committing, \"Do not mutate vuex store state outside mutation handlers.\");\n }\n }, { deep: true, sync: true });\n}\n\nfunction getNestedState (state, path) {\n return path.length\n ? path.reduce(function (state, key) { return state[key]; }, state)\n : state\n}\n\nfunction unifyObjectStyle (type, payload, options) {\n if (isObject(type) && type.type) {\n options = payload;\n payload = type;\n type = type.type;\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof type === 'string', (\"Expects string as the type, but found \" + (typeof type) + \".\"));\n }\n\n return { type: type, payload: payload, options: options }\n}\n\nfunction install (_Vue) {\n if (Vue && _Vue === Vue) {\n if (process.env.NODE_ENV !== 'production') {\n console.error(\n '[vuex] already installed. Vue.use(Vuex) should be called only once.'\n );\n }\n return\n }\n Vue = _Vue;\n applyMixin(Vue);\n}\n\nvar mapState = normalizeNamespace(function (namespace, states) {\n var res = {};\n normalizeMap(states).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedState () {\n var state = this.$store.state;\n var getters = this.$store.getters;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapState', namespace);\n if (!module) {\n return\n }\n state = module.context.state;\n getters = module.context.getters;\n }\n return typeof val === 'function'\n ? val.call(this, state, getters)\n : state[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\nvar mapMutations = normalizeNamespace(function (namespace, mutations) {\n var res = {};\n normalizeMap(mutations).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedMutation () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var commit = this.$store.commit;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapMutations', namespace);\n if (!module) {\n return\n }\n commit = module.context.commit;\n }\n return typeof val === 'function'\n ? val.apply(this, [commit].concat(args))\n : commit.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\nvar mapGetters = normalizeNamespace(function (namespace, getters) {\n var res = {};\n normalizeMap(getters).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n val = namespace + val;\n res[key] = function mappedGetter () {\n if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {\n return\n }\n if (process.env.NODE_ENV !== 'production' && !(val in this.$store.getters)) {\n console.error((\"[vuex] unknown getter: \" + val));\n return\n }\n return this.$store.getters[val]\n };\n // mark vuex getter for devtools\n res[key].vuex = true;\n });\n return res\n});\n\nvar mapActions = normalizeNamespace(function (namespace, actions) {\n var res = {};\n normalizeMap(actions).forEach(function (ref) {\n var key = ref.key;\n var val = ref.val;\n\n res[key] = function mappedAction () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var dispatch = this.$store.dispatch;\n if (namespace) {\n var module = getModuleByNamespace(this.$store, 'mapActions', namespace);\n if (!module) {\n return\n }\n dispatch = module.context.dispatch;\n }\n return typeof val === 'function'\n ? val.apply(this, [dispatch].concat(args))\n : dispatch.apply(this.$store, [val].concat(args))\n };\n });\n return res\n});\n\nvar createNamespacedHelpers = function (namespace) { return ({\n mapState: mapState.bind(null, namespace),\n mapGetters: mapGetters.bind(null, namespace),\n mapMutations: mapMutations.bind(null, namespace),\n mapActions: mapActions.bind(null, namespace)\n}); };\n\nfunction normalizeMap (map) {\n return Array.isArray(map)\n ? map.map(function (key) { return ({ key: key, val: key }); })\n : Object.keys(map).map(function (key) { return ({ key: key, val: map[key] }); })\n}\n\nfunction normalizeNamespace (fn) {\n return function (namespace, map) {\n if (typeof namespace !== 'string') {\n map = namespace;\n namespace = '';\n } else if (namespace.charAt(namespace.length - 1) !== '/') {\n namespace += '/';\n }\n return fn(namespace, map)\n }\n}\n\nfunction getModuleByNamespace (store, helper, namespace) {\n var module = store._modulesNamespaceMap[namespace];\n if (process.env.NODE_ENV !== 'production' && !module) {\n console.error((\"[vuex] module namespace not found in \" + helper + \"(): \" + namespace));\n }\n return module\n}\n\nvar index_esm = {\n Store: Store,\n install: install,\n version: '3.0.1',\n mapState: mapState,\n mapMutations: mapMutations,\n mapGetters: mapGetters,\n mapActions: mapActions,\n createNamespacedHelpers: createNamespacedHelpers\n};\n\nexport { Store, install, mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers };\nexport default index_esm;\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\n\nconst orderGroups = function(groups, orderBy) {\n\t/* const SORT_USERCOUNT = 1;\n\t * const SORT_GROUPNAME = 2;\n\t * https://github.com/nextcloud/server/blob/208e38e84e1a07a49699aa90dc5b7272d24489f0/lib/private/Group/MetaData.php#L34\n\t */\n\tif (orderBy === 1) {\n\t\treturn groups.sort((a, b) => a.usercount-a.disabled < b.usercount - b.disabled);\n\t} else {\n\t\treturn groups.sort((a, b) => a.name.localeCompare(b.name));\n\t}\n};\n\nconst defaults = {\n\tgroup: {\n\t\tid: '',\n\t\tname: '',\n\t\tusercount: 0,\n\t\tdisabled: 0,\n\t\tcanAdd: true,\n\t\tcanRemove: true\n\t}\n};\n\nconst state = {\n\tusers: [],\n\tgroups: [],\n\torderBy: 1,\n\tminPasswordLength: 0,\n\tusersOffset: 0,\n\tusersLimit: 25,\n\tuserCount: 0\n};\n\nconst mutations = {\n\tappendUsers(state, usersObj) {\n\t\t// convert obj to array\n\t\tlet users = state.users.concat(Object.keys(usersObj).map(userid => usersObj[userid]));\n\t\tstate.usersOffset += state.usersLimit;\n\t\tstate.users = users;\n\t},\n\tsetPasswordPolicyMinLength(state, length) {\n\t\tstate.minPasswordLength = length!=='' ? length : 0;\n\t},\n\tinitGroups(state, {groups, orderBy, userCount}) {\n\t\tstate.groups = groups.map(group => Object.assign({}, defaults.group, group));\n\t\tstate.orderBy = orderBy;\n\t\tstate.userCount = userCount;\n\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t\t\n\t},\n\taddGroup(state, {gid, displayName}) {\n\t\ttry {\n\t\t\tif (typeof state.groups.find((group) => group.id === gid) !== 'undefined') {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// extend group to default values\n\t\t\tlet group = Object.assign({}, defaults.group, {\n\t\t\t\tid: gid,\n\t\t\t\tname: displayName,\n\t\t\t});\n\t\t\tstate.groups.push(group);\n\t\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t\t} catch (e) {\n\t\t\tconsole.log('Can\\'t create group', e);\n\t\t}\n\t},\n\tremoveGroup(state, gid) {\n\t\tlet groupIndex = state.groups.findIndex(groupSearch => groupSearch.id == gid);\n\t\tif (groupIndex >= 0) {\n\t\t\tstate.groups.splice(groupIndex, 1);\n\t\t}\n\t},\n\taddUserGroup(state, { userid, gid }) {\n\t\tlet group = state.groups.find(groupSearch => groupSearch.id == gid);\n\t\tlet user = state.users.find(user => user.id == userid);\n\t\t// increase count if user is enabled\n\t\tif (group && user.enabled) {\n\t\t\tgroup.usercount++; \n\t\t}\n\t\tlet groups = user.groups;\n\t\tgroups.push(gid);\n\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t},\n\tremoveUserGroup(state, { userid, gid }) {\n\t\tlet group = state.groups.find(groupSearch => groupSearch.id == gid);\n\t\tlet user = state.users.find(user => user.id == userid);\n\t\t// lower count if user is enabled\n\t\tif (group && user.enabled) {\n\t\t\tgroup.usercount--;\n\t\t}\n\t\tlet groups = user.groups;\n\t\tgroups.splice(groups.indexOf(gid),1);\n\t\tstate.groups = orderGroups(state.groups, state.orderBy);\n\t},\n\taddUserSubAdmin(state, { userid, gid }) {\n\t\tlet groups = state.users.find(user => user.id == userid).subadmin;\n\t\tgroups.push(gid);\n\t},\n\tremoveUserSubAdmin(state, { userid, gid }) {\n\t\tlet groups = state.users.find(user => user.id == userid).subadmin;\n\t\tgroups.splice(groups.indexOf(gid),1);\n\t},\n\tdeleteUser(state, userid) {\n\t\tlet userIndex = state.users.findIndex(user => user.id == userid);\n\t\tstate.users.splice(userIndex, 1);\n\t},\n\taddUserData(state, response) {\n\t\tstate.users.push(response.data.ocs.data);\n\t},\n\tenableDisableUser(state, { userid, enabled }) {\n\t\tlet user = state.users.find(user => user.id == userid);\n\t\tuser.enabled = enabled;\n\t\t// increment or not\n\t\tstate.groups.find(group => group.id == 'disabled').usercount += enabled ? -1 : 1;\n\t\tstate.userCount += enabled ? 1 : -1;\n\t\tuser.groups.forEach(group => {\n\t\t\t// Increment disabled count\n\t\t\tstate.groups.find(groupSearch => groupSearch.id == group).disabled += enabled ? -1 : 1;\n\t\t});\n\t},\n\tsetUserData(state, { userid, key, value }) {\n\t\tif (key === 'quota') {\n\t\t\tlet humanValue = OC.Util.computerFileSize(value);\n\t\t\tstate.users.find(user => user.id == userid)[key][key] = humanValue!==null ? humanValue : value;\n\t\t} else {\n\t\t\tstate.users.find(user => user.id == userid)[key] = value;\n\t\t}\n\t},\n\n\t/**\n\t * Reset users list\n\t */\n\tresetUsers(state) {\n\t\tstate.users = [];\n\t\tstate.usersOffset = 0;\n\t}\n};\n\nconst getters = {\n\tgetUsers(state) {\n\t\treturn state.users;\n\t},\n\tgetGroups(state) {\n\t\treturn state.groups;\n\t},\n\tgetSubadminGroups(state) {\n\t\t// Can't be subadmin of admin or disabled\n\t\treturn state.groups.filter(group => group.id !== 'admin' && group.id !== 'disabled');\n\t},\n\tgetPasswordPolicyMinLength(state) {\n\t\treturn state.minPasswordLength;\n\t},\n\tgetUsersOffset(state) {\n\t\treturn state.usersOffset;\n\t},\n\tgetUsersLimit(state) {\n\t\treturn state.usersLimit;\n\t},\n\tgetUserCount(state) {\n\t\treturn state.userCount;\n\t}\n};\n\nconst actions = {\n\n\t/**\n\t * Get all users with full details\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {int} options.offset List offset to request\n\t * @param {int} options.limit List number to return from offset\n\t * @param {string} options.search Search amongst users\n\t * @param {string} options.group Get users from group\n\t * @returns {Promise}\n\t */\n\tgetUsers(context, { offset, limit, search, group }) {\n\t\tsearch = typeof search === 'string' ? search : '';\n\t\tgroup = typeof group === 'string' ? group : '';\n\t\tif (group !== '') {\n\t\t\treturn api.get(OC.linkToOCS(`cloud/groups/${group}/users/details?offset=${offset}&limit=${limit}&search=${search}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.users).length > 0) {\n\t\t\t\t\tcontext.commit('appendUsers', response.data.ocs.data.users);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t\t}\n\n\t\treturn api.get(OC.linkToOCS(`cloud/users/details?offset=${offset}&limit=${limit}&search=${search}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.users).length > 0) {\n\t\t\t\t\tcontext.commit('appendUsers', response.data.ocs.data.users);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n\tgetGroups(context, { offset, limit, search }) {\n\t\tsearch = typeof search === 'string' ? search : '';\n\t\tlet limitParam = limit === -1 ? '' : `&limit=${limit}`;\n\t\treturn api.get(OC.linkToOCS(`cloud/groups?offset=${offset}&search=${search}${limitParam}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.groups).length > 0) {\n\t\t\t\t\tresponse.data.ocs.data.groups.forEach(function(group) {\n\t\t\t\t\t\tcontext.commit('addGroup', {gid: group, displayName: group});\n\t\t\t\t\t});\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n\t/**\n\t * Get all users with full details\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {int} options.offset List offset to request\n\t * @param {int} options.limit List number to return from offset\n\t * @returns {Promise}\n\t */\n\tgetUsersFromList(context, { offset, limit, search }) {\n\t\tsearch = typeof search === 'string' ? search : '';\n\t\treturn api.get(OC.linkToOCS(`cloud/users/details?offset=${offset}&limit=${limit}&search=${search}`, 2))\n\t\t\t.then((response) => {\n\t\t\t\tif (Object.keys(response.data.ocs.data.users).length > 0) {\n\t\t\t\t\tcontext.commit('appendUsers', response.data.ocs.data.users);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n\t/**\n\t * Get all users with full details from a groupid\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {int} options.offset List offset to request\n\t * @param {int} options.limit List number to return from offset\n\t * @returns {Promise}\n\t */\n\tgetUsersFromGroup(context, { groupid, offset, limit }) {\n\t\treturn api.get(OC.linkToOCS(`cloud/users/${groupid}/details?offset=${offset}&limit=${limit}`, 2))\n\t\t\t.then((response) => context.commit('getUsersFromList', response.data.ocs.data.users))\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\t\n\n\tgetPasswordPolicyMinLength(context) {\n\t\tif(oc_capabilities.password_policy && oc_capabilities.password_policy.minLength) {\n\t\t\tcontext.commit('setPasswordPolicyMinLength', oc_capabilities.password_policy.minLength);\n\t\t\treturn oc_capabilities.password_policy.minLength;\n\t\t}\n\t\treturn false;\n\t},\n\n\t/**\n\t * Add group\n\t * \n\t * @param {Object} context\n\t * @param {string} gid Group id\n\t * @returns {Promise}\n\t */\n\taddGroup(context, gid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/groups`, 2), {groupid: gid})\n\t\t\t\t.then((response) => context.commit('addGroup', {gid: gid, displayName: gid}))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => {\n\t\t\tcontext.commit('API_FAILURE', { gid, error });\n\t\t\t// let's throw one more time to prevent the view\n\t\t\t// from adding the user to a group that doesn't exists\n\t\t\tthrow error;\n\t\t});\n\t},\n\n\t/**\n\t * Remove group\n\t * \n\t * @param {Object} context\n\t * @param {string} gid Group id\n\t * @returns {Promise}\n\t */\n\tremoveGroup(context, gid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/groups/${gid}`, 2))\n\t\t\t\t.then((response) => context.commit('removeGroup', gid))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { gid, error }));\n\t},\n\n\t/**\n\t * Add user to group\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\taddUserGroup(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users/${userid}/groups`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('addUserGroup', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Remove user from group\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\tremoveUserGroup(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/users/${userid}/groups`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('removeUserGroup', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => {\n\t\t\tcontext.commit('API_FAILURE', { userid, error });\n\t\t\t// let's throw one more time to prevent\n\t\t\t// the view from removing the user row on failure\n\t\t\tthrow error; \n\t\t});\n\t},\n\n\t/**\n\t * Add user to group admin\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\taddUserSubAdmin(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users/${userid}/subadmins`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('addUserSubAdmin', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Remove user from group admin\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.gid Group id\n\t * @returns {Promise}\n\t */\n\tremoveUserSubAdmin(context, { userid, gid }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/users/${userid}/subadmins`, 2), { groupid: gid })\n\t\t\t\t.then((response) => context.commit('removeUserSubAdmin', { userid, gid }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Delete a user\n\t * \n\t * @param {Object} context\n\t * @param {string} userid User id \n\t * @returns {Promise}\n\t */\n\tdeleteUser(context, userid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.delete(OC.linkToOCS(`cloud/users/${userid}`, 2))\n\t\t\t\t.then((response) => context.commit('deleteUser', userid))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Add a user\n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.password User password\n\t * @param {string} options.displayName User display name\n\t * @param {string} options.email User email\n\t * @param {string} options.groups User groups\n\t * @param {string} options.subadmin User subadmin groups\n\t * @param {string} options.quota User email\n\t * @returns {Promise}\n\t */\n\taddUser({commit, dispatch}, { userid, password, displayName, email, groups, subadmin, quota, language }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users`, 2), { userid, password, displayName, email, groups, subadmin, quota, language })\n\t\t\t\t.then((response) => dispatch('addUserData', userid))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Get user data and commit addition\n\t * \n\t * @param {Object} context\n\t * @param {string} userid User id \n\t * @returns {Promise}\n\t */\n\taddUserData(context, userid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.get(OC.linkToOCS(`cloud/users/${userid}`, 2))\n\t\t\t\t.then((response) => context.commit('addUserData', response))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/** Enable or disable user \n\t * \n\t * @param {Object} context\n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {boolean} options.enabled User enablement status\n\t * @returns {Promise}\n\t */\n\tenableDisableUser(context, { userid, enabled = true }) {\n\t\tlet userStatus = enabled ? 'enable' : 'disable';\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.put(OC.linkToOCS(`cloud/users/${userid}/${userStatus}`, 2))\n\t\t\t\t.then((response) => context.commit('enableDisableUser', { userid, enabled }))\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t},\n\n\t/**\n\t * Edit user data\n\t * \n\t * @param {Object} context \n\t * @param {Object} options\n\t * @param {string} options.userid User id\n\t * @param {string} options.key User field to edit\n\t * @param {string} options.value Value of the change\n\t * @returns {Promise}\n\t */\n\tsetUserData(context, { userid, key, value }) {\n\t\tlet allowedEmpty = ['email', 'displayname'];\n\t\tif (['email', 'language', 'quota', 'displayname', 'password'].indexOf(key) !== -1) {\n\t\t\t// We allow empty email or displayname\n\t\t\tif (typeof value === 'string' &&\n\t\t\t\t(\n\t\t\t\t\t(allowedEmpty.indexOf(key) === -1 && value.length > 0) ||\n\t\t\t\t\tallowedEmpty.indexOf(key) !== -1\n\t\t\t\t)\n\t\t\t) {\n\t\t\t\treturn api.requireAdmin().then((response) => {\n\t\t\t\t\treturn api.put(OC.linkToOCS(`cloud/users/${userid}`, 2), { key: key, value: value })\n\t\t\t\t\t\t.then((response) => context.commit('setUserData', { userid, key, value }))\n\t\t\t\t\t\t.catch((error) => {throw error;});\n\t\t\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t\t\t}\n\t\t}\n\t\treturn Promise.reject(new Error('Invalid request data'));\n\t},\n\n\t/**\n\t * Send welcome mail\n\t * \n\t * @param {Object} context\n\t * @param {string} userid User id \n\t * @returns {Promise}\n\t */\n\tsendWelcomeMail(context, userid) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`cloud/users/${userid}/welcome`, 2))\n\t\t\t\t.then(response => true)\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { userid, error }));\n\t}\n};\n\nexport default { state, mutations, getters, actions };\n","/*\n * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\nimport axios from 'axios/index';\nimport Vue from 'vue';\n\nconst state = {\n\tapps: [],\n\tcategories: [],\n\tupdateCount: 0,\n\tloading: {},\n\tloadingList: false,\n};\n\nconst mutations = {\n\n\tAPPS_API_FAILURE(state, error) {\n\t\tOC.Notification.showHtml(t('settings','An error occured during the request. Unable to proceed.')+'<br>'+error.error.response.data.data.message, {timeout: 7});\n\t\tconsole.log(state, error);\n\t},\n\n\tinitCategories(state, {categories, updateCount}) {\n\t\tstate.categories = categories;\n\t\tstate.updateCount = updateCount;\n\t},\n\n\tsetUpdateCount(state, updateCount) {\n\t\tstate.updateCount = updateCount;\n\t},\n\n\taddCategory(state, category) {\n\t\tstate.categories.push(category);\n\t},\n\n\tappendCategories(state, categoriesArray) {\n\t\t// convert obj to array\n\t\tstate.categories = categoriesArray;\n\t},\n\n\tsetAllApps(state, apps) {\n\t\tstate.apps = apps;\n\t},\n\n\tsetError(state, {appId, error}) {\n\t\tif (!Array.isArray(appId)) {\n\t\t\tappId = [appId];\n\t\t}\n\t\tappId.forEach((_id) => {\n\t\t\tlet app = state.apps.find(app => app.id === _id);\n\t\t\tapp.error = error;\n\t\t});\n\t},\n\n\tclearError(state, {appId, error}) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tapp.error = null;\n\t},\n\n\tenableApp(state, {appId, groups}) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tapp.active = true;\n\t\tapp.groups = groups;\n\t},\n\n\tdisableApp(state, appId) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tapp.active = false;\n\t\tapp.groups = [];\n\t\tif (app.removable) {\n\t\t\tapp.canUnInstall = true;\n\t\t}\n\t},\n\n\tuninstallApp(state, appId) {\n\t\tstate.apps.find(app => app.id === appId).active = false;\n\t\tstate.apps.find(app => app.id === appId).groups = [];\n\t\tstate.apps.find(app => app.id === appId).needsDownload = true;\n\t\tstate.apps.find(app => app.id === appId).installed = false;\n\t\tstate.apps.find(app => app.id === appId).canUnInstall = false;\n\t\tstate.apps.find(app => app.id === appId).canInstall = true;\n\t},\n\n\tupdateApp(state, appId) {\n\t\tlet app = state.apps.find(app => app.id === appId);\n\t\tlet version = app.update;\n\t\tapp.update = null;\n\t\tapp.version = version;\n\t\tstate.updateCount--;\n\n\t},\n\n\tresetApps(state) {\n\t\tstate.apps = [];\n\t},\n\treset(state) {\n\t\tstate.apps = [];\n\t\tstate.categories = [];\n\t\tstate.updateCount = 0;\n\t},\n\tstartLoading(state, id) {\n\t\tif (Array.isArray(id)) {\n\t\t\tid.forEach((_id) => {\n\t\t\t\tVue.set(state.loading, _id, true);\n\t\t\t})\n\t\t} else {\n\t\t\tVue.set(state.loading, id, true);\n\t\t}\n\t},\n\tstopLoading(state, id) {\n\t\tif (Array.isArray(id)) {\n\t\t\tid.forEach((_id) => {\n\t\t\t\tVue.set(state.loading, _id, false);\n\t\t\t})\n\t\t} else {\n\t\t\tVue.set(state.loading, id, false);\n\t\t}\n\t},\n};\n\nconst getters = {\n\tloading(state) {\n\t\treturn function(id) {\n\t\t\treturn state.loading[id];\n\t\t}\n\t},\n\tgetCategories(state) {\n\t\treturn state.categories;\n\t},\n\tgetAllApps(state) {\n\t\treturn state.apps;\n\t},\n\tgetUpdateCount(state) {\n\t\treturn state.updateCount;\n\t}\n};\n\nconst actions = {\n\n\tenableApp(context, { appId, groups }) {\n\t\tlet apps;\n\t\tif (Array.isArray(appId)) {\n\t\t\tapps = appId;\n\t\t} else {\n\t\t\tapps = [appId];\n\t\t}\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', apps);\n\t\t\tcontext.commit('startLoading', 'install');\n\t\t\treturn api.post(OC.generateUrl(`settings/apps/enable`), {appIds: apps, groups: groups})\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tapps.forEach(_appId => {\n\t\t\t\t\t\tcontext.commit('enableApp', {appId: _appId, groups: groups});\n\t\t\t\t\t});\n\n\t\t\t\t\t// check for server health\n\t\t\t\t\treturn api.get(OC.generateUrl('apps/files'))\n\t\t\t\t\t\t.then(() => {\n\t\t\t\t\t\t\tif (response.data.update_required) {\n\t\t\t\t\t\t\t\tOC.dialogs.info(\n\t\t\t\t\t\t\t\t\tt(\n\t\t\t\t\t\t\t\t\t\t'settings',\n\t\t\t\t\t\t\t\t\t\t'The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.'\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tt('settings','App update'),\n\t\t\t\t\t\t\t\t\tfunction () {\n\t\t\t\t\t\t\t\t\t\twindow.location.reload();\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\ttrue\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\t\t\t\tlocation.reload();\n\t\t\t\t\t\t\t\t}, 5000);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.catch((error) => {\n\t\t\t\t\t\t\tif (!Array.isArray(appId)) {\n\t\t\t\t\t\t\t\tcontext.commit('setError', {\n\t\t\t\t\t\t\t\t\tappId: apps,\n\t\t\t\t\t\t\t\t\terror: t('settings', 'Error: This app can not be enabled because it makes the server unstable')\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tcontext.commit('setError', {\n\t\t\t\t\t\tappId: apps,\n\t\t\t\t\t\terror: error.response.data.data.message\n\t\t\t\t\t});\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error});\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\tdisableApp(context, { appId }) {\n\t\tlet apps;\n\t\tif (Array.isArray(appId)) {\n\t\t\tapps = appId;\n\t\t} else {\n\t\t\tapps = [appId];\n\t\t}\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', apps);\n\t\t\treturn api.post(OC.generateUrl(`settings/apps/disable`), {appIds: apps})\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tapps.forEach(_appId => {\n\t\t\t\t\t\tcontext.commit('disableApp', _appId);\n\t\t\t\t\t});\n\t\t\t\t\treturn true;\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', apps);\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error })\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\tuninstallApp(context, { appId }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', appId);\n\t\t\treturn api.get(OC.generateUrl(`settings/apps/uninstall/${appId}`))\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('uninstallApp', appId);\n\t\t\t\t\treturn true;\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error })\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\n\tupdateApp(context, { appId }) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\tcontext.commit('startLoading', appId);\n\t\t\tcontext.commit('startLoading', 'install');\n\t\t\treturn api.get(OC.generateUrl(`settings/apps/update/${appId}`))\n\t\t\t\t.then((response) => {\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('updateApp', appId);\n\t\t\t\t\treturn true;\n\t\t\t\t})\n\t\t\t\t.catch((error) => {\n\t\t\t\t\tcontext.commit('stopLoading', appId);\n\t\t\t\t\tcontext.commit('stopLoading', 'install');\n\t\t\t\t\tcontext.commit('APPS_API_FAILURE', { appId, error })\n\t\t\t\t})\n\t\t}).catch((error) => context.commit('API_FAILURE', { appId, error }));\n\t},\n\n\tgetAllApps(context) {\n\t\tcontext.commit('startLoading', 'list');\n\t\treturn api.get(OC.generateUrl(`settings/apps/list`))\n\t\t\t.then((response) => {\n\t\t\t\tcontext.commit('setAllApps', response.data.apps);\n\t\t\t\tcontext.commit('stopLoading', 'list');\n\t\t\t\treturn true;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error))\n\t},\n\n\tgetCategories(context) {\n\t\tcontext.commit('startLoading', 'categories');\n\t\treturn api.get(OC.generateUrl('settings/apps/categories'))\n\t\t\t.then((response) => {\n\t\t\t\tif (response.data.length > 0) {\n\t\t\t\t\tcontext.commit('appendCategories', response.data);\n\t\t\t\t\tcontext.commit('stopLoading', 'categories');\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t})\n\t\t\t.catch((error) => context.commit('API_FAILURE', error));\n\t},\n\n};\n\nexport default { state, mutations, getters, actions };","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\n\nconst state = {\n\tserverData: {}\n};\nconst mutations = {\n\tsetServerData(state, data) {\n\t\tstate.serverData = data;\n\t}\n};\nconst getters = {\n\tgetServerData(state) {\n\t\treturn state.serverData;\n\t}\n};\nconst actions = {};\n\nexport default {state, mutations, getters, actions};\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport api from './api';\n\nconst state = {};\nconst mutations = {};\nconst getters = {};\nconst actions = {\n\t/**\n * Set application config in database\n * \n\t * @param {Object} context\n * @param {Object} options\n\t * @param {string} options.app Application name\n\t * @param {boolean} options.key Config key\n\t * @param {boolean} options.value Value to set\n\t * @returns{Promise}\n\t */\n\tsetAppConfig(context, {app, key, value}) {\n\t\treturn api.requireAdmin().then((response) => {\n\t\t\treturn api.post(OC.linkToOCS(`apps/provisioning_api/api/v1/config/apps/${app}/${key}`, 2), {value: value})\n\t\t\t\t.catch((error) => {throw error;});\n\t\t}).catch((error) => context.commit('API_FAILURE', { app, key, value, error }));;\n }\n};\n\nexport default {state, mutations, getters, actions};\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue';\nimport Vuex from 'vuex';\nimport users from './users';\nimport apps from './apps';\nimport settings from './settings';\nimport oc from './oc';\n\nVue.use(Vuex)\n\nconst debug = process.env.NODE_ENV !== 'production';\n\nconst mutations = {\n\tAPI_FAILURE(state, error) {\n\t\ttry {\n\t\t\tlet message = error.error.response.data.ocs.meta.message;\n\t\t\tOC.Notification.showHtml(t('settings','An error occured during the request. Unable to proceed.')+'<br>'+message, {timeout: 7});\n\t\t} catch(e) {\n\t\t\tOC.Notification.showTemporary(t('settings','An error occured during the request. Unable to proceed.'));\n\t\t}\n\t\tconsole.log(state, error);\n\t}\n};\n\nexport default new Vuex.Store({\n\tmodules: {\n\t\tusers,\n\t\tapps,\n\t\tsettings,\n\t\toc\n\t},\n\tstrict: debug,\n\n\tmutations\n});\n","/*\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nimport Vue from 'vue';\nimport { sync } from 'vuex-router-sync';\nimport App from './App.vue';\nimport router from './router';\nimport store from './store';\nrequire(\"babel-polyfill\");\n\n\nsync(store, router);\n\n// bind to window\nVue.prototype.t = t;\nVue.prototype.OC = OC;\nVue.prototype.OCA = OCA;\nVue.prototype.oc_userconfig = oc_userconfig;\nVue.prototype.oc_current_user = oc_current_user;\n\nconst app = new Vue({\n\trouter,\n\tstore,\n\trender: h => h(App)\n}).$mount('#content');\n\nexport { app, router, store };"],"sourceRoot":""}
\ No newline at end of file diff --git a/settings/l10n/af.js b/settings/l10n/af.js index 73a69a70ca1..564b1478f06 100644 --- a/settings/l10n/af.js +++ b/settings/l10n/af.js @@ -32,7 +32,6 @@ OC.L10N.register( "Issued By" : "Uitgereik deur", "Valid until %s" : "Geldig tot %s", "Administrator documentation" : "Administrateurdokumentasie", - "Online documentation" : "Aanlyndokumentasie", "Forum" : "Forum", "days" : "dae", "Profile picture" : "Profielprent", @@ -74,6 +73,7 @@ OC.L10N.register( "%s-licensed" : "%s-gelisensieer", "Documentation:" : "Dokumentasie:", "Admin documentation" : "Admindokumentasie", + "Online documentation" : "Aanlyndokumentasie", "You are using <strong>%s</strong> of <strong>%s</strong>" : "U gebruik <strong>%s</strong> van <strong>%s</strong>", "You are member of the following groups:" : "U is ’n lid van die volgende groepe:", "Show email address" : "Toon e-posadres", diff --git a/settings/l10n/af.json b/settings/l10n/af.json index d40bea2c9b6..9785f54397b 100644 --- a/settings/l10n/af.json +++ b/settings/l10n/af.json @@ -30,7 +30,6 @@ "Issued By" : "Uitgereik deur", "Valid until %s" : "Geldig tot %s", "Administrator documentation" : "Administrateurdokumentasie", - "Online documentation" : "Aanlyndokumentasie", "Forum" : "Forum", "days" : "dae", "Profile picture" : "Profielprent", @@ -72,6 +71,7 @@ "%s-licensed" : "%s-gelisensieer", "Documentation:" : "Dokumentasie:", "Admin documentation" : "Admindokumentasie", + "Online documentation" : "Aanlyndokumentasie", "You are using <strong>%s</strong> of <strong>%s</strong>" : "U gebruik <strong>%s</strong> van <strong>%s</strong>", "You are member of the following groups:" : "U is ’n lid van die volgende groepe:", "Show email address" : "Toon e-posadres", diff --git a/settings/l10n/ar.js b/settings/l10n/ar.js index ea38bbef6a9..672ea1eca72 100644 --- a/settings/l10n/ar.js +++ b/settings/l10n/ar.js @@ -93,10 +93,7 @@ OC.L10N.register( "Valid until %s" : "صالحة إلى غاية %s", "Import root certificate" : "إستيراد شهادة جذرية", "Administrator documentation" : "دليل المدير", - "Online documentation" : "التعليمات على الإنترنت", "Forum" : "منتدى", - "Getting help" : "طلب المساعدة", - "Commercial support" : "الدعم التجاري", "None" : "لا شيء", "Login" : "تسجيل الدخول", "NT LAN Manager" : "مدير الشبكة المحلية LAN NT", @@ -213,6 +210,9 @@ OC.L10N.register( "Report a bug" : "الإبلاغ عن عِلّة", "Show description …" : "إظهار الوصف …", "Hide description …" : "إخفاء الوصف …", + "Online documentation" : "التعليمات على الإنترنت", + "Getting help" : "طلب المساعدة", + "Commercial support" : "الدعم التجاري", "Get the apps to sync your files" : "أحصُل على التطبيقات لمزامنة ملفاتك", "Desktop client" : "تطبيق سطح المكتب", "Android app" : "تطبيق الأندرويد", diff --git a/settings/l10n/ar.json b/settings/l10n/ar.json index 8ae184d5ef6..8d82c482c1a 100644 --- a/settings/l10n/ar.json +++ b/settings/l10n/ar.json @@ -91,10 +91,7 @@ "Valid until %s" : "صالحة إلى غاية %s", "Import root certificate" : "إستيراد شهادة جذرية", "Administrator documentation" : "دليل المدير", - "Online documentation" : "التعليمات على الإنترنت", "Forum" : "منتدى", - "Getting help" : "طلب المساعدة", - "Commercial support" : "الدعم التجاري", "None" : "لا شيء", "Login" : "تسجيل الدخول", "NT LAN Manager" : "مدير الشبكة المحلية LAN NT", @@ -211,6 +208,9 @@ "Report a bug" : "الإبلاغ عن عِلّة", "Show description …" : "إظهار الوصف …", "Hide description …" : "إخفاء الوصف …", + "Online documentation" : "التعليمات على الإنترنت", + "Getting help" : "طلب المساعدة", + "Commercial support" : "الدعم التجاري", "Get the apps to sync your files" : "أحصُل على التطبيقات لمزامنة ملفاتك", "Desktop client" : "تطبيق سطح المكتب", "Android app" : "تطبيق الأندرويد", diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js index 9cd9bd20fa9..23e8cdd117d 100644 --- a/settings/l10n/ast.js +++ b/settings/l10n/ast.js @@ -42,7 +42,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña pa %1$s camudó en %2$s", "Password changed for %s" : "Camudóse la contraseña de %s", "If you did not request this, please contact an administrator." : "Si nun solicitesti esto, por favor contautu con un alministrador.", - "%1$s changed your email address on %2$s." : "%1$s camudó la to direición de corréu en %2$s.", "Your email address on %s was changed." : "Camudóse la to direición de corréu en %s", "Your email address on %s was changed by an administrator." : "Un alministrador camudó la to direción de corréu en %s", "The new email address is %s" : "La nueva direición de corréu ye %s", @@ -125,10 +124,7 @@ OC.L10N.register( "Valid until %s" : "Válidu hasta'l %s", "Import root certificate" : "Importar certificáu raigañu", "Administrator documentation" : "Documentación d'alministrador", - "Online documentation" : "Documentación en llinia", "Forum" : "Foru", - "Getting help" : "Consiguir ayuda", - "Commercial support" : "Sofitu comercial", "None" : "Dengún", "Login" : "Entamar sesión", "Plain" : "Planu", @@ -237,6 +233,7 @@ OC.L10N.register( "Invalid user" : "Usuariu non válidu", "Unable to change mail address" : "Nun pue camudase la direición de corréu", "Email saved" : "Corréu-e guardáu", + "%1$s changed your email address on %2$s." : "%1$s camudó la to direición de corréu en %2$s.", "Password confirmation is required" : "Ríquese la contraseña de confirmación", "Are you really sure you want add {domain} as trusted domain?" : "¿De xuru que quies amestar {domain} como dominiu d'enfotu?", "Add trusted domain" : "Amestar dominiu d'enfotu", @@ -297,6 +294,9 @@ OC.L10N.register( "Show description …" : "Amosar descripción...", "Hide description …" : "Anubrir descripción...", "Enable only for specific groups" : "Habilitar namái pa grupos específicos", + "Online documentation" : "Documentación en llinia", + "Getting help" : "Consiguir ayuda", + "Commercial support" : "Sofitu comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Tas usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Yes miembru de los grupos de darréu:", "Show storage location" : "Amosar allugamientu d'almacenamientu", diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json index 943f5ef107b..4acb1ec7939 100644 --- a/settings/l10n/ast.json +++ b/settings/l10n/ast.json @@ -40,7 +40,6 @@ "Password for %1$s changed on %2$s" : "La contraseña pa %1$s camudó en %2$s", "Password changed for %s" : "Camudóse la contraseña de %s", "If you did not request this, please contact an administrator." : "Si nun solicitesti esto, por favor contautu con un alministrador.", - "%1$s changed your email address on %2$s." : "%1$s camudó la to direición de corréu en %2$s.", "Your email address on %s was changed." : "Camudóse la to direición de corréu en %s", "Your email address on %s was changed by an administrator." : "Un alministrador camudó la to direción de corréu en %s", "The new email address is %s" : "La nueva direición de corréu ye %s", @@ -123,10 +122,7 @@ "Valid until %s" : "Válidu hasta'l %s", "Import root certificate" : "Importar certificáu raigañu", "Administrator documentation" : "Documentación d'alministrador", - "Online documentation" : "Documentación en llinia", "Forum" : "Foru", - "Getting help" : "Consiguir ayuda", - "Commercial support" : "Sofitu comercial", "None" : "Dengún", "Login" : "Entamar sesión", "Plain" : "Planu", @@ -235,6 +231,7 @@ "Invalid user" : "Usuariu non válidu", "Unable to change mail address" : "Nun pue camudase la direición de corréu", "Email saved" : "Corréu-e guardáu", + "%1$s changed your email address on %2$s." : "%1$s camudó la to direición de corréu en %2$s.", "Password confirmation is required" : "Ríquese la contraseña de confirmación", "Are you really sure you want add {domain} as trusted domain?" : "¿De xuru que quies amestar {domain} como dominiu d'enfotu?", "Add trusted domain" : "Amestar dominiu d'enfotu", @@ -295,6 +292,9 @@ "Show description …" : "Amosar descripción...", "Hide description …" : "Anubrir descripción...", "Enable only for specific groups" : "Habilitar namái pa grupos específicos", + "Online documentation" : "Documentación en llinia", + "Getting help" : "Consiguir ayuda", + "Commercial support" : "Sofitu comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Tas usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Yes miembru de los grupos de darréu:", "Show storage location" : "Amosar allugamientu d'almacenamientu", diff --git a/settings/l10n/bg.js b/settings/l10n/bg.js index dbf35a37890..b3b30c7116b 100644 --- a/settings/l10n/bg.js +++ b/settings/l10n/bg.js @@ -61,9 +61,7 @@ OC.L10N.register( "Issued By" : "Издаден от", "Valid until %s" : "Валиден до %s", "Import root certificate" : "Импортиране на основен сертификат", - "Online documentation" : "Онлайн документация", "Forum" : "Форум", - "Commercial support" : "Платена поддръжка", "None" : "Няма", "Login" : "Вход", "Plain" : "Обикновен", @@ -177,6 +175,8 @@ OC.L10N.register( "Show description …" : "Покажи описание ...", "Hide description …" : "Скрии описание ...", "Enable only for specific groups" : "Включи само за определени групи", + "Online documentation" : "Онлайн документация", + "Commercial support" : "Платена поддръжка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Ползвате <strong>%s</strong> от <strong>%s</strong>", "You are member of the following groups:" : "Член сте на следните групи:", "Show storage location" : "Покажи мястото на хранилището", diff --git a/settings/l10n/bg.json b/settings/l10n/bg.json index b3e4a270d43..b2598183c05 100644 --- a/settings/l10n/bg.json +++ b/settings/l10n/bg.json @@ -59,9 +59,7 @@ "Issued By" : "Издаден от", "Valid until %s" : "Валиден до %s", "Import root certificate" : "Импортиране на основен сертификат", - "Online documentation" : "Онлайн документация", "Forum" : "Форум", - "Commercial support" : "Платена поддръжка", "None" : "Няма", "Login" : "Вход", "Plain" : "Обикновен", @@ -175,6 +173,8 @@ "Show description …" : "Покажи описание ...", "Hide description …" : "Скрии описание ...", "Enable only for specific groups" : "Включи само за определени групи", + "Online documentation" : "Онлайн документация", + "Commercial support" : "Платена поддръжка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Ползвате <strong>%s</strong> от <strong>%s</strong>", "You are member of the following groups:" : "Член сте на следните групи:", "Show storage location" : "Покажи мястото на хранилището", diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js index 8821630c30e..b5e41cf4283 100644 --- a/settings/l10n/ca.js +++ b/settings/l10n/ca.js @@ -41,7 +41,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Contrasenya per %1$s canviada a %2$s", "Password changed for %s" : "Contrasenya canviada per %s", "If you did not request this, please contact an administrator." : "Si vostè no l'ha sol·licitat, si us plau, poseu-vos en contacte amb un administrador.", - "%1$s changed your email address on %2$s." : "%1$s va canviar el teu email a %2$s.", "Your email address on %s was changed." : "El teu email a %s es va canviar.", "Your email address on %s was changed by an administrator." : "El teu email a %s es va canviar per un administrador.", "Email address for %1$s changed on %2$s" : "Adreça d'email per %1$s canviada a %2$s", @@ -133,10 +132,7 @@ OC.L10N.register( "Valid until %s" : "Vàlid fins %s", "Import root certificate" : "Importa certificat root", "Administrator documentation" : "Documentació d'administrador", - "Online documentation" : "Documentació en línia", "Forum" : "Fòrum", - "Getting help" : "Obtenint ajuda", - "Commercial support" : "Suport comercial", "None" : "Cap", "Login" : "Inici de sessió", "Plain" : "Pla", @@ -251,6 +247,7 @@ OC.L10N.register( "Invalid user" : "Usuari no vàlid", "Unable to change mail address" : "No es pot canviar l'adreça de correu electrònic", "Email saved" : "S'ha desat el correu electrònic", + "%1$s changed your email address on %2$s." : "%1$s va canviar el teu email a %2$s.", "Password confirmation is required" : "Cal una confirmació de la contrasenya", "Are you really sure you want add {domain} as trusted domain?" : "Estàs segur que vols afegir {domini} com a domini de confiança?", "Add trusted domain" : "Afegir domini de confiança", @@ -316,6 +313,9 @@ OC.L10N.register( "Hide description …" : "Amagar descripció...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. ", "Enable only for specific groups" : "Activa només per grups específics", + "Online documentation" : "Documentació en línia", + "Getting help" : "Obtenint ajuda", + "Commercial support" : "Suport comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estàs fent servir <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Vostè és membre dels següents grups:", "Android app" : "Aplicació d'Android", diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json index 7339df5000c..6605e78895b 100644 --- a/settings/l10n/ca.json +++ b/settings/l10n/ca.json @@ -39,7 +39,6 @@ "Password for %1$s changed on %2$s" : "Contrasenya per %1$s canviada a %2$s", "Password changed for %s" : "Contrasenya canviada per %s", "If you did not request this, please contact an administrator." : "Si vostè no l'ha sol·licitat, si us plau, poseu-vos en contacte amb un administrador.", - "%1$s changed your email address on %2$s." : "%1$s va canviar el teu email a %2$s.", "Your email address on %s was changed." : "El teu email a %s es va canviar.", "Your email address on %s was changed by an administrator." : "El teu email a %s es va canviar per un administrador.", "Email address for %1$s changed on %2$s" : "Adreça d'email per %1$s canviada a %2$s", @@ -131,10 +130,7 @@ "Valid until %s" : "Vàlid fins %s", "Import root certificate" : "Importa certificat root", "Administrator documentation" : "Documentació d'administrador", - "Online documentation" : "Documentació en línia", "Forum" : "Fòrum", - "Getting help" : "Obtenint ajuda", - "Commercial support" : "Suport comercial", "None" : "Cap", "Login" : "Inici de sessió", "Plain" : "Pla", @@ -249,6 +245,7 @@ "Invalid user" : "Usuari no vàlid", "Unable to change mail address" : "No es pot canviar l'adreça de correu electrònic", "Email saved" : "S'ha desat el correu electrònic", + "%1$s changed your email address on %2$s." : "%1$s va canviar el teu email a %2$s.", "Password confirmation is required" : "Cal una confirmació de la contrasenya", "Are you really sure you want add {domain} as trusted domain?" : "Estàs segur que vols afegir {domini} com a domini de confiança?", "Add trusted domain" : "Afegir domini de confiança", @@ -314,6 +311,9 @@ "Hide description …" : "Amagar descripció...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. ", "Enable only for specific groups" : "Activa només per grups específics", + "Online documentation" : "Documentació en línia", + "Getting help" : "Obtenint ajuda", + "Commercial support" : "Suport comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estàs fent servir <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Vostè és membre dels següents grups:", "Android app" : "Aplicació d'Android", diff --git a/settings/l10n/cs.js b/settings/l10n/cs.js index fd5685fbe5b..a4b4521590d 100644 --- a/settings/l10n/cs.js +++ b/settings/l10n/cs.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Heslo pro %1$s na %2$s změněno ", "Password changed for %s" : "Změna hesla pro %s", "If you did not request this, please contact an administrator." : "Pokud jste o toto nežádali, prosím, kontaktujte administrátora.", - "%1$s changed your email address on %2$s." : "%1$s změnil(a) vaši e-mailovou adresu na %2s.", "Your email address on %s was changed." : "Vaše e-mailová adresa na %s byla změněna.", "Your email address on %s was changed by an administrator." : "Vaše e-mailová adresa na %s byla změněna administrátorem.", "Email address for %1$s changed on %2$s" : "E-mailová adresa pro %1$s se na %2$s změnila", @@ -105,56 +104,34 @@ OC.L10N.register( "Strong password" : "Silné heslo", "An error occured while changing your language. Please reload the page and try again." : "Při změně jazyka došlo k chybě. Znovu načtěte stránku a zkuste to ještě jednou.", "Select a profile picture" : "Vyberte profilový obrázek", - "Week starts on {fdow}" : "Týden začíná {fdow}", "Groups" : "Skupiny", - "Group list is empty" : "Seznam skupin je prázdný.", - "Unable to retrieve the group list" : "Nedaří se získat seznam skupiny", "Official" : "Oficiální", - "No results" : "Žádné výsledky", "Visit website" : "Navštívit webovou stránku", "User documentation" : "Dokumentace uživatele", "Developer documentation" : "Vývojářská dokumentace", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou minimální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", - "Disable all" : "Zakázat vše", "Enable all" : "Povolit vše", - "Download and enable" : "Stáhnout a povolit", "Enable" : "Povolit", "The app will be downloaded from the app store" : "Aplikace bude stažena z obchodu aplikací", "Settings" : "Nastavení", - "You do not have permissions to see the details of this user" : "Nemáte oprávnění k zobrazení podrobností o tomto uživateli", - "Delete user" : "Smazat uživatele", - "Disable user" : "Znepřístupnit uživatelský účet", - "Enable user" : "Zpřístupnit uživatelský účet", - "Resend welcome email" : "Znovu poslat uvítací e-mail", - "Welcome mail sent!" : "Uvítací e-mail odeslán!", - "Display name" : "Zobrazované jméno", "Email" : "E-mail", "Group admin for" : "Správce skupiny", "Language" : "Jazyk", "User backend" : "Backend uživatelů", "Unlimited" : "Neomezeně", "Default quota" : "Výchozí kvóta", - "Default language" : "Výchozí jazyk", - "Common languages" : "Běžné jazyky", - "All languages" : "Všechny jazyky", "You did not enter the password in time" : "Nezadali jste heslo včas", "An error occured during the request. Unable to proceed." : "Během požadavku došlo k chybě. Nelze pokračovat.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", "App update" : "Aktualizace aplikace", "Error: This app can not be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", "Your apps" : "Vaše aplikace", - "Active apps" : "Aktivní aplikace", "Disabled apps" : "Zakázané aplikace", "Updates" : "Aktualizace", "App bundles" : "Balíčky aplikací", - "Default quota :" : "Výchozí kvóta:", - "Please confirm the group removal " : "Potvrďte prosím odstranění skupiny", - "Remove group" : "Odebrat skupinu", - "Admins" : "Administrátoři", - "Disabled users" : "Zakázaní uživatelé", + "Admins" : "Správci", "Everyone" : "Všichni", - "New user" : "Nový uživatel", "SSL Root Certificates" : "Kořenové certifikáty SSL", "Common Name" : "Common Name", "Valid until" : "Platný do", @@ -162,10 +139,8 @@ OC.L10N.register( "Valid until %s" : "Platný do %s", "Import root certificate" : "Import kořenového certifikátu", "Administrator documentation" : "Dokumentace administrátora", - "Online documentation" : "Online dokumentace", + "Documentation" : "Dokumentace", "Forum" : "Fórum", - "Getting help" : "Sehnat pomoc", - "Commercial support" : "Placená podpora", "None" : "Žádné", "Login" : "Přihlásit", "Plain" : "Čistý text", @@ -189,7 +164,7 @@ OC.L10N.register( "Store credentials" : "Ukládat přihlašovací údaje", "Test email settings" : "Test nastavení e-mailu", "Send email" : "Odeslat e-mail", - "Server-side encryption" : "Šifrování na serveru", + "Server-side encryption" : "Šifrování na straně serveru", "Server-side encryption makes it possible to encrypt files which are uploaded to this server. This comes with limitations like a performance penalty, so enable this only if needed." : "Šifrování na straně serveru umožňuje zašifrovat soubory, které jsou na tento server nahrávány. To přináší omezení jako třeba výkonnostní omezení, takže to povolte jen pokud je třeba.", "Enable server-side encryption" : "Povolit šifrování na straně serveru", "Please read carefully before activating server-side encryption: " : "Pročtěte prosím důkladně před aktivací šifrování dat na serveru:", @@ -226,7 +201,7 @@ OC.L10N.register( "Always ask for a password" : "Vždy se zeptat na heslo", "Enforce password protection" : "Vynutit ochranu heslem", "Set default expiration date" : "Nastavit výchozí datum vypršení platnosti", - "Expire after " : "Vyprší po", + "Expire after " : "Platnost skončí po", "days" : "dnech", "Enforce expiration date" : "Vynutit datum vypršení", "Allow resharing" : "Povolit znovu-sdílení", @@ -239,7 +214,7 @@ OC.L10N.register( "This text will be shown on the public link upload page when the file list is hidden." : "Tento text bude zobrazen on stránce pro nahrání veřejného odkazu, pokud bude seznam souborů skrytý.", "Default share permissions" : "Výchozí oprávnění sdílení", "Personal" : "Osobní", - "Administration" : "Administrace", + "Administration" : "Správa", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Vyvíjeno {communityopen}Nextcloud komunitou{linkclose}, {githubopen}zdrojový kód{linkclose} je licencován pod {licenseopen}AGPL{linkclose}.", "Follow us on Google+" : "Sledujte nás na Google+", "Like our Facebook page" : "Stejně jako naše stránky na Facebooku", @@ -291,7 +266,7 @@ OC.L10N.register( "Enabled apps" : "Povolené aplikace", "A problem occurred, please check your log files (Error: %s)" : "Došlo k chybě, zkontrolujte prosím log (Chyba: %s)", "Migration Completed" : "Migrace dokončena", - "Group already exists." : "Skupina již existuje.", + "Group already exists." : "Skupina už existuje.", "Unable to add group." : "Nelze přidat skupinu.", "Unable to delete group." : "Nelze smazat skupinu.", "No valid group selected" : "Není vybrána platná skupina", @@ -306,6 +281,7 @@ OC.L10N.register( "Invalid user" : "Neplatný uživatel", "Unable to change mail address" : "Nelze změnit e-mailovou adresu", "Email saved" : "E-mail uložen", + "%1$s changed your email address on %2$s." : "%1$s změnil(a) vaši e-mailovou adresu na %2s.", "Password confirmation is required" : "Je vyžadováno potvrzení hesla", "Are you really sure you want add {domain} as trusted domain?" : "Jste si jisti, že chcete přidat {domain} mezi důvěryhodné domény?", "Add trusted domain" : "Přidat důvěryhodnou doménu", @@ -387,6 +363,9 @@ OC.L10N.register( "Hide description …" : "Skrýt popis ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou maximální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", + "Online documentation" : "Online dokumentace", + "Getting help" : "Sehnat pomoc", + "Commercial support" : "Placená podpora", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Používáte <strong>%s</strong> z <strong>%s</strong>", "You are member of the following groups:" : "Patříte do následujících skupin:", "Desktop client" : "Desktopový klient", diff --git a/settings/l10n/cs.json b/settings/l10n/cs.json index f7223ae9ca9..3bd0c807474 100644 --- a/settings/l10n/cs.json +++ b/settings/l10n/cs.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Heslo pro %1$s na %2$s změněno ", "Password changed for %s" : "Změna hesla pro %s", "If you did not request this, please contact an administrator." : "Pokud jste o toto nežádali, prosím, kontaktujte administrátora.", - "%1$s changed your email address on %2$s." : "%1$s změnil(a) vaši e-mailovou adresu na %2s.", "Your email address on %s was changed." : "Vaše e-mailová adresa na %s byla změněna.", "Your email address on %s was changed by an administrator." : "Vaše e-mailová adresa na %s byla změněna administrátorem.", "Email address for %1$s changed on %2$s" : "E-mailová adresa pro %1$s se na %2$s změnila", @@ -103,56 +102,34 @@ "Strong password" : "Silné heslo", "An error occured while changing your language. Please reload the page and try again." : "Při změně jazyka došlo k chybě. Znovu načtěte stránku a zkuste to ještě jednou.", "Select a profile picture" : "Vyberte profilový obrázek", - "Week starts on {fdow}" : "Týden začíná {fdow}", "Groups" : "Skupiny", - "Group list is empty" : "Seznam skupin je prázdný.", - "Unable to retrieve the group list" : "Nedaří se získat seznam skupiny", "Official" : "Oficiální", - "No results" : "Žádné výsledky", "Visit website" : "Navštívit webovou stránku", "User documentation" : "Dokumentace uživatele", "Developer documentation" : "Vývojářská dokumentace", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou minimální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", - "Disable all" : "Zakázat vše", "Enable all" : "Povolit vše", - "Download and enable" : "Stáhnout a povolit", "Enable" : "Povolit", "The app will be downloaded from the app store" : "Aplikace bude stažena z obchodu aplikací", "Settings" : "Nastavení", - "You do not have permissions to see the details of this user" : "Nemáte oprávnění k zobrazení podrobností o tomto uživateli", - "Delete user" : "Smazat uživatele", - "Disable user" : "Znepřístupnit uživatelský účet", - "Enable user" : "Zpřístupnit uživatelský účet", - "Resend welcome email" : "Znovu poslat uvítací e-mail", - "Welcome mail sent!" : "Uvítací e-mail odeslán!", - "Display name" : "Zobrazované jméno", "Email" : "E-mail", "Group admin for" : "Správce skupiny", "Language" : "Jazyk", "User backend" : "Backend uživatelů", "Unlimited" : "Neomezeně", "Default quota" : "Výchozí kvóta", - "Default language" : "Výchozí jazyk", - "Common languages" : "Běžné jazyky", - "All languages" : "Všechny jazyky", "You did not enter the password in time" : "Nezadali jste heslo včas", "An error occured during the request. Unable to proceed." : "Během požadavku došlo k chybě. Nelze pokračovat.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", "App update" : "Aktualizace aplikace", "Error: This app can not be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", "Your apps" : "Vaše aplikace", - "Active apps" : "Aktivní aplikace", "Disabled apps" : "Zakázané aplikace", "Updates" : "Aktualizace", "App bundles" : "Balíčky aplikací", - "Default quota :" : "Výchozí kvóta:", - "Please confirm the group removal " : "Potvrďte prosím odstranění skupiny", - "Remove group" : "Odebrat skupinu", - "Admins" : "Administrátoři", - "Disabled users" : "Zakázaní uživatelé", + "Admins" : "Správci", "Everyone" : "Všichni", - "New user" : "Nový uživatel", "SSL Root Certificates" : "Kořenové certifikáty SSL", "Common Name" : "Common Name", "Valid until" : "Platný do", @@ -160,10 +137,8 @@ "Valid until %s" : "Platný do %s", "Import root certificate" : "Import kořenového certifikátu", "Administrator documentation" : "Dokumentace administrátora", - "Online documentation" : "Online dokumentace", + "Documentation" : "Dokumentace", "Forum" : "Fórum", - "Getting help" : "Sehnat pomoc", - "Commercial support" : "Placená podpora", "None" : "Žádné", "Login" : "Přihlásit", "Plain" : "Čistý text", @@ -187,7 +162,7 @@ "Store credentials" : "Ukládat přihlašovací údaje", "Test email settings" : "Test nastavení e-mailu", "Send email" : "Odeslat e-mail", - "Server-side encryption" : "Šifrování na serveru", + "Server-side encryption" : "Šifrování na straně serveru", "Server-side encryption makes it possible to encrypt files which are uploaded to this server. This comes with limitations like a performance penalty, so enable this only if needed." : "Šifrování na straně serveru umožňuje zašifrovat soubory, které jsou na tento server nahrávány. To přináší omezení jako třeba výkonnostní omezení, takže to povolte jen pokud je třeba.", "Enable server-side encryption" : "Povolit šifrování na straně serveru", "Please read carefully before activating server-side encryption: " : "Pročtěte prosím důkladně před aktivací šifrování dat na serveru:", @@ -224,7 +199,7 @@ "Always ask for a password" : "Vždy se zeptat na heslo", "Enforce password protection" : "Vynutit ochranu heslem", "Set default expiration date" : "Nastavit výchozí datum vypršení platnosti", - "Expire after " : "Vyprší po", + "Expire after " : "Platnost skončí po", "days" : "dnech", "Enforce expiration date" : "Vynutit datum vypršení", "Allow resharing" : "Povolit znovu-sdílení", @@ -237,7 +212,7 @@ "This text will be shown on the public link upload page when the file list is hidden." : "Tento text bude zobrazen on stránce pro nahrání veřejného odkazu, pokud bude seznam souborů skrytý.", "Default share permissions" : "Výchozí oprávnění sdílení", "Personal" : "Osobní", - "Administration" : "Administrace", + "Administration" : "Správa", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "Vyvíjeno {communityopen}Nextcloud komunitou{linkclose}, {githubopen}zdrojový kód{linkclose} je licencován pod {licenseopen}AGPL{linkclose}.", "Follow us on Google+" : "Sledujte nás na Google+", "Like our Facebook page" : "Stejně jako naše stránky na Facebooku", @@ -289,7 +264,7 @@ "Enabled apps" : "Povolené aplikace", "A problem occurred, please check your log files (Error: %s)" : "Došlo k chybě, zkontrolujte prosím log (Chyba: %s)", "Migration Completed" : "Migrace dokončena", - "Group already exists." : "Skupina již existuje.", + "Group already exists." : "Skupina už existuje.", "Unable to add group." : "Nelze přidat skupinu.", "Unable to delete group." : "Nelze smazat skupinu.", "No valid group selected" : "Není vybrána platná skupina", @@ -304,6 +279,7 @@ "Invalid user" : "Neplatný uživatel", "Unable to change mail address" : "Nelze změnit e-mailovou adresu", "Email saved" : "E-mail uložen", + "%1$s changed your email address on %2$s." : "%1$s změnil(a) vaši e-mailovou adresu na %2s.", "Password confirmation is required" : "Je vyžadováno potvrzení hesla", "Are you really sure you want add {domain} as trusted domain?" : "Jste si jisti, že chcete přidat {domain} mezi důvěryhodné domény?", "Add trusted domain" : "Přidat důvěryhodnou doménu", @@ -385,6 +361,9 @@ "Hide description …" : "Skrýt popis ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou maximální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", + "Online documentation" : "Online dokumentace", + "Getting help" : "Sehnat pomoc", + "Commercial support" : "Placená podpora", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Používáte <strong>%s</strong> z <strong>%s</strong>", "You are member of the following groups:" : "Patříte do následujících skupin:", "Desktop client" : "Desktopový klient", diff --git a/settings/l10n/da.js b/settings/l10n/da.js index 5ce97729b2a..fc8d2005734 100644 --- a/settings/l10n/da.js +++ b/settings/l10n/da.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Password for %1$s er ændret på %2$s", "Password changed for %s" : "Password ændret for %s", "If you did not request this, please contact an administrator." : "Kontakt en administrator, hvis du ikke har bedt om dette.", - "%1$s changed your email address on %2$s." : "%1$s ændrede din email på %2$s.", "Your email address on %s was changed." : "Din email på %s blev ændret.", "Your email address on %s was changed by an administrator." : "Din email adresse på %s er blevet ændret af en administrator", "Email address for %1$s changed on %2$s" : "Email adresse for %1$s ændret på %2$s", @@ -128,10 +127,7 @@ OC.L10N.register( "Valid until %s" : "Gyldig indtil %s", "Import root certificate" : "Importer rodcertifikat", "Administrator documentation" : "Administratordokumentation", - "Online documentation" : "Online dokumentation", "Forum" : "Forum", - "Getting help" : "Få hjælp", - "Commercial support" : "Kommerciel support", "None" : "Ingen", "Login" : "Login", "Plain" : "Klartekst", @@ -239,6 +235,7 @@ OC.L10N.register( "Invalid user" : "Ugyldig bruger", "Unable to change mail address" : "Kan ikke ændre mailadresse", "Email saved" : "E-mailadressen er gemt", + "%1$s changed your email address on %2$s." : "%1$s ændrede din email på %2$s.", "Password confirmation is required" : "Password beskæftigelse er påkrævet", "Are you really sure you want add {domain} as trusted domain?" : "Er du helt sikker på at du vil tilføje {domain} som et betroet domæne?", "Add trusted domain" : "Tilføj et domæne som du har tillid til", @@ -287,6 +284,9 @@ OC.L10N.register( "Show description …" : "Vis beskrivelse", "Hide description …" : "Skjul beskrivelse", "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", + "Online documentation" : "Online dokumentation", + "Getting help" : "Få hjælp", + "Commercial support" : "Kommerciel support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du bruger <strong>%s</strong> af <strong>%s</strong>", "You are member of the following groups:" : "Du er medlem af følgende grupper:", "Show storage location" : "Vis placering af lageret", diff --git a/settings/l10n/da.json b/settings/l10n/da.json index 39edf17668f..a1bb5c0067a 100644 --- a/settings/l10n/da.json +++ b/settings/l10n/da.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Password for %1$s er ændret på %2$s", "Password changed for %s" : "Password ændret for %s", "If you did not request this, please contact an administrator." : "Kontakt en administrator, hvis du ikke har bedt om dette.", - "%1$s changed your email address on %2$s." : "%1$s ændrede din email på %2$s.", "Your email address on %s was changed." : "Din email på %s blev ændret.", "Your email address on %s was changed by an administrator." : "Din email adresse på %s er blevet ændret af en administrator", "Email address for %1$s changed on %2$s" : "Email adresse for %1$s ændret på %2$s", @@ -126,10 +125,7 @@ "Valid until %s" : "Gyldig indtil %s", "Import root certificate" : "Importer rodcertifikat", "Administrator documentation" : "Administratordokumentation", - "Online documentation" : "Online dokumentation", "Forum" : "Forum", - "Getting help" : "Få hjælp", - "Commercial support" : "Kommerciel support", "None" : "Ingen", "Login" : "Login", "Plain" : "Klartekst", @@ -237,6 +233,7 @@ "Invalid user" : "Ugyldig bruger", "Unable to change mail address" : "Kan ikke ændre mailadresse", "Email saved" : "E-mailadressen er gemt", + "%1$s changed your email address on %2$s." : "%1$s ændrede din email på %2$s.", "Password confirmation is required" : "Password beskæftigelse er påkrævet", "Are you really sure you want add {domain} as trusted domain?" : "Er du helt sikker på at du vil tilføje {domain} som et betroet domæne?", "Add trusted domain" : "Tilføj et domæne som du har tillid til", @@ -285,6 +282,9 @@ "Show description …" : "Vis beskrivelse", "Hide description …" : "Skjul beskrivelse", "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", + "Online documentation" : "Online dokumentation", + "Getting help" : "Få hjælp", + "Commercial support" : "Kommerciel support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du bruger <strong>%s</strong> af <strong>%s</strong>", "You are member of the following groups:" : "Du er medlem af følgende grupper:", "Show storage location" : "Vis placering af lageret", diff --git a/settings/l10n/de.js b/settings/l10n/de.js index d55ec8813d3..e04f951dec1 100644 --- a/settings/l10n/de.js +++ b/settings/l10n/de.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Passwort für %1$s geändert auf %2$s", "Password changed for %s" : "Passwort geändert für %s", "If you did not request this, please contact an administrator." : "Wenn Du das nicht angefordert haben solltest, wende Dich bitte an den Administrator.", - "%1$s changed your email address on %2$s." : "%1$s hat Deine E-Mail-Adresse geändert auf %2$s.", "Your email address on %s was changed." : "Deine E-Mail-Adresse auf %s wurde geändert.", "Your email address on %s was changed by an administrator." : "Deine E-Mail-Adresse auf %s wurde von einen Administrator geändert.", "Email address for %1$s changed on %2$s" : "E-Mail-Adresse für %1$s geändert auf %2$s", @@ -105,12 +104,12 @@ OC.L10N.register( "Good password" : "Gutes Passwort", "Strong password" : "Starkes Passwort", "An error occured while changing your language. Please reload the page and try again." : "Es ist ein Fehler beim Wechseln der Sprache aufgetreten. Bitte lade die Seite neu und versuchen es noch einmal.", - "An error occured while changing your locale. Please reload the page and try again." : "Es ist ein Fehler beim Wechseln des Gebietsschemas aufgetreten. Bitte laden Sie die Seite neu und versuchen es noch einmal.", + "An error occured while changing your locale. Please reload the page and try again." : "Es ist ein Fehler beim Wechseln des Gebietsschemas aufgetreten. Bitte die Seite neu laden und erneut versuchen.", "Select a profile picture" : "Wähle ein Profilbild", "Week starts on {fdow}" : "Die Woche startet am {fdow}", "Groups" : "Gruppen", "Group list is empty" : "Gruppenliste ist leer", - "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", + "Unable to retrieve the group list" : "Gruppenliste konnte nicht abgerufen werden", "Official" : "Offiziell", "No results" : "Keine Ergebnisse", "Visit website" : "Webseite besuchen", @@ -125,12 +124,12 @@ OC.L10N.register( "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "Settings" : "Einstellungen", - "You do not have permissions to see the details of this user" : "Du hast nicht dier erforderlichen Rechte um auf die weiteren Daten dieses Nutzers zuzugreifen", + "You do not have permissions to see the details of this user" : "Du hast nicht dier erforderlichen Rechte um auf die Details zu diesem Nutzer zuzugreifen", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", - "Resend welcome email" : "Willkommen-E-Mail nochmals senden", - "Welcome mail sent!" : "Willkommen-E-Mail gesendet!", + "Resend welcome email" : "Willkommens-E-Mail erneut senden", + "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", "Display name" : "Anzeigename", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", @@ -152,7 +151,7 @@ OC.L10N.register( "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", - "Default quota :" : "Standard Speicherkontingent :", + "Default quota :" : "Standard Speicherkontingent:", "You are about to remove the group {group}. The users will NOT be deleted." : "Du bist dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -167,10 +166,8 @@ OC.L10N.register( "Valid until %s" : "Gültig bis %s", "Import root certificate" : "Root-Zertifikat importieren", "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", + "Documentation" : "Dokumentation", "Forum" : "Forum", - "Getting help" : "Hilfe bekommen", - "Commercial support" : "Kommerzieller Support", "None" : "Keine", "Login" : "Anmelden", "Plain" : "Klartext", @@ -266,7 +263,7 @@ OC.L10N.register( "Choose as profile picture" : "Als Profilbild auswählen", "Details" : "Details", "You are a member of the following groups:" : "Du bist Miglied folgender Gruppen:", - "You are using <strong>%s</strong>" : "Sie benutzen <strong>%s</strong>", + "You are using <strong>%s</strong>" : "Du benutzt <strong>%s</strong>", "You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Du benutzt <strong>%s</strong> von <strong>%s</strong> (<strong>%s %%</strong>)", "Full name" : "Vollständiger Name", "No display name set" : "Kein Anzeigename angegeben", @@ -316,6 +313,7 @@ OC.L10N.register( "Invalid user" : "Ungültiger Benutzer", "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", "Email saved" : "E-Mail-Adresse gespeichert", + "%1$s changed your email address on %2$s." : "%1$s hat Deine E-Mail-Adresse geändert auf %2$s.", "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Bist du sicher, dass du {domain} als vertrauenswürdige Domain hinzufügen möchtest?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", @@ -408,6 +406,9 @@ OC.L10N.register( "Hide description …" : "Beschreibung ausblenden…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", + "Online documentation" : "Online-Dokumentation", + "Getting help" : "Hilfe bekommen", + "Commercial support" : "Kommerzieller Support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du benutzt <strong>%s</strong> von <strong>%s</strong>", "You are member of the following groups:" : "Du bist Mitglied folgender Gruppen:", "Get the apps to sync your files" : "Lade die Apps zur Synchronisierung Deiner Daten herunter", diff --git a/settings/l10n/de.json b/settings/l10n/de.json index 75e0b49991c..492901e4c02 100644 --- a/settings/l10n/de.json +++ b/settings/l10n/de.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Passwort für %1$s geändert auf %2$s", "Password changed for %s" : "Passwort geändert für %s", "If you did not request this, please contact an administrator." : "Wenn Du das nicht angefordert haben solltest, wende Dich bitte an den Administrator.", - "%1$s changed your email address on %2$s." : "%1$s hat Deine E-Mail-Adresse geändert auf %2$s.", "Your email address on %s was changed." : "Deine E-Mail-Adresse auf %s wurde geändert.", "Your email address on %s was changed by an administrator." : "Deine E-Mail-Adresse auf %s wurde von einen Administrator geändert.", "Email address for %1$s changed on %2$s" : "E-Mail-Adresse für %1$s geändert auf %2$s", @@ -103,12 +102,12 @@ "Good password" : "Gutes Passwort", "Strong password" : "Starkes Passwort", "An error occured while changing your language. Please reload the page and try again." : "Es ist ein Fehler beim Wechseln der Sprache aufgetreten. Bitte lade die Seite neu und versuchen es noch einmal.", - "An error occured while changing your locale. Please reload the page and try again." : "Es ist ein Fehler beim Wechseln des Gebietsschemas aufgetreten. Bitte laden Sie die Seite neu und versuchen es noch einmal.", + "An error occured while changing your locale. Please reload the page and try again." : "Es ist ein Fehler beim Wechseln des Gebietsschemas aufgetreten. Bitte die Seite neu laden und erneut versuchen.", "Select a profile picture" : "Wähle ein Profilbild", "Week starts on {fdow}" : "Die Woche startet am {fdow}", "Groups" : "Gruppen", "Group list is empty" : "Gruppenliste ist leer", - "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", + "Unable to retrieve the group list" : "Gruppenliste konnte nicht abgerufen werden", "Official" : "Offiziell", "No results" : "Keine Ergebnisse", "Visit website" : "Webseite besuchen", @@ -123,12 +122,12 @@ "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "Settings" : "Einstellungen", - "You do not have permissions to see the details of this user" : "Du hast nicht dier erforderlichen Rechte um auf die weiteren Daten dieses Nutzers zuzugreifen", + "You do not have permissions to see the details of this user" : "Du hast nicht dier erforderlichen Rechte um auf die Details zu diesem Nutzer zuzugreifen", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", - "Resend welcome email" : "Willkommen-E-Mail nochmals senden", - "Welcome mail sent!" : "Willkommen-E-Mail gesendet!", + "Resend welcome email" : "Willkommens-E-Mail erneut senden", + "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", "Display name" : "Anzeigename", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", @@ -150,7 +149,7 @@ "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", - "Default quota :" : "Standard Speicherkontingent :", + "Default quota :" : "Standard Speicherkontingent:", "You are about to remove the group {group}. The users will NOT be deleted." : "Du bist dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -165,10 +164,8 @@ "Valid until %s" : "Gültig bis %s", "Import root certificate" : "Root-Zertifikat importieren", "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", + "Documentation" : "Dokumentation", "Forum" : "Forum", - "Getting help" : "Hilfe bekommen", - "Commercial support" : "Kommerzieller Support", "None" : "Keine", "Login" : "Anmelden", "Plain" : "Klartext", @@ -264,7 +261,7 @@ "Choose as profile picture" : "Als Profilbild auswählen", "Details" : "Details", "You are a member of the following groups:" : "Du bist Miglied folgender Gruppen:", - "You are using <strong>%s</strong>" : "Sie benutzen <strong>%s</strong>", + "You are using <strong>%s</strong>" : "Du benutzt <strong>%s</strong>", "You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Du benutzt <strong>%s</strong> von <strong>%s</strong> (<strong>%s %%</strong>)", "Full name" : "Vollständiger Name", "No display name set" : "Kein Anzeigename angegeben", @@ -314,6 +311,7 @@ "Invalid user" : "Ungültiger Benutzer", "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", "Email saved" : "E-Mail-Adresse gespeichert", + "%1$s changed your email address on %2$s." : "%1$s hat Deine E-Mail-Adresse geändert auf %2$s.", "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Bist du sicher, dass du {domain} als vertrauenswürdige Domain hinzufügen möchtest?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", @@ -406,6 +404,9 @@ "Hide description …" : "Beschreibung ausblenden…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", + "Online documentation" : "Online-Dokumentation", + "Getting help" : "Hilfe bekommen", + "Commercial support" : "Kommerzieller Support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du benutzt <strong>%s</strong> von <strong>%s</strong>", "You are member of the following groups:" : "Du bist Mitglied folgender Gruppen:", "Get the apps to sync your files" : "Lade die Apps zur Synchronisierung Deiner Daten herunter", diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js index 9badcb1df0d..7f19db13ae8 100644 --- a/settings/l10n/de_DE.js +++ b/settings/l10n/de_DE.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Passwort für %1$s geändert auf %2$s", "Password changed for %s" : "Passwort geändert für %s ", "If you did not request this, please contact an administrator." : "Wenn Sie das nicht angefordert haben sollten, wenden Sie sich bitte an den Administrator.", - "%1$s changed your email address on %2$s." : "%1$s hat Ihre E-Mail-Adresse geändert auf %2$s.", "Your email address on %s was changed." : "Ihre E-Mail-Adresse auf %s wurde geändert.", "Your email address on %s was changed by an administrator." : "Ihre E-Mail-Adresse auf %s wurde von einem Administrator geändert.", "Email address for %1$s changed on %2$s" : "E-Mail-Adresse für %1$s geändert auf %2$s", @@ -110,7 +109,7 @@ OC.L10N.register( "Week starts on {fdow}" : "Die Woche startet am {fdow}", "Groups" : "Gruppen", "Group list is empty" : "Gruppenliste ist leer", - "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", + "Unable to retrieve the group list" : "Gruppenliste konnte nicht abgerufen werden", "Official" : "Offiziell", "No results" : "Keine Ergebnisse", "Visit website" : "Webseite besuchen", @@ -125,12 +124,12 @@ OC.L10N.register( "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "Settings" : "Einstellungen", - "You do not have permissions to see the details of this user" : "Sie besitzen nicht die nötigen Berechtigungen um die Details zu diesem Benutzer zu sehen", + "You do not have permissions to see the details of this user" : "Sie besitzen nicht die nötigen Berechtigungen um auf die Details zu diesem Benutzer zuzugreifen", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", - "Resend welcome email" : "Willkommen-E-Mail nochmals senden", - "Welcome mail sent!" : "Willkommen-E-Mail gesendet!", + "Resend welcome email" : "Willkommens-E-Mail erneut senden", + "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", "Display name" : "Anzeigename", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", @@ -152,7 +151,7 @@ OC.L10N.register( "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", - "Default quota :" : "Standard Speicherkontingent :", + "Default quota :" : "Standard Speicherkontingent:", "You are about to remove the group {group}. The users will NOT be deleted." : "Sie sind dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -167,10 +166,8 @@ OC.L10N.register( "Valid until %s" : "Gültig bis %s", "Import root certificate" : "Root-Zertifikat importieren", "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", + "Documentation" : "Dokumentation", "Forum" : "Forum", - "Getting help" : "Hilfe bekommen", - "Commercial support" : "Kommerzieller Support", "None" : "Keine", "Login" : "Anmelden", "Plain" : "Klartext", @@ -316,6 +313,7 @@ OC.L10N.register( "Invalid user" : "Ungültiger Benutzer", "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", "Email saved" : "E-Mail-Adresse gespeichert", + "%1$s changed your email address on %2$s." : "%1$s hat Ihre E-Mail-Adresse geändert auf %2$s.", "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Sind Sie sich wirklich sicher, dass Sie {domain} als vertrauenswürdige Domain hinzufügen möchten?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", @@ -408,6 +406,9 @@ OC.L10N.register( "Hide description …" : "Beschreibung ausblenden…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", + "Online documentation" : "Online-Dokumentation", + "Getting help" : "Hilfe bekommen", + "Commercial support" : "Kommerzieller Support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s</strong>", "You are member of the following groups:" : "Sie sind Mitglied folgender Gruppen:", "Get the apps to sync your files" : "Laden Sie die Apps zur Synchronisierung Ihrer Daten herunter", diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json index 3b2893a5fe1..258ca39d0fe 100644 --- a/settings/l10n/de_DE.json +++ b/settings/l10n/de_DE.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Passwort für %1$s geändert auf %2$s", "Password changed for %s" : "Passwort geändert für %s ", "If you did not request this, please contact an administrator." : "Wenn Sie das nicht angefordert haben sollten, wenden Sie sich bitte an den Administrator.", - "%1$s changed your email address on %2$s." : "%1$s hat Ihre E-Mail-Adresse geändert auf %2$s.", "Your email address on %s was changed." : "Ihre E-Mail-Adresse auf %s wurde geändert.", "Your email address on %s was changed by an administrator." : "Ihre E-Mail-Adresse auf %s wurde von einem Administrator geändert.", "Email address for %1$s changed on %2$s" : "E-Mail-Adresse für %1$s geändert auf %2$s", @@ -108,7 +107,7 @@ "Week starts on {fdow}" : "Die Woche startet am {fdow}", "Groups" : "Gruppen", "Group list is empty" : "Gruppenliste ist leer", - "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", + "Unable to retrieve the group list" : "Gruppenliste konnte nicht abgerufen werden", "Official" : "Offiziell", "No results" : "Keine Ergebnisse", "Visit website" : "Webseite besuchen", @@ -123,12 +122,12 @@ "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "Settings" : "Einstellungen", - "You do not have permissions to see the details of this user" : "Sie besitzen nicht die nötigen Berechtigungen um die Details zu diesem Benutzer zu sehen", + "You do not have permissions to see the details of this user" : "Sie besitzen nicht die nötigen Berechtigungen um auf die Details zu diesem Benutzer zuzugreifen", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", - "Resend welcome email" : "Willkommen-E-Mail nochmals senden", - "Welcome mail sent!" : "Willkommen-E-Mail gesendet!", + "Resend welcome email" : "Willkommens-E-Mail erneut senden", + "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", "Display name" : "Anzeigename", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", @@ -150,7 +149,7 @@ "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", - "Default quota :" : "Standard Speicherkontingent :", + "Default quota :" : "Standard Speicherkontingent:", "You are about to remove the group {group}. The users will NOT be deleted." : "Sie sind dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -165,10 +164,8 @@ "Valid until %s" : "Gültig bis %s", "Import root certificate" : "Root-Zertifikat importieren", "Administrator documentation" : "Dokumentation für Administratoren", - "Online documentation" : "Online-Dokumentation", + "Documentation" : "Dokumentation", "Forum" : "Forum", - "Getting help" : "Hilfe bekommen", - "Commercial support" : "Kommerzieller Support", "None" : "Keine", "Login" : "Anmelden", "Plain" : "Klartext", @@ -314,6 +311,7 @@ "Invalid user" : "Ungültiger Benutzer", "Unable to change mail address" : "E-Mail-Adresse konnte nicht geändert werden", "Email saved" : "E-Mail-Adresse gespeichert", + "%1$s changed your email address on %2$s." : "%1$s hat Ihre E-Mail-Adresse geändert auf %2$s.", "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Sind Sie sich wirklich sicher, dass Sie {domain} als vertrauenswürdige Domain hinzufügen möchten?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", @@ -406,6 +404,9 @@ "Hide description …" : "Beschreibung ausblenden…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", + "Online documentation" : "Online-Dokumentation", + "Getting help" : "Hilfe bekommen", + "Commercial support" : "Kommerzieller Support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s</strong>", "You are member of the following groups:" : "Sie sind Mitglied folgender Gruppen:", "Get the apps to sync your files" : "Laden Sie die Apps zur Synchronisierung Ihrer Daten herunter", diff --git a/settings/l10n/el.js b/settings/l10n/el.js index fcc5ea91fd6..50850fafde8 100644 --- a/settings/l10n/el.js +++ b/settings/l10n/el.js @@ -42,7 +42,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Ο κωδικός πρόσβασης για το %1$s άλλαξε σε %2$s", "Password changed for %s" : "Το συνθηματικό άλλαξε για τον %s", "If you did not request this, please contact an administrator." : "Εάν δεν το αιτηθήκατε, παρακαλούμε επικοινωνήστε με τον διαχειριστή.", - "%1$s changed your email address on %2$s." : "%1$sάλλαξε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σε %2$s.", "Your email address on %s was changed." : "Η ηλεκτρονική σας διεύθυνση στο %s έχει αλλάξει.", "Your email address on %s was changed by an administrator." : "Η διεύθυνση ηλεκτρονικής αλληλογραφίας στο %s άλλαξε από τον διαχειριστή.", "Email address for %1$s changed on %2$s" : "Η διεύθυνση ηλεκτρονικού ταχυδρομείου για το %1$s άλλαξε σε %2$s", @@ -103,7 +102,6 @@ OC.L10N.register( "Select a profile picture" : "Επιλογή εικόνας προφίλ", "Groups" : "Ομάδες", "Official" : "Επίσημο", - "No results" : "Κανένα αποτέλεσμα", "Visit website" : "Επισκεφθείτε την ιστοσελίδα", "User documentation" : "Τεκμηρίωση Χρήστη", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", @@ -113,19 +111,15 @@ OC.L10N.register( "Enable" : "Ενεργοποίηση", "The app will be downloaded from the app store" : "Αυτή η εφαρμογή θα ", "Settings" : "Ρυθμίσεις", - "Display name" : "Εμφανιζόμενο όνομα", "Email" : "Ηλεκτρονικό ταχυδρομείο", "Group admin for" : "Ομαδα διαχειριστή για", "Language" : "Γλώσσα", "User backend" : "Σύστημα υποστήριξης χρήστη", "Unlimited" : "Απεριόριστο", "Default quota" : "Προεπιλέγμενη χωρητικότητα", - "Default language" : "Προεπιλεγμένη γλώσσα", - "Common languages" : "Κοινές γλώσσες", "You did not enter the password in time" : "Δεν εισάγατε έγκαιρα το συνθηματικό", "App update" : "Ενημέρωση εφαρμογής", "Your apps" : "Οι εφαρμογές σας", - "Active apps" : "Ενεργές εφαρμογές", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", "App bundles" : "Πακέτα εφαρμογών", @@ -138,10 +132,7 @@ OC.L10N.register( "Valid until %s" : "Έγκυρο έως %s", "Import root certificate" : "Εισαγωγή Πιστοποιητικού Root", "Administrator documentation" : "Τεκμηρίωση Διαχειριστή", - "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", "Forum" : "Φόρουμ", - "Getting help" : "Λήψη βοήθειας", - "Commercial support" : "Εμπορική Υποστήριξη", "None" : "Τίποτα", "Login" : "Σύνδεση", "Plain" : "Απλό", @@ -266,6 +257,7 @@ OC.L10N.register( "Invalid user" : "Μη έγκυρος χρήστης", "Unable to change mail address" : "Αδυναμία αλλαγής διεύθυνσης αλληλογραφίας", "Email saved" : "Το email αποθηκεύτηκε ", + "%1$s changed your email address on %2$s." : "%1$sάλλαξε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σε %2$s.", "Password confirmation is required" : "Απαιτείται επιβεβαίωση συνθηματικού", "Are you really sure you want add {domain} as trusted domain?" : "Θέλετε σίγουρα να προσθέσετε τον τομέα {domain} ως έμπιστο τομέα;", "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", @@ -336,6 +328,9 @@ OC.L10N.register( "Hide description …" : "Απόκρυψη περιγραφής", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "Enable only for specific groups" : "Ενεργοποίηση μόνο για καθορισμένες ομάδες", + "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", + "Getting help" : "Λήψη βοήθειας", + "Commercial support" : "Εμπορική Υποστήριξη", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Χρησιμοποιείτε <strong>%s</strong> από <strong>%s</strong>", "You are member of the following groups:" : "Είστε μέλος των ακόλουθων ομάδων:", "Desktop client" : "Πελάτης σταθερού υπολογιστή", diff --git a/settings/l10n/el.json b/settings/l10n/el.json index 22c51c05b5b..b857d24bf56 100644 --- a/settings/l10n/el.json +++ b/settings/l10n/el.json @@ -40,7 +40,6 @@ "Password for %1$s changed on %2$s" : "Ο κωδικός πρόσβασης για το %1$s άλλαξε σε %2$s", "Password changed for %s" : "Το συνθηματικό άλλαξε για τον %s", "If you did not request this, please contact an administrator." : "Εάν δεν το αιτηθήκατε, παρακαλούμε επικοινωνήστε με τον διαχειριστή.", - "%1$s changed your email address on %2$s." : "%1$sάλλαξε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σε %2$s.", "Your email address on %s was changed." : "Η ηλεκτρονική σας διεύθυνση στο %s έχει αλλάξει.", "Your email address on %s was changed by an administrator." : "Η διεύθυνση ηλεκτρονικής αλληλογραφίας στο %s άλλαξε από τον διαχειριστή.", "Email address for %1$s changed on %2$s" : "Η διεύθυνση ηλεκτρονικού ταχυδρομείου για το %1$s άλλαξε σε %2$s", @@ -101,7 +100,6 @@ "Select a profile picture" : "Επιλογή εικόνας προφίλ", "Groups" : "Ομάδες", "Official" : "Επίσημο", - "No results" : "Κανένα αποτέλεσμα", "Visit website" : "Επισκεφθείτε την ιστοσελίδα", "User documentation" : "Τεκμηρίωση Χρήστη", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", @@ -111,19 +109,15 @@ "Enable" : "Ενεργοποίηση", "The app will be downloaded from the app store" : "Αυτή η εφαρμογή θα ", "Settings" : "Ρυθμίσεις", - "Display name" : "Εμφανιζόμενο όνομα", "Email" : "Ηλεκτρονικό ταχυδρομείο", "Group admin for" : "Ομαδα διαχειριστή για", "Language" : "Γλώσσα", "User backend" : "Σύστημα υποστήριξης χρήστη", "Unlimited" : "Απεριόριστο", "Default quota" : "Προεπιλέγμενη χωρητικότητα", - "Default language" : "Προεπιλεγμένη γλώσσα", - "Common languages" : "Κοινές γλώσσες", "You did not enter the password in time" : "Δεν εισάγατε έγκαιρα το συνθηματικό", "App update" : "Ενημέρωση εφαρμογής", "Your apps" : "Οι εφαρμογές σας", - "Active apps" : "Ενεργές εφαρμογές", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", "App bundles" : "Πακέτα εφαρμογών", @@ -136,10 +130,7 @@ "Valid until %s" : "Έγκυρο έως %s", "Import root certificate" : "Εισαγωγή Πιστοποιητικού Root", "Administrator documentation" : "Τεκμηρίωση Διαχειριστή", - "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", "Forum" : "Φόρουμ", - "Getting help" : "Λήψη βοήθειας", - "Commercial support" : "Εμπορική Υποστήριξη", "None" : "Τίποτα", "Login" : "Σύνδεση", "Plain" : "Απλό", @@ -264,6 +255,7 @@ "Invalid user" : "Μη έγκυρος χρήστης", "Unable to change mail address" : "Αδυναμία αλλαγής διεύθυνσης αλληλογραφίας", "Email saved" : "Το email αποθηκεύτηκε ", + "%1$s changed your email address on %2$s." : "%1$sάλλαξε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σε %2$s.", "Password confirmation is required" : "Απαιτείται επιβεβαίωση συνθηματικού", "Are you really sure you want add {domain} as trusted domain?" : "Θέλετε σίγουρα να προσθέσετε τον τομέα {domain} ως έμπιστο τομέα;", "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", @@ -334,6 +326,9 @@ "Hide description …" : "Απόκρυψη περιγραφής", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "Enable only for specific groups" : "Ενεργοποίηση μόνο για καθορισμένες ομάδες", + "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", + "Getting help" : "Λήψη βοήθειας", + "Commercial support" : "Εμπορική Υποστήριξη", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Χρησιμοποιείτε <strong>%s</strong> από <strong>%s</strong>", "You are member of the following groups:" : "Είστε μέλος των ακόλουθων ομάδων:", "Desktop client" : "Πελάτης σταθερού υπολογιστή", diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js index 634edeb43ea..5643d340521 100644 --- a/settings/l10n/en_GB.js +++ b/settings/l10n/en_GB.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Password for %1$s changed on %2$s", "Password changed for %s" : "Password changed for %s", "If you did not request this, please contact an administrator." : "If you did not request this, please contact an administrator.", - "%1$s changed your email address on %2$s." : "%1$s changed your email address on %2$s.", "Your email address on %s was changed." : "Your email address on %s was changed.", "Your email address on %s was changed by an administrator." : "Your email address on %s was changed by an administrator.", "Email address for %1$s changed on %2$s" : "Email address for %1$s changed on %2$s", @@ -107,50 +106,32 @@ OC.L10N.register( "Select a profile picture" : "Select a profile picture", "Groups" : "Groups", "Official" : "Official", - "No results" : "No results", "Visit website" : "Visit website", "User documentation" : "User documentation", "Developer documentation" : "Developer documentation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", - "Disable all" : "Disable all", "Enable all" : "Enable all", - "Download and enable" : "Download and enable", "Enable" : "Enable", "The app will be downloaded from the app store" : "The app will be downloaded from the app store", "Settings" : "Settings", - "You do not have permissions to see the details of this user" : "You do not have permissions to see the details of this user", - "Delete user" : "Delete user", - "Disable user" : "Disable user", - "Enable user" : "Enable user", "Email" : "Email", "Group admin for" : "Group admin for", "Language" : "Language", "User backend" : "User backend", "Unlimited" : "Unlimited", "Default quota" : "Default quota", - "Default language" : "Default language", - "Password change is disabled because the master key is disabled" : "Password change is disabled because the master key is disabled", - "Common languages" : "Common languages", - "All languages" : "All languages", "You did not enter the password in time" : "You did not enter the password in time", "An error occured during the request. Unable to proceed." : "An error occured during the request. Unable to proceed.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", "App update" : "App update", "Error: This app can not be enabled because it makes the server unstable" : "Error: This app can not be enabled because it makes the server unstable", "Your apps" : "Your apps", - "Active apps" : "Active apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", "App bundles" : "App bundles", - "Default quota :" : "Default quota :", - "You are about to remove the group {group}. The users will NOT be deleted." : "You are about to remove the group {group}. The users will NOT be deleted.", - "Please confirm the group removal " : "Please confirm the group removal ", - "Remove group" : "Remove group", "Admins" : "Admins", - "Disabled users" : "Disabled users", "Everyone" : "Everyone", - "New user" : "New user", "SSL Root Certificates" : "SSL Root Certificates", "Common Name" : "Common Name", "Valid until" : "Valid until", @@ -158,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "Valid until %s", "Import root certificate" : "Import root certificate", "Administrator documentation" : "Administrator documentation", - "Online documentation" : "Online documentation", "Forum" : "Forum", - "Getting help" : "Getting help", - "Commercial support" : "Commercial support", "None" : "None", "Login" : "Login", "Plain" : "Plain", @@ -303,6 +281,7 @@ OC.L10N.register( "Invalid user" : "Invalid user", "Unable to change mail address" : "Unable to change mail address", "Email saved" : "Email saved", + "%1$s changed your email address on %2$s." : "%1$s changed your email address on %2$s.", "Password confirmation is required" : "Password confirmation is required", "Are you really sure you want add {domain} as trusted domain?" : "Are you really sure you want add {domain} as trusted domain?", "Add trusted domain" : "Add trusted domain", @@ -395,6 +374,9 @@ OC.L10N.register( "Hide description …" : "Hide description …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", "Enable only for specific groups" : "Enable only for specific groups", + "Online documentation" : "Online documentation", + "Getting help" : "Getting help", + "Commercial support" : "Commercial support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "You are using <strong>%s</strong> of <strong>%s</strong>", "You are member of the following groups:" : "You are member of the following groups:", "Get the apps to sync your files" : "Get the apps to sync your files", diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json index 4cf25ba7fbb..3e55d2e5e9a 100644 --- a/settings/l10n/en_GB.json +++ b/settings/l10n/en_GB.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Password for %1$s changed on %2$s", "Password changed for %s" : "Password changed for %s", "If you did not request this, please contact an administrator." : "If you did not request this, please contact an administrator.", - "%1$s changed your email address on %2$s." : "%1$s changed your email address on %2$s.", "Your email address on %s was changed." : "Your email address on %s was changed.", "Your email address on %s was changed by an administrator." : "Your email address on %s was changed by an administrator.", "Email address for %1$s changed on %2$s" : "Email address for %1$s changed on %2$s", @@ -105,50 +104,32 @@ "Select a profile picture" : "Select a profile picture", "Groups" : "Groups", "Official" : "Official", - "No results" : "No results", "Visit website" : "Visit website", "User documentation" : "User documentation", "Developer documentation" : "Developer documentation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", - "Disable all" : "Disable all", "Enable all" : "Enable all", - "Download and enable" : "Download and enable", "Enable" : "Enable", "The app will be downloaded from the app store" : "The app will be downloaded from the app store", "Settings" : "Settings", - "You do not have permissions to see the details of this user" : "You do not have permissions to see the details of this user", - "Delete user" : "Delete user", - "Disable user" : "Disable user", - "Enable user" : "Enable user", "Email" : "Email", "Group admin for" : "Group admin for", "Language" : "Language", "User backend" : "User backend", "Unlimited" : "Unlimited", "Default quota" : "Default quota", - "Default language" : "Default language", - "Password change is disabled because the master key is disabled" : "Password change is disabled because the master key is disabled", - "Common languages" : "Common languages", - "All languages" : "All languages", "You did not enter the password in time" : "You did not enter the password in time", "An error occured during the request. Unable to proceed." : "An error occured during the request. Unable to proceed.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", "App update" : "App update", "Error: This app can not be enabled because it makes the server unstable" : "Error: This app can not be enabled because it makes the server unstable", "Your apps" : "Your apps", - "Active apps" : "Active apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", "App bundles" : "App bundles", - "Default quota :" : "Default quota :", - "You are about to remove the group {group}. The users will NOT be deleted." : "You are about to remove the group {group}. The users will NOT be deleted.", - "Please confirm the group removal " : "Please confirm the group removal ", - "Remove group" : "Remove group", "Admins" : "Admins", - "Disabled users" : "Disabled users", "Everyone" : "Everyone", - "New user" : "New user", "SSL Root Certificates" : "SSL Root Certificates", "Common Name" : "Common Name", "Valid until" : "Valid until", @@ -156,10 +137,7 @@ "Valid until %s" : "Valid until %s", "Import root certificate" : "Import root certificate", "Administrator documentation" : "Administrator documentation", - "Online documentation" : "Online documentation", "Forum" : "Forum", - "Getting help" : "Getting help", - "Commercial support" : "Commercial support", "None" : "None", "Login" : "Login", "Plain" : "Plain", @@ -301,6 +279,7 @@ "Invalid user" : "Invalid user", "Unable to change mail address" : "Unable to change mail address", "Email saved" : "Email saved", + "%1$s changed your email address on %2$s." : "%1$s changed your email address on %2$s.", "Password confirmation is required" : "Password confirmation is required", "Are you really sure you want add {domain} as trusted domain?" : "Are you really sure you want add {domain} as trusted domain?", "Add trusted domain" : "Add trusted domain", @@ -393,6 +372,9 @@ "Hide description …" : "Hide description …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", "Enable only for specific groups" : "Enable only for specific groups", + "Online documentation" : "Online documentation", + "Getting help" : "Getting help", + "Commercial support" : "Commercial support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "You are using <strong>%s</strong> of <strong>%s</strong>", "You are member of the following groups:" : "You are member of the following groups:", "Get the apps to sync your files" : "Get the apps to sync your files", diff --git a/settings/l10n/eo.js b/settings/l10n/eo.js index e622526602b..509304fb2a4 100644 --- a/settings/l10n/eo.js +++ b/settings/l10n/eo.js @@ -20,37 +20,25 @@ OC.L10N.register( "Groups" : "Grupoj", "Official" : "Oficiala", "User documentation" : "Uzodokumentaro", - "Disable all" : "Malkapabligi ĉiu", "Enable all" : "Kapabligi ĉiu", - "Download and enable" : "Elŝuti kaj kapabligi", "Enable" : "Kapabligi", "Settings" : "Agordo", - "You do not have permissions to see the details of this user" : "Vi ne permesatas vidi la detalojn de ĉi tiu uzanto", - "Delete user" : "Forigita uzanto", - "Disable user" : "Malkapabligi uzanto", - "Enable user" : "Kapabligi uzanto", "Email" : "Retpoŝto", "Language" : "Lingvo", "User backend" : "Uzantomotoro", "Unlimited" : "Senlima", "Default quota" : "Defaŭlta kvoto", - "Default language" : "Defaŭlta lingvo", - "Common languages" : "Komunaj lingvoj", - "All languages" : "Ĉiuj lingvoj", "App update" : "Aplikaĵon ĝisdatigi", "Your apps" : "Viaj aplikaĵoj", - "Active apps" : "Kapabligitaj aplikaĵoj", "Disabled apps" : "Malkapabligitaj aplikaĵoj", "Updates" : "Ĝisdatigoj", "Admins" : "Administrantoj", "Everyone" : "Ĉiuj", - "New user" : "Nova uzanto", "Common Name" : "Komuna nomo", "Valid until" : "Valida ĝis", "Valid until %s" : "Valida ĝis %s", "Administrator documentation" : "Administrodokumentaro", "Forum" : "Forumo", - "Commercial support" : "Komerca subteno", "None" : "Nenio", "Login" : "Ensaluti", "Email server" : "Retpoŝtoservilo", @@ -120,6 +108,7 @@ OC.L10N.register( "Show description …" : "Montri priskribon...", "Hide description …" : "Malmontri priskribon...", "Enable only for specific groups" : "Kapabligi nur por specifajn grupojn", + "Commercial support" : "Komerca subteno", "Android app" : "Android-aplikaĵo", "iOS app" : "iOS-aplikaĵo", "App passwords" : "Aplikaĵaj pasvortoj", diff --git a/settings/l10n/eo.json b/settings/l10n/eo.json index c6b735016b4..d7eb378469b 100644 --- a/settings/l10n/eo.json +++ b/settings/l10n/eo.json @@ -18,37 +18,25 @@ "Groups" : "Grupoj", "Official" : "Oficiala", "User documentation" : "Uzodokumentaro", - "Disable all" : "Malkapabligi ĉiu", "Enable all" : "Kapabligi ĉiu", - "Download and enable" : "Elŝuti kaj kapabligi", "Enable" : "Kapabligi", "Settings" : "Agordo", - "You do not have permissions to see the details of this user" : "Vi ne permesatas vidi la detalojn de ĉi tiu uzanto", - "Delete user" : "Forigita uzanto", - "Disable user" : "Malkapabligi uzanto", - "Enable user" : "Kapabligi uzanto", "Email" : "Retpoŝto", "Language" : "Lingvo", "User backend" : "Uzantomotoro", "Unlimited" : "Senlima", "Default quota" : "Defaŭlta kvoto", - "Default language" : "Defaŭlta lingvo", - "Common languages" : "Komunaj lingvoj", - "All languages" : "Ĉiuj lingvoj", "App update" : "Aplikaĵon ĝisdatigi", "Your apps" : "Viaj aplikaĵoj", - "Active apps" : "Kapabligitaj aplikaĵoj", "Disabled apps" : "Malkapabligitaj aplikaĵoj", "Updates" : "Ĝisdatigoj", "Admins" : "Administrantoj", "Everyone" : "Ĉiuj", - "New user" : "Nova uzanto", "Common Name" : "Komuna nomo", "Valid until" : "Valida ĝis", "Valid until %s" : "Valida ĝis %s", "Administrator documentation" : "Administrodokumentaro", "Forum" : "Forumo", - "Commercial support" : "Komerca subteno", "None" : "Nenio", "Login" : "Ensaluti", "Email server" : "Retpoŝtoservilo", @@ -118,6 +106,7 @@ "Show description …" : "Montri priskribon...", "Hide description …" : "Malmontri priskribon...", "Enable only for specific groups" : "Kapabligi nur por specifajn grupojn", + "Commercial support" : "Komerca subteno", "Android app" : "Android-aplikaĵo", "iOS app" : "iOS-aplikaĵo", "App passwords" : "Aplikaĵaj pasvortoj", diff --git a/settings/l10n/es.js b/settings/l10n/es.js index 643a12a20cb..cf8f99f8a16 100644 --- a/settings/l10n/es.js +++ b/settings/l10n/es.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Contraseña para %1$s cambiada en %2$s", "Password changed for %s" : "Contraseña cambiada por %s", "If you did not request this, please contact an administrator." : "Si no has solicitado esto, por favor, ponte en contacto con el administrador.", - "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico en %2$s", "Your email address on %s was changed." : "Su dirección de correo electrónico en %s fue cambiada.", "Your email address on %s was changed by an administrator." : "Su dirección de correo electrónico en %s fue cambiada por un administrador.", "Email address for %1$s changed on %2$s" : "Dirección de correo electrónico para %1$s cambiada en %2$s", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "Establezca su contraseña", "Go to %s" : "Vaya a %s", "Install Client" : "Instalar cliente", - "Logged in user must be a subadmin" : "El usuario registrado debe ser un subadministrador", "Migration in progress. Please wait until the migration is finished" : "Migración en curso. Por favor, espere hasta que la migración esté finalizada.", "Migration started …" : "Migración iniciada...", "Not saved" : "No guardado", @@ -105,61 +103,35 @@ OC.L10N.register( "Good password" : "Contraseña buena", "Strong password" : "Contraseña muy buena", "An error occured while changing your language. Please reload the page and try again." : "Se ha producido un fallo al cambiar el idioma. Por favor, vuelve a cargar la página y vuelve a intentarlo.", - "An error occured while changing your locale. Please reload the page and try again." : "Se ha producido un fallo al cambiar de local. Por favor, recarga la página y vuelve a intentarlo.", "Select a profile picture" : "Seleccionar una imagen de perfil", - "Week starts on {fdow}" : "La semana empieza el {fdow}", "Groups" : "Grupos", - "Group list is empty" : "La lista de grupos está vacía", - "Unable to retrieve the group list" : "No se ha podido recuperar la lista de grupos.", "Official" : "Oficial", - "No results" : "Ningún resultado", "Visit website" : "Visite nuestro sitio web", "User documentation" : "Documentación de usuario", "Developer documentation" : "Documentación de desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "{license}-licensed" : "licenciado bajo {license}", - "Disable all" : "Deshabilitar todos", "Enable all" : "Activar todas", - "Download and enable" : "Descargar y activar", "Enable" : "Activar", "The app will be downloaded from the app store" : "La app va a ser descargada de una tienda de aplicaciones", "Settings" : "Configuración", - "You do not have permissions to see the details of this user" : "No tienes permisos para ver los detalles de este usuario", - "Delete user" : "Eliminar usuario", - "Disable user" : "Inhabilitar usuario", - "Enable user" : "Habilitar usuario", - "Resend welcome email" : "Volver a enviar correo de bienvenida", - "Welcome mail sent!" : "Correo de bienvenida enviado.", - "Display name" : "Nombre a mostrar", "Email" : "Correo electrónico", "Group admin for" : "Administrador de grupo para", "Language" : "Idioma", "User backend" : "Motor de usuario", "Unlimited" : "Ilimitado", "Default quota" : "Espacio predeterminado", - "Default language" : "Idioma predeterminado", - "Password change is disabled because the master key is disabled" : "El cambio de contraseña está desactivado porque la clave maestra está desactivada", - "Common languages" : "Idiomas habituales", - "All languages" : "Todos los idiomas", "You did not enter the password in time" : "No introdujo la contraseña a tiempo", "An error occured during the request. Unable to proceed." : "Ha ocurrido un error durante la petición. No se puede continuar.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La app ha sido activada pero tiene que actualizarse. Serás redirigido a la página de actualización en 5 segundos.", "App update" : "Actualización de la aplicación", "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque desestabiliza el servidor", "Your apps" : "Tus apps", - "Active apps" : "Apps activas", "Disabled apps" : "Apps deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Lotes de apps", - "Default quota :" : "Espacio por defecto:", - "You are about to remove the group {group}. The users will NOT be deleted." : "Vas a eliminar el grupo {group}. Los usuarios NO serán eliminados.", - "Please confirm the group removal " : "Por favor, confirma la eliminación del grupo", - "Remove group" : "Eliminar grupo", "Admins" : "Administradores", - "Disabled users" : "Usuarios inhabilitados", "Everyone" : "Todos", - "New user" : "Nuevo usuario", "SSL Root Certificates" : "Raíz de certificados SSL ", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -167,10 +139,8 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", + "Documentation" : "Documentación", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -316,6 +286,7 @@ OC.L10N.register( "Invalid user" : "Usuario no válido", "Unable to change mail address" : "No se pudo cambiar la dirección de correo electrónico", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico en %2$s", "Password confirmation is required" : "Se requiere confirmar la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Está realmente seguro de que quiere añadir {domain} como dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", @@ -408,6 +379,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Activar solamente para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estas usando <strong>%s</strong> de <strong>%s</strong> ", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Consigue las apps para sincronizar tus archivos.", diff --git a/settings/l10n/es.json b/settings/l10n/es.json index af32bb4d722..f7731432e96 100644 --- a/settings/l10n/es.json +++ b/settings/l10n/es.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Contraseña para %1$s cambiada en %2$s", "Password changed for %s" : "Contraseña cambiada por %s", "If you did not request this, please contact an administrator." : "Si no has solicitado esto, por favor, ponte en contacto con el administrador.", - "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico en %2$s", "Your email address on %s was changed." : "Su dirección de correo electrónico en %s fue cambiada.", "Your email address on %s was changed by an administrator." : "Su dirección de correo electrónico en %s fue cambiada por un administrador.", "Email address for %1$s changed on %2$s" : "Dirección de correo electrónico para %1$s cambiada en %2$s", @@ -55,7 +54,6 @@ "Set your password" : "Establezca su contraseña", "Go to %s" : "Vaya a %s", "Install Client" : "Instalar cliente", - "Logged in user must be a subadmin" : "El usuario registrado debe ser un subadministrador", "Migration in progress. Please wait until the migration is finished" : "Migración en curso. Por favor, espere hasta que la migración esté finalizada.", "Migration started …" : "Migración iniciada...", "Not saved" : "No guardado", @@ -103,61 +101,35 @@ "Good password" : "Contraseña buena", "Strong password" : "Contraseña muy buena", "An error occured while changing your language. Please reload the page and try again." : "Se ha producido un fallo al cambiar el idioma. Por favor, vuelve a cargar la página y vuelve a intentarlo.", - "An error occured while changing your locale. Please reload the page and try again." : "Se ha producido un fallo al cambiar de local. Por favor, recarga la página y vuelve a intentarlo.", "Select a profile picture" : "Seleccionar una imagen de perfil", - "Week starts on {fdow}" : "La semana empieza el {fdow}", "Groups" : "Grupos", - "Group list is empty" : "La lista de grupos está vacía", - "Unable to retrieve the group list" : "No se ha podido recuperar la lista de grupos.", "Official" : "Oficial", - "No results" : "Ningún resultado", "Visit website" : "Visite nuestro sitio web", "User documentation" : "Documentación de usuario", "Developer documentation" : "Documentación de desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "{license}-licensed" : "licenciado bajo {license}", - "Disable all" : "Deshabilitar todos", "Enable all" : "Activar todas", - "Download and enable" : "Descargar y activar", "Enable" : "Activar", "The app will be downloaded from the app store" : "La app va a ser descargada de una tienda de aplicaciones", "Settings" : "Configuración", - "You do not have permissions to see the details of this user" : "No tienes permisos para ver los detalles de este usuario", - "Delete user" : "Eliminar usuario", - "Disable user" : "Inhabilitar usuario", - "Enable user" : "Habilitar usuario", - "Resend welcome email" : "Volver a enviar correo de bienvenida", - "Welcome mail sent!" : "Correo de bienvenida enviado.", - "Display name" : "Nombre a mostrar", "Email" : "Correo electrónico", "Group admin for" : "Administrador de grupo para", "Language" : "Idioma", "User backend" : "Motor de usuario", "Unlimited" : "Ilimitado", "Default quota" : "Espacio predeterminado", - "Default language" : "Idioma predeterminado", - "Password change is disabled because the master key is disabled" : "El cambio de contraseña está desactivado porque la clave maestra está desactivada", - "Common languages" : "Idiomas habituales", - "All languages" : "Todos los idiomas", "You did not enter the password in time" : "No introdujo la contraseña a tiempo", "An error occured during the request. Unable to proceed." : "Ha ocurrido un error durante la petición. No se puede continuar.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La app ha sido activada pero tiene que actualizarse. Serás redirigido a la página de actualización en 5 segundos.", "App update" : "Actualización de la aplicación", "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque desestabiliza el servidor", "Your apps" : "Tus apps", - "Active apps" : "Apps activas", "Disabled apps" : "Apps deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Lotes de apps", - "Default quota :" : "Espacio por defecto:", - "You are about to remove the group {group}. The users will NOT be deleted." : "Vas a eliminar el grupo {group}. Los usuarios NO serán eliminados.", - "Please confirm the group removal " : "Por favor, confirma la eliminación del grupo", - "Remove group" : "Eliminar grupo", "Admins" : "Administradores", - "Disabled users" : "Usuarios inhabilitados", "Everyone" : "Todos", - "New user" : "Nuevo usuario", "SSL Root Certificates" : "Raíz de certificados SSL ", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -165,10 +137,8 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", + "Documentation" : "Documentación", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -314,6 +284,7 @@ "Invalid user" : "Usuario no válido", "Unable to change mail address" : "No se pudo cambiar la dirección de correo electrónico", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico en %2$s", "Password confirmation is required" : "Se requiere confirmar la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Está realmente seguro de que quiere añadir {domain} como dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", @@ -406,6 +377,9 @@ "Hide description …" : "Ocultar descripción…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Activar solamente para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estas usando <strong>%s</strong> de <strong>%s</strong> ", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Consigue las apps para sincronizar tus archivos.", diff --git a/settings/l10n/es_419.js b/settings/l10n/es_419.js index 867f5875658..810eb34c373 100644 --- a/settings/l10n/es_419.js +++ b/settings/l10n/es_419.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_419.json b/settings/l10n/es_419.json index 8d3cd89ba3c..58386529bb6 100644 --- a/settings/l10n/es_419.json +++ b/settings/l10n/es_419.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_AR.js b/settings/l10n/es_AR.js index 13af85d20db..155d5412c16 100644 --- a/settings/l10n/es_AR.js +++ b/settings/l10n/es_AR.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitó, favor de contactar a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Su dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Su dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -132,10 +131,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación de adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Inicio de sesión", "Plain" : "Plano", @@ -259,6 +255,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente está seguro que quiere agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", @@ -327,6 +324,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Usted está usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Usted es un miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_AR.json b/settings/l10n/es_AR.json index 00f60e2e5dc..bb695415a69 100644 --- a/settings/l10n/es_AR.json +++ b/settings/l10n/es_AR.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitó, favor de contactar a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Su dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Su dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -130,10 +129,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación de adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Inicio de sesión", "Plain" : "Plano", @@ -257,6 +253,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió su dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente está seguro que quiere agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", @@ -325,6 +322,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Usted está usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Usted es un miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_CL.js b/settings/l10n/es_CL.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_CL.js +++ b/settings/l10n/es_CL.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_CL.json b/settings/l10n/es_CL.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_CL.json +++ b/settings/l10n/es_CL.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_CO.js b/settings/l10n/es_CO.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_CO.js +++ b/settings/l10n/es_CO.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_CO.json b/settings/l10n/es_CO.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_CO.json +++ b/settings/l10n/es_CO.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_CR.js b/settings/l10n/es_CR.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_CR.js +++ b/settings/l10n/es_CR.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_CR.json b/settings/l10n/es_CR.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_CR.json +++ b/settings/l10n/es_CR.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_DO.js b/settings/l10n/es_DO.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_DO.js +++ b/settings/l10n/es_DO.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_DO.json b/settings/l10n/es_DO.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_DO.json +++ b/settings/l10n/es_DO.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_EC.js b/settings/l10n/es_EC.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_EC.js +++ b/settings/l10n/es_EC.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_EC.json b/settings/l10n/es_EC.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_EC.json +++ b/settings/l10n/es_EC.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_GT.js b/settings/l10n/es_GT.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_GT.js +++ b/settings/l10n/es_GT.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_GT.json b/settings/l10n/es_GT.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_GT.json +++ b/settings/l10n/es_GT.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_HN.js b/settings/l10n/es_HN.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_HN.js +++ b/settings/l10n/es_HN.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_HN.json b/settings/l10n/es_HN.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_HN.json +++ b/settings/l10n/es_HN.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_MX.js b/settings/l10n/es_MX.js index b8a9f2963ec..675608f63e9 100644 --- a/settings/l10n/es_MX.js +++ b/settings/l10n/es_MX.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -107,7 +106,6 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Official" : "Oficial", - "No results" : "Sin resultados", "Visit website" : "Visita el sitio web", "User documentation" : "Documentación del usuario", "Developer documentation" : "Documentación del desarrollador", @@ -117,20 +115,12 @@ OC.L10N.register( "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", "Settings" : "Configuraciones ", - "You do not have permissions to see the details of this user" : "No tienes los permisos para ver los detalles de este usuario", - "Delete user" : "Borrar usuario", - "Disable user" : "Deshabilitar usuario", - "Enable user" : "Habilitar usuario", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", "Language" : "Idioma", "User backend" : "Backend del usuario", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Default language" : "Idioma predeterminado", - "Password change is disabled because the master key is disabled" : "El cambio de contraseña está deshabilitado porque la llave maestra está deshabilitada", - "Common languages" : "Idiomas comunes", - "All languages" : "Todos los idiomas", "You did not enter the password in time" : "No ingresaste la contraseña a tiempo", "An error occured during the request. Unable to proceed." : "Se presentó un error durante la solicitud. No es posible proceder.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", @@ -140,14 +130,8 @@ OC.L10N.register( "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", - "Default quota :" : "Cuota predeterminada :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Estás a punto de eliminar el grupo {group}. Los usuarios NO serán borrados.", - "Please confirm the group removal " : "Por favor confirma la eliminación del grupo", - "Remove group" : "Eliminar grupo", "Admins" : "Administradores", - "Disabled users" : "Usuarios deshabilitados", "Everyone" : "Todos", - "New user" : "Nuevo usuario", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -155,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -297,6 +278,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -389,6 +371,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_MX.json b/settings/l10n/es_MX.json index 4c508c970e9..d46c45ce070 100644 --- a/settings/l10n/es_MX.json +++ b/settings/l10n/es_MX.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -105,7 +104,6 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Official" : "Oficial", - "No results" : "Sin resultados", "Visit website" : "Visita el sitio web", "User documentation" : "Documentación del usuario", "Developer documentation" : "Documentación del desarrollador", @@ -115,20 +113,12 @@ "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", "Settings" : "Configuraciones ", - "You do not have permissions to see the details of this user" : "No tienes los permisos para ver los detalles de este usuario", - "Delete user" : "Borrar usuario", - "Disable user" : "Deshabilitar usuario", - "Enable user" : "Habilitar usuario", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", "Language" : "Idioma", "User backend" : "Backend del usuario", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Default language" : "Idioma predeterminado", - "Password change is disabled because the master key is disabled" : "El cambio de contraseña está deshabilitado porque la llave maestra está deshabilitada", - "Common languages" : "Idiomas comunes", - "All languages" : "Todos los idiomas", "You did not enter the password in time" : "No ingresaste la contraseña a tiempo", "An error occured during the request. Unable to proceed." : "Se presentó un error durante la solicitud. No es posible proceder.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", @@ -138,14 +128,8 @@ "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", - "Default quota :" : "Cuota predeterminada :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Estás a punto de eliminar el grupo {group}. Los usuarios NO serán borrados.", - "Please confirm the group removal " : "Por favor confirma la eliminación del grupo", - "Remove group" : "Eliminar grupo", "Admins" : "Administradores", - "Disabled users" : "Usuarios deshabilitados", "Everyone" : "Todos", - "New user" : "Nuevo usuario", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -153,10 +137,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -295,6 +276,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -387,6 +369,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_NI.js b/settings/l10n/es_NI.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_NI.js +++ b/settings/l10n/es_NI.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_NI.json b/settings/l10n/es_NI.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_NI.json +++ b/settings/l10n/es_NI.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PA.js b/settings/l10n/es_PA.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_PA.js +++ b/settings/l10n/es_PA.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PA.json b/settings/l10n/es_PA.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_PA.json +++ b/settings/l10n/es_PA.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PE.js b/settings/l10n/es_PE.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_PE.js +++ b/settings/l10n/es_PE.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PE.json b/settings/l10n/es_PE.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_PE.json +++ b/settings/l10n/es_PE.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PR.js b/settings/l10n/es_PR.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_PR.js +++ b/settings/l10n/es_PR.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PR.json b/settings/l10n/es_PR.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_PR.json +++ b/settings/l10n/es_PR.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PY.js b/settings/l10n/es_PY.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_PY.js +++ b/settings/l10n/es_PY.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_PY.json b/settings/l10n/es_PY.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_PY.json +++ b/settings/l10n/es_PY.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_SV.js b/settings/l10n/es_SV.js index 1b34f426d36..d2014386fc8 100644 --- a/settings/l10n/es_SV.js +++ b/settings/l10n/es_SV.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -280,6 +276,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -372,6 +369,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_SV.json b/settings/l10n/es_SV.json index 7cb5281e469..2935b8ead33 100644 --- a/settings/l10n/es_SV.json +++ b/settings/l10n/es_SV.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña de %1$s fue cambiada en %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico de %1$s ha cambiado en %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -278,6 +274,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -370,6 +367,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Get the apps to sync your files" : "Obten las aplicaciones para sincronizar tus archivos", diff --git a/settings/l10n/es_UY.js b/settings/l10n/es_UY.js index 0ace72574e1..9961fe04277 100644 --- a/settings/l10n/es_UY.js +++ b/settings/l10n/es_UY.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -343,6 +340,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/es_UY.json b/settings/l10n/es_UY.json index b5d8b23444f..93487e138b3 100644 --- a/settings/l10n/es_UY.json +++ b/settings/l10n/es_UY.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "La contraseña para %1$s fue cambiada el %2$s", "Password changed for %s" : "La contraseña fue cambiada para %s", "If you did not request this, please contact an administrator." : "Si no lo solicitaste, por favor contacta a un administrador. ", - "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Your email address on %s was changed." : "Tu dirección de correo electrónico en %s fue cambiada. ", "Your email address on %s was changed by an administrator." : "Tu dirección de correo electrónico en %s fue cambiada por un adminsitrador. ", "Email address for %1$s changed on %2$s" : "La dirección de correo electrónico para %1$s fue cambiada el %2$s", @@ -134,10 +133,7 @@ "Valid until %s" : "Válido hasta %s", "Import root certificate" : "Importar certificado raíz", "Administrator documentation" : "Documentación del adminsitrador", - "Online documentation" : "Documentación en línea", "Forum" : "Foro", - "Getting help" : "Obtener ayuda", - "Commercial support" : "Soporte comercial", "None" : "Ninguno", "Login" : "Iniciar sesión", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Usuario inválido", "Unable to change mail address" : "No fue posible cambiar la dirección de correo", "Email saved" : "Correo electrónico guardado", + "%1$s changed your email address on %2$s." : "%1$s cambió tu dirección de correo electrónico el %2$s.", "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", @@ -341,6 +338,9 @@ "Hide description …" : "Ocultar descripción ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", + "Online documentation" : "Documentación en línea", + "Getting help" : "Obtener ayuda", + "Commercial support" : "Soporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Estás usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Show storage location" : "Mostrar la ubicación del almacenamiento", diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js index 5b70280efcc..d0f4ff9ce45 100644 --- a/settings/l10n/et_EE.js +++ b/settings/l10n/et_EE.js @@ -38,7 +38,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%1$s parool muudetud %2$s", "Password changed for %s" : "%s parool muudetud", "If you did not request this, please contact an administrator." : "Kui sa pole seda taotlenud, võta ühendust administraatoriga.", - "%1$s changed your email address on %2$s." : "%1$s muutis su e-posti aadressi %2$s.", "Your email address on %s was changed." : "Sinu %s e-posti aadressi muudeti.", "Your email address on %s was changed by an administrator." : "Administraator muutis sinu %s e-posti aadressi.", "Email address for %1$s changed on %2$s" : "%1$s e-posti aadress muudetud %2$s", @@ -110,10 +109,7 @@ OC.L10N.register( "Valid until %s" : "Kehtib kuni %s", "Import root certificate" : "Impordi root sertifikaat", "Administrator documentation" : "Administraatori dokumentatsioon", - "Online documentation" : "Võrgus olev dokumentatsioon", "Forum" : "Foorum", - "Getting help" : "Abi saamine", - "Commercial support" : "Tasuline kasutajatugi", "None" : "Pole", "Login" : "Logi sisse", "Plain" : "Tavatekst", @@ -216,6 +212,7 @@ OC.L10N.register( "Invalid user" : "Vigane kasutaja", "Unable to change mail address" : "E-posti aadressi muutmine ebaõnnestus", "Email saved" : "Kiri on salvestatud", + "%1$s changed your email address on %2$s." : "%1$s muutis su e-posti aadressi %2$s.", "Password confirmation is required" : "Parooli kinnitus on vajalik", "Add trusted domain" : "Lis ausaldusväärne domeen", "All" : "Kõik", @@ -265,6 +262,9 @@ OC.L10N.register( "Show description …" : "Näita kirjeldist ...", "Hide description …" : "Peida kirjeldus ...", "Enable only for specific groups" : "Luba ainult kindlad grupid", + "Online documentation" : "Võrgus olev dokumentatsioon", + "Getting help" : "Abi saamine", + "Commercial support" : "Tasuline kasutajatugi", "You are member of the following groups:" : "Sa oled nende gruppide liige:", "Show storage location" : "Näita salvestusruumi asukohta", "Show last login" : "Näita viimast sisselogimist", diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json index d1e077543bd..91709d1fb12 100644 --- a/settings/l10n/et_EE.json +++ b/settings/l10n/et_EE.json @@ -36,7 +36,6 @@ "Password for %1$s changed on %2$s" : "%1$s parool muudetud %2$s", "Password changed for %s" : "%s parool muudetud", "If you did not request this, please contact an administrator." : "Kui sa pole seda taotlenud, võta ühendust administraatoriga.", - "%1$s changed your email address on %2$s." : "%1$s muutis su e-posti aadressi %2$s.", "Your email address on %s was changed." : "Sinu %s e-posti aadressi muudeti.", "Your email address on %s was changed by an administrator." : "Administraator muutis sinu %s e-posti aadressi.", "Email address for %1$s changed on %2$s" : "%1$s e-posti aadress muudetud %2$s", @@ -108,10 +107,7 @@ "Valid until %s" : "Kehtib kuni %s", "Import root certificate" : "Impordi root sertifikaat", "Administrator documentation" : "Administraatori dokumentatsioon", - "Online documentation" : "Võrgus olev dokumentatsioon", "Forum" : "Foorum", - "Getting help" : "Abi saamine", - "Commercial support" : "Tasuline kasutajatugi", "None" : "Pole", "Login" : "Logi sisse", "Plain" : "Tavatekst", @@ -214,6 +210,7 @@ "Invalid user" : "Vigane kasutaja", "Unable to change mail address" : "E-posti aadressi muutmine ebaõnnestus", "Email saved" : "Kiri on salvestatud", + "%1$s changed your email address on %2$s." : "%1$s muutis su e-posti aadressi %2$s.", "Password confirmation is required" : "Parooli kinnitus on vajalik", "Add trusted domain" : "Lis ausaldusväärne domeen", "All" : "Kõik", @@ -263,6 +260,9 @@ "Show description …" : "Näita kirjeldist ...", "Hide description …" : "Peida kirjeldus ...", "Enable only for specific groups" : "Luba ainult kindlad grupid", + "Online documentation" : "Võrgus olev dokumentatsioon", + "Getting help" : "Abi saamine", + "Commercial support" : "Tasuline kasutajatugi", "You are member of the following groups:" : "Sa oled nende gruppide liige:", "Show storage location" : "Näita salvestusruumi asukohta", "Show last login" : "Näita viimast sisselogimist", diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js index 493d27fc1f9..55b9c588c25 100644 --- a/settings/l10n/eu.js +++ b/settings/l10n/eu.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%1$s-(r)en %2$s-(e)ko pasahitza aldatu da", "Password changed for %s" : "%s-(r)en pasahitza aldatu da", "If you did not request this, please contact an administrator." : "Zuk ez baduzu hau eskatu, jarri kontaktuan administratzailearekin.", - "%1$s changed your email address on %2$s." : "%1$s-(e)k zure e-posta helbidea aldatu du %2$s-(e)n", "Your email address on %s was changed." : "Zure %s-(e)ko e-posta helbidea aldatu da.", "Your email address on %s was changed by an administrator." : "Administratzaile batek zure %s-(e)ko e-posta helbidea berrezarri du", "Email address for %1$s changed on %2$s" : "%1$s-(r)en %2$s-(e)ko e-posta helbidea aldatu da", @@ -135,10 +134,7 @@ OC.L10N.register( "Valid until %s" : "%s arte baliogarria", "Import root certificate" : "Inportatu root ziurtagiria", "Administrator documentation" : "Administratzaile dokumentazioa", - "Online documentation" : "Online dokumentazioa", "Forum" : "Foroa", - "Getting help" : "Laguntza lortzen", - "Commercial support" : "Merkataritza laguntza", "None" : "Ezer", "Login" : "Saio hasiera", "Plain" : "Arrunta", @@ -267,6 +263,7 @@ OC.L10N.register( "Invalid user" : "Baliogabeko erabiiltzailea", "Unable to change mail address" : "Ezin izan da posta helbidea aldatu", "Email saved" : "Eposta gorde da", + "%1$s changed your email address on %2$s." : "%1$s-(e)k zure e-posta helbidea aldatu du %2$s-(e)n", "Password confirmation is required" : "Pasahitza konfirmatzea beharrezkoa da", "Are you really sure you want add {domain} as trusted domain?" : "Benetan ziur zaude {domain} gehitu domeinu fidagarri gisa nahi duzula?", "Add trusted domain" : "Gehitu domeinu fidagarria", @@ -332,6 +329,9 @@ OC.L10N.register( "Hide description …" : "Ezkutatu deskribapena ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako", + "Online documentation" : "Online dokumentazioa", + "Getting help" : "Laguntza lortzen", + "Commercial support" : "Merkataritza laguntza", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Zuk <strong>%s</strong> erabiltzen ari zara <strong>%s</strong>-tik", "You are member of the following groups:" : "Zuk honako talde kide zara:", "Show storage location" : "Erakutsi biltegiaren kokapena", diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json index f435771f0b5..63652678aa2 100644 --- a/settings/l10n/eu.json +++ b/settings/l10n/eu.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "%1$s-(r)en %2$s-(e)ko pasahitza aldatu da", "Password changed for %s" : "%s-(r)en pasahitza aldatu da", "If you did not request this, please contact an administrator." : "Zuk ez baduzu hau eskatu, jarri kontaktuan administratzailearekin.", - "%1$s changed your email address on %2$s." : "%1$s-(e)k zure e-posta helbidea aldatu du %2$s-(e)n", "Your email address on %s was changed." : "Zure %s-(e)ko e-posta helbidea aldatu da.", "Your email address on %s was changed by an administrator." : "Administratzaile batek zure %s-(e)ko e-posta helbidea berrezarri du", "Email address for %1$s changed on %2$s" : "%1$s-(r)en %2$s-(e)ko e-posta helbidea aldatu da", @@ -133,10 +132,7 @@ "Valid until %s" : "%s arte baliogarria", "Import root certificate" : "Inportatu root ziurtagiria", "Administrator documentation" : "Administratzaile dokumentazioa", - "Online documentation" : "Online dokumentazioa", "Forum" : "Foroa", - "Getting help" : "Laguntza lortzen", - "Commercial support" : "Merkataritza laguntza", "None" : "Ezer", "Login" : "Saio hasiera", "Plain" : "Arrunta", @@ -265,6 +261,7 @@ "Invalid user" : "Baliogabeko erabiiltzailea", "Unable to change mail address" : "Ezin izan da posta helbidea aldatu", "Email saved" : "Eposta gorde da", + "%1$s changed your email address on %2$s." : "%1$s-(e)k zure e-posta helbidea aldatu du %2$s-(e)n", "Password confirmation is required" : "Pasahitza konfirmatzea beharrezkoa da", "Are you really sure you want add {domain} as trusted domain?" : "Benetan ziur zaude {domain} gehitu domeinu fidagarri gisa nahi duzula?", "Add trusted domain" : "Gehitu domeinu fidagarria", @@ -330,6 +327,9 @@ "Hide description …" : "Ezkutatu deskribapena ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako", + "Online documentation" : "Online dokumentazioa", + "Getting help" : "Laguntza lortzen", + "Commercial support" : "Merkataritza laguntza", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Zuk <strong>%s</strong> erabiltzen ari zara <strong>%s</strong>-tik", "You are member of the following groups:" : "Zuk honako talde kide zara:", "Show storage location" : "Erakutsi biltegiaren kokapena", diff --git a/settings/l10n/fa.js b/settings/l10n/fa.js index de66c79b4fb..b8ced384720 100644 --- a/settings/l10n/fa.js +++ b/settings/l10n/fa.js @@ -40,9 +40,7 @@ OC.L10N.register( "Valid until %s" : "متعبر تا %s", "Import root certificate" : "وارد کردن گواهی اصلی", "Administrator documentation" : "مستندات مدیر", - "Online documentation" : "مستندات آنلاین", "Forum" : "انجمن", - "Commercial support" : "پشتیبانی تجاری", "None" : "هیچکدام", "Login" : "ورود", "Plain" : "ساده", @@ -141,6 +139,8 @@ OC.L10N.register( "Show description …" : "نمایش توضیحات ...", "Hide description …" : "عدم نمایش توضیحات...", "Enable only for specific groups" : "فعال سازی تنها برای گروه های خاص", + "Online documentation" : "مستندات آنلاین", + "Commercial support" : "پشتیبانی تجاری", "You are member of the following groups:" : "شما عضو این گروهها هستید:", "Show storage location" : "نمایش محل ذخیرهسازی", "Show email address" : "نمایش پست الکترونیکی", diff --git a/settings/l10n/fa.json b/settings/l10n/fa.json index 87dd85cb573..b500a343f1f 100644 --- a/settings/l10n/fa.json +++ b/settings/l10n/fa.json @@ -38,9 +38,7 @@ "Valid until %s" : "متعبر تا %s", "Import root certificate" : "وارد کردن گواهی اصلی", "Administrator documentation" : "مستندات مدیر", - "Online documentation" : "مستندات آنلاین", "Forum" : "انجمن", - "Commercial support" : "پشتیبانی تجاری", "None" : "هیچکدام", "Login" : "ورود", "Plain" : "ساده", @@ -139,6 +137,8 @@ "Show description …" : "نمایش توضیحات ...", "Hide description …" : "عدم نمایش توضیحات...", "Enable only for specific groups" : "فعال سازی تنها برای گروه های خاص", + "Online documentation" : "مستندات آنلاین", + "Commercial support" : "پشتیبانی تجاری", "You are member of the following groups:" : "شما عضو این گروهها هستید:", "Show storage location" : "نمایش محل ذخیرهسازی", "Show email address" : "نمایش پست الکترونیکی", diff --git a/settings/l10n/fi.js b/settings/l10n/fi.js index 2e31c1c0a8f..4644bc595b2 100644 --- a/settings/l10n/fi.js +++ b/settings/l10n/fi.js @@ -42,7 +42,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Salasana käyttäjälle %1$s muutettu osoitteessa %2$s", "Password changed for %s" : "Salasana muutettu käyttäjälle %s", "If you did not request this, please contact an administrator." : "Jos et pyytänyt tätä, ota yhteyttä ylläpitäjään.", - "%1$s changed your email address on %2$s." : "%1$s vaihtoi sähköpostiosoitteesi osoitteessa %2$s.", "Your email address on %s was changed." : "Sähköpostiosoitteesi osoitteessa %s on muutettu.", "Your email address on %s was changed by an administrator." : "Ylläpitäjä muutti sähköpostiosoitteesi osoitteessa %s.", "Email address for %1$s changed on %2$s" : "Sähköpostiosoite käyttäjälle %1$s muutettu osoitteessa %2$s", @@ -101,55 +100,33 @@ OC.L10N.register( "Strong password" : "Vahva salasana", "An error occured while changing your language. Please reload the page and try again." : "Kieltä vaihtaessa tapahtui virhe. Lataa sivu uudelleen ja yritä uudelleen.", "Select a profile picture" : "Valitse profiilikuva", - "Week starts on {fdow}" : "Viikon ensimmäinen päivä on {fdow}", "Groups" : "Ryhmät", "Official" : "Virallinen", - "No results" : "Ei tuloksia", "Visit website" : "Käy verkkosivustolla", "User documentation" : "Käyttäjädokumentaatio", "Developer documentation" : "Kehittäjädokumentaatio", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", - "{license}-licensed" : "{license}-lisensoitu", - "Disable all" : "Poista kaikki käytöstä", "Enable all" : "Ota kaikki käyttöön", - "Download and enable" : "Lataa ja ota käyttöön", "Enable" : "Käytä", "The app will be downloaded from the app store" : "Sovellus ladataan sovelluskaupasta", "Settings" : "Asetukset", - "You do not have permissions to see the details of this user" : "Käyttöoikeutesi eivät riitä tämän käyttäjän tietojen katseluun", - "Delete user" : "Poista käyttäjä", - "Disable user" : "Poista käytöstä käyttäjä", - "Enable user" : "Ota käyttöön käyttäjä", - "Resend welcome email" : "Lähetä uudelleen tervetuloviesti", - "Welcome mail sent!" : "Tervetuloviesti lähetetty!", - "Display name" : "Näyttönimi", "Email" : "Sähköpostiosoite", "Group admin for" : "Ryhmäylläpitäjä ryhmille", "Language" : "Kieli", "User backend" : "Käyttäjätaustaosa", "Unlimited" : "Rajoittamaton", "Default quota" : "Oletuskiintiö", - "Default language" : "Oletuskieli", - "Common languages" : "Yleiset kielet", - "All languages" : "Kaikki kielet", "An error occured during the request. Unable to proceed." : "Pyynnön aikana tapahtui virhe. Jatkaminen ei onnistu.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Sovellus on käytössä, mutta se tulee päivittää. Sinut ohjataan sovelluksen päivityssivulle viiden sekunnin kuluttua.", "App update" : "Sovelluspäivitys", "Error: This app can not be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", "Your apps" : "Sovelluksesi", - "Active apps" : "Aktiiviset sovellukset", "Disabled apps" : "Käytöstä poistetut sovellukset", "Updates" : "Päivitykset", "App bundles" : "Sovelluskokoelmat", - "Default quota :" : "Oletuskiintiö:", - "You are about to remove the group {group}. The users will NOT be deleted." : "Olet aikeissa poistaa ryhmän {group}. Käyttäjiä EI poisteta.", - "Please confirm the group removal " : "Vahvista ryhmän poistaminen", - "Remove group" : "Poista käyttäjä", "Admins" : "Ylläpitäjät", - "Disabled users" : "Käytöstä poistetut käyttäjät", "Everyone" : "Kaikki", - "New user" : "Uusi käyttäjä", "SSL Root Certificates" : "SSL-juurivarmenteet", "Common Name" : "Yleinen nimi", "Valid until" : "Kelvollinen", @@ -157,10 +134,7 @@ OC.L10N.register( "Valid until %s" : "Kelvollinen %s asti", "Import root certificate" : "Tuo juurivarmenne", "Administrator documentation" : "Ylläpidon dokumentaatio", - "Online documentation" : "Verkkodokumentaatio", "Forum" : "Keskustelupalsta", - "Getting help" : "Apua", - "Commercial support" : "Kaupallinen tuki", "None" : "Ei mitään", "Login" : "Kirjaudu", "Plain" : "Plain", @@ -299,6 +273,7 @@ OC.L10N.register( "Invalid user" : "Virheellinen käyttäjä", "Unable to change mail address" : "Sähköpostiosoitteen vaihtaminen ei onnistunut", "Email saved" : "Sähköposti tallennettu", + "%1$s changed your email address on %2$s." : "%1$s vaihtoi sähköpostiosoitteesi osoitteessa %2$s.", "Password confirmation is required" : "Salasanavahvistus vaaditaan", "Are you really sure you want add {domain} as trusted domain?" : "Oletko aivan varma, että haluat lisätä verkkotunnuksen {domain} luotetuksi verkkotunnukseksi?", "Add trusted domain" : "Lisää luotettu verkkotunnus", @@ -374,6 +349,9 @@ OC.L10N.register( "Hide description …" : "Piilota kuvaus…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "Enable only for specific groups" : "Salli vain tietyille ryhmille", + "Online documentation" : "Verkkodokumentaatio", + "Getting help" : "Apua", + "Commercial support" : "Kaupallinen tuki", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Käytössäsi on <strong>%s</strong>/<strong>%s</strong>", "You are member of the following groups:" : "Olet jäsenenä seuraavissa ryhmissä:", "Get the apps to sync your files" : "Laita sovellukset synkronoimaan tiedostosi", diff --git a/settings/l10n/fi.json b/settings/l10n/fi.json index c9593899d35..28597c37f65 100644 --- a/settings/l10n/fi.json +++ b/settings/l10n/fi.json @@ -40,7 +40,6 @@ "Password for %1$s changed on %2$s" : "Salasana käyttäjälle %1$s muutettu osoitteessa %2$s", "Password changed for %s" : "Salasana muutettu käyttäjälle %s", "If you did not request this, please contact an administrator." : "Jos et pyytänyt tätä, ota yhteyttä ylläpitäjään.", - "%1$s changed your email address on %2$s." : "%1$s vaihtoi sähköpostiosoitteesi osoitteessa %2$s.", "Your email address on %s was changed." : "Sähköpostiosoitteesi osoitteessa %s on muutettu.", "Your email address on %s was changed by an administrator." : "Ylläpitäjä muutti sähköpostiosoitteesi osoitteessa %s.", "Email address for %1$s changed on %2$s" : "Sähköpostiosoite käyttäjälle %1$s muutettu osoitteessa %2$s", @@ -99,55 +98,33 @@ "Strong password" : "Vahva salasana", "An error occured while changing your language. Please reload the page and try again." : "Kieltä vaihtaessa tapahtui virhe. Lataa sivu uudelleen ja yritä uudelleen.", "Select a profile picture" : "Valitse profiilikuva", - "Week starts on {fdow}" : "Viikon ensimmäinen päivä on {fdow}", "Groups" : "Ryhmät", "Official" : "Virallinen", - "No results" : "Ei tuloksia", "Visit website" : "Käy verkkosivustolla", "User documentation" : "Käyttäjädokumentaatio", "Developer documentation" : "Kehittäjädokumentaatio", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", - "{license}-licensed" : "{license}-lisensoitu", - "Disable all" : "Poista kaikki käytöstä", "Enable all" : "Ota kaikki käyttöön", - "Download and enable" : "Lataa ja ota käyttöön", "Enable" : "Käytä", "The app will be downloaded from the app store" : "Sovellus ladataan sovelluskaupasta", "Settings" : "Asetukset", - "You do not have permissions to see the details of this user" : "Käyttöoikeutesi eivät riitä tämän käyttäjän tietojen katseluun", - "Delete user" : "Poista käyttäjä", - "Disable user" : "Poista käytöstä käyttäjä", - "Enable user" : "Ota käyttöön käyttäjä", - "Resend welcome email" : "Lähetä uudelleen tervetuloviesti", - "Welcome mail sent!" : "Tervetuloviesti lähetetty!", - "Display name" : "Näyttönimi", "Email" : "Sähköpostiosoite", "Group admin for" : "Ryhmäylläpitäjä ryhmille", "Language" : "Kieli", "User backend" : "Käyttäjätaustaosa", "Unlimited" : "Rajoittamaton", "Default quota" : "Oletuskiintiö", - "Default language" : "Oletuskieli", - "Common languages" : "Yleiset kielet", - "All languages" : "Kaikki kielet", "An error occured during the request. Unable to proceed." : "Pyynnön aikana tapahtui virhe. Jatkaminen ei onnistu.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Sovellus on käytössä, mutta se tulee päivittää. Sinut ohjataan sovelluksen päivityssivulle viiden sekunnin kuluttua.", "App update" : "Sovelluspäivitys", "Error: This app can not be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", "Your apps" : "Sovelluksesi", - "Active apps" : "Aktiiviset sovellukset", "Disabled apps" : "Käytöstä poistetut sovellukset", "Updates" : "Päivitykset", "App bundles" : "Sovelluskokoelmat", - "Default quota :" : "Oletuskiintiö:", - "You are about to remove the group {group}. The users will NOT be deleted." : "Olet aikeissa poistaa ryhmän {group}. Käyttäjiä EI poisteta.", - "Please confirm the group removal " : "Vahvista ryhmän poistaminen", - "Remove group" : "Poista käyttäjä", "Admins" : "Ylläpitäjät", - "Disabled users" : "Käytöstä poistetut käyttäjät", "Everyone" : "Kaikki", - "New user" : "Uusi käyttäjä", "SSL Root Certificates" : "SSL-juurivarmenteet", "Common Name" : "Yleinen nimi", "Valid until" : "Kelvollinen", @@ -155,10 +132,7 @@ "Valid until %s" : "Kelvollinen %s asti", "Import root certificate" : "Tuo juurivarmenne", "Administrator documentation" : "Ylläpidon dokumentaatio", - "Online documentation" : "Verkkodokumentaatio", "Forum" : "Keskustelupalsta", - "Getting help" : "Apua", - "Commercial support" : "Kaupallinen tuki", "None" : "Ei mitään", "Login" : "Kirjaudu", "Plain" : "Plain", @@ -297,6 +271,7 @@ "Invalid user" : "Virheellinen käyttäjä", "Unable to change mail address" : "Sähköpostiosoitteen vaihtaminen ei onnistunut", "Email saved" : "Sähköposti tallennettu", + "%1$s changed your email address on %2$s." : "%1$s vaihtoi sähköpostiosoitteesi osoitteessa %2$s.", "Password confirmation is required" : "Salasanavahvistus vaaditaan", "Are you really sure you want add {domain} as trusted domain?" : "Oletko aivan varma, että haluat lisätä verkkotunnuksen {domain} luotetuksi verkkotunnukseksi?", "Add trusted domain" : "Lisää luotettu verkkotunnus", @@ -372,6 +347,9 @@ "Hide description …" : "Piilota kuvaus…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "Enable only for specific groups" : "Salli vain tietyille ryhmille", + "Online documentation" : "Verkkodokumentaatio", + "Getting help" : "Apua", + "Commercial support" : "Kaupallinen tuki", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Käytössäsi on <strong>%s</strong>/<strong>%s</strong>", "You are member of the following groups:" : "Olet jäsenenä seuraavissa ryhmissä:", "Get the apps to sync your files" : "Laita sovellukset synkronoimaan tiedostosi", diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js index 85d4f9b6a86..c22e5dee473 100644 --- a/settings/l10n/fr.js +++ b/settings/l10n/fr.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Mot de passe pour %1$s a été modifié sur %2$s", "Password changed for %s" : "Mot de passe modifié pour %s", "If you did not request this, please contact an administrator." : "Si vous n'aviez pas effectué cette demande, veuillez contacter un administrateur.", - "%1$s changed your email address on %2$s." : "%1$s a modifié votre adresse e-mail sur %2$s.", "Your email address on %s was changed." : "Votre adresse e-mail sur %s a été modifié.", "Your email address on %s was changed by an administrator." : "Votre adresse e-mail sur %s a été modifié par un administrateur.", "Email address for %1$s changed on %2$s" : "Adresse e-mail pour %1$s a été modifié sur %2$s", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "Saisissez votre mot de passe", "Go to %s" : "Aller à %s", "Install Client" : "Installer le Client", - "Logged in user must be a subadmin" : "L'utilisateur connecté doit être un sous-administrateur", "Migration in progress. Please wait until the migration is finished" : "Migration en cours. Veuillez attendre que celle-ci se termine", "Migration started …" : "Migration démarrée...", "Not saved" : "Non sauvegardé", @@ -105,61 +103,35 @@ OC.L10N.register( "Good password" : "Mot de passe de sécurité suffisante", "Strong password" : "Mot de passe de forte sécurité", "An error occured while changing your language. Please reload the page and try again." : "Une erreur est survenue lors du changement de votre langue. Merci de recharger la page et de réessayer.", - "An error occured while changing your locale. Please reload the page and try again." : "Une erreur est survenue lors du changement de vos paramètres régionaux. Veuillez recharger la page et réessayer.", "Select a profile picture" : "Selectionnez une photo de profil ", - "Week starts on {fdow}" : "La semaine commence le {fdow}", "Groups" : "Groupes", - "Group list is empty" : "La liste du groupe est vide", - "Unable to retrieve the group list" : "Impossible de récupérer la liste du groupe", "Official" : "Officielle", - "No results" : "Pas de résultat", "Visit website" : "Visiter le site web", "User documentation" : "Documentation utilisateur", "Developer documentation" : "Documentation pour développeurs", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", - "{license}-licensed" : "sous licence {license}", - "Disable all" : "Tout désactiver", "Enable all" : "Tout activer", - "Download and enable" : "Téléchargé et activé", "Enable" : "Activer", "The app will be downloaded from the app store" : "Cette application va être téléchargée depuis l'app store", "Settings" : "Paramètres", - "You do not have permissions to see the details of this user" : "Vous n'avez pas l'autorisation de voir les propriétés de cet utilisateur", - "Delete user" : "Supprimer l'utilisateur", - "Disable user" : "Désactiver l'utilisateur", - "Enable user" : "Activer l'utilisateur", - "Resend welcome email" : "Renvoyer l'e-mail de bienvenue", - "Welcome mail sent!" : "E-mail de bienvenue envoyé !", - "Display name" : "Nom affiché", "Email" : "Adresse e-mail", "Group admin for" : "Administrateur de groupe pour", "Language" : "Langue", "User backend" : "Retour utilisateur", "Unlimited" : "Illimité", "Default quota" : "Quota par défaut", - "Default language" : "Langue par défaut", - "Password change is disabled because the master key is disabled" : "La modification du mot de passe est désactiver car la clé principale est désactivée", - "Common languages" : "Langues communes", - "All languages" : "Toutes les langues", "You did not enter the password in time" : "Vous n'avez pas rentrer votre mot de passe dans le temps imparti", "An error occured during the request. Unable to proceed." : "Une erreur est survenue durant la requête. Impossible de traiter la demande.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", "App update" : "Mise à jour de l'application", "Error: This app can not be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activée car cela rend le serveur instable.", "Your apps" : "Vos applications", - "Active apps" : "Applications actives", "Disabled apps" : "Applications désactivées", "Updates" : "Mises à jour", "App bundles" : "Pack d'applications", - "Default quota :" : "Quota par défaut :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Vous êtes sur le point de supprimer le groupe {group}. Les utilisateurs ne seront PAS supprimés.", - "Please confirm the group removal " : "Merci de confirmer la suppression du groupe", - "Remove group" : "Supprimer le groupe", "Admins" : "Administrateurs", - "Disabled users" : "Désactiver les utilisateurs", "Everyone" : "Tout le monde", - "New user" : "Nouvel utilisateur", "SSL Root Certificates" : "Certificats Racines SSL", "Common Name" : "Nom d'usage", "Valid until" : "Valide jusqu'à", @@ -167,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "Valide jusqu'à %s", "Import root certificate" : "Importer un certificat racine", "Administrator documentation" : "Documentation administrateur", - "Online documentation" : "Documentation en ligne", "Forum" : "Forum", - "Getting help" : "Obtenir de l'aide", - "Commercial support" : "Support commercial", "None" : "Aucun", "Login" : "Login", "Plain" : "En clair", @@ -316,6 +285,7 @@ OC.L10N.register( "Invalid user" : "Utilisateur non valable", "Unable to change mail address" : "Impossible de modifier l'adresse e-mail", "Email saved" : "E-mail sauvegardé", + "%1$s changed your email address on %2$s." : "%1$s a modifié votre adresse e-mail sur %2$s.", "Password confirmation is required" : "Confirmation par mot de passe est requise", "Are you really sure you want add {domain} as trusted domain?" : "Êtes-vous vraiment sûr de vouloir ajouter {domain} comme domaine de confiance ?", "Add trusted domain" : "Ajouter un domaine de confiance", @@ -408,6 +378,9 @@ OC.L10N.register( "Hide description …" : "Masquer la description", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "Enable only for specific groups" : "Activer uniquement pour certains groupes", + "Online documentation" : "Documentation en ligne", + "Getting help" : "Obtenir de l'aide", + "Commercial support" : "Support commercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Vous utilisez <strong>%s</strong> sur <strong>%s<strong>", "You are member of the following groups:" : "Vous êtes membre des groupes suivants :", "Get the apps to sync your files" : "Obtenez les applications pour synchroniser vos fichiers", diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json index a6baf5b49c1..3a105a277e7 100644 --- a/settings/l10n/fr.json +++ b/settings/l10n/fr.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Mot de passe pour %1$s a été modifié sur %2$s", "Password changed for %s" : "Mot de passe modifié pour %s", "If you did not request this, please contact an administrator." : "Si vous n'aviez pas effectué cette demande, veuillez contacter un administrateur.", - "%1$s changed your email address on %2$s." : "%1$s a modifié votre adresse e-mail sur %2$s.", "Your email address on %s was changed." : "Votre adresse e-mail sur %s a été modifié.", "Your email address on %s was changed by an administrator." : "Votre adresse e-mail sur %s a été modifié par un administrateur.", "Email address for %1$s changed on %2$s" : "Adresse e-mail pour %1$s a été modifié sur %2$s", @@ -55,7 +54,6 @@ "Set your password" : "Saisissez votre mot de passe", "Go to %s" : "Aller à %s", "Install Client" : "Installer le Client", - "Logged in user must be a subadmin" : "L'utilisateur connecté doit être un sous-administrateur", "Migration in progress. Please wait until the migration is finished" : "Migration en cours. Veuillez attendre que celle-ci se termine", "Migration started …" : "Migration démarrée...", "Not saved" : "Non sauvegardé", @@ -103,61 +101,35 @@ "Good password" : "Mot de passe de sécurité suffisante", "Strong password" : "Mot de passe de forte sécurité", "An error occured while changing your language. Please reload the page and try again." : "Une erreur est survenue lors du changement de votre langue. Merci de recharger la page et de réessayer.", - "An error occured while changing your locale. Please reload the page and try again." : "Une erreur est survenue lors du changement de vos paramètres régionaux. Veuillez recharger la page et réessayer.", "Select a profile picture" : "Selectionnez une photo de profil ", - "Week starts on {fdow}" : "La semaine commence le {fdow}", "Groups" : "Groupes", - "Group list is empty" : "La liste du groupe est vide", - "Unable to retrieve the group list" : "Impossible de récupérer la liste du groupe", "Official" : "Officielle", - "No results" : "Pas de résultat", "Visit website" : "Visiter le site web", "User documentation" : "Documentation utilisateur", "Developer documentation" : "Documentation pour développeurs", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", - "{license}-licensed" : "sous licence {license}", - "Disable all" : "Tout désactiver", "Enable all" : "Tout activer", - "Download and enable" : "Téléchargé et activé", "Enable" : "Activer", "The app will be downloaded from the app store" : "Cette application va être téléchargée depuis l'app store", "Settings" : "Paramètres", - "You do not have permissions to see the details of this user" : "Vous n'avez pas l'autorisation de voir les propriétés de cet utilisateur", - "Delete user" : "Supprimer l'utilisateur", - "Disable user" : "Désactiver l'utilisateur", - "Enable user" : "Activer l'utilisateur", - "Resend welcome email" : "Renvoyer l'e-mail de bienvenue", - "Welcome mail sent!" : "E-mail de bienvenue envoyé !", - "Display name" : "Nom affiché", "Email" : "Adresse e-mail", "Group admin for" : "Administrateur de groupe pour", "Language" : "Langue", "User backend" : "Retour utilisateur", "Unlimited" : "Illimité", "Default quota" : "Quota par défaut", - "Default language" : "Langue par défaut", - "Password change is disabled because the master key is disabled" : "La modification du mot de passe est désactiver car la clé principale est désactivée", - "Common languages" : "Langues communes", - "All languages" : "Toutes les langues", "You did not enter the password in time" : "Vous n'avez pas rentrer votre mot de passe dans le temps imparti", "An error occured during the request. Unable to proceed." : "Une erreur est survenue durant la requête. Impossible de traiter la demande.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", "App update" : "Mise à jour de l'application", "Error: This app can not be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activée car cela rend le serveur instable.", "Your apps" : "Vos applications", - "Active apps" : "Applications actives", "Disabled apps" : "Applications désactivées", "Updates" : "Mises à jour", "App bundles" : "Pack d'applications", - "Default quota :" : "Quota par défaut :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Vous êtes sur le point de supprimer le groupe {group}. Les utilisateurs ne seront PAS supprimés.", - "Please confirm the group removal " : "Merci de confirmer la suppression du groupe", - "Remove group" : "Supprimer le groupe", "Admins" : "Administrateurs", - "Disabled users" : "Désactiver les utilisateurs", "Everyone" : "Tout le monde", - "New user" : "Nouvel utilisateur", "SSL Root Certificates" : "Certificats Racines SSL", "Common Name" : "Nom d'usage", "Valid until" : "Valide jusqu'à", @@ -165,10 +137,7 @@ "Valid until %s" : "Valide jusqu'à %s", "Import root certificate" : "Importer un certificat racine", "Administrator documentation" : "Documentation administrateur", - "Online documentation" : "Documentation en ligne", "Forum" : "Forum", - "Getting help" : "Obtenir de l'aide", - "Commercial support" : "Support commercial", "None" : "Aucun", "Login" : "Login", "Plain" : "En clair", @@ -314,6 +283,7 @@ "Invalid user" : "Utilisateur non valable", "Unable to change mail address" : "Impossible de modifier l'adresse e-mail", "Email saved" : "E-mail sauvegardé", + "%1$s changed your email address on %2$s." : "%1$s a modifié votre adresse e-mail sur %2$s.", "Password confirmation is required" : "Confirmation par mot de passe est requise", "Are you really sure you want add {domain} as trusted domain?" : "Êtes-vous vraiment sûr de vouloir ajouter {domain} comme domaine de confiance ?", "Add trusted domain" : "Ajouter un domaine de confiance", @@ -406,6 +376,9 @@ "Hide description …" : "Masquer la description", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "Enable only for specific groups" : "Activer uniquement pour certains groupes", + "Online documentation" : "Documentation en ligne", + "Getting help" : "Obtenir de l'aide", + "Commercial support" : "Support commercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Vous utilisez <strong>%s</strong> sur <strong>%s<strong>", "You are member of the following groups:" : "Vous êtes membre des groupes suivants :", "Get the apps to sync your files" : "Obtenez les applications pour synchroniser vos fichiers", diff --git a/settings/l10n/he.js b/settings/l10n/he.js index 0cd461a89ea..b8e5ffcd73b 100644 --- a/settings/l10n/he.js +++ b/settings/l10n/he.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "הססמה עבור %1$s הוחלפה ב־%2$s", "Password changed for %s" : "הוחלפה הססמה של %s", "If you did not request this, please contact an administrator." : "אם לא ביקשת זאת, נא ליצור קשר עם מנהל המערכת.", - "%1$s changed your email address on %2$s." : "הכתובת שלך ב־%2$s הוחלפה על ידי %1$s.", "Your email address on %s was changed." : "כתובת הדוא״ל שלך ב־%s הוחלפה", "Your email address on %s was changed by an administrator." : "כתובת הדוא״ל שלך ב־%s הוחלפה על ידי נציגות ההנהלה.", "Email address for %1$s changed on %2$s" : "כתובת הדוא״ל עבור %1$s הוחלפה ב־%2$s", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "הגדרת הססמה שלך", "Go to %s" : "מעבר אל %s", "Install Client" : "התקנת לקו", - "Logged in user must be a subadmin" : "המשתמש שנכנס חייב להיות תת־מנהל", "Migration in progress. Please wait until the migration is finished" : "המרה בביצוע. יש להמתין עד סיום ההמרה", "Migration started …" : "המרה החלה...", "Not saved" : "לא נשמר", @@ -105,60 +103,35 @@ OC.L10N.register( "Good password" : "סיסמא טובה", "Strong password" : "סיסמא חזקה", "An error occured while changing your language. Please reload the page and try again." : "אירעה שגיאה בעת שינוי השפה שלך. נא לרענן את העמוד ולנסות שוב.", - "An error occured while changing your locale. Please reload the page and try again." : "אירעה שגיאה בעת החלפת ההגדרות האזוריות שלך. נא לרענן את העמוד לנסות שוב.", "Select a profile picture" : "יש לבחור תמונת פרופיל", - "Week starts on {fdow}" : "השבוע מתחיל ב{fdow}", "Groups" : "קבוצות", - "Group list is empty" : "רשימת הקבוצות ריקה", - "Unable to retrieve the group list" : "לא ניתן לקבל את רשימת הקבוצות", "Official" : "רישמי", - "No results" : "אין תוצאות", "Visit website" : "ביקור באתר האינטרנט", "User documentation" : "תיעוד משתמש", "Developer documentation" : "תיעוד מפתח", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", - "{license}-licensed" : "ברישיון {license}", - "Disable all" : "השבתת הכול", "Enable all" : "הפעלת הכול", - "Download and enable" : "הורדה והפעלה", "Enable" : "הפעלה", "The app will be downloaded from the app store" : "היישום ירד מחנות היישומים", "Settings" : "הגדרות", - "You do not have permissions to see the details of this user" : "אין לך הרשאות לצפות בפרטי המשתמש הזה", - "Delete user" : "מחיקת משתמש", - "Disable user" : "השבתת משתמש", - "Enable user" : "הפעלת משתמש", - "Resend welcome email" : "שליחת הודעת קבלת פנים בדוא״ל מחדש", - "Welcome mail sent!" : "נשלחה הודעת קבלת פנים בדוא״ל", "Email" : "דואר אלקטרוני", "Group admin for" : "מנהל הקבוצה", "Language" : "שפה", "User backend" : "מנגנון משתמש", "Unlimited" : "ללא הגבלה", "Default quota" : "מכסת בררת מחדל", - "Default language" : "שפת בררת מחדל", - "Password change is disabled because the master key is disabled" : "החלפת ססמה מושבתת כיוון שהמפתח הראשי מושבת", - "Common languages" : "שפות נפוצות", - "All languages" : "כל השפות", "You did not enter the password in time" : "לא הכנסת את הססמה בזמן המתאים", "An error occured during the request. Unable to proceed." : "אירעה שגיאה במהלך הבקשה. לא ניתן להמשיך.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישומון הופעל אך יש לעדכן אותו. ההפניה לעמוד העדכון תחל בעוד 5 שניות.", "App update" : "עדכון יישומן", "Error: This app can not be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישומון זה כיוון שהוא מערער את יציבות השרת.", "Your apps" : "היישומונים שלך", - "Active apps" : "יישומונים פעילים", "Disabled apps" : "יישומונים מושבתים", "Updates" : "עדכונים", "App bundles" : "מאגדי יישומונים", - "Default quota :" : "מכסת בררת מחדל:", - "You are about to remove the group {group}. The users will NOT be deleted." : "פעולה זו תסיר את הקבוצה {group}. המשתמשים לא יימחקו.", - "Please confirm the group removal " : "נא לאשר את הסרת הקבוצה", - "Remove group" : "הסרת קבוצה", "Admins" : "מנהלים", - "Disabled users" : "משתמשים מושבתים", "Everyone" : "כולם", - "New user" : "משתמש חדש", "SSL Root Certificates" : "אישורי אבטחת SSL לנתיב יסוד", "Common Name" : "שם משותף", "Valid until" : "בתוקף עד", @@ -166,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "בתוקף עד %s", "Import root certificate" : "יבוא אישור אבטחה לנתיב יסוד", "Administrator documentation" : "תיעוד מנהל", - "Online documentation" : "תיעוד מקוון", "Forum" : "פורום", - "Getting help" : "קבלת עזרה", - "Commercial support" : "תמיכה מסחרית", "None" : "כלום", "Login" : "התחברות", "Plain" : "רגיל", @@ -315,6 +285,7 @@ OC.L10N.register( "Invalid user" : "שם משתמש לא חוקי", "Unable to change mail address" : "לא ניתן לשנות כתובת דואר אלקטרוני", "Email saved" : "הדואר האלקטרוני נשמר", + "%1$s changed your email address on %2$s." : "הכתובת שלך ב־%2$s הוחלפה על ידי %1$s.", "Password confirmation is required" : "נדרש אימות ססמה", "Are you really sure you want add {domain} as trusted domain?" : "להוסיף את {domain} כשם מתחם מהימן?", "Add trusted domain" : "הוספת שם מתחם מהימן", @@ -407,6 +378,9 @@ OC.L10N.register( "Hide description …" : "הסתרת תיאור ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "Enable only for specific groups" : "אפשר רק לקבוצות מסויימות", + "Online documentation" : "תיעוד מקוון", + "Getting help" : "קבלת עזרה", + "Commercial support" : "תמיכה מסחרית", "You are using <strong>%s</strong> of <strong>%s</strong>" : "הנך משתמש ב- <strong>%s</strong> מתוך <strong>%s</strong>", "You are member of the following groups:" : "הקבוצות הבאות כוללות אותך:", "Get the apps to sync your files" : "קבלת היישומונים לסנכרון הקבצים שלך", diff --git a/settings/l10n/he.json b/settings/l10n/he.json index a9c89ccdf1c..51ce69ab128 100644 --- a/settings/l10n/he.json +++ b/settings/l10n/he.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "הססמה עבור %1$s הוחלפה ב־%2$s", "Password changed for %s" : "הוחלפה הססמה של %s", "If you did not request this, please contact an administrator." : "אם לא ביקשת זאת, נא ליצור קשר עם מנהל המערכת.", - "%1$s changed your email address on %2$s." : "הכתובת שלך ב־%2$s הוחלפה על ידי %1$s.", "Your email address on %s was changed." : "כתובת הדוא״ל שלך ב־%s הוחלפה", "Your email address on %s was changed by an administrator." : "כתובת הדוא״ל שלך ב־%s הוחלפה על ידי נציגות ההנהלה.", "Email address for %1$s changed on %2$s" : "כתובת הדוא״ל עבור %1$s הוחלפה ב־%2$s", @@ -55,7 +54,6 @@ "Set your password" : "הגדרת הססמה שלך", "Go to %s" : "מעבר אל %s", "Install Client" : "התקנת לקו", - "Logged in user must be a subadmin" : "המשתמש שנכנס חייב להיות תת־מנהל", "Migration in progress. Please wait until the migration is finished" : "המרה בביצוע. יש להמתין עד סיום ההמרה", "Migration started …" : "המרה החלה...", "Not saved" : "לא נשמר", @@ -103,60 +101,35 @@ "Good password" : "סיסמא טובה", "Strong password" : "סיסמא חזקה", "An error occured while changing your language. Please reload the page and try again." : "אירעה שגיאה בעת שינוי השפה שלך. נא לרענן את העמוד ולנסות שוב.", - "An error occured while changing your locale. Please reload the page and try again." : "אירעה שגיאה בעת החלפת ההגדרות האזוריות שלך. נא לרענן את העמוד לנסות שוב.", "Select a profile picture" : "יש לבחור תמונת פרופיל", - "Week starts on {fdow}" : "השבוע מתחיל ב{fdow}", "Groups" : "קבוצות", - "Group list is empty" : "רשימת הקבוצות ריקה", - "Unable to retrieve the group list" : "לא ניתן לקבל את רשימת הקבוצות", "Official" : "רישמי", - "No results" : "אין תוצאות", "Visit website" : "ביקור באתר האינטרנט", "User documentation" : "תיעוד משתמש", "Developer documentation" : "תיעוד מפתח", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", - "{license}-licensed" : "ברישיון {license}", - "Disable all" : "השבתת הכול", "Enable all" : "הפעלת הכול", - "Download and enable" : "הורדה והפעלה", "Enable" : "הפעלה", "The app will be downloaded from the app store" : "היישום ירד מחנות היישומים", "Settings" : "הגדרות", - "You do not have permissions to see the details of this user" : "אין לך הרשאות לצפות בפרטי המשתמש הזה", - "Delete user" : "מחיקת משתמש", - "Disable user" : "השבתת משתמש", - "Enable user" : "הפעלת משתמש", - "Resend welcome email" : "שליחת הודעת קבלת פנים בדוא״ל מחדש", - "Welcome mail sent!" : "נשלחה הודעת קבלת פנים בדוא״ל", "Email" : "דואר אלקטרוני", "Group admin for" : "מנהל הקבוצה", "Language" : "שפה", "User backend" : "מנגנון משתמש", "Unlimited" : "ללא הגבלה", "Default quota" : "מכסת בררת מחדל", - "Default language" : "שפת בררת מחדל", - "Password change is disabled because the master key is disabled" : "החלפת ססמה מושבתת כיוון שהמפתח הראשי מושבת", - "Common languages" : "שפות נפוצות", - "All languages" : "כל השפות", "You did not enter the password in time" : "לא הכנסת את הססמה בזמן המתאים", "An error occured during the request. Unable to proceed." : "אירעה שגיאה במהלך הבקשה. לא ניתן להמשיך.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישומון הופעל אך יש לעדכן אותו. ההפניה לעמוד העדכון תחל בעוד 5 שניות.", "App update" : "עדכון יישומן", "Error: This app can not be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישומון זה כיוון שהוא מערער את יציבות השרת.", "Your apps" : "היישומונים שלך", - "Active apps" : "יישומונים פעילים", "Disabled apps" : "יישומונים מושבתים", "Updates" : "עדכונים", "App bundles" : "מאגדי יישומונים", - "Default quota :" : "מכסת בררת מחדל:", - "You are about to remove the group {group}. The users will NOT be deleted." : "פעולה זו תסיר את הקבוצה {group}. המשתמשים לא יימחקו.", - "Please confirm the group removal " : "נא לאשר את הסרת הקבוצה", - "Remove group" : "הסרת קבוצה", "Admins" : "מנהלים", - "Disabled users" : "משתמשים מושבתים", "Everyone" : "כולם", - "New user" : "משתמש חדש", "SSL Root Certificates" : "אישורי אבטחת SSL לנתיב יסוד", "Common Name" : "שם משותף", "Valid until" : "בתוקף עד", @@ -164,10 +137,7 @@ "Valid until %s" : "בתוקף עד %s", "Import root certificate" : "יבוא אישור אבטחה לנתיב יסוד", "Administrator documentation" : "תיעוד מנהל", - "Online documentation" : "תיעוד מקוון", "Forum" : "פורום", - "Getting help" : "קבלת עזרה", - "Commercial support" : "תמיכה מסחרית", "None" : "כלום", "Login" : "התחברות", "Plain" : "רגיל", @@ -313,6 +283,7 @@ "Invalid user" : "שם משתמש לא חוקי", "Unable to change mail address" : "לא ניתן לשנות כתובת דואר אלקטרוני", "Email saved" : "הדואר האלקטרוני נשמר", + "%1$s changed your email address on %2$s." : "הכתובת שלך ב־%2$s הוחלפה על ידי %1$s.", "Password confirmation is required" : "נדרש אימות ססמה", "Are you really sure you want add {domain} as trusted domain?" : "להוסיף את {domain} כשם מתחם מהימן?", "Add trusted domain" : "הוספת שם מתחם מהימן", @@ -405,6 +376,9 @@ "Hide description …" : "הסתרת תיאור ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "Enable only for specific groups" : "אפשר רק לקבוצות מסויימות", + "Online documentation" : "תיעוד מקוון", + "Getting help" : "קבלת עזרה", + "Commercial support" : "תמיכה מסחרית", "You are using <strong>%s</strong> of <strong>%s</strong>" : "הנך משתמש ב- <strong>%s</strong> מתוך <strong>%s</strong>", "You are member of the following groups:" : "הקבוצות הבאות כוללות אותך:", "Get the apps to sync your files" : "קבלת היישומונים לסנכרון הקבצים שלך", diff --git a/settings/l10n/hu.js b/settings/l10n/hu.js index 44a98d6b231..8fa90c392b6 100644 --- a/settings/l10n/hu.js +++ b/settings/l10n/hu.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%1$s jelszava megváltozott %2$s-on", "Password changed for %s" : "%s jelszava módosítva", "If you did not request this, please contact an administrator." : "Ha ezt nem te kérted, lépj kapcsolatba egy adminisztrátorral.", - "%1$s changed your email address on %2$s." : "%1$s megváltoztatta a jelszavadat %2$s-on.", "Your email address on %s was changed." : "Az e-mail címed megváltozott %s-on.", "Your email address on %s was changed by an administrator." : "Az e-mail címedet %s-on megváltoztatta egy adminisztrátor.", "Email address for %1$s changed on %2$s" : "%1$s e-mail címe megváltozott%2$s-on", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "Állítsd be a jelszabad", "Go to %s" : "Menj ide: %s", "Install Client" : "Kliens telepítés", - "Logged in user must be a subadmin" : "Nem admin felhasználó kell bejelentkezzen", "Migration in progress. Please wait until the migration is finished" : "Migráció folyamatban. Kérlek várj, míg a migráció befejeződik.", "Migration started …" : "Migráció elindítva ...", "Not saved" : "Nincs mentve", @@ -105,60 +103,35 @@ OC.L10N.register( "Good password" : "Jó jelszó", "Strong password" : "Erős jelszó", "An error occured while changing your language. Please reload the page and try again." : "Hiba a nyelvváltás közben. Kérlek töltsd újra az oldalt és próbáld meg ismét.", - "An error occured while changing your locale. Please reload the page and try again." : "Hiba a hely váltása közben. Kérlek töltsd újra az oldalt és próbáld meg ismét.", "Select a profile picture" : "Válasszon profilképet!", - "Week starts on {fdow}" : "Hét kezdete {fdow}", "Groups" : "Csoportok", - "Group list is empty" : "Csoport lista üres", - "Unable to retrieve the group list" : "Csoportlista betöltése sikertelen", "Official" : "Hivatalos", - "No results" : "Nincsenek eredmények", "Visit website" : "Weboldal meglátogatása", "User documentation" : "Felhasználói dokumentáció", "Developer documentation" : "Fejlesztői dokumentáció", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az alkalmazást nem lehet telepíteni, mert a következő függőségek hiányoznak:", - "{license}-licensed" : "{license}-licencelt", - "Disable all" : "Összes tiltása", "Enable all" : "Mind engedélyezése", - "Download and enable" : "Letöltés és engedélyezés", "Enable" : "Engedélyezés", "The app will be downloaded from the app store" : "Az alkalmazás letöltésre kerül az alkalmazástárból", "Settings" : "Beállítások", - "You do not have permissions to see the details of this user" : "Nincs jogosultságod megnézni ennek a felhasználónak a részleteit.", - "Delete user" : "Felhasználó törlése", - "Disable user" : "Felhasználó tiltása", - "Enable user" : "Felhasználó engedélyezése", - "Resend welcome email" : "Üdvözlő üzenet ismételt küldése", - "Welcome mail sent!" : "Üdvöző üzenet elküldve!", "Email" : "E-mail", "Group admin for" : "Csoport Adminisztrátor itt", "Language" : "Nyelv", "User backend" : "Felhasználói háttér", "Unlimited" : "Korlátlan", "Default quota" : "Alapértelmezett kvóta", - "Default language" : "Alapértelmezett nyelv", - "Password change is disabled because the master key is disabled" : "A jelszó változtatása tiltva van mert a mester kulcs tiltva van", - "Common languages" : "Alapvető nyelvek", - "All languages" : "Összes nyelv", "You did not enter the password in time" : "Nem adta meg időben a jelszót", "An error occured during the request. Unable to proceed." : "Hiba lépett fel a kérés közben. Nem lehet végrehajtani.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Ez az alkalmazás engedélyezve van, de frissíteni kell. A frissítő oldalra irányítjuk 5 másodpercen belül.", "App update" : "Alkalmazás frissítése", "Error: This app can not be enabled because it makes the server unstable" : "Hiba: az alkalmazás nem nem engedélyezhető, mert instabillá tenné a szervert", "Your apps" : "Alkalmazásaid", - "Active apps" : "Aktív alkalmazások", "Disabled apps" : "Letiltott alkalmazások", "Updates" : "Feltöltések", "App bundles" : "Alkalmazás csomagok", - "Default quota :" : "Alapértelmezett kvóta :", - "You are about to remove the group {group}. The users will NOT be deleted." : "A {group} csoportot fodja törölni. A felhasználó NEM fog törlődni.", - "Please confirm the group removal " : "Kérem erősítse meg a csoport törlését", - "Remove group" : "Csoport törlése", "Admins" : "Adminisztrátorok", - "Disabled users" : "Letiltott felhasználók", "Everyone" : "Mindenki", - "New user" : "Új felhasználó", "SSL Root Certificates" : "SSL Root tanusítványok", "Common Name" : "Általános Név", "Valid until" : "Érvényes", @@ -166,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "Érvényes: %s", "Import root certificate" : "Gyökértanúsítvány importálása", "Administrator documentation" : "Adminisztrátori dokumentáció", - "Online documentation" : "Online dokumentáció", "Forum" : "Fórum", - "Getting help" : "Segítség kérés", - "Commercial support" : "Kereskedelmi támogatás", "None" : "Egyik sem", "Login" : "Login", "Plain" : "Egyszerű", @@ -315,6 +285,7 @@ OC.L10N.register( "Invalid user" : "Érvénytelen felhasználó", "Unable to change mail address" : "Nem lehet megváltoztatni az e-mail címet", "Email saved" : "E-mail elmentve!", + "%1$s changed your email address on %2$s." : "%1$s megváltoztatta a jelszavadat %2$s-on.", "Password confirmation is required" : "Jelszó megerősítés szükséges", "Are you really sure you want add {domain} as trusted domain?" : "Biztos, hogy hozzá akarod adni ezt a megbízható domainekhez: {domain} ?", "Add trusted domain" : "Megbízható tartomány hozzáadása", @@ -407,6 +378,9 @@ OC.L10N.register( "Hide description …" : "Leírás elrejtése ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "Enable only for specific groups" : "Csak bizonyos csoportok számára tegyük elérhetővé", + "Online documentation" : "Online dokumentáció", + "Getting help" : "Segítség kérés", + "Commercial support" : "Kereskedelmi támogatás", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jelenleg használt: <strong>%s</strong>, maximálisan elérhető: <strong>%s</strong>", "You are member of the following groups:" : "Tagja vagy a következő csoport(ok)nak:", "Get the apps to sync your files" : "Alkalmazások a fájljaid szinkronizálásához", diff --git a/settings/l10n/hu.json b/settings/l10n/hu.json index 465589505c7..5091e23b7f3 100644 --- a/settings/l10n/hu.json +++ b/settings/l10n/hu.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "%1$s jelszava megváltozott %2$s-on", "Password changed for %s" : "%s jelszava módosítva", "If you did not request this, please contact an administrator." : "Ha ezt nem te kérted, lépj kapcsolatba egy adminisztrátorral.", - "%1$s changed your email address on %2$s." : "%1$s megváltoztatta a jelszavadat %2$s-on.", "Your email address on %s was changed." : "Az e-mail címed megváltozott %s-on.", "Your email address on %s was changed by an administrator." : "Az e-mail címedet %s-on megváltoztatta egy adminisztrátor.", "Email address for %1$s changed on %2$s" : "%1$s e-mail címe megváltozott%2$s-on", @@ -55,7 +54,6 @@ "Set your password" : "Állítsd be a jelszabad", "Go to %s" : "Menj ide: %s", "Install Client" : "Kliens telepítés", - "Logged in user must be a subadmin" : "Nem admin felhasználó kell bejelentkezzen", "Migration in progress. Please wait until the migration is finished" : "Migráció folyamatban. Kérlek várj, míg a migráció befejeződik.", "Migration started …" : "Migráció elindítva ...", "Not saved" : "Nincs mentve", @@ -103,60 +101,35 @@ "Good password" : "Jó jelszó", "Strong password" : "Erős jelszó", "An error occured while changing your language. Please reload the page and try again." : "Hiba a nyelvváltás közben. Kérlek töltsd újra az oldalt és próbáld meg ismét.", - "An error occured while changing your locale. Please reload the page and try again." : "Hiba a hely váltása közben. Kérlek töltsd újra az oldalt és próbáld meg ismét.", "Select a profile picture" : "Válasszon profilképet!", - "Week starts on {fdow}" : "Hét kezdete {fdow}", "Groups" : "Csoportok", - "Group list is empty" : "Csoport lista üres", - "Unable to retrieve the group list" : "Csoportlista betöltése sikertelen", "Official" : "Hivatalos", - "No results" : "Nincsenek eredmények", "Visit website" : "Weboldal meglátogatása", "User documentation" : "Felhasználói dokumentáció", "Developer documentation" : "Fejlesztői dokumentáció", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az alkalmazást nem lehet telepíteni, mert a következő függőségek hiányoznak:", - "{license}-licensed" : "{license}-licencelt", - "Disable all" : "Összes tiltása", "Enable all" : "Mind engedélyezése", - "Download and enable" : "Letöltés és engedélyezés", "Enable" : "Engedélyezés", "The app will be downloaded from the app store" : "Az alkalmazás letöltésre kerül az alkalmazástárból", "Settings" : "Beállítások", - "You do not have permissions to see the details of this user" : "Nincs jogosultságod megnézni ennek a felhasználónak a részleteit.", - "Delete user" : "Felhasználó törlése", - "Disable user" : "Felhasználó tiltása", - "Enable user" : "Felhasználó engedélyezése", - "Resend welcome email" : "Üdvözlő üzenet ismételt küldése", - "Welcome mail sent!" : "Üdvöző üzenet elküldve!", "Email" : "E-mail", "Group admin for" : "Csoport Adminisztrátor itt", "Language" : "Nyelv", "User backend" : "Felhasználói háttér", "Unlimited" : "Korlátlan", "Default quota" : "Alapértelmezett kvóta", - "Default language" : "Alapértelmezett nyelv", - "Password change is disabled because the master key is disabled" : "A jelszó változtatása tiltva van mert a mester kulcs tiltva van", - "Common languages" : "Alapvető nyelvek", - "All languages" : "Összes nyelv", "You did not enter the password in time" : "Nem adta meg időben a jelszót", "An error occured during the request. Unable to proceed." : "Hiba lépett fel a kérés közben. Nem lehet végrehajtani.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Ez az alkalmazás engedélyezve van, de frissíteni kell. A frissítő oldalra irányítjuk 5 másodpercen belül.", "App update" : "Alkalmazás frissítése", "Error: This app can not be enabled because it makes the server unstable" : "Hiba: az alkalmazás nem nem engedélyezhető, mert instabillá tenné a szervert", "Your apps" : "Alkalmazásaid", - "Active apps" : "Aktív alkalmazások", "Disabled apps" : "Letiltott alkalmazások", "Updates" : "Feltöltések", "App bundles" : "Alkalmazás csomagok", - "Default quota :" : "Alapértelmezett kvóta :", - "You are about to remove the group {group}. The users will NOT be deleted." : "A {group} csoportot fodja törölni. A felhasználó NEM fog törlődni.", - "Please confirm the group removal " : "Kérem erősítse meg a csoport törlését", - "Remove group" : "Csoport törlése", "Admins" : "Adminisztrátorok", - "Disabled users" : "Letiltott felhasználók", "Everyone" : "Mindenki", - "New user" : "Új felhasználó", "SSL Root Certificates" : "SSL Root tanusítványok", "Common Name" : "Általános Név", "Valid until" : "Érvényes", @@ -164,10 +137,7 @@ "Valid until %s" : "Érvényes: %s", "Import root certificate" : "Gyökértanúsítvány importálása", "Administrator documentation" : "Adminisztrátori dokumentáció", - "Online documentation" : "Online dokumentáció", "Forum" : "Fórum", - "Getting help" : "Segítség kérés", - "Commercial support" : "Kereskedelmi támogatás", "None" : "Egyik sem", "Login" : "Login", "Plain" : "Egyszerű", @@ -313,6 +283,7 @@ "Invalid user" : "Érvénytelen felhasználó", "Unable to change mail address" : "Nem lehet megváltoztatni az e-mail címet", "Email saved" : "E-mail elmentve!", + "%1$s changed your email address on %2$s." : "%1$s megváltoztatta a jelszavadat %2$s-on.", "Password confirmation is required" : "Jelszó megerősítés szükséges", "Are you really sure you want add {domain} as trusted domain?" : "Biztos, hogy hozzá akarod adni ezt a megbízható domainekhez: {domain} ?", "Add trusted domain" : "Megbízható tartomány hozzáadása", @@ -405,6 +376,9 @@ "Hide description …" : "Leírás elrejtése ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "Enable only for specific groups" : "Csak bizonyos csoportok számára tegyük elérhetővé", + "Online documentation" : "Online dokumentáció", + "Getting help" : "Segítség kérés", + "Commercial support" : "Kereskedelmi támogatás", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jelenleg használt: <strong>%s</strong>, maximálisan elérhető: <strong>%s</strong>", "You are member of the following groups:" : "Tagja vagy a következő csoport(ok)nak:", "Get the apps to sync your files" : "Alkalmazások a fájljaid szinkronizálásához", diff --git a/settings/l10n/ia.js b/settings/l10n/ia.js index 623783356b0..9cd417073cb 100644 --- a/settings/l10n/ia.js +++ b/settings/l10n/ia.js @@ -78,10 +78,7 @@ OC.L10N.register( "Valid until %s" : "Valide usque %s", "Import root certificate" : "Importar certificato root", "Administrator documentation" : "Documentation de administrator", - "Online documentation" : "Documentation in linea", "Forum" : "Foro", - "Getting help" : "Obtener adjuta", - "Commercial support" : "Supporto commercial", "None" : "Nulle", "SSL/TLS" : "SSL/TLS", "STARTTLS" : "STARTTLS", @@ -203,6 +200,9 @@ OC.L10N.register( "Show description …" : "Monstrar description...", "Hide description …" : "Celar description...", "Enable only for specific groups" : "Activar solmente a gruppos specific", + "Online documentation" : "Documentation in linea", + "Getting help" : "Obtener adjuta", + "Commercial support" : "Supporto commercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Tu usa <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Tu es membro del sequente gruppos:", "Show storage location" : "Monstrar loco de immagazinage", diff --git a/settings/l10n/ia.json b/settings/l10n/ia.json index 529e8a4e390..d444b16ff2c 100644 --- a/settings/l10n/ia.json +++ b/settings/l10n/ia.json @@ -76,10 +76,7 @@ "Valid until %s" : "Valide usque %s", "Import root certificate" : "Importar certificato root", "Administrator documentation" : "Documentation de administrator", - "Online documentation" : "Documentation in linea", "Forum" : "Foro", - "Getting help" : "Obtener adjuta", - "Commercial support" : "Supporto commercial", "None" : "Nulle", "SSL/TLS" : "SSL/TLS", "STARTTLS" : "STARTTLS", @@ -201,6 +198,9 @@ "Show description …" : "Monstrar description...", "Hide description …" : "Celar description...", "Enable only for specific groups" : "Activar solmente a gruppos specific", + "Online documentation" : "Documentation in linea", + "Getting help" : "Obtener adjuta", + "Commercial support" : "Supporto commercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Tu usa <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Tu es membro del sequente gruppos:", "Show storage location" : "Monstrar loco de immagazinage", diff --git a/settings/l10n/id.js b/settings/l10n/id.js index 911b4d63452..e4478f208ce 100644 --- a/settings/l10n/id.js +++ b/settings/l10n/id.js @@ -100,9 +100,7 @@ OC.L10N.register( "Valid until %s" : "Berlaku sampai %s", "Import root certificate" : "Impor sertifikat root", "Administrator documentation" : "Dokumentasi administrator", - "Online documentation" : "Dokumentasi online", "Forum" : "Forum", - "Commercial support" : "Dukungan komersial", "None" : "Tidak ada", "Login" : "Masuk", "Plain" : "Biasa", @@ -248,6 +246,8 @@ OC.L10N.register( "Hide description …" : "Sembunyikan deskripsi …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu", + "Online documentation" : "Dokumentasi online", + "Commercial support" : "Dukungan komersial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Anda sedang menggunakan <strong>%s</strong> dari <strong>%s</strong>", "You are member of the following groups:" : "Anda adalah anggota dari grup berikut:", "Show storage location" : "Tampilkan kolasi penyimpanan", diff --git a/settings/l10n/id.json b/settings/l10n/id.json index c4bf66196e1..823f7418d07 100644 --- a/settings/l10n/id.json +++ b/settings/l10n/id.json @@ -98,9 +98,7 @@ "Valid until %s" : "Berlaku sampai %s", "Import root certificate" : "Impor sertifikat root", "Administrator documentation" : "Dokumentasi administrator", - "Online documentation" : "Dokumentasi online", "Forum" : "Forum", - "Commercial support" : "Dukungan komersial", "None" : "Tidak ada", "Login" : "Masuk", "Plain" : "Biasa", @@ -246,6 +244,8 @@ "Hide description …" : "Sembunyikan deskripsi …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu", + "Online documentation" : "Dokumentasi online", + "Commercial support" : "Dukungan komersial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Anda sedang menggunakan <strong>%s</strong> dari <strong>%s</strong>", "You are member of the following groups:" : "Anda adalah anggota dari grup berikut:", "Show storage location" : "Tampilkan kolasi penyimpanan", diff --git a/settings/l10n/is.js b/settings/l10n/is.js index 77ea7f5b0c1..327d8e7d700 100644 --- a/settings/l10n/is.js +++ b/settings/l10n/is.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist %2$s", "Password changed for %s" : "Lykilorð breyttist fyrir %s", "If you did not request this, please contact an administrator." : "Ef þú baðst ekki um þetta, hafðu þá samband við kerfisstjóra.", - "%1$s changed your email address on %2$s." : "%1$s breytti tölvupóstfanginu þínu þann %2$s.", "Your email address on %s was changed." : "Tölvupóstfanginu þínu á %s var breytt.", "Your email address on %s was changed by an administrator." : "Kerfisstjóri breytti tölvupóstfanginu þínu á %s.", "Email address for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist þann %2$s", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "Stilltu lykilorðið þitt", "Go to %s" : "Farðu í %s", "Install Client" : "Setja upp biðlaraforrit", - "Logged in user must be a subadmin" : "Innskráður notandi verður að vera undirstjórnandi", "Migration in progress. Please wait until the migration is finished" : "Yfirfærsla er í gangi. Dokaðu við þar til henni er lokið", "Migration started …" : "Yfirfærsla hafin...", "Not saved" : "Ekki vistað", @@ -105,61 +103,35 @@ OC.L10N.register( "Good password" : "Gott lykilorð", "Strong password" : "Sterkt lykilorð", "An error occured while changing your language. Please reload the page and try again." : "Villa kom upp við að skipta um tungumálið þitt. Endurlestu síðuna og prófaðu aftur.", - "An error occured while changing your locale. Please reload the page and try again." : "Villa kom upp við að skipta um staðfærsluna þína. Endurlestu síðuna og prófaðu aftur.", "Select a profile picture" : "Veldu einkennismynd", - "Week starts on {fdow}" : "Vika byrjar á {fdow}", "Groups" : "Hópar", - "Group list is empty" : "Listi yfir hópa er tómur", - "Unable to retrieve the group list" : "Tókst ekki að ná í lista yfir hópinn", "Official" : "Opinbert", - "No results" : "Engar niðurstöður", "Visit website" : "Heimsækja vefsvæðið", "User documentation" : "Hjálparskjöl notenda", "Developer documentation" : "Skjölun fyrir þróunaraðila", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", - "{license}-licensed" : "{license}-notkunarleyfi", - "Disable all" : "Gera allt óvirkt", "Enable all" : "Virkja allt", - "Download and enable" : "Sækja og virkja", "Enable" : "Virkja", "The app will be downloaded from the app store" : "Forritinu verður hlaðið niður úr forritabúðinni", "Settings" : "Stillingar", - "You do not have permissions to see the details of this user" : "Þú hefur ekki réttindi til að skoða ítarupplýsingar um þennan notanda", - "Delete user" : "Eyða notanda", - "Disable user" : "Gera notanda óvirkan", - "Enable user" : "Virkja notanda", - "Resend welcome email" : "Endursenda kveðjupóst", - "Welcome mail sent!" : "Kveðjupóstur sendur!", - "Display name" : "Birtingarnafn", "Email" : "Netfang", "Group admin for" : "Hópstjóri fyrir", "Language" : "Tungumál", "User backend" : "Bakendi notanda", "Unlimited" : "ótakmörkuðu", "Default quota" : "Sjálfgefinn kvóti", - "Default language" : "Sjálfgefið tungumál", - "Password change is disabled because the master key is disabled" : "Lykilorðabreyting er óvirk vegna þess að aðallykill er óvirkur", - "Common languages" : "Algeng tungumál", - "All languages" : "Öll tungumál", "You did not enter the password in time" : "Þú settir ekki lykilorðið inn tímanlega", "An error occured during the request. Unable to proceed." : "Villa kom upp við beiðnina. Get ekki haldið áfram.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", "App update" : "Endurnýjun forrits", "Error: This app can not be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan.", "Your apps" : "Forritin þín", - "Active apps" : "Virk forrit", "Disabled apps" : "Óvirk forrit", "Updates" : "Uppfærslur", "App bundles" : "Forritavöndlar", - "Default quota :" : "Sjálfgefinn kvóti :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Þú er í þann mund að fara að fjarlægja hópinn {group}. Notendunum verður EKKI eytt.", - "Please confirm the group removal " : "Staðfestu fjarlægingu hópsins", - "Remove group" : "Fjarlægja hóp", "Admins" : "Kerfisstjórar", - "Disabled users" : "Óvirkir notendur", "Everyone" : "Allir", - "New user" : "Nýr notandi", "SSL Root Certificates" : "SSL-rótarskilríki", "Common Name" : "Almennt heiti", "Valid until" : "Gildir til", @@ -167,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "Gildir til %s", "Import root certificate" : "Flytja inn rótarskilríki", "Administrator documentation" : "Hjálparskjöl stjórnanda", - "Online documentation" : "Handbækur/skjölun á netinu", "Forum" : "Vefspjall", - "Getting help" : "Til að fá hjálp", - "Commercial support" : "Gjaldskyld tækniaðstoð", "None" : "Ekkert", "Login" : "Innskráning", "Plain" : "Einfalt", @@ -316,6 +285,7 @@ OC.L10N.register( "Invalid user" : "Ógildur notandi", "Unable to change mail address" : "Get ekki breytt tölvupóstfangi", "Email saved" : "Tölvupóstfang vistað", + "%1$s changed your email address on %2$s." : "%1$s breytti tölvupóstfanginu þínu þann %2$s.", "Password confirmation is required" : "Þörf á staðfestingu lykilorðs", "Are you really sure you want add {domain} as trusted domain?" : "Ertu viss um að þú viljir bæta \"{domain}\" við sem treystu léni?", "Add trusted domain" : "Bæta við treystu léni", @@ -408,6 +378,9 @@ OC.L10N.register( "Hide description …" : "Fela lýsingu …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "Enable only for specific groups" : "Einungis fyrir sérstaka hópa", + "Online documentation" : "Handbækur/skjölun á netinu", + "Getting help" : "Til að fá hjálp", + "Commercial support" : "Gjaldskyld tækniaðstoð", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Þú notar <strong>%s</strong> af <strong>%s</strong>", "You are member of the following groups:" : "Þú ert meðlimur eftirfarandi hópa:", "Get the apps to sync your files" : "Náðu í forrit til að samstilla skrárnar þínar", diff --git a/settings/l10n/is.json b/settings/l10n/is.json index b2e069c1414..ea80dbf5a38 100644 --- a/settings/l10n/is.json +++ b/settings/l10n/is.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist %2$s", "Password changed for %s" : "Lykilorð breyttist fyrir %s", "If you did not request this, please contact an administrator." : "Ef þú baðst ekki um þetta, hafðu þá samband við kerfisstjóra.", - "%1$s changed your email address on %2$s." : "%1$s breytti tölvupóstfanginu þínu þann %2$s.", "Your email address on %s was changed." : "Tölvupóstfanginu þínu á %s var breytt.", "Your email address on %s was changed by an administrator." : "Kerfisstjóri breytti tölvupóstfanginu þínu á %s.", "Email address for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist þann %2$s", @@ -55,7 +54,6 @@ "Set your password" : "Stilltu lykilorðið þitt", "Go to %s" : "Farðu í %s", "Install Client" : "Setja upp biðlaraforrit", - "Logged in user must be a subadmin" : "Innskráður notandi verður að vera undirstjórnandi", "Migration in progress. Please wait until the migration is finished" : "Yfirfærsla er í gangi. Dokaðu við þar til henni er lokið", "Migration started …" : "Yfirfærsla hafin...", "Not saved" : "Ekki vistað", @@ -103,61 +101,35 @@ "Good password" : "Gott lykilorð", "Strong password" : "Sterkt lykilorð", "An error occured while changing your language. Please reload the page and try again." : "Villa kom upp við að skipta um tungumálið þitt. Endurlestu síðuna og prófaðu aftur.", - "An error occured while changing your locale. Please reload the page and try again." : "Villa kom upp við að skipta um staðfærsluna þína. Endurlestu síðuna og prófaðu aftur.", "Select a profile picture" : "Veldu einkennismynd", - "Week starts on {fdow}" : "Vika byrjar á {fdow}", "Groups" : "Hópar", - "Group list is empty" : "Listi yfir hópa er tómur", - "Unable to retrieve the group list" : "Tókst ekki að ná í lista yfir hópinn", "Official" : "Opinbert", - "No results" : "Engar niðurstöður", "Visit website" : "Heimsækja vefsvæðið", "User documentation" : "Hjálparskjöl notenda", "Developer documentation" : "Skjölun fyrir þróunaraðila", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", - "{license}-licensed" : "{license}-notkunarleyfi", - "Disable all" : "Gera allt óvirkt", "Enable all" : "Virkja allt", - "Download and enable" : "Sækja og virkja", "Enable" : "Virkja", "The app will be downloaded from the app store" : "Forritinu verður hlaðið niður úr forritabúðinni", "Settings" : "Stillingar", - "You do not have permissions to see the details of this user" : "Þú hefur ekki réttindi til að skoða ítarupplýsingar um þennan notanda", - "Delete user" : "Eyða notanda", - "Disable user" : "Gera notanda óvirkan", - "Enable user" : "Virkja notanda", - "Resend welcome email" : "Endursenda kveðjupóst", - "Welcome mail sent!" : "Kveðjupóstur sendur!", - "Display name" : "Birtingarnafn", "Email" : "Netfang", "Group admin for" : "Hópstjóri fyrir", "Language" : "Tungumál", "User backend" : "Bakendi notanda", "Unlimited" : "ótakmörkuðu", "Default quota" : "Sjálfgefinn kvóti", - "Default language" : "Sjálfgefið tungumál", - "Password change is disabled because the master key is disabled" : "Lykilorðabreyting er óvirk vegna þess að aðallykill er óvirkur", - "Common languages" : "Algeng tungumál", - "All languages" : "Öll tungumál", "You did not enter the password in time" : "Þú settir ekki lykilorðið inn tímanlega", "An error occured during the request. Unable to proceed." : "Villa kom upp við beiðnina. Get ekki haldið áfram.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", "App update" : "Endurnýjun forrits", "Error: This app can not be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan.", "Your apps" : "Forritin þín", - "Active apps" : "Virk forrit", "Disabled apps" : "Óvirk forrit", "Updates" : "Uppfærslur", "App bundles" : "Forritavöndlar", - "Default quota :" : "Sjálfgefinn kvóti :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Þú er í þann mund að fara að fjarlægja hópinn {group}. Notendunum verður EKKI eytt.", - "Please confirm the group removal " : "Staðfestu fjarlægingu hópsins", - "Remove group" : "Fjarlægja hóp", "Admins" : "Kerfisstjórar", - "Disabled users" : "Óvirkir notendur", "Everyone" : "Allir", - "New user" : "Nýr notandi", "SSL Root Certificates" : "SSL-rótarskilríki", "Common Name" : "Almennt heiti", "Valid until" : "Gildir til", @@ -165,10 +137,7 @@ "Valid until %s" : "Gildir til %s", "Import root certificate" : "Flytja inn rótarskilríki", "Administrator documentation" : "Hjálparskjöl stjórnanda", - "Online documentation" : "Handbækur/skjölun á netinu", "Forum" : "Vefspjall", - "Getting help" : "Til að fá hjálp", - "Commercial support" : "Gjaldskyld tækniaðstoð", "None" : "Ekkert", "Login" : "Innskráning", "Plain" : "Einfalt", @@ -314,6 +283,7 @@ "Invalid user" : "Ógildur notandi", "Unable to change mail address" : "Get ekki breytt tölvupóstfangi", "Email saved" : "Tölvupóstfang vistað", + "%1$s changed your email address on %2$s." : "%1$s breytti tölvupóstfanginu þínu þann %2$s.", "Password confirmation is required" : "Þörf á staðfestingu lykilorðs", "Are you really sure you want add {domain} as trusted domain?" : "Ertu viss um að þú viljir bæta \"{domain}\" við sem treystu léni?", "Add trusted domain" : "Bæta við treystu léni", @@ -406,6 +376,9 @@ "Hide description …" : "Fela lýsingu …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "Enable only for specific groups" : "Einungis fyrir sérstaka hópa", + "Online documentation" : "Handbækur/skjölun á netinu", + "Getting help" : "Til að fá hjálp", + "Commercial support" : "Gjaldskyld tækniaðstoð", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Þú notar <strong>%s</strong> af <strong>%s</strong>", "You are member of the following groups:" : "Þú ert meðlimur eftirfarandi hópa:", "Get the apps to sync your files" : "Náðu í forrit til að samstilla skrárnar þínar", diff --git a/settings/l10n/it.js b/settings/l10n/it.js index 8a4d3be5b54..fd15a8a79fd 100644 --- a/settings/l10n/it.js +++ b/settings/l10n/it.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Password per %1$s cambiata su %2$s", "Password changed for %s" : "Password modificata per %s", "If you did not request this, please contact an administrator." : "Se non lo hai richiesto, contatta un amministratore.", - "%1$s changed your email address on %2$s." : "%1$s ha modificato il tuo indirizzo di posta su %2$s.", "Your email address on %s was changed." : "Il tuo indirizzo di posta su %s è stata modificato.", "Your email address on %s was changed by an administrator." : "Il tuo indirizzo di posta su %s è stato modificato da un amministratore.", "Email address for %1$s changed on %2$s" : "Indirizzo di posta per %1$s modificato su %2$s", @@ -167,10 +166,8 @@ OC.L10N.register( "Valid until %s" : "Valido fino al %s", "Import root certificate" : "Importa certificato radice", "Administrator documentation" : "Documentazione amministratore", - "Online documentation" : "Documentazione in linea", + "Documentation" : "Documentazione", "Forum" : "Forum", - "Getting help" : "Ottenere aiuto", - "Commercial support" : "Supporto commerciale", "None" : "Nessuno", "Login" : "Accesso", "Plain" : "Semplice", @@ -316,6 +313,7 @@ OC.L10N.register( "Invalid user" : "Utente non valido", "Unable to change mail address" : "Impossibile cambiare l'indirizzo di posta", "Email saved" : "Email salvata", + "%1$s changed your email address on %2$s." : "%1$s ha modificato il tuo indirizzo di posta su %2$s.", "Password confirmation is required" : "La conferma della password è richiesta", "Are you really sure you want add {domain} as trusted domain?" : "Sei davvero sicuro di voler aggiungere {domain} come dominio attendibile?", "Add trusted domain" : "Aggiungi dominio attendibile", @@ -408,6 +406,9 @@ OC.L10N.register( "Hide description …" : "Nascondi descrizione...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "Enable only for specific groups" : "Abilita solo per gruppi specifici", + "Online documentation" : "Documentazione in linea", + "Getting help" : "Ottenere aiuto", + "Commercial support" : "Supporto commerciale", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Stai utilizzando <strong>%s</strong> di <strong>%s</strong>", "You are member of the following groups:" : "Sei membro dei seguenti gruppi:", "Get the apps to sync your files" : "Scarica le applicazioni per sincronizzare i tuoi file", diff --git a/settings/l10n/it.json b/settings/l10n/it.json index 9a6b969e2ea..ac91c57cc69 100644 --- a/settings/l10n/it.json +++ b/settings/l10n/it.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Password per %1$s cambiata su %2$s", "Password changed for %s" : "Password modificata per %s", "If you did not request this, please contact an administrator." : "Se non lo hai richiesto, contatta un amministratore.", - "%1$s changed your email address on %2$s." : "%1$s ha modificato il tuo indirizzo di posta su %2$s.", "Your email address on %s was changed." : "Il tuo indirizzo di posta su %s è stata modificato.", "Your email address on %s was changed by an administrator." : "Il tuo indirizzo di posta su %s è stato modificato da un amministratore.", "Email address for %1$s changed on %2$s" : "Indirizzo di posta per %1$s modificato su %2$s", @@ -165,10 +164,8 @@ "Valid until %s" : "Valido fino al %s", "Import root certificate" : "Importa certificato radice", "Administrator documentation" : "Documentazione amministratore", - "Online documentation" : "Documentazione in linea", + "Documentation" : "Documentazione", "Forum" : "Forum", - "Getting help" : "Ottenere aiuto", - "Commercial support" : "Supporto commerciale", "None" : "Nessuno", "Login" : "Accesso", "Plain" : "Semplice", @@ -314,6 +311,7 @@ "Invalid user" : "Utente non valido", "Unable to change mail address" : "Impossibile cambiare l'indirizzo di posta", "Email saved" : "Email salvata", + "%1$s changed your email address on %2$s." : "%1$s ha modificato il tuo indirizzo di posta su %2$s.", "Password confirmation is required" : "La conferma della password è richiesta", "Are you really sure you want add {domain} as trusted domain?" : "Sei davvero sicuro di voler aggiungere {domain} come dominio attendibile?", "Add trusted domain" : "Aggiungi dominio attendibile", @@ -406,6 +404,9 @@ "Hide description …" : "Nascondi descrizione...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "Enable only for specific groups" : "Abilita solo per gruppi specifici", + "Online documentation" : "Documentazione in linea", + "Getting help" : "Ottenere aiuto", + "Commercial support" : "Supporto commerciale", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Stai utilizzando <strong>%s</strong> di <strong>%s</strong>", "You are member of the following groups:" : "Sei membro dei seguenti gruppi:", "Get the apps to sync your files" : "Scarica le applicazioni per sincronizzare i tuoi file", diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js index a2867b33f6a..691cd5faa82 100644 --- a/settings/l10n/ja.js +++ b/settings/l10n/ja.js @@ -41,7 +41,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%1$s のパスワードが %2$sで変更しました", "Password changed for %s" : "%s のパスワードを変更しました", "If you did not request this, please contact an administrator." : "このリクエストをしていない場合は、管理者に問い合わせてください。", - "%1$s changed your email address on %2$s." : "%1$sにより %2$s のメールアドレスを変更しました", "Your email address on %s was changed." : "%s のメールアドレスを変更しました。", "Your email address on %s was changed by an administrator." : "%s のメールアドレスを管理者が変更しました。", "Email address for %1$s changed on %2$s" : "%1$s のメールアドレスが %2$sで変更しました。", @@ -114,8 +113,6 @@ OC.L10N.register( "Enable" : "有効にする", "The app will be downloaded from the app store" : "このアプリは、アプリストアからダウンロードできます。", "Settings" : "設定", - "Resend welcome email" : "ウェルカムメールを再送する", - "Welcome mail sent!" : "ウェルカムメールを送信しました!", "Email" : "メール", "Group admin for" : "グループの管理者", "Language" : "言語", @@ -126,9 +123,7 @@ OC.L10N.register( "Your apps" : "あなたのアプリ", "Disabled apps" : "無効なアプリ", "App bundles" : "アプリバンドル", - "Default quota :" : "デフォルトのクォータ :", "Admins" : "管理者", - "Disabled users" : "無効なユーザー", "Everyone" : "すべてのユーザー", "SSL Root Certificates" : "SSLルート証明書", "Common Name" : "コモンネーム", @@ -137,10 +132,7 @@ OC.L10N.register( "Valid until %s" : "%s まで有効", "Import root certificate" : "ルート証明書をインポート", "Administrator documentation" : "管理者ドキュメント", - "Online documentation" : "オンラインドキュメント", "Forum" : "フォーラム", - "Getting help" : "ヘルプの入手", - "Commercial support" : "商用サポート", "None" : "なし", "Login" : "ログイン", "Plain" : "平文", @@ -275,6 +267,7 @@ OC.L10N.register( "Invalid user" : "無効なユーザー", "Unable to change mail address" : "メールアドレスを変更できません", "Email saved" : "メールアドレスを保存しました", + "%1$s changed your email address on %2$s." : "%1$sにより %2$s のメールアドレスを変更しました", "Password confirmation is required" : "パスワードの確認が必要です", "Are you really sure you want add {domain} as trusted domain?" : "{domain} を信頼できるドメインとして追加してもよろしいですか?", "Add trusted domain" : "信頼するドメイン名に追加", @@ -348,6 +341,9 @@ OC.L10N.register( "Hide description …" : "説明を隠す ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "Enable only for specific groups" : "特定のグループのみ有効に", + "Online documentation" : "オンラインドキュメント", + "Getting help" : "ヘルプの入手", + "Commercial support" : "商用サポート", "You are using <strong>%s</strong> of <strong>%s</strong>" : "<strong>%s</strong> / <strong>%s</strong> を現在使用中です", "You are member of the following groups:" : "次のグループのメンバー:", "Show storage location" : "データの保存場所を表示", diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json index 6562c5750a4..303c2929e1b 100644 --- a/settings/l10n/ja.json +++ b/settings/l10n/ja.json @@ -39,7 +39,6 @@ "Password for %1$s changed on %2$s" : "%1$s のパスワードが %2$sで変更しました", "Password changed for %s" : "%s のパスワードを変更しました", "If you did not request this, please contact an administrator." : "このリクエストをしていない場合は、管理者に問い合わせてください。", - "%1$s changed your email address on %2$s." : "%1$sにより %2$s のメールアドレスを変更しました", "Your email address on %s was changed." : "%s のメールアドレスを変更しました。", "Your email address on %s was changed by an administrator." : "%s のメールアドレスを管理者が変更しました。", "Email address for %1$s changed on %2$s" : "%1$s のメールアドレスが %2$sで変更しました。", @@ -112,8 +111,6 @@ "Enable" : "有効にする", "The app will be downloaded from the app store" : "このアプリは、アプリストアからダウンロードできます。", "Settings" : "設定", - "Resend welcome email" : "ウェルカムメールを再送する", - "Welcome mail sent!" : "ウェルカムメールを送信しました!", "Email" : "メール", "Group admin for" : "グループの管理者", "Language" : "言語", @@ -124,9 +121,7 @@ "Your apps" : "あなたのアプリ", "Disabled apps" : "無効なアプリ", "App bundles" : "アプリバンドル", - "Default quota :" : "デフォルトのクォータ :", "Admins" : "管理者", - "Disabled users" : "無効なユーザー", "Everyone" : "すべてのユーザー", "SSL Root Certificates" : "SSLルート証明書", "Common Name" : "コモンネーム", @@ -135,10 +130,7 @@ "Valid until %s" : "%s まで有効", "Import root certificate" : "ルート証明書をインポート", "Administrator documentation" : "管理者ドキュメント", - "Online documentation" : "オンラインドキュメント", "Forum" : "フォーラム", - "Getting help" : "ヘルプの入手", - "Commercial support" : "商用サポート", "None" : "なし", "Login" : "ログイン", "Plain" : "平文", @@ -273,6 +265,7 @@ "Invalid user" : "無効なユーザー", "Unable to change mail address" : "メールアドレスを変更できません", "Email saved" : "メールアドレスを保存しました", + "%1$s changed your email address on %2$s." : "%1$sにより %2$s のメールアドレスを変更しました", "Password confirmation is required" : "パスワードの確認が必要です", "Are you really sure you want add {domain} as trusted domain?" : "{domain} を信頼できるドメインとして追加してもよろしいですか?", "Add trusted domain" : "信頼するドメイン名に追加", @@ -346,6 +339,9 @@ "Hide description …" : "説明を隠す ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "Enable only for specific groups" : "特定のグループのみ有効に", + "Online documentation" : "オンラインドキュメント", + "Getting help" : "ヘルプの入手", + "Commercial support" : "商用サポート", "You are using <strong>%s</strong> of <strong>%s</strong>" : "<strong>%s</strong> / <strong>%s</strong> を現在使用中です", "You are member of the following groups:" : "次のグループのメンバー:", "Show storage location" : "データの保存場所を表示", diff --git a/settings/l10n/ka_GE.js b/settings/l10n/ka_GE.js index b320768f318..2c1abce9457 100644 --- a/settings/l10n/ka_GE.js +++ b/settings/l10n/ka_GE.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "პაროლი %1$s-სთვის შეიცვალა %2$s-ზე", "Password changed for %s" : "პაროლი %s-სთვის შეიცვალა", "If you did not request this, please contact an administrator." : "თუ ეს არ მოგითხოვიათ, მიმართეთ ადმინისტრატორს", - "%1$s changed your email address on %2$s." : "%1$s მომხმარებელმა შეცვალა თქვენი ელ-ფოსტის მისამართი %2$s-ზე.", "Your email address on %s was changed." : "თქვენი ელ-ფოსტის მისამართი %s-ზე შეიცვალა.", "Your email address on %s was changed by an administrator." : "თქვენი ელ-ფოსტის მისამართი %s-ზე ადმინისტრატორმა შეცვალა.", "Email address for %1$s changed on %2$s" : "ელ-ფოსტის მისამართი %1$s-სთვის შეიცვალა %2$s-ზე", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "ვარგისია %s-მდე", "Import root certificate" : "Root სერტიფიკატის იმპორტი", "Administrator documentation" : "ადმინისტრატორის დოკუმენტაცია", - "Online documentation" : "ონლაინ დოკუმენტაცია", "Forum" : "ფორუმი", - "Getting help" : "დახმარების მიღება", - "Commercial support" : "კომერციული მხარდაჭერა", "None" : "არც ერთი", "Login" : "ლოგინი", "Plain" : "ჩვეულებრივი", @@ -277,6 +273,7 @@ OC.L10N.register( "Invalid user" : "არასწორი მომხმარებელი", "Unable to change mail address" : "ელ-ფოსტის მისამართის შეცვლა ვერ ხერხდება", "Email saved" : "ელ-ფოსტის მისამართი შენახულია", + "%1$s changed your email address on %2$s." : "%1$s მომხმარებელმა შეცვალა თქვენი ელ-ფოსტის მისამართი %2$s-ზე.", "Password confirmation is required" : "საჭიროა პაროლის დამოწმება", "Are you really sure you want add {domain} as trusted domain?" : "დამდვილად გსურთ {domain}-ის დამატება სანდო დომენად?", "Add trusted domain" : "სანდო დომენის დამატება", @@ -369,6 +366,9 @@ OC.L10N.register( "Hide description …" : "არწერილობის დამალვა …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "Enable only for specific groups" : "ამოქმედება მხოლოდ სპეციფიური ჯგუფებისათვის", + "Online documentation" : "ონლაინ დოკუმენტაცია", + "Getting help" : "დახმარების მიღება", + "Commercial support" : "კომერციული მხარდაჭერა", "You are using <strong>%s</strong> of <strong>%s</strong>" : "თქვენ იყენებთ <strong>%s</strong> სულ <strong>%s</strong>-დან", "You are member of the following groups:" : "თქვენ ხართ შემდეგი ჯგუფების წევრი:", "Get the apps to sync your files" : "აპლიკაცია ფაილების სინქრონიზაციისთვის", diff --git a/settings/l10n/ka_GE.json b/settings/l10n/ka_GE.json index 3bd25ec87c6..90ae543e1e4 100644 --- a/settings/l10n/ka_GE.json +++ b/settings/l10n/ka_GE.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "პაროლი %1$s-სთვის შეიცვალა %2$s-ზე", "Password changed for %s" : "პაროლი %s-სთვის შეიცვალა", "If you did not request this, please contact an administrator." : "თუ ეს არ მოგითხოვიათ, მიმართეთ ადმინისტრატორს", - "%1$s changed your email address on %2$s." : "%1$s მომხმარებელმა შეცვალა თქვენი ელ-ფოსტის მისამართი %2$s-ზე.", "Your email address on %s was changed." : "თქვენი ელ-ფოსტის მისამართი %s-ზე შეიცვალა.", "Your email address on %s was changed by an administrator." : "თქვენი ელ-ფოსტის მისამართი %s-ზე ადმინისტრატორმა შეცვალა.", "Email address for %1$s changed on %2$s" : "ელ-ფოსტის მისამართი %1$s-სთვის შეიცვალა %2$s-ზე", @@ -136,10 +135,7 @@ "Valid until %s" : "ვარგისია %s-მდე", "Import root certificate" : "Root სერტიფიკატის იმპორტი", "Administrator documentation" : "ადმინისტრატორის დოკუმენტაცია", - "Online documentation" : "ონლაინ დოკუმენტაცია", "Forum" : "ფორუმი", - "Getting help" : "დახმარების მიღება", - "Commercial support" : "კომერციული მხარდაჭერა", "None" : "არც ერთი", "Login" : "ლოგინი", "Plain" : "ჩვეულებრივი", @@ -275,6 +271,7 @@ "Invalid user" : "არასწორი მომხმარებელი", "Unable to change mail address" : "ელ-ფოსტის მისამართის შეცვლა ვერ ხერხდება", "Email saved" : "ელ-ფოსტის მისამართი შენახულია", + "%1$s changed your email address on %2$s." : "%1$s მომხმარებელმა შეცვალა თქვენი ელ-ფოსტის მისამართი %2$s-ზე.", "Password confirmation is required" : "საჭიროა პაროლის დამოწმება", "Are you really sure you want add {domain} as trusted domain?" : "დამდვილად გსურთ {domain}-ის დამატება სანდო დომენად?", "Add trusted domain" : "სანდო დომენის დამატება", @@ -367,6 +364,9 @@ "Hide description …" : "არწერილობის დამალვა …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "Enable only for specific groups" : "ამოქმედება მხოლოდ სპეციფიური ჯგუფებისათვის", + "Online documentation" : "ონლაინ დოკუმენტაცია", + "Getting help" : "დახმარების მიღება", + "Commercial support" : "კომერციული მხარდაჭერა", "You are using <strong>%s</strong> of <strong>%s</strong>" : "თქვენ იყენებთ <strong>%s</strong> სულ <strong>%s</strong>-დან", "You are member of the following groups:" : "თქვენ ხართ შემდეგი ჯგუფების წევრი:", "Get the apps to sync your files" : "აპლიკაცია ფაილების სინქრონიზაციისთვის", diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js index 4c6cf2407f1..e5f509abeb4 100644 --- a/settings/l10n/ko.js +++ b/settings/l10n/ko.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%1$s의 암호를 %2$s에 변경함", "Password changed for %s" : "%s의 암호 변경됨", "If you did not request this, please contact an administrator." : "요청하지 않았다면 관리자에게 연락하십시오.", - "%1$s changed your email address on %2$s." : "%1$s 님이 내 이메일 주소를 %2$s에 변경했습니다.", "Your email address on %s was changed." : "내 %s 이메일 주소를 변경했습니다.", "Your email address on %s was changed by an administrator." : "관리자가 내 %s 이메일 주소를 변경했습니다.", "Email address for %1$s changed on %2$s" : "%1$s의 이메일 주소를 %2$s에 변경함", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "%s까지 유효함", "Import root certificate" : "루트 인증서 가져오기", "Administrator documentation" : "관리자 문서", - "Online documentation" : "온라인 문서", "Forum" : "포럼", - "Getting help" : "도움 얻기", - "Commercial support" : "상용 지원", "None" : "없음", "Login" : "로그인", "Plain" : "일반", @@ -276,6 +272,7 @@ OC.L10N.register( "Invalid user" : "잘못된 사용자", "Unable to change mail address" : "이메일 주소를 변경할 수 없음", "Email saved" : "이메일 저장됨", + "%1$s changed your email address on %2$s." : "%1$s 님이 내 이메일 주소를 %2$s에 변경했습니다.", "Password confirmation is required" : "암호 확인이 필요합니다", "Are you really sure you want add {domain} as trusted domain?" : "신뢰할 수 있는 도메인 목록에 {domain}을(를) 추가하시겠습니까?", "Add trusted domain" : "신뢰할 수 있는 도메인 추가", @@ -368,6 +365,9 @@ OC.L10N.register( "Hide description …" : "설명 숨기기 …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "Enable only for specific groups" : "특정 그룹에만 허용", + "Online documentation" : "온라인 문서", + "Getting help" : "도움 얻기", + "Commercial support" : "상용 지원", "You are using <strong>%s</strong> of <strong>%s</strong>" : "현재 <strong>%s</strong>/<strong>%s</strong>을(를) 사용하고 있습니다", "You are member of the following groups:" : "다음 그룹의 구성원입니다:", "Get the apps to sync your files" : "파일 동기화 앱 가져오기", diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json index a5c96219db5..ffd47cf7c60 100644 --- a/settings/l10n/ko.json +++ b/settings/l10n/ko.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "%1$s의 암호를 %2$s에 변경함", "Password changed for %s" : "%s의 암호 변경됨", "If you did not request this, please contact an administrator." : "요청하지 않았다면 관리자에게 연락하십시오.", - "%1$s changed your email address on %2$s." : "%1$s 님이 내 이메일 주소를 %2$s에 변경했습니다.", "Your email address on %s was changed." : "내 %s 이메일 주소를 변경했습니다.", "Your email address on %s was changed by an administrator." : "관리자가 내 %s 이메일 주소를 변경했습니다.", "Email address for %1$s changed on %2$s" : "%1$s의 이메일 주소를 %2$s에 변경함", @@ -136,10 +135,7 @@ "Valid until %s" : "%s까지 유효함", "Import root certificate" : "루트 인증서 가져오기", "Administrator documentation" : "관리자 문서", - "Online documentation" : "온라인 문서", "Forum" : "포럼", - "Getting help" : "도움 얻기", - "Commercial support" : "상용 지원", "None" : "없음", "Login" : "로그인", "Plain" : "일반", @@ -274,6 +270,7 @@ "Invalid user" : "잘못된 사용자", "Unable to change mail address" : "이메일 주소를 변경할 수 없음", "Email saved" : "이메일 저장됨", + "%1$s changed your email address on %2$s." : "%1$s 님이 내 이메일 주소를 %2$s에 변경했습니다.", "Password confirmation is required" : "암호 확인이 필요합니다", "Are you really sure you want add {domain} as trusted domain?" : "신뢰할 수 있는 도메인 목록에 {domain}을(를) 추가하시겠습니까?", "Add trusted domain" : "신뢰할 수 있는 도메인 추가", @@ -366,6 +363,9 @@ "Hide description …" : "설명 숨기기 …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "Enable only for specific groups" : "특정 그룹에만 허용", + "Online documentation" : "온라인 문서", + "Getting help" : "도움 얻기", + "Commercial support" : "상용 지원", "You are using <strong>%s</strong> of <strong>%s</strong>" : "현재 <strong>%s</strong>/<strong>%s</strong>을(를) 사용하고 있습니다", "You are member of the following groups:" : "다음 그룹의 구성원입니다:", "Get the apps to sync your files" : "파일 동기화 앱 가져오기", diff --git a/settings/l10n/lt_LT.js b/settings/l10n/lt_LT.js index e40df3b9340..9a027274c00 100644 --- a/settings/l10n/lt_LT.js +++ b/settings/l10n/lt_LT.js @@ -85,7 +85,6 @@ OC.L10N.register( "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", "App bundles" : "Programėlių rinkiniai", - "Online documentation" : "Dokumentacija internete", "Forum" : "Forumas", "None" : "Nieko", "Login" : "Prisijungti", @@ -205,6 +204,7 @@ OC.L10N.register( "Report a bug" : "Pranešti apie klaidą", "Show description …" : "Rodyti aprašą …", "Hide description …" : "Slėpti aprašą …", + "Online documentation" : "Dokumentacija internete", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jūs naudojate <strong>%s</strong> iš <strong>%s</strong>", "You are member of the following groups:" : "Jūs esate šių grupių narys:", "Android app" : "Android programėlė", diff --git a/settings/l10n/lt_LT.json b/settings/l10n/lt_LT.json index 3bf279825e3..7948d8a7079 100644 --- a/settings/l10n/lt_LT.json +++ b/settings/l10n/lt_LT.json @@ -83,7 +83,6 @@ "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", "App bundles" : "Programėlių rinkiniai", - "Online documentation" : "Dokumentacija internete", "Forum" : "Forumas", "None" : "Nieko", "Login" : "Prisijungti", @@ -203,6 +202,7 @@ "Report a bug" : "Pranešti apie klaidą", "Show description …" : "Rodyti aprašą …", "Hide description …" : "Slėpti aprašą …", + "Online documentation" : "Dokumentacija internete", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jūs naudojate <strong>%s</strong> iš <strong>%s</strong>", "You are member of the following groups:" : "Jūs esate šių grupių narys:", "Android app" : "Android programėlė", diff --git a/settings/l10n/lv.js b/settings/l10n/lv.js index 6d31a7c511c..cf88bf27fac 100644 --- a/settings/l10n/lv.js +++ b/settings/l10n/lv.js @@ -77,9 +77,7 @@ OC.L10N.register( "Valid until %s" : "Derīgs līdz %s", "Import root certificate" : "Importēt root sertifikātu", "Administrator documentation" : "Administratora dokumentācija", - "Online documentation" : "Tiešsaistes dokumentācija", "Forum" : "Forums", - "Getting help" : "Saņemt palīdzību", "None" : "Nav", "Login" : "Autorizēties", "Plain" : "vienkāršs teksts", @@ -222,6 +220,8 @@ OC.L10N.register( "Show description …" : "Rādīt aprakstu …", "Hide description …" : "Slēpt aprakstu …", "Enable only for specific groups" : "Iespējot tikai konkrētām grupām", + "Online documentation" : "Tiešsaistes dokumentācija", + "Getting help" : "Saņemt palīdzību", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jūs izmantojiet <strong>%s</strong> no <strong>%s</strong>", "You are member of the following groups:" : "Jūs esat šādu grupu biedrs:", "Show storage location" : "Rādīt krātuves atrašanās vietu", diff --git a/settings/l10n/lv.json b/settings/l10n/lv.json index 072784d1e24..6c4c2339a6e 100644 --- a/settings/l10n/lv.json +++ b/settings/l10n/lv.json @@ -75,9 +75,7 @@ "Valid until %s" : "Derīgs līdz %s", "Import root certificate" : "Importēt root sertifikātu", "Administrator documentation" : "Administratora dokumentācija", - "Online documentation" : "Tiešsaistes dokumentācija", "Forum" : "Forums", - "Getting help" : "Saņemt palīdzību", "None" : "Nav", "Login" : "Autorizēties", "Plain" : "vienkāršs teksts", @@ -220,6 +218,8 @@ "Show description …" : "Rādīt aprakstu …", "Hide description …" : "Slēpt aprakstu …", "Enable only for specific groups" : "Iespējot tikai konkrētām grupām", + "Online documentation" : "Tiešsaistes dokumentācija", + "Getting help" : "Saņemt palīdzību", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Jūs izmantojiet <strong>%s</strong> no <strong>%s</strong>", "You are member of the following groups:" : "Jūs esat šādu grupu biedrs:", "Show storage location" : "Rādīt krātuves atrašanās vietu", diff --git a/settings/l10n/mn.js b/settings/l10n/mn.js index 050f6a57328..e01a0ea3b9e 100644 --- a/settings/l10n/mn.js +++ b/settings/l10n/mn.js @@ -34,9 +34,7 @@ OC.L10N.register( "Admins" : "Админууд", "Everyone" : "Бүх хэрэглэгчид", "Administrator documentation" : "Админы баримт бичиг", - "Online documentation" : "Онлайн баримт бичиг", "Forum" : "Хэлэлцүүлэг", - "Getting help" : "Тусламж авах", "mail" : "и-мэйл", "Version" : "Хувилбар", "Always ask for a password" : "Үргэлж нууц үг асуух", @@ -85,6 +83,8 @@ OC.L10N.register( "Admin documentation" : "Админы баримт бичиг", "Show description …" : "Тайлбарыг харуулах", "Hide description …" : "Тайлбарыг нуух", + "Online documentation" : "Онлайн баримт бичиг", + "Getting help" : "Тусламж авах", "You are member of the following groups:" : "Та дараах бүлгүүдийн гишүүн:", "Show email address" : "Цахим шуудангийн хаягийг харуулах", "Send email to new user" : "Шинэ хэрэглэгч рүү цахим шуудан илгээх", diff --git a/settings/l10n/mn.json b/settings/l10n/mn.json index 3dc1aca115f..2635b033192 100644 --- a/settings/l10n/mn.json +++ b/settings/l10n/mn.json @@ -32,9 +32,7 @@ "Admins" : "Админууд", "Everyone" : "Бүх хэрэглэгчид", "Administrator documentation" : "Админы баримт бичиг", - "Online documentation" : "Онлайн баримт бичиг", "Forum" : "Хэлэлцүүлэг", - "Getting help" : "Тусламж авах", "mail" : "и-мэйл", "Version" : "Хувилбар", "Always ask for a password" : "Үргэлж нууц үг асуух", @@ -83,6 +81,8 @@ "Admin documentation" : "Админы баримт бичиг", "Show description …" : "Тайлбарыг харуулах", "Hide description …" : "Тайлбарыг нуух", + "Online documentation" : "Онлайн баримт бичиг", + "Getting help" : "Тусламж авах", "You are member of the following groups:" : "Та дараах бүлгүүдийн гишүүн:", "Show email address" : "Цахим шуудангийн хаягийг харуулах", "Send email to new user" : "Шинэ хэрэглэгч рүү цахим шуудан илгээх", diff --git a/settings/l10n/nb.js b/settings/l10n/nb.js index 9d7170480ad..e95d7fd2060 100644 --- a/settings/l10n/nb.js +++ b/settings/l10n/nb.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Passord for %1$s endret på %2$s", "Password changed for %s" : "Passord endret for %s", "If you did not request this, please contact an administrator." : "Hvis du ikke forespurte dette, kontakt en administrator.", - "%1$s changed your email address on %2$s." : "%1$s endret din e-postadresse på %2$s.", "Your email address on %s was changed." : "Din e-postadresse på %s ble endret.", "Your email address on %s was changed by an administrator." : "Din e-postadresse på %s ble endret av en administrator.", "Email address for %1$s changed on %2$s" : "E-postadresse for %1$s endret på %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Gyldig til %s", "Import root certificate" : "Importer rotsertifikat", "Administrator documentation" : "Administratordokumentasjon", - "Online documentation" : "Elektronisk dokumentasjon", "Forum" : "Forum", - "Getting help" : "Skaffe hjelp", - "Commercial support" : "Forretningsstøtte", "None" : "Ingen", "Login" : "Innlogging", "Plain" : "Enkel", @@ -277,6 +273,7 @@ OC.L10N.register( "Invalid user" : "Ugyldig bruker", "Unable to change mail address" : "Kan ikke endre e-postadresse", "Email saved" : "E-post lagret", + "%1$s changed your email address on %2$s." : "%1$s endret din e-postadresse på %2$s.", "Password confirmation is required" : "Passord bekreftelse er nødvendig", "Are you really sure you want add {domain} as trusted domain?" : "Er du virkelig sikker på du vil legge til {domain} som klarert domene?", "Add trusted domain" : "Legg til et klarert domene", @@ -369,6 +366,9 @@ OC.L10N.register( "Hide description …" : "Skjul beskrivelse…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "Enable only for specific groups" : "Aktiver kun for gitte grupper", + "Online documentation" : "Elektronisk dokumentasjon", + "Getting help" : "Skaffe hjelp", + "Commercial support" : "Forretningsstøtte", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du bruker <strong>%s</strong> av <strong>%s</strong>", "You are member of the following groups:" : "Du er medlem av følgende grupper:", "Get the apps to sync your files" : "Hent programmer som synkroniserer filene dine", diff --git a/settings/l10n/nb.json b/settings/l10n/nb.json index 7675d3857a0..cc171285d47 100644 --- a/settings/l10n/nb.json +++ b/settings/l10n/nb.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Passord for %1$s endret på %2$s", "Password changed for %s" : "Passord endret for %s", "If you did not request this, please contact an administrator." : "Hvis du ikke forespurte dette, kontakt en administrator.", - "%1$s changed your email address on %2$s." : "%1$s endret din e-postadresse på %2$s.", "Your email address on %s was changed." : "Din e-postadresse på %s ble endret.", "Your email address on %s was changed by an administrator." : "Din e-postadresse på %s ble endret av en administrator.", "Email address for %1$s changed on %2$s" : "E-postadresse for %1$s endret på %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Gyldig til %s", "Import root certificate" : "Importer rotsertifikat", "Administrator documentation" : "Administratordokumentasjon", - "Online documentation" : "Elektronisk dokumentasjon", "Forum" : "Forum", - "Getting help" : "Skaffe hjelp", - "Commercial support" : "Forretningsstøtte", "None" : "Ingen", "Login" : "Innlogging", "Plain" : "Enkel", @@ -275,6 +271,7 @@ "Invalid user" : "Ugyldig bruker", "Unable to change mail address" : "Kan ikke endre e-postadresse", "Email saved" : "E-post lagret", + "%1$s changed your email address on %2$s." : "%1$s endret din e-postadresse på %2$s.", "Password confirmation is required" : "Passord bekreftelse er nødvendig", "Are you really sure you want add {domain} as trusted domain?" : "Er du virkelig sikker på du vil legge til {domain} som klarert domene?", "Add trusted domain" : "Legg til et klarert domene", @@ -367,6 +364,9 @@ "Hide description …" : "Skjul beskrivelse…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "Enable only for specific groups" : "Aktiver kun for gitte grupper", + "Online documentation" : "Elektronisk dokumentasjon", + "Getting help" : "Skaffe hjelp", + "Commercial support" : "Forretningsstøtte", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du bruker <strong>%s</strong> av <strong>%s</strong>", "You are member of the following groups:" : "Du er medlem av følgende grupper:", "Get the apps to sync your files" : "Hent programmer som synkroniserer filene dine", diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js index 83433d7ca0e..aeb2dc09658 100644 --- a/settings/l10n/nl.js +++ b/settings/l10n/nl.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Wachtwoord voor %1$s gewijzigd op %2$s", "Password changed for %s" : "Wachtwoord gewijzigd voor %s", "If you did not request this, please contact an administrator." : "Als je dat niet aanvroeg, neem dan contact op met een beheerder.", - "%1$s changed your email address on %2$s." : "%1$s wijzigde je e-mailadres op %2$s.", "Your email address on %s was changed." : "Je e-mailadres op %sis gewijzigd.", "Your email address on %s was changed by an administrator." : "Je e-mailadres op %s is gewijzigd door een beheerder.", "Email address for %1$s changed on %2$s" : "E-mailadres voor %1$sgewijzigd op %2$s", @@ -105,10 +104,8 @@ OC.L10N.register( "Strong password" : "Sterk wachtwoord", "An error occured while changing your language. Please reload the page and try again." : "Er trad een fout op bij het aanpassen van de taal. Ververs de pagina en probeer het opnieuw.", "Select a profile picture" : "Kies een profielafbeelding", - "Week starts on {fdow}" : "Week begint op {fdow}", "Groups" : "Groepen", "Official" : "Officieel", - "No results" : "Geen resultaten", "Visit website" : "Bezoek website", "User documentation" : "Gebruikersdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", @@ -118,7 +115,6 @@ OC.L10N.register( "Enable" : "Inschakelen", "The app will be downloaded from the app store" : "De app zal worden gedownload van de app store", "Settings" : "Instellingen", - "Delete user" : "Verwijder gebruiker", "Email" : "E-mailadres", "Group admin for" : "Groepsbeheerder voor", "Language" : "Taal", @@ -141,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Geldig tot %s", "Import root certificate" : "Importeren root certificaat", "Administrator documentation" : "Beheerdersdocumentatie", - "Online documentation" : "Online documentatie", "Forum" : "Forum", - "Getting help" : "Hulp krijgen", - "Commercial support" : "Commerciële ondersteuning", "None" : "Geen", "Login" : "Login", "Plain" : "Gewoon", @@ -280,6 +273,7 @@ OC.L10N.register( "Invalid user" : "Ongeldige gebruiker", "Unable to change mail address" : "Kan het e-mailadres niet wijzigen", "Email saved" : "E-mail opgeslagen", + "%1$s changed your email address on %2$s." : "%1$s wijzigde je e-mailadres op %2$s.", "Password confirmation is required" : "Wachtwoordbevestiging vereist", "Are you really sure you want add {domain} as trusted domain?" : "Weet je zeker dat je {domain} als vertrouwd domein toe wilt voegen?", "Add trusted domain" : "Vertrouwd domein toevoegen", @@ -372,6 +366,9 @@ OC.L10N.register( "Hide description …" : "Verberg beschrijving ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", + "Online documentation" : "Online documentatie", + "Getting help" : "Hulp krijgen", + "Commercial support" : "Commerciële ondersteuning", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Je gebruikt <strong>%s</strong> van <strong>%s</strong>", "You are member of the following groups:" : "Je bent lid van de volgende groepen:", "Get the apps to sync your files" : "Download de apps om bestanden te synchroniseren", diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json index 42c71a3bb97..16913c73cf2 100644 --- a/settings/l10n/nl.json +++ b/settings/l10n/nl.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Wachtwoord voor %1$s gewijzigd op %2$s", "Password changed for %s" : "Wachtwoord gewijzigd voor %s", "If you did not request this, please contact an administrator." : "Als je dat niet aanvroeg, neem dan contact op met een beheerder.", - "%1$s changed your email address on %2$s." : "%1$s wijzigde je e-mailadres op %2$s.", "Your email address on %s was changed." : "Je e-mailadres op %sis gewijzigd.", "Your email address on %s was changed by an administrator." : "Je e-mailadres op %s is gewijzigd door een beheerder.", "Email address for %1$s changed on %2$s" : "E-mailadres voor %1$sgewijzigd op %2$s", @@ -103,10 +102,8 @@ "Strong password" : "Sterk wachtwoord", "An error occured while changing your language. Please reload the page and try again." : "Er trad een fout op bij het aanpassen van de taal. Ververs de pagina en probeer het opnieuw.", "Select a profile picture" : "Kies een profielafbeelding", - "Week starts on {fdow}" : "Week begint op {fdow}", "Groups" : "Groepen", "Official" : "Officieel", - "No results" : "Geen resultaten", "Visit website" : "Bezoek website", "User documentation" : "Gebruikersdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", @@ -116,7 +113,6 @@ "Enable" : "Inschakelen", "The app will be downloaded from the app store" : "De app zal worden gedownload van de app store", "Settings" : "Instellingen", - "Delete user" : "Verwijder gebruiker", "Email" : "E-mailadres", "Group admin for" : "Groepsbeheerder voor", "Language" : "Taal", @@ -139,10 +135,7 @@ "Valid until %s" : "Geldig tot %s", "Import root certificate" : "Importeren root certificaat", "Administrator documentation" : "Beheerdersdocumentatie", - "Online documentation" : "Online documentatie", "Forum" : "Forum", - "Getting help" : "Hulp krijgen", - "Commercial support" : "Commerciële ondersteuning", "None" : "Geen", "Login" : "Login", "Plain" : "Gewoon", @@ -278,6 +271,7 @@ "Invalid user" : "Ongeldige gebruiker", "Unable to change mail address" : "Kan het e-mailadres niet wijzigen", "Email saved" : "E-mail opgeslagen", + "%1$s changed your email address on %2$s." : "%1$s wijzigde je e-mailadres op %2$s.", "Password confirmation is required" : "Wachtwoordbevestiging vereist", "Are you really sure you want add {domain} as trusted domain?" : "Weet je zeker dat je {domain} als vertrouwd domein toe wilt voegen?", "Add trusted domain" : "Vertrouwd domein toevoegen", @@ -370,6 +364,9 @@ "Hide description …" : "Verberg beschrijving ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", + "Online documentation" : "Online documentatie", + "Getting help" : "Hulp krijgen", + "Commercial support" : "Commerciële ondersteuning", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Je gebruikt <strong>%s</strong> van <strong>%s</strong>", "You are member of the following groups:" : "Je bent lid van de volgende groepen:", "Get the apps to sync your files" : "Download de apps om bestanden te synchroniseren", diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js index bf452526477..64a4fe145f4 100644 --- a/settings/l10n/pl.js +++ b/settings/l10n/pl.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Hasło dla %1$s zostało zmienione w %2$s", "Password changed for %s" : "Hsło zmieniono dla %s", "If you did not request this, please contact an administrator." : "Jeśli o to nie prosiłeś skontaktuj się proszę z administratorem", - "%1$s changed your email address on %2$s." : "%1$s zmienił/-a Twój adres e-mail w %2$s.", "Your email address on %s was changed." : "Twój adres e-mail dla %s został zmieniony.", "Your email address on %s was changed by an administrator." : "Twój adres e-mail dla %s został zmieniony przez administratora.", "Email address for %1$s changed on %2$s" : "Adres e-mail dla %1$s zmieniono w %2$s", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Ważny do %s", "Import root certificate" : "Importuj główny certyfikat", "Administrator documentation" : "Dokumentacja administratora", - "Online documentation" : "Dokumentacja Online", "Forum" : "Forum", - "Getting help" : "Otrzymać pomoc", - "Commercial support" : "Wsparcie komercyjne", "None" : "Nic", "Login" : "Login", "Plain" : "Czysty tekst", @@ -277,6 +273,7 @@ OC.L10N.register( "Invalid user" : "Nieprawidłowy użytkownik", "Unable to change mail address" : "Nie można zmienić adresu email", "Email saved" : "E-mail zapisany", + "%1$s changed your email address on %2$s." : "%1$s zmienił/-a Twój adres e-mail w %2$s.", "Password confirmation is required" : "Wymagane jest potwierdzenie hasła", "Are you really sure you want add {domain} as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?", "Add trusted domain" : "Dodaj zaufaną domenę", @@ -369,6 +366,9 @@ OC.L10N.register( "Hide description …" : "Ukryj opis…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "Enable only for specific groups" : "Włącz tylko dla określonych grup", + "Online documentation" : "Dokumentacja Online", + "Getting help" : "Otrzymać pomoc", + "Commercial support" : "Wsparcie komercyjne", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Używasz <strong>%s</strong> z <strong>%s</strong>", "You are member of the following groups:" : "Należysz do następujących grup:", "Get the apps to sync your files" : "Pobierz aplikacje aby zsynchronizować swoje pliki", diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json index 0147f17998b..b67496f0124 100644 --- a/settings/l10n/pl.json +++ b/settings/l10n/pl.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Hasło dla %1$s zostało zmienione w %2$s", "Password changed for %s" : "Hsło zmieniono dla %s", "If you did not request this, please contact an administrator." : "Jeśli o to nie prosiłeś skontaktuj się proszę z administratorem", - "%1$s changed your email address on %2$s." : "%1$s zmienił/-a Twój adres e-mail w %2$s.", "Your email address on %s was changed." : "Twój adres e-mail dla %s został zmieniony.", "Your email address on %s was changed by an administrator." : "Twój adres e-mail dla %s został zmieniony przez administratora.", "Email address for %1$s changed on %2$s" : "Adres e-mail dla %1$s zmieniono w %2$s", @@ -136,10 +135,7 @@ "Valid until %s" : "Ważny do %s", "Import root certificate" : "Importuj główny certyfikat", "Administrator documentation" : "Dokumentacja administratora", - "Online documentation" : "Dokumentacja Online", "Forum" : "Forum", - "Getting help" : "Otrzymać pomoc", - "Commercial support" : "Wsparcie komercyjne", "None" : "Nic", "Login" : "Login", "Plain" : "Czysty tekst", @@ -275,6 +271,7 @@ "Invalid user" : "Nieprawidłowy użytkownik", "Unable to change mail address" : "Nie można zmienić adresu email", "Email saved" : "E-mail zapisany", + "%1$s changed your email address on %2$s." : "%1$s zmienił/-a Twój adres e-mail w %2$s.", "Password confirmation is required" : "Wymagane jest potwierdzenie hasła", "Are you really sure you want add {domain} as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?", "Add trusted domain" : "Dodaj zaufaną domenę", @@ -367,6 +364,9 @@ "Hide description …" : "Ukryj opis…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "Enable only for specific groups" : "Włącz tylko dla określonych grup", + "Online documentation" : "Dokumentacja Online", + "Getting help" : "Otrzymać pomoc", + "Commercial support" : "Wsparcie komercyjne", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Używasz <strong>%s</strong> z <strong>%s</strong>", "You are member of the following groups:" : "Należysz do następujących grup:", "Get the apps to sync your files" : "Pobierz aplikacje aby zsynchronizować swoje pliki", diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js index 9bb1b729130..6f22762bc46 100644 --- a/settings/l10n/pt_BR.js +++ b/settings/l10n/pt_BR.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Senha para %1$s alterada em %2$s", "Password changed for %s" : "Senha alterada para %s", "If you did not request this, please contact an administrator." : "Se você não solicitou isso, por favor contacte o administrador.", - "%1$s changed your email address on %2$s." : "%1$s alterou seu e-mail em %2$s.", "Your email address on %s was changed." : "Seu e-mail em %s foi alterado.", "Your email address on %s was changed by an administrator." : "Seu e-mail em %s foi alterado por um administrador.", "Email address for %1$s changed on %2$s" : "O endereço de e-mail para %1$s foi alterado em %2$s", @@ -105,9 +104,9 @@ OC.L10N.register( "Good password" : "Boa senha", "Strong password" : "Senha forte", "An error occured while changing your language. Please reload the page and try again." : "Um erro ocorreu ao mudar o idioma. Por favor atualize a página e tente novamente.", - "An error occured while changing your locale. Please reload the page and try again." : "Ocorreu um erro ao alterar sua localidade. Por favor, recarregue a página e tente novamente.", + "An error occured while changing your locale. Please reload the page and try again." : "Ocorreu um erro ao alterar sua localidade. Recarregue a página e tente novamente.", "Select a profile picture" : "Selecione uma imagem para o perfil", - "Week starts on {fdow}" : "Início da semana: {fdow}", + "Week starts on {fdow}" : "A semana começa em {fdow}", "Groups" : "Grupos", "Group list is empty" : "A lista de grupos está vazia", "Unable to retrieve the group list" : "Não é possível recuperar a lista de grupos", @@ -127,8 +126,8 @@ OC.L10N.register( "Settings" : "Configurações", "You do not have permissions to see the details of this user" : "Você não tem permissão para ver os detalhes deste usuário", "Delete user" : "Excluir usuário", - "Disable user" : "Desabilitar usuário", - "Enable user" : "Habilitar usuário", + "Disable user" : "Desativar usuário", + "Enable user" : "Ativar usuário", "Resend welcome email" : "Reenviar e-mail de boas-vindas", "Welcome mail sent!" : "E-mail de boas-vindas enviado!", "Display name" : "Mostrar nome", @@ -139,9 +138,9 @@ OC.L10N.register( "Unlimited" : "Ilimitado", "Default quota" : "Cota padrão", "Default language" : "Idioma padrão", - "Password change is disabled because the master key is disabled" : "A mudança de senha está desativada porque a chave mestra está desativada", + "Password change is disabled because the master key is disabled" : "A alteração de senha está desativada porque a chave mestra está desativada", "Common languages" : "Idiomas comuns", - "All languages" : "Todas os idiomas", + "All languages" : "Todos os idiomas", "You did not enter the password in time" : "Você não entrou com a senha a tempo", "An error occured during the request. Unable to proceed." : "Ocorreu um erro durante a requisição. Impossível continuar.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi ativado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", @@ -152,12 +151,12 @@ OC.L10N.register( "Disabled apps" : "Aplicativos desabilitados", "Updates" : "Atualizações", "App bundles" : "Pacotes de aplicativos", - "Default quota :" : "Quota padrão :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Você vai remover o grupo {group}. Os usuários NÃO serão excluídos.", + "Default quota :" : "Cota padrão:", + "You are about to remove the group {group}. The users will NOT be deleted." : "Você está prestes a excluir o grupo {group}. Os usuários NÃO serão excluídos.", "Please confirm the group removal " : "Confirme a remoção do grupo", - "Remove group" : "Remover grupo", + "Remove group" : "Excluir grupo", "Admins" : "Administradores", - "Disabled users" : "Usuários desativados", + "Disabled users" : "Desativar usuários", "Everyone" : "Para todos", "New user" : "Novo usuário", "SSL Root Certificates" : "Certificados Raiz SSL", @@ -167,10 +166,8 @@ OC.L10N.register( "Valid until %s" : "Válido até %s", "Import root certificate" : "Importar certificado raiz", "Administrator documentation" : "Documentação do administrador", - "Online documentation" : "Documentação online", + "Documentation" : "Documentação", "Forum" : "Fórum", - "Getting help" : "Conseguindo ajuda", - "Commercial support" : "Suporte comercial", "None" : "Nada", "Login" : "Login", "Plain" : "Plano", @@ -316,6 +313,7 @@ OC.L10N.register( "Invalid user" : "Usuário inválido", "Unable to change mail address" : "Não foi possível alterar o endereço de e-mail", "Email saved" : "E-mail salvo", + "%1$s changed your email address on %2$s." : "%1$s alterou seu e-mail em %2$s.", "Password confirmation is required" : "A confirmação da senha é necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem certeza que deseja adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável", @@ -408,6 +406,9 @@ OC.L10N.register( "Hide description …" : "Ocultar descrição...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "Enable only for specific groups" : "Ativar apenas para grupos específicos", + "Online documentation" : "Documentação online", + "Getting help" : "Conseguindo ajuda", + "Commercial support" : "Suporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Você está usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Você é membro dos seguintes grupos:", "Get the apps to sync your files" : "Obtenha os aplicativos para sincronizar seus arquivos", diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json index 5a8873a9d34..82b3e89e1ec 100644 --- a/settings/l10n/pt_BR.json +++ b/settings/l10n/pt_BR.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Senha para %1$s alterada em %2$s", "Password changed for %s" : "Senha alterada para %s", "If you did not request this, please contact an administrator." : "Se você não solicitou isso, por favor contacte o administrador.", - "%1$s changed your email address on %2$s." : "%1$s alterou seu e-mail em %2$s.", "Your email address on %s was changed." : "Seu e-mail em %s foi alterado.", "Your email address on %s was changed by an administrator." : "Seu e-mail em %s foi alterado por um administrador.", "Email address for %1$s changed on %2$s" : "O endereço de e-mail para %1$s foi alterado em %2$s", @@ -103,9 +102,9 @@ "Good password" : "Boa senha", "Strong password" : "Senha forte", "An error occured while changing your language. Please reload the page and try again." : "Um erro ocorreu ao mudar o idioma. Por favor atualize a página e tente novamente.", - "An error occured while changing your locale. Please reload the page and try again." : "Ocorreu um erro ao alterar sua localidade. Por favor, recarregue a página e tente novamente.", + "An error occured while changing your locale. Please reload the page and try again." : "Ocorreu um erro ao alterar sua localidade. Recarregue a página e tente novamente.", "Select a profile picture" : "Selecione uma imagem para o perfil", - "Week starts on {fdow}" : "Início da semana: {fdow}", + "Week starts on {fdow}" : "A semana começa em {fdow}", "Groups" : "Grupos", "Group list is empty" : "A lista de grupos está vazia", "Unable to retrieve the group list" : "Não é possível recuperar a lista de grupos", @@ -125,8 +124,8 @@ "Settings" : "Configurações", "You do not have permissions to see the details of this user" : "Você não tem permissão para ver os detalhes deste usuário", "Delete user" : "Excluir usuário", - "Disable user" : "Desabilitar usuário", - "Enable user" : "Habilitar usuário", + "Disable user" : "Desativar usuário", + "Enable user" : "Ativar usuário", "Resend welcome email" : "Reenviar e-mail de boas-vindas", "Welcome mail sent!" : "E-mail de boas-vindas enviado!", "Display name" : "Mostrar nome", @@ -137,9 +136,9 @@ "Unlimited" : "Ilimitado", "Default quota" : "Cota padrão", "Default language" : "Idioma padrão", - "Password change is disabled because the master key is disabled" : "A mudança de senha está desativada porque a chave mestra está desativada", + "Password change is disabled because the master key is disabled" : "A alteração de senha está desativada porque a chave mestra está desativada", "Common languages" : "Idiomas comuns", - "All languages" : "Todas os idiomas", + "All languages" : "Todos os idiomas", "You did not enter the password in time" : "Você não entrou com a senha a tempo", "An error occured during the request. Unable to proceed." : "Ocorreu um erro durante a requisição. Impossível continuar.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi ativado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", @@ -150,12 +149,12 @@ "Disabled apps" : "Aplicativos desabilitados", "Updates" : "Atualizações", "App bundles" : "Pacotes de aplicativos", - "Default quota :" : "Quota padrão :", - "You are about to remove the group {group}. The users will NOT be deleted." : "Você vai remover o grupo {group}. Os usuários NÃO serão excluídos.", + "Default quota :" : "Cota padrão:", + "You are about to remove the group {group}. The users will NOT be deleted." : "Você está prestes a excluir o grupo {group}. Os usuários NÃO serão excluídos.", "Please confirm the group removal " : "Confirme a remoção do grupo", - "Remove group" : "Remover grupo", + "Remove group" : "Excluir grupo", "Admins" : "Administradores", - "Disabled users" : "Usuários desativados", + "Disabled users" : "Desativar usuários", "Everyone" : "Para todos", "New user" : "Novo usuário", "SSL Root Certificates" : "Certificados Raiz SSL", @@ -165,10 +164,8 @@ "Valid until %s" : "Válido até %s", "Import root certificate" : "Importar certificado raiz", "Administrator documentation" : "Documentação do administrador", - "Online documentation" : "Documentação online", + "Documentation" : "Documentação", "Forum" : "Fórum", - "Getting help" : "Conseguindo ajuda", - "Commercial support" : "Suporte comercial", "None" : "Nada", "Login" : "Login", "Plain" : "Plano", @@ -314,6 +311,7 @@ "Invalid user" : "Usuário inválido", "Unable to change mail address" : "Não foi possível alterar o endereço de e-mail", "Email saved" : "E-mail salvo", + "%1$s changed your email address on %2$s." : "%1$s alterou seu e-mail em %2$s.", "Password confirmation is required" : "A confirmação da senha é necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem certeza que deseja adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável", @@ -406,6 +404,9 @@ "Hide description …" : "Ocultar descrição...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "Enable only for specific groups" : "Ativar apenas para grupos específicos", + "Online documentation" : "Documentação online", + "Getting help" : "Conseguindo ajuda", + "Commercial support" : "Suporte comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Você está usando <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Você é membro dos seguintes grupos:", "Get the apps to sync your files" : "Obtenha os aplicativos para sincronizar seus arquivos", diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js index 28d18997f22..f19940bc16a 100644 --- a/settings/l10n/pt_PT.js +++ b/settings/l10n/pt_PT.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "A senha para %1$s foi modificada em %2$s", "Password changed for %s" : "Senha modificada para %s", "If you did not request this, please contact an administrator." : "Se não requereu isto por favor contacte um administrador.", - "%1$s changed your email address on %2$s." : "%1$s modificou o seu endereço de email em %2$s.", "Your email address on %s was changed." : "O endereço de e-mail me %s foi modificado.", "Your email address on %s was changed by an administrator." : "O seu endereço de email em %s foi modificado por um administrador.", "Email address for %1$s changed on %2$s" : "Endereço de e-mail para %1$s modificado em %2$s", @@ -114,7 +113,7 @@ OC.L10N.register( "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", "Enable all" : "Ativar todas", "Enable" : "Ativar", - "The app will be downloaded from the app store" : "A aplicação será descarregada da loja de aplicações", + "The app will be downloaded from the app store" : "A aplicação será transferida da loja de aplicações", "Settings" : "Definições", "Email" : "Email", "Group admin for" : "Administrador de grupo para", @@ -138,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Válido até %s", "Import root certificate" : "Importar certificado root", "Administrator documentation" : "Documentação de Administrador.", - "Online documentation" : "Documentação Online", "Forum" : "Fórum", - "Getting help" : "Obtendo ajuda", - "Commercial support" : "Suporte Comercial", "None" : "Nenhum", "Login" : "Iniciar Sessão", "Plain" : "Plano", @@ -274,6 +270,7 @@ OC.L10N.register( "Invalid user" : "Utilizador inválido", "Unable to change mail address" : "Não foi possível alterar o seu endereço de e-mail", "Email saved" : "E-mail guardado", + "%1$s changed your email address on %2$s." : "%1$s modificou o seu endereço de email em %2$s.", "Password confirmation is required" : "Confirmação de senha necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem a certeza que pretende adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável ", @@ -356,6 +353,9 @@ OC.L10N.register( "Hide description …" : "Esconder descrição ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "Enable only for specific groups" : "Activar só para grupos específicos", + "Online documentation" : "Documentação Online", + "Getting help" : "Obtendo ajuda", + "Commercial support" : "Suporte Comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Está a usar <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Você é membro dos seguintes grupos:", "Get the apps to sync your files" : "Tenha as aplicações a sincronizar os seus ficheiros", diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json index 4a66992f7d8..149bd7d55ac 100644 --- a/settings/l10n/pt_PT.json +++ b/settings/l10n/pt_PT.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "A senha para %1$s foi modificada em %2$s", "Password changed for %s" : "Senha modificada para %s", "If you did not request this, please contact an administrator." : "Se não requereu isto por favor contacte um administrador.", - "%1$s changed your email address on %2$s." : "%1$s modificou o seu endereço de email em %2$s.", "Your email address on %s was changed." : "O endereço de e-mail me %s foi modificado.", "Your email address on %s was changed by an administrator." : "O seu endereço de email em %s foi modificado por um administrador.", "Email address for %1$s changed on %2$s" : "Endereço de e-mail para %1$s modificado em %2$s", @@ -112,7 +111,7 @@ "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", "Enable all" : "Ativar todas", "Enable" : "Ativar", - "The app will be downloaded from the app store" : "A aplicação será descarregada da loja de aplicações", + "The app will be downloaded from the app store" : "A aplicação será transferida da loja de aplicações", "Settings" : "Definições", "Email" : "Email", "Group admin for" : "Administrador de grupo para", @@ -136,10 +135,7 @@ "Valid until %s" : "Válido até %s", "Import root certificate" : "Importar certificado root", "Administrator documentation" : "Documentação de Administrador.", - "Online documentation" : "Documentação Online", "Forum" : "Fórum", - "Getting help" : "Obtendo ajuda", - "Commercial support" : "Suporte Comercial", "None" : "Nenhum", "Login" : "Iniciar Sessão", "Plain" : "Plano", @@ -272,6 +268,7 @@ "Invalid user" : "Utilizador inválido", "Unable to change mail address" : "Não foi possível alterar o seu endereço de e-mail", "Email saved" : "E-mail guardado", + "%1$s changed your email address on %2$s." : "%1$s modificou o seu endereço de email em %2$s.", "Password confirmation is required" : "Confirmação de senha necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem a certeza que pretende adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável ", @@ -354,6 +351,9 @@ "Hide description …" : "Esconder descrição ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "Enable only for specific groups" : "Activar só para grupos específicos", + "Online documentation" : "Documentação Online", + "Getting help" : "Obtendo ajuda", + "Commercial support" : "Suporte Comercial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Está a usar <strong>%s</strong> de <strong>%s</strong>", "You are member of the following groups:" : "Você é membro dos seguintes grupos:", "Get the apps to sync your files" : "Tenha as aplicações a sincronizar os seus ficheiros", diff --git a/settings/l10n/ro.js b/settings/l10n/ro.js index d99885e76a6..d00fc3c50d7 100644 --- a/settings/l10n/ro.js +++ b/settings/l10n/ro.js @@ -79,9 +79,7 @@ OC.L10N.register( "Valid until %s" : "Valabil până la %s", "Import root certificate" : "Importă certificat rădăcină", "Administrator documentation" : "Documentație pentru administrare", - "Online documentation" : "Documentație online", "Forum" : "Forum", - "Commercial support" : "Suport comercial", "None" : "Niciuna", "Login" : "Autentificare", "Plain" : "Plain", @@ -205,6 +203,8 @@ OC.L10N.register( "Show description …" : "Arată descriere ...", "Hide description …" : "Ascunde descriere ...", "Enable only for specific groups" : "Activează doar pentru grupuri specifice", + "Online documentation" : "Documentație online", + "Commercial support" : "Suport comercial", "E-Mail" : "Email", "Create" : "Crează", "Admin Recovery Password" : "Parolă de recuperare a Administratorului", diff --git a/settings/l10n/ro.json b/settings/l10n/ro.json index 91b7d514e93..586599279c8 100644 --- a/settings/l10n/ro.json +++ b/settings/l10n/ro.json @@ -77,9 +77,7 @@ "Valid until %s" : "Valabil până la %s", "Import root certificate" : "Importă certificat rădăcină", "Administrator documentation" : "Documentație pentru administrare", - "Online documentation" : "Documentație online", "Forum" : "Forum", - "Commercial support" : "Suport comercial", "None" : "Niciuna", "Login" : "Autentificare", "Plain" : "Plain", @@ -203,6 +201,8 @@ "Show description …" : "Arată descriere ...", "Hide description …" : "Ascunde descriere ...", "Enable only for specific groups" : "Activează doar pentru grupuri specifice", + "Online documentation" : "Documentație online", + "Commercial support" : "Suport comercial", "E-Mail" : "Email", "Create" : "Crează", "Admin Recovery Password" : "Parolă de recuperare a Administratorului", diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js index 8d7d6947d0c..801189cfedf 100644 --- a/settings/l10n/ru.js +++ b/settings/l10n/ru.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Пароль %1$s изменен на сервере %2$s", "Password changed for %s" : "Пароль изменён для %s", "If you did not request this, please contact an administrator." : "В случае, если вы не запрашивали это действие, свяжитесь с администратором.", - "%1$s changed your email address on %2$s." : "%1$s изменил(а) Ваш адрес электронной почты на сервере %2$s.", "Your email address on %s was changed." : "На сервере %s был изменён адрес электронной почты Вашей учётной записи.", "Your email address on %s was changed by an administrator." : "Ваш адрес электронной почты на сервере %s был изменён администратором.", "Email address for %1$s changed on %2$s" : "Адрес электронной почты %1$s изменён на %2$s", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "Задайте свой пароль", "Go to %s" : "Перейти к %s", "Install Client" : "Установить программу-клиент", - "Logged in user must be a subadmin" : "Вошедший в систему пользователь должен обладать правами суб-администратора", "Migration in progress. Please wait until the migration is finished" : "Перенос выполняется, дождитесь завершения", "Migration started …" : "Перенос начат…", "Not saved" : "Не сохранено", @@ -105,61 +103,35 @@ OC.L10N.register( "Good password" : "Хороший пароль", "Strong password" : "Надёжный пароль", "An error occured while changing your language. Please reload the page and try again." : "При переключении языка произошла ошибка. Перезагрузите эту страницу и попробуйте ещё раз.", - "An error occured while changing your locale. Please reload the page and try again." : "При переключении языковых настроек произошла ошибка. Перезагрузите эту страницу и попробуйте ещё раз.", "Select a profile picture" : "Выберите аватар", - "Week starts on {fdow}" : "Неделя начинается с {fdow}", "Groups" : "Группы", - "Group list is empty" : "Список групп пуст", - "Unable to retrieve the group list" : "Не удается получить список групп", "Official" : "Официальное", - "No results" : "Нет результатов", "Visit website" : "Посетите веб-сайт", "User documentation" : "Пользовательская документация", "Developer documentation" : "Документация для разработчиков", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "{license}-licensed" : "Лицензия-{license}", - "Disable all" : "Отключить все", "Enable all" : "Включить все", - "Download and enable" : "Скачать и включить", "Enable" : "Включить", "The app will be downloaded from the app store" : "Приложение будет скачано из магазина приложений", "Settings" : "Настройки", - "You do not have permissions to see the details of this user" : "У вас нет прав на просмотр данных об этом пользователе", - "Delete user" : "Удалить пользователя", - "Disable user" : "Отключить пользователя", - "Enable user" : "Включить пользователя", - "Resend welcome email" : "Приветственное письмо еще раз отправлено!", - "Welcome mail sent!" : "Приветственное письмо отправлено!", - "Display name" : "Отображаемое имя", "Email" : "Email", "Group admin for" : "Администратор групп", "Language" : "Язык", "User backend" : "Механизм учёта пользователей", "Unlimited" : "Неограничено", "Default quota" : "Квота по умолчанию", - "Default language" : "Язык по умолчанию", - "Password change is disabled because the master key is disabled" : "Смена пароля отключена, т.к. мастер-ключ отключен", - "Common languages" : "Общие языки", - "All languages" : "Все языки", "You did not enter the password in time" : "Вы не ввели пароль вовремя", "An error occured during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено, но нуждается в обновлении. В течении 5 секунд будет выполнено перенаправление на страницу обновления.", "App update" : "Обновление приложения", "Error: This app can not be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", "Your apps" : "Ваши приложения", - "Active apps" : "Активные приложения", "Disabled apps" : "Отключённые приложения", "Updates" : "Обновления", "App bundles" : "Пакеты приложений", - "Default quota :" : "Квота по умолчанию: ", - "You are about to remove the group {group}. The users will NOT be deleted." : "Вы собираетесь удалить группу {group}. Пользователи НЕ будут удалены.", - "Please confirm the group removal " : "Пожалуйста, подтвердите удаление группы", - "Remove group" : "Удалить группу", "Admins" : "Администраторы", - "Disabled users" : "Отключенные пользователи", "Everyone" : "Все", - "New user" : "Новый пользователь", "SSL Root Certificates" : "Корневые сертификаты SSL", "Common Name" : "Общепринятое имя", "Valid until" : "Дата истечения", @@ -167,10 +139,8 @@ OC.L10N.register( "Valid until %s" : "Действительно до %s", "Import root certificate" : "Импорт корневого сертификата", "Administrator documentation" : "Документация администратора", - "Online documentation" : "Online-документация", + "Documentation" : "Документация", "Forum" : "Форум", - "Getting help" : "Помощь", - "Commercial support" : "Коммерческая поддержка", "None" : "Отсутствует", "Login" : "Логин", "Plain" : "Простой", @@ -316,6 +286,7 @@ OC.L10N.register( "Invalid user" : "Неверный пользователь", "Unable to change mail address" : "Невозможно изменить адрес электронной почты", "Email saved" : "Адрес email сохранен", + "%1$s changed your email address on %2$s." : "%1$s изменил(а) Ваш адрес электронной почты на сервере %2$s.", "Password confirmation is required" : "Требуется подтверждение пароля", "Are you really sure you want add {domain} as trusted domain?" : "Вы действительно хотите добавить домен {domain} как доверенный?", "Add trusted domain" : "Добавить доверенный домен", @@ -408,6 +379,9 @@ OC.L10N.register( "Hide description …" : "Скрыть описание…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "Enable only for specific groups" : "Включить только для определенных групп", + "Online documentation" : "Online-документация", + "Getting help" : "Помощь", + "Commercial support" : "Коммерческая поддержка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Вы используете <strong>%s</strong> из <strong>%s</strong>", "You are member of the following groups:" : "Вы являетесь членом следующих групп:", "Get the apps to sync your files" : "Скачать приложения для синхронизации", diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json index 42c1bb24d05..ef93380d6ed 100644 --- a/settings/l10n/ru.json +++ b/settings/l10n/ru.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Пароль %1$s изменен на сервере %2$s", "Password changed for %s" : "Пароль изменён для %s", "If you did not request this, please contact an administrator." : "В случае, если вы не запрашивали это действие, свяжитесь с администратором.", - "%1$s changed your email address on %2$s." : "%1$s изменил(а) Ваш адрес электронной почты на сервере %2$s.", "Your email address on %s was changed." : "На сервере %s был изменён адрес электронной почты Вашей учётной записи.", "Your email address on %s was changed by an administrator." : "Ваш адрес электронной почты на сервере %s был изменён администратором.", "Email address for %1$s changed on %2$s" : "Адрес электронной почты %1$s изменён на %2$s", @@ -55,7 +54,6 @@ "Set your password" : "Задайте свой пароль", "Go to %s" : "Перейти к %s", "Install Client" : "Установить программу-клиент", - "Logged in user must be a subadmin" : "Вошедший в систему пользователь должен обладать правами суб-администратора", "Migration in progress. Please wait until the migration is finished" : "Перенос выполняется, дождитесь завершения", "Migration started …" : "Перенос начат…", "Not saved" : "Не сохранено", @@ -103,61 +101,35 @@ "Good password" : "Хороший пароль", "Strong password" : "Надёжный пароль", "An error occured while changing your language. Please reload the page and try again." : "При переключении языка произошла ошибка. Перезагрузите эту страницу и попробуйте ещё раз.", - "An error occured while changing your locale. Please reload the page and try again." : "При переключении языковых настроек произошла ошибка. Перезагрузите эту страницу и попробуйте ещё раз.", "Select a profile picture" : "Выберите аватар", - "Week starts on {fdow}" : "Неделя начинается с {fdow}", "Groups" : "Группы", - "Group list is empty" : "Список групп пуст", - "Unable to retrieve the group list" : "Не удается получить список групп", "Official" : "Официальное", - "No results" : "Нет результатов", "Visit website" : "Посетите веб-сайт", "User documentation" : "Пользовательская документация", "Developer documentation" : "Документация для разработчиков", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "{license}-licensed" : "Лицензия-{license}", - "Disable all" : "Отключить все", "Enable all" : "Включить все", - "Download and enable" : "Скачать и включить", "Enable" : "Включить", "The app will be downloaded from the app store" : "Приложение будет скачано из магазина приложений", "Settings" : "Настройки", - "You do not have permissions to see the details of this user" : "У вас нет прав на просмотр данных об этом пользователе", - "Delete user" : "Удалить пользователя", - "Disable user" : "Отключить пользователя", - "Enable user" : "Включить пользователя", - "Resend welcome email" : "Приветственное письмо еще раз отправлено!", - "Welcome mail sent!" : "Приветственное письмо отправлено!", - "Display name" : "Отображаемое имя", "Email" : "Email", "Group admin for" : "Администратор групп", "Language" : "Язык", "User backend" : "Механизм учёта пользователей", "Unlimited" : "Неограничено", "Default quota" : "Квота по умолчанию", - "Default language" : "Язык по умолчанию", - "Password change is disabled because the master key is disabled" : "Смена пароля отключена, т.к. мастер-ключ отключен", - "Common languages" : "Общие языки", - "All languages" : "Все языки", "You did not enter the password in time" : "Вы не ввели пароль вовремя", "An error occured during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено, но нуждается в обновлении. В течении 5 секунд будет выполнено перенаправление на страницу обновления.", "App update" : "Обновление приложения", "Error: This app can not be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", "Your apps" : "Ваши приложения", - "Active apps" : "Активные приложения", "Disabled apps" : "Отключённые приложения", "Updates" : "Обновления", "App bundles" : "Пакеты приложений", - "Default quota :" : "Квота по умолчанию: ", - "You are about to remove the group {group}. The users will NOT be deleted." : "Вы собираетесь удалить группу {group}. Пользователи НЕ будут удалены.", - "Please confirm the group removal " : "Пожалуйста, подтвердите удаление группы", - "Remove group" : "Удалить группу", "Admins" : "Администраторы", - "Disabled users" : "Отключенные пользователи", "Everyone" : "Все", - "New user" : "Новый пользователь", "SSL Root Certificates" : "Корневые сертификаты SSL", "Common Name" : "Общепринятое имя", "Valid until" : "Дата истечения", @@ -165,10 +137,8 @@ "Valid until %s" : "Действительно до %s", "Import root certificate" : "Импорт корневого сертификата", "Administrator documentation" : "Документация администратора", - "Online documentation" : "Online-документация", + "Documentation" : "Документация", "Forum" : "Форум", - "Getting help" : "Помощь", - "Commercial support" : "Коммерческая поддержка", "None" : "Отсутствует", "Login" : "Логин", "Plain" : "Простой", @@ -314,6 +284,7 @@ "Invalid user" : "Неверный пользователь", "Unable to change mail address" : "Невозможно изменить адрес электронной почты", "Email saved" : "Адрес email сохранен", + "%1$s changed your email address on %2$s." : "%1$s изменил(а) Ваш адрес электронной почты на сервере %2$s.", "Password confirmation is required" : "Требуется подтверждение пароля", "Are you really sure you want add {domain} as trusted domain?" : "Вы действительно хотите добавить домен {domain} как доверенный?", "Add trusted domain" : "Добавить доверенный домен", @@ -406,6 +377,9 @@ "Hide description …" : "Скрыть описание…", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "Enable only for specific groups" : "Включить только для определенных групп", + "Online documentation" : "Online-документация", + "Getting help" : "Помощь", + "Commercial support" : "Коммерческая поддержка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Вы используете <strong>%s</strong> из <strong>%s</strong>", "You are member of the following groups:" : "Вы являетесь членом следующих групп:", "Get the apps to sync your files" : "Скачать приложения для синхронизации", diff --git a/settings/l10n/sk.js b/settings/l10n/sk.js index 540bfa18f76..aa68588a2a6 100644 --- a/settings/l10n/sk.js +++ b/settings/l10n/sk.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Heslo pre %1$s bolo zmenené na %2$s", "Password changed for %s" : "Heslo zmenené pre %s", "If you did not request this, please contact an administrator." : "Ak ste to nevyžadovali, prosím kontaktujte administrátora.", - "%1$s changed your email address on %2$s." : "%1$s zmenil Vašu emailovú adresu na %2$s.", "Your email address on %s was changed." : "Vaša emailová adresa na %s bola zmenená.", "Your email address on %s was changed by an administrator." : "Vaša emailová adresa na %s bola zmenená administrátorom.", "Email address for %1$s changed on %2$s" : "Emailová adresa pre %1$s zmenená na %2$s", @@ -107,7 +106,6 @@ OC.L10N.register( "Select a profile picture" : "Vybrať avatara", "Groups" : "Skupiny", "Official" : "Oficiálny", - "No results" : "Žiadne výsledky", "Visit website" : "Navštíviť webstránku", "User documentation" : "Príručka používateľa", "Developer documentation" : "Dokumentácia vývojára", @@ -123,7 +121,6 @@ OC.L10N.register( "User backend" : "Backend používateľa", "Unlimited" : "Nelimitované", "Default quota" : "Predvolená kvóta", - "All languages" : "Všetky jazyky", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikácia bola povolená, ale vyžaduje sa aktualizácia. Presmerovanie na stránku aktualizácie o 5 sekúnd.", "App update" : "Aktualizácia aplikácie", "Error: This app can not be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", @@ -133,7 +130,6 @@ OC.L10N.register( "App bundles" : "Aplikačné balíky", "Admins" : "Administrátori", "Everyone" : "Všetci", - "New user" : "Nový používateľ", "SSL Root Certificates" : "Koreňové certifikáty SSL", "Common Name" : "Bežný názov", "Valid until" : "Platný do", @@ -141,10 +137,7 @@ OC.L10N.register( "Valid until %s" : "Platný do %s", "Import root certificate" : "Importovať koreňový certifikát", "Administrator documentation" : "Príručka administrátora", - "Online documentation" : "Online príručka", "Forum" : "Fórum", - "Getting help" : "Získať pomoc", - "Commercial support" : "Komerčná podpora", "None" : "Žiadny", "Login" : "Prihlásenie", "Plain" : "Neformátovaný", @@ -273,6 +266,7 @@ OC.L10N.register( "Invalid user" : "Neplatný používateľ", "Unable to change mail address" : "Nemožno zmeniť emailovú adresu", "Email saved" : "Email uložený", + "%1$s changed your email address on %2$s." : "%1$s zmenil Vašu emailovú adresu na %2$s.", "Password confirmation is required" : "Vyžaduje sa overenie heslom", "Are you really sure you want add {domain} as trusted domain?" : "Ste si istí, že chcete pridať {domain} medzi dôveryhodné domény?", "Add trusted domain" : "Pridať dôveryhodnú doménu", @@ -348,6 +342,9 @@ OC.L10N.register( "Hide description …" : "Skryť popis …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "Enable only for specific groups" : "Povoliť len pre vybrané skupiny", + "Online documentation" : "Online príručka", + "Getting help" : "Získať pomoc", + "Commercial support" : "Komerčná podpora", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Využívate <strong>%s</strong> z <strong>%s</strong>", "You are member of the following groups:" : "Ste členom nasledovných skupín:", "Desktop client" : "Desktopový klient", diff --git a/settings/l10n/sk.json b/settings/l10n/sk.json index 691a2e48e34..c41f5b63758 100644 --- a/settings/l10n/sk.json +++ b/settings/l10n/sk.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Heslo pre %1$s bolo zmenené na %2$s", "Password changed for %s" : "Heslo zmenené pre %s", "If you did not request this, please contact an administrator." : "Ak ste to nevyžadovali, prosím kontaktujte administrátora.", - "%1$s changed your email address on %2$s." : "%1$s zmenil Vašu emailovú adresu na %2$s.", "Your email address on %s was changed." : "Vaša emailová adresa na %s bola zmenená.", "Your email address on %s was changed by an administrator." : "Vaša emailová adresa na %s bola zmenená administrátorom.", "Email address for %1$s changed on %2$s" : "Emailová adresa pre %1$s zmenená na %2$s", @@ -105,7 +104,6 @@ "Select a profile picture" : "Vybrať avatara", "Groups" : "Skupiny", "Official" : "Oficiálny", - "No results" : "Žiadne výsledky", "Visit website" : "Navštíviť webstránku", "User documentation" : "Príručka používateľa", "Developer documentation" : "Dokumentácia vývojára", @@ -121,7 +119,6 @@ "User backend" : "Backend používateľa", "Unlimited" : "Nelimitované", "Default quota" : "Predvolená kvóta", - "All languages" : "Všetky jazyky", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikácia bola povolená, ale vyžaduje sa aktualizácia. Presmerovanie na stránku aktualizácie o 5 sekúnd.", "App update" : "Aktualizácia aplikácie", "Error: This app can not be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", @@ -131,7 +128,6 @@ "App bundles" : "Aplikačné balíky", "Admins" : "Administrátori", "Everyone" : "Všetci", - "New user" : "Nový používateľ", "SSL Root Certificates" : "Koreňové certifikáty SSL", "Common Name" : "Bežný názov", "Valid until" : "Platný do", @@ -139,10 +135,7 @@ "Valid until %s" : "Platný do %s", "Import root certificate" : "Importovať koreňový certifikát", "Administrator documentation" : "Príručka administrátora", - "Online documentation" : "Online príručka", "Forum" : "Fórum", - "Getting help" : "Získať pomoc", - "Commercial support" : "Komerčná podpora", "None" : "Žiadny", "Login" : "Prihlásenie", "Plain" : "Neformátovaný", @@ -271,6 +264,7 @@ "Invalid user" : "Neplatný používateľ", "Unable to change mail address" : "Nemožno zmeniť emailovú adresu", "Email saved" : "Email uložený", + "%1$s changed your email address on %2$s." : "%1$s zmenil Vašu emailovú adresu na %2$s.", "Password confirmation is required" : "Vyžaduje sa overenie heslom", "Are you really sure you want add {domain} as trusted domain?" : "Ste si istí, že chcete pridať {domain} medzi dôveryhodné domény?", "Add trusted domain" : "Pridať dôveryhodnú doménu", @@ -346,6 +340,9 @@ "Hide description …" : "Skryť popis …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "Enable only for specific groups" : "Povoliť len pre vybrané skupiny", + "Online documentation" : "Online príručka", + "Getting help" : "Získať pomoc", + "Commercial support" : "Komerčná podpora", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Využívate <strong>%s</strong> z <strong>%s</strong>", "You are member of the following groups:" : "Ste členom nasledovných skupín:", "Desktop client" : "Desktopový klient", diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js index 0b328ba73b0..b005cc28fbf 100644 --- a/settings/l10n/sl.js +++ b/settings/l10n/sl.js @@ -56,9 +56,7 @@ OC.L10N.register( "Valid until %s" : "Veljavno do %s", "Import root certificate" : "Uvozi korensko potrdilo", "Administrator documentation" : "Skrbniška dokumentacija", - "Online documentation" : "Spletna dokumentacija", "Forum" : "Forum", - "Commercial support" : "Podpora strankam", "None" : "Brez", "Login" : "Prijava", "Plain" : "Besedilno", @@ -181,6 +179,8 @@ OC.L10N.register( "Hide description …" : "Skrij opis ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacija nima določene maksimalne NextCloud verzije. V prihodnosti bo to napaka.", "Enable only for specific groups" : "Omogoči le za posamezne skupine", + "Online documentation" : "Spletna dokumentacija", + "Commercial support" : "Podpora strankam", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Uporabljate <strong>%s</strong> od <strong>%s</strong>", "You are member of the following groups:" : "Ste član naslednjih skupin:", "Show storage location" : "Pokaži mesto shrambe", diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json index fc080f92976..a16918de7e1 100644 --- a/settings/l10n/sl.json +++ b/settings/l10n/sl.json @@ -54,9 +54,7 @@ "Valid until %s" : "Veljavno do %s", "Import root certificate" : "Uvozi korensko potrdilo", "Administrator documentation" : "Skrbniška dokumentacija", - "Online documentation" : "Spletna dokumentacija", "Forum" : "Forum", - "Commercial support" : "Podpora strankam", "None" : "Brez", "Login" : "Prijava", "Plain" : "Besedilno", @@ -179,6 +177,8 @@ "Hide description …" : "Skrij opis ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacija nima določene maksimalne NextCloud verzije. V prihodnosti bo to napaka.", "Enable only for specific groups" : "Omogoči le za posamezne skupine", + "Online documentation" : "Spletna dokumentacija", + "Commercial support" : "Podpora strankam", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Uporabljate <strong>%s</strong> od <strong>%s</strong>", "You are member of the following groups:" : "Ste član naslednjih skupin:", "Show storage location" : "Pokaži mesto shrambe", diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js index 403a79c1929..93c4f0dcd86 100644 --- a/settings/l10n/sq.js +++ b/settings/l10n/sq.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Fjalëkalimi për %1$s ndryshojë në %2$s", "Password changed for %s" : "Fjalëkalimi ndryshojë për %s", "If you did not request this, please contact an administrator." : "Nëse ju nuk e keni kërkuar këtë, ju lutem kontaktoni një administrator.", - "%1$s changed your email address on %2$s." : "%1$s adresa juaj e email-it ndryshoi në %2$s.", "Your email address on %s was changed." : "Adresa e juaj e email-it në %s u ndryshua", "Your email address on %s was changed by an administrator." : "Adresa e juaj e email-it në %s u ndryshua nga një adminstrator.", "Email address for %1$s changed on %2$s" : "Adresa e email-it për %1$s ndryshojë në %2$s", @@ -123,14 +122,10 @@ OC.L10N.register( "Default quota" : "Kuota Parazgjedhje", "Error: This app can not be enabled because it makes the server unstable" : "Gabim: Ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", "Your apps" : "Aplikacionet tuaja ", - "Active apps" : "Aplikacionet aktive", "Disabled apps" : "Aplikacionet pa aftësi ", "App bundles" : "Pako e aplikacionit ", - "Remove group" : "Hiq grupin", "Admins" : "Administratorë", - "Disabled users" : "Përdoruesit të çaktivizuar", "Everyone" : "Kushdo", - "New user" : "Përdorues i ri", "SSL Root Certificates" : "Dëshmi SSL Rrënjë", "Common Name" : "Emër i Rëndomtë", "Valid until" : "E vlefshme deri më", @@ -138,10 +133,7 @@ OC.L10N.register( "Valid until %s" : "E vlefshme deri më %s", "Import root certificate" : "Importoni dëshmi rrënjë", "Administrator documentation" : "Dokumentim për përgjegjës", - "Online documentation" : "Dokumentim në Internet", "Forum" : "Forum", - "Getting help" : "Kërkoni ndihmë", - "Commercial support" : "Asistencë komerciale", "None" : "Asnjë", "Login" : "Hyrje", "Plain" : "E thjeshtë", @@ -275,6 +267,7 @@ OC.L10N.register( "Invalid user" : "Përdorues i pavlefshëm", "Unable to change mail address" : "E pamundur të ndryshojë adresën e email-it", "Email saved" : "Email-i u ruajt", + "%1$s changed your email address on %2$s." : "%1$s adresa juaj e email-it ndryshoi në %2$s.", "Password confirmation is required" : "Kërkohet konfirmimi i fjalëkalimit", "Are you really sure you want add {domain} as trusted domain?" : "Jeni i sigurt se doni ta shtoni {domain} si një domain të besuar?", "Add trusted domain" : "Shtoni përkatësi të besuar", @@ -345,6 +338,9 @@ OC.L10N.register( "Hide description …" : "Fshihe përshkrimin …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "Enable only for specific groups" : "Aktivizoje vetëm për grupe të veçantë", + "Online documentation" : "Dokumentim në Internet", + "Getting help" : "Kërkoni ndihmë", + "Commercial support" : "Asistencë komerciale", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Po përdorni <strong>%s</strong> nga <strong>%s</strong>", "You are member of the following groups:" : "Jeni anëtar i grupeve vijuese:", "Show storage location" : "Shfaq vendndodhje depozite", diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json index e43dceb64b3..54446fdeaa8 100644 --- a/settings/l10n/sq.json +++ b/settings/l10n/sq.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Fjalëkalimi për %1$s ndryshojë në %2$s", "Password changed for %s" : "Fjalëkalimi ndryshojë për %s", "If you did not request this, please contact an administrator." : "Nëse ju nuk e keni kërkuar këtë, ju lutem kontaktoni një administrator.", - "%1$s changed your email address on %2$s." : "%1$s adresa juaj e email-it ndryshoi në %2$s.", "Your email address on %s was changed." : "Adresa e juaj e email-it në %s u ndryshua", "Your email address on %s was changed by an administrator." : "Adresa e juaj e email-it në %s u ndryshua nga një adminstrator.", "Email address for %1$s changed on %2$s" : "Adresa e email-it për %1$s ndryshojë në %2$s", @@ -121,14 +120,10 @@ "Default quota" : "Kuota Parazgjedhje", "Error: This app can not be enabled because it makes the server unstable" : "Gabim: Ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", "Your apps" : "Aplikacionet tuaja ", - "Active apps" : "Aplikacionet aktive", "Disabled apps" : "Aplikacionet pa aftësi ", "App bundles" : "Pako e aplikacionit ", - "Remove group" : "Hiq grupin", "Admins" : "Administratorë", - "Disabled users" : "Përdoruesit të çaktivizuar", "Everyone" : "Kushdo", - "New user" : "Përdorues i ri", "SSL Root Certificates" : "Dëshmi SSL Rrënjë", "Common Name" : "Emër i Rëndomtë", "Valid until" : "E vlefshme deri më", @@ -136,10 +131,7 @@ "Valid until %s" : "E vlefshme deri më %s", "Import root certificate" : "Importoni dëshmi rrënjë", "Administrator documentation" : "Dokumentim për përgjegjës", - "Online documentation" : "Dokumentim në Internet", "Forum" : "Forum", - "Getting help" : "Kërkoni ndihmë", - "Commercial support" : "Asistencë komerciale", "None" : "Asnjë", "Login" : "Hyrje", "Plain" : "E thjeshtë", @@ -273,6 +265,7 @@ "Invalid user" : "Përdorues i pavlefshëm", "Unable to change mail address" : "E pamundur të ndryshojë adresën e email-it", "Email saved" : "Email-i u ruajt", + "%1$s changed your email address on %2$s." : "%1$s adresa juaj e email-it ndryshoi në %2$s.", "Password confirmation is required" : "Kërkohet konfirmimi i fjalëkalimit", "Are you really sure you want add {domain} as trusted domain?" : "Jeni i sigurt se doni ta shtoni {domain} si një domain të besuar?", "Add trusted domain" : "Shtoni përkatësi të besuar", @@ -343,6 +336,9 @@ "Hide description …" : "Fshihe përshkrimin …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "Enable only for specific groups" : "Aktivizoje vetëm për grupe të veçantë", + "Online documentation" : "Dokumentim në Internet", + "Getting help" : "Kërkoni ndihmë", + "Commercial support" : "Asistencë komerciale", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Po përdorni <strong>%s</strong> nga <strong>%s</strong>", "You are member of the following groups:" : "Jeni anëtar i grupeve vijuese:", "Show storage location" : "Shfaq vendndodhje depozite", diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js index 62ecee40d20..7b58d280e2f 100644 --- a/settings/l10n/sr.js +++ b/settings/l10n/sr.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Лозинка за %1$s промењена на %2$s", "Password changed for %s" : "Лозинка на %s промењена.", "If you did not request this, please contact an administrator." : "Ако нисте Ви ово захтевали, контактирајте администратора.", - "%1$s changed your email address on %2$s." : "%1$s је изменио адресу Ваше е-поште на %2$s.", "Your email address on %s was changed." : "Адреса Ваше е-поште на %s је измењена.", "Your email address on %s was changed by an administrator." : "Администратор на %s је изменио адресу Ваше е-поште.", "Email address for %1$s changed on %2$s" : "Адреса е-поште за %1$s промењена на %2$s", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "Поставите лозинку", "Go to %s" : "Иди на %s", "Install Client" : "Инсталирајте клијенте", - "Logged in user must be a subadmin" : "Пријављени корисник мора бити подадминистратор", "Migration in progress. Please wait until the migration is finished" : "Пресељење је у току. Сачекајте док се не заврши", "Migration started …" : "Пресељење покренуто...", "Not saved" : "Несачувано", @@ -105,61 +103,35 @@ OC.L10N.register( "Good password" : "Добра лозинка", "Strong password" : "Јака лозинка", "An error occured while changing your language. Please reload the page and try again." : "Грешка приликом промене језика. Освежите страну и покушајте поново.", - "An error occured while changing your locale. Please reload the page and try again." : "Грешка приликом промене локалитета. Освежите страну и покушајте поново.", "Select a profile picture" : "Изаберите слику профила", - "Week starts on {fdow}" : "Недеља почиње у {fdow}", "Groups" : "Групе", - "Group list is empty" : "Списак група је празан", - "Unable to retrieve the group list" : "Није могуће дохватити списак група", "Official" : "Званичне", - "No results" : "Нема резултата", "Visit website" : "Посети веб сајт", "User documentation" : "Корисничка документација", "Developer documentation" : "Програмерска документација", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "{license}-licensed" : "{license}-лиценцирано", - "Disable all" : "Искључи све", "Enable all" : "Укључи све", - "Download and enable" : "Скини и укључи", "Enable" : "Укључи", "The app will be downloaded from the app store" : "Апликација ће бити скинута са продавнице", "Settings" : "Подешавања", - "You do not have permissions to see the details of this user" : "Немате дозвола да видите детаље овог корисника", - "Delete user" : "Обриши корисника", - "Disable user" : "Искључи корисника", - "Enable user" : "Укључи корисника", - "Resend welcome email" : "Пошаљи е-пошту добродошлице поново", - "Welcome mail sent!" : "Е-пошта добродошлице послата!", - "Display name" : "Приказано име", "Email" : "Е-пошта", "Group admin for" : "Администратор групе за", "Language" : "Језик", "User backend" : "Позадина за кориснике", "Unlimited" : "Неограничено", "Default quota" : "Подразумевана квота", - "Default language" : "Подразумевани језик", - "Password change is disabled because the master key is disabled" : "Промена лозинке је искључена пошто је главни кључ искључен", - "Common languages" : "Уобичајени језици", - "All languages" : "Сви језици", "You did not enter the password in time" : "Нисте унели лозинку на време", "An error occured during the request. Unable to proceed." : "Догодила се грешка за време захтева. Не може се наставити.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Апликација је укључена, али треба да се ажурира. Бићете преусмерени на страну са ажурирањем за 5 секунди.", "App update" : "Ажурирање апликације", "Error: This app can not be enabled because it makes the server unstable" : "Грешка: ова апликација не може да се укључи јер је због ње цео сервер нестабилан", "Your apps" : "Ваше апликације", - "Active apps" : "Активне апликације", "Disabled apps" : "Искључене апликације", "Updates" : "Ажурирања", "App bundles" : "Пакети апликација", - "Default quota :" : "Подразумевана квота:", - "You are about to remove the group {group}. The users will NOT be deleted." : "Управо ћете уклонити групу {group}. Корисници НЕЋЕ бити избрисани.", - "Please confirm the group removal " : "Потврдите уклањање групе", - "Remove group" : "Уклони групу", "Admins" : "Администратори", - "Disabled users" : "Искључени корисници", "Everyone" : "Сви", - "New user" : "Нови корисник", "SSL Root Certificates" : "SSL корени сертификат", "Common Name" : "Уобичајено име", "Valid until" : "Важи до", @@ -167,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "Важи до %s", "Import root certificate" : "Увоз кореног сертификата", "Administrator documentation" : "Администраторска документација", - "Online documentation" : "Документација на мрежи", "Forum" : "Форум", - "Getting help" : "Добијање помоћи", - "Commercial support" : "Комерцијална подршка", "None" : "Ништа", "Login" : "Пријава", "Plain" : "Обичан", @@ -316,6 +285,7 @@ OC.L10N.register( "Invalid user" : "Неисправан корисник", "Unable to change mail address" : "Не могу да изменим адресу е-поште", "Email saved" : "Адреса е-поште сачувана", + "%1$s changed your email address on %2$s." : "%1$s је изменио адресу Ваше е-поште на %2$s.", "Password confirmation is required" : "Потребна је потврда лозинке", "Are you really sure you want add {domain} as trusted domain?" : "Да ли заиста желите да додате {domain} као поуздан домен?", "Add trusted domain" : "Додај поуздан домен", @@ -408,6 +378,9 @@ OC.L10N.register( "Hide description …" : "Сакриј опис …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "Enable only for specific groups" : "Укључи само за одређене групе", + "Online documentation" : "Документација на мрежи", + "Getting help" : "Добијање помоћи", + "Commercial support" : "Комерцијална подршка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Користите <strong>%s</strong> од <strong>%s</strong>.", "You are member of the following groups:" : "Члан сте следећих група:", "Get the apps to sync your files" : "Преузмите апликације за синхронизацију фајлова", diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json index 093e49e1ce3..062c10c2646 100644 --- a/settings/l10n/sr.json +++ b/settings/l10n/sr.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Лозинка за %1$s промењена на %2$s", "Password changed for %s" : "Лозинка на %s промењена.", "If you did not request this, please contact an administrator." : "Ако нисте Ви ово захтевали, контактирајте администратора.", - "%1$s changed your email address on %2$s." : "%1$s је изменио адресу Ваше е-поште на %2$s.", "Your email address on %s was changed." : "Адреса Ваше е-поште на %s је измењена.", "Your email address on %s was changed by an administrator." : "Администратор на %s је изменио адресу Ваше е-поште.", "Email address for %1$s changed on %2$s" : "Адреса е-поште за %1$s промењена на %2$s", @@ -55,7 +54,6 @@ "Set your password" : "Поставите лозинку", "Go to %s" : "Иди на %s", "Install Client" : "Инсталирајте клијенте", - "Logged in user must be a subadmin" : "Пријављени корисник мора бити подадминистратор", "Migration in progress. Please wait until the migration is finished" : "Пресељење је у току. Сачекајте док се не заврши", "Migration started …" : "Пресељење покренуто...", "Not saved" : "Несачувано", @@ -103,61 +101,35 @@ "Good password" : "Добра лозинка", "Strong password" : "Јака лозинка", "An error occured while changing your language. Please reload the page and try again." : "Грешка приликом промене језика. Освежите страну и покушајте поново.", - "An error occured while changing your locale. Please reload the page and try again." : "Грешка приликом промене локалитета. Освежите страну и покушајте поново.", "Select a profile picture" : "Изаберите слику профила", - "Week starts on {fdow}" : "Недеља почиње у {fdow}", "Groups" : "Групе", - "Group list is empty" : "Списак група је празан", - "Unable to retrieve the group list" : "Није могуће дохватити списак група", "Official" : "Званичне", - "No results" : "Нема резултата", "Visit website" : "Посети веб сајт", "User documentation" : "Корисничка документација", "Developer documentation" : "Програмерска документација", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "{license}-licensed" : "{license}-лиценцирано", - "Disable all" : "Искључи све", "Enable all" : "Укључи све", - "Download and enable" : "Скини и укључи", "Enable" : "Укључи", "The app will be downloaded from the app store" : "Апликација ће бити скинута са продавнице", "Settings" : "Подешавања", - "You do not have permissions to see the details of this user" : "Немате дозвола да видите детаље овог корисника", - "Delete user" : "Обриши корисника", - "Disable user" : "Искључи корисника", - "Enable user" : "Укључи корисника", - "Resend welcome email" : "Пошаљи е-пошту добродошлице поново", - "Welcome mail sent!" : "Е-пошта добродошлице послата!", - "Display name" : "Приказано име", "Email" : "Е-пошта", "Group admin for" : "Администратор групе за", "Language" : "Језик", "User backend" : "Позадина за кориснике", "Unlimited" : "Неограничено", "Default quota" : "Подразумевана квота", - "Default language" : "Подразумевани језик", - "Password change is disabled because the master key is disabled" : "Промена лозинке је искључена пошто је главни кључ искључен", - "Common languages" : "Уобичајени језици", - "All languages" : "Сви језици", "You did not enter the password in time" : "Нисте унели лозинку на време", "An error occured during the request. Unable to proceed." : "Догодила се грешка за време захтева. Не може се наставити.", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Апликација је укључена, али треба да се ажурира. Бићете преусмерени на страну са ажурирањем за 5 секунди.", "App update" : "Ажурирање апликације", "Error: This app can not be enabled because it makes the server unstable" : "Грешка: ова апликација не може да се укључи јер је због ње цео сервер нестабилан", "Your apps" : "Ваше апликације", - "Active apps" : "Активне апликације", "Disabled apps" : "Искључене апликације", "Updates" : "Ажурирања", "App bundles" : "Пакети апликација", - "Default quota :" : "Подразумевана квота:", - "You are about to remove the group {group}. The users will NOT be deleted." : "Управо ћете уклонити групу {group}. Корисници НЕЋЕ бити избрисани.", - "Please confirm the group removal " : "Потврдите уклањање групе", - "Remove group" : "Уклони групу", "Admins" : "Администратори", - "Disabled users" : "Искључени корисници", "Everyone" : "Сви", - "New user" : "Нови корисник", "SSL Root Certificates" : "SSL корени сертификат", "Common Name" : "Уобичајено име", "Valid until" : "Важи до", @@ -165,10 +137,7 @@ "Valid until %s" : "Важи до %s", "Import root certificate" : "Увоз кореног сертификата", "Administrator documentation" : "Администраторска документација", - "Online documentation" : "Документација на мрежи", "Forum" : "Форум", - "Getting help" : "Добијање помоћи", - "Commercial support" : "Комерцијална подршка", "None" : "Ништа", "Login" : "Пријава", "Plain" : "Обичан", @@ -314,6 +283,7 @@ "Invalid user" : "Неисправан корисник", "Unable to change mail address" : "Не могу да изменим адресу е-поште", "Email saved" : "Адреса е-поште сачувана", + "%1$s changed your email address on %2$s." : "%1$s је изменио адресу Ваше е-поште на %2$s.", "Password confirmation is required" : "Потребна је потврда лозинке", "Are you really sure you want add {domain} as trusted domain?" : "Да ли заиста желите да додате {domain} као поуздан домен?", "Add trusted domain" : "Додај поуздан домен", @@ -406,6 +376,9 @@ "Hide description …" : "Сакриј опис …", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "Enable only for specific groups" : "Укључи само за одређене групе", + "Online documentation" : "Документација на мрежи", + "Getting help" : "Добијање помоћи", + "Commercial support" : "Комерцијална подршка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Користите <strong>%s</strong> од <strong>%s</strong>.", "You are member of the following groups:" : "Члан сте следећих група:", "Get the apps to sync your files" : "Преузмите апликације за синхронизацију фајлова", diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js index d205523eba9..9c8aecb3254 100644 --- a/settings/l10n/sv.js +++ b/settings/l10n/sv.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "Lösenord för %1$s ändrades %2$s", "Password changed for %s" : "Lösenord ändrat för %s", "If you did not request this, please contact an administrator." : "Om du inte har begärt detta, vänligen kontakta en administratör.", - "%1$s changed your email address on %2$s." : "%1$s ändrade din e-postadress %2$s.", "Your email address on %s was changed." : "Din e-postadress på %s har ändrats.", "Your email address on %s was changed by an administrator." : "Din e-postadress på %s har ändrats av en administratör.", "Email address for %1$s changed on %2$s" : "E-postadressen för %1$s ändrades %2$s", @@ -135,10 +134,7 @@ OC.L10N.register( "Valid until %s" : "Giltigt till %s", "Import root certificate" : "Importera rotcertifikat", "Administrator documentation" : "Administratörsdokumentation", - "Online documentation" : "Online-dokumentation", "Forum" : "Forum", - "Getting help" : "Få hjälp", - "Commercial support" : "Kommersiell support", "None" : "Ingen", "Login" : "Logga in", "Plain" : "Enkel", @@ -272,6 +268,7 @@ OC.L10N.register( "Invalid user" : "Ogiltig användare", "Unable to change mail address" : "Kan inte ändra e-postadress", "Email saved" : "E-post sparad", + "%1$s changed your email address on %2$s." : "%1$s ändrade din e-postadress %2$s.", "Password confirmation is required" : "Lösenordsbekräftelse krävs", "Are you really sure you want add {domain} as trusted domain?" : "Är du verkligen säker att du vill lägga till (domain) som tillförlitlig domän?", "Add trusted domain" : "Lägg till betrodd domän", @@ -342,6 +339,9 @@ OC.L10N.register( "Hide description …" : "Dölj beskrivning", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "Enable only for specific groups" : "Aktivera endast för specifika grupper", + "Online documentation" : "Online-dokumentation", + "Getting help" : "Få hjälp", + "Commercial support" : "Kommersiell support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du använder <strong>%s</strong> av <strong>%s</strong>", "You are member of the following groups:" : "Du är medlem i följande grupper:", "Show storage location" : "Visa lagringsplats", diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json index b3e1a0616d4..be93119bad8 100644 --- a/settings/l10n/sv.json +++ b/settings/l10n/sv.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "Lösenord för %1$s ändrades %2$s", "Password changed for %s" : "Lösenord ändrat för %s", "If you did not request this, please contact an administrator." : "Om du inte har begärt detta, vänligen kontakta en administratör.", - "%1$s changed your email address on %2$s." : "%1$s ändrade din e-postadress %2$s.", "Your email address on %s was changed." : "Din e-postadress på %s har ändrats.", "Your email address on %s was changed by an administrator." : "Din e-postadress på %s har ändrats av en administratör.", "Email address for %1$s changed on %2$s" : "E-postadressen för %1$s ändrades %2$s", @@ -133,10 +132,7 @@ "Valid until %s" : "Giltigt till %s", "Import root certificate" : "Importera rotcertifikat", "Administrator documentation" : "Administratörsdokumentation", - "Online documentation" : "Online-dokumentation", "Forum" : "Forum", - "Getting help" : "Få hjälp", - "Commercial support" : "Kommersiell support", "None" : "Ingen", "Login" : "Logga in", "Plain" : "Enkel", @@ -270,6 +266,7 @@ "Invalid user" : "Ogiltig användare", "Unable to change mail address" : "Kan inte ändra e-postadress", "Email saved" : "E-post sparad", + "%1$s changed your email address on %2$s." : "%1$s ändrade din e-postadress %2$s.", "Password confirmation is required" : "Lösenordsbekräftelse krävs", "Are you really sure you want add {domain} as trusted domain?" : "Är du verkligen säker att du vill lägga till (domain) som tillförlitlig domän?", "Add trusted domain" : "Lägg till betrodd domän", @@ -340,6 +337,9 @@ "Hide description …" : "Dölj beskrivning", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "Enable only for specific groups" : "Aktivera endast för specifika grupper", + "Online documentation" : "Online-dokumentation", + "Getting help" : "Få hjälp", + "Commercial support" : "Kommersiell support", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Du använder <strong>%s</strong> av <strong>%s</strong>", "You are member of the following groups:" : "Du är medlem i följande grupper:", "Show storage location" : "Visa lagringsplats", diff --git a/settings/l10n/th.js b/settings/l10n/th.js index 19aa25bd651..0764e9ac386 100644 --- a/settings/l10n/th.js +++ b/settings/l10n/th.js @@ -48,9 +48,7 @@ OC.L10N.register( "Valid until %s" : "ใช้ได้จนถึง %s", "Import root certificate" : "นำเข้าใบรับรองหลัก", "Administrator documentation" : "เอกสารของผู้ดูแลระบบ", - "Online documentation" : "เอกสารออนไลน์", "Forum" : "ฟอรั่ม", - "Commercial support" : "สนับสนุนเชิงพาณิชย์", "None" : "ไม่มี", "Login" : "เข้าสู่ระบบ", "Plain" : "ธรรมดา", @@ -176,6 +174,8 @@ OC.L10N.register( "Show description …" : "แสดงรายละเอียด ...", "Hide description …" : "ซ่อนรายละเอียด ...", "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", + "Online documentation" : "เอกสารออนไลน์", + "Commercial support" : "สนับสนุนเชิงพาณิชย์", "You are using <strong>%s</strong> of <strong>%s</strong>" : "คุณกำลังใช้พื้นที่ <strong>%s</strong> จากทั้งหมด <strong>%s</strong>", "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", diff --git a/settings/l10n/th.json b/settings/l10n/th.json index df4e5ba882f..6af0976bbdf 100644 --- a/settings/l10n/th.json +++ b/settings/l10n/th.json @@ -46,9 +46,7 @@ "Valid until %s" : "ใช้ได้จนถึง %s", "Import root certificate" : "นำเข้าใบรับรองหลัก", "Administrator documentation" : "เอกสารของผู้ดูแลระบบ", - "Online documentation" : "เอกสารออนไลน์", "Forum" : "ฟอรั่ม", - "Commercial support" : "สนับสนุนเชิงพาณิชย์", "None" : "ไม่มี", "Login" : "เข้าสู่ระบบ", "Plain" : "ธรรมดา", @@ -174,6 +172,8 @@ "Show description …" : "แสดงรายละเอียด ...", "Hide description …" : "ซ่อนรายละเอียด ...", "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", + "Online documentation" : "เอกสารออนไลน์", + "Commercial support" : "สนับสนุนเชิงพาณิชย์", "You are using <strong>%s</strong> of <strong>%s</strong>" : "คุณกำลังใช้พื้นที่ <strong>%s</strong> จากทั้งหมด <strong>%s</strong>", "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js index 9c8a2d4bb68..18af761bdb3 100644 --- a/settings/l10n/tr.js +++ b/settings/l10n/tr.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%2$s üzerindeki %1$s parolası değiştirildi", "Password changed for %s" : "%s parolası değiştirildi", "If you did not request this, please contact an administrator." : "Bu işlemi siz başlatmadıysanız lütfen bir yönetici ile görüşün.", - "%1$s changed your email address on %2$s." : "%1$s, %2$s üzerindeki e-posta adresini değiştirdi", "Your email address on %s was changed." : "%s üzerindeki e-posta adresiniz değiştirildi.", "Your email address on %s was changed by an administrator." : "%s üzerindeki e-posta adresiniz bir yönetici tarafından değiştirildi.", "Email address for %1$s changed on %2$s" : "%2$s üzerindeki %1$s e-posta değiştirildi", @@ -140,7 +139,7 @@ OC.L10N.register( "Default quota" : "Varsayılan kota", "Default language" : "Varsayılan dil", "Password change is disabled because the master key is disabled" : "Ana anahtar devre dışı bırakıldığından parola değişikliği devre dışı bırakıldı.", - "Common languages" : "Ortak diller", + "Common languages" : "Sık kullanılan diller", "All languages" : "Tüm diller", "You did not enter the password in time" : "Parolayı zamanında yazmadınız.", "An error occured during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", @@ -167,10 +166,8 @@ OC.L10N.register( "Valid until %s" : "%s tarihine kadar geçerli", "Import root certificate" : "Kök sertifikasını içe aktar", "Administrator documentation" : "Yönetici belgeleri", - "Online documentation" : "Çevrimiçi belgeler", + "Documentation" : "Belgeler", "Forum" : "Forum", - "Getting help" : "Yardım alın", - "Commercial support" : "Ticari destek", "None" : "Yok", "Login" : "Oturum Açın", "Plain" : "Düz", @@ -316,6 +313,7 @@ OC.L10N.register( "Invalid user" : "Kullanıcı geçersiz", "Unable to change mail address" : "Posta adresi değiştirilemedi", "Email saved" : "E-posta kaydedildi", + "%1$s changed your email address on %2$s." : "%1$s, %2$s üzerindeki e-posta adresini değiştirdi", "Password confirmation is required" : "Parola onayının yazılması zorunludur", "Are you really sure you want add {domain} as trusted domain?" : "{domain} etki alanını güvenilir etki alanı olarak eklemek istediğinize emin misiniz?", "Add trusted domain" : "Güvenilir etki alanı ekle", @@ -408,6 +406,9 @@ OC.L10N.register( "Hide description …" : "Açıklama gizlensin ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "Enable only for specific groups" : "Yalnız belirli gruplar için etkinleştir", + "Online documentation" : "Çevrimiçi belgeler", + "Getting help" : "Yardım alın", + "Commercial support" : "Ticari destek", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Kullandığınız alan: <strong>%s</strong>. Kullanabileceğiniz alan: <strong>%s</strong>", "You are member of the following groups:" : "Şu gruplara üyesiniz:", "Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin", diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json index f6bf534253c..1d2ea3ad3e5 100644 --- a/settings/l10n/tr.json +++ b/settings/l10n/tr.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "%2$s üzerindeki %1$s parolası değiştirildi", "Password changed for %s" : "%s parolası değiştirildi", "If you did not request this, please contact an administrator." : "Bu işlemi siz başlatmadıysanız lütfen bir yönetici ile görüşün.", - "%1$s changed your email address on %2$s." : "%1$s, %2$s üzerindeki e-posta adresini değiştirdi", "Your email address on %s was changed." : "%s üzerindeki e-posta adresiniz değiştirildi.", "Your email address on %s was changed by an administrator." : "%s üzerindeki e-posta adresiniz bir yönetici tarafından değiştirildi.", "Email address for %1$s changed on %2$s" : "%2$s üzerindeki %1$s e-posta değiştirildi", @@ -138,7 +137,7 @@ "Default quota" : "Varsayılan kota", "Default language" : "Varsayılan dil", "Password change is disabled because the master key is disabled" : "Ana anahtar devre dışı bırakıldığından parola değişikliği devre dışı bırakıldı.", - "Common languages" : "Ortak diller", + "Common languages" : "Sık kullanılan diller", "All languages" : "Tüm diller", "You did not enter the password in time" : "Parolayı zamanında yazmadınız.", "An error occured during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", @@ -165,10 +164,8 @@ "Valid until %s" : "%s tarihine kadar geçerli", "Import root certificate" : "Kök sertifikasını içe aktar", "Administrator documentation" : "Yönetici belgeleri", - "Online documentation" : "Çevrimiçi belgeler", + "Documentation" : "Belgeler", "Forum" : "Forum", - "Getting help" : "Yardım alın", - "Commercial support" : "Ticari destek", "None" : "Yok", "Login" : "Oturum Açın", "Plain" : "Düz", @@ -314,6 +311,7 @@ "Invalid user" : "Kullanıcı geçersiz", "Unable to change mail address" : "Posta adresi değiştirilemedi", "Email saved" : "E-posta kaydedildi", + "%1$s changed your email address on %2$s." : "%1$s, %2$s üzerindeki e-posta adresini değiştirdi", "Password confirmation is required" : "Parola onayının yazılması zorunludur", "Are you really sure you want add {domain} as trusted domain?" : "{domain} etki alanını güvenilir etki alanı olarak eklemek istediğinize emin misiniz?", "Add trusted domain" : "Güvenilir etki alanı ekle", @@ -406,6 +404,9 @@ "Hide description …" : "Açıklama gizlensin ...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "Enable only for specific groups" : "Yalnız belirli gruplar için etkinleştir", + "Online documentation" : "Çevrimiçi belgeler", + "Getting help" : "Yardım alın", + "Commercial support" : "Ticari destek", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Kullandığınız alan: <strong>%s</strong>. Kullanabileceğiniz alan: <strong>%s</strong>", "You are member of the following groups:" : "Şu gruplara üyesiniz:", "Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin", diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js index b7628bbcf86..5937da300f9 100644 --- a/settings/l10n/uk.js +++ b/settings/l10n/uk.js @@ -54,9 +54,7 @@ OC.L10N.register( "Valid until %s" : "Дійсно до %s", "Import root certificate" : "Імпортувати кореневий сертифікат", "Administrator documentation" : "Документація адміністратора", - "Online documentation" : "Документація онлайн", "Forum" : "Форум", - "Commercial support" : "Комерційна підтримка", "None" : "Жоден", "Login" : "Логін", "Plain" : "Звичайний", @@ -168,6 +166,8 @@ OC.L10N.register( "Show description …" : "Показати деталі ...", "Hide description …" : "Сховати деталі ...", "Enable only for specific groups" : "Включити тільки для конкретних груп", + "Online documentation" : "Документація онлайн", + "Commercial support" : "Комерційна підтримка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Ви використовуєте <strong>%s</strong> з <strong>%s</strong>", "You are member of the following groups:" : "Ви є членом наступних груп:", "Show storage location" : "Показати місцезнаходження сховища", diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json index 35c9552a398..ec02f0b619e 100644 --- a/settings/l10n/uk.json +++ b/settings/l10n/uk.json @@ -52,9 +52,7 @@ "Valid until %s" : "Дійсно до %s", "Import root certificate" : "Імпортувати кореневий сертифікат", "Administrator documentation" : "Документація адміністратора", - "Online documentation" : "Документація онлайн", "Forum" : "Форум", - "Commercial support" : "Комерційна підтримка", "None" : "Жоден", "Login" : "Логін", "Plain" : "Звичайний", @@ -166,6 +164,8 @@ "Show description …" : "Показати деталі ...", "Hide description …" : "Сховати деталі ...", "Enable only for specific groups" : "Включити тільки для конкретних груп", + "Online documentation" : "Документація онлайн", + "Commercial support" : "Комерційна підтримка", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Ви використовуєте <strong>%s</strong> з <strong>%s</strong>", "You are member of the following groups:" : "Ви є членом наступних груп:", "Show storage location" : "Показати місцезнаходження сховища", diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js index 5e87e99bc8a..0f3494a3a12 100644 --- a/settings/l10n/zh_CN.js +++ b/settings/l10n/zh_CN.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%2$s %1$s 的密码已更改", "Password changed for %s" : "%s 的密码已更改", "If you did not request this, please contact an administrator." : "如果这不是您发起的请求,请联系管理员。", - "%1$s changed your email address on %2$s." : "你在 %2$s 上的电子邮件地址已被 %1$s 更改。", "Your email address on %s was changed." : "你在%s上的电子邮件地址已更改", "Your email address on %s was changed by an administrator." : "你在%s上的电子邮件地址已被管理员修改", "Email address for %1$s changed on %2$s" : "%2$s 上 %1$s 的电子邮件地址已更改", @@ -57,7 +56,6 @@ OC.L10N.register( "Set your password" : "设置你的密码", "Go to %s" : "访问 %s", "Install Client" : "安装客户端", - "Logged in user must be a subadmin" : "已登录的用户必须为子管理员", "Migration in progress. Please wait until the migration is finished" : "正在进行迁移. 请稍等, 直到迁移完成", "Migration started …" : "迁移开始...", "Not saved" : "未保存", @@ -105,57 +103,35 @@ OC.L10N.register( "Good password" : "较强的密码", "Strong password" : "强密码", "An error occured while changing your language. Please reload the page and try again." : "在为您更改语言设置的过程中出错,请刷新页面重试", - "An error occured while changing your locale. Please reload the page and try again." : "在更改语言时发生错误。请刷新页面并重试。", "Select a profile picture" : "选择头像", - "Week starts on {fdow}" : "每周的第一天为 {fdow}", "Groups" : "分组", - "Group list is empty" : "用户分组列表空", "Official" : "官方", - "No results" : "没有相关结果", "Visit website" : "访问网站", "User documentation" : "用户文档", "Developer documentation" : "开发者文档", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本. 可能会在将来出现问题.", "This app cannot be installed because the following dependencies are not fulfilled:" : "无法安装应用, 因为无法满足下列依赖: ", - "{license}-licensed" : "{license}-许可协议", - "Disable all" : "禁用所有", "Enable all" : "启用所有", - "Download and enable" : "下载和启用", "Enable" : "启用", "The app will be downloaded from the app store" : "该应用将从应用商店下载", "Settings" : "设置", - "You do not have permissions to see the details of this user" : "您没有查看此用户详情的权限", - "Delete user" : "删除用户", - "Disable user" : "禁用用户", - "Enable user" : "启用用户", - "Resend welcome email" : "重新发送欢迎邮件", - "Welcome mail sent!" : "欢迎邮件已发送。", - "Display name" : "显示用户名", "Email" : "电子邮件", "Group admin for" : "分组管理员", "Language" : "语言", "User backend" : "用户来源", "Unlimited" : "无限", "Default quota" : "默认配额", - "Default language" : "默认语言", - "Common languages" : "通用语言", - "All languages" : "所有语言", "You did not enter the password in time" : "您没有及时输入密码", "An error occured during the request. Unable to proceed." : "请求期间发生错误。 无法继续。", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", "App update" : "更新应用", "Error: This app can not be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", "Your apps" : "你的应用", - "Active apps" : "有效的应用", "Disabled apps" : "禁用应用", "Updates" : "更新", "App bundles" : "应用软件包", - "Default quota :" : "默认限额:", - "Remove group" : "移除分组", "Admins" : "管理员", - "Disabled users" : "已禁用的用户", "Everyone" : "所有人", - "New user" : "新用户", "SSL Root Certificates" : "SSL 根证书", "Common Name" : "通用名称", "Valid until" : "有效期至", @@ -163,10 +139,7 @@ OC.L10N.register( "Valid until %s" : "有效期至 %s", "Import root certificate" : "导入根证书", "Administrator documentation" : "管理员文档", - "Online documentation" : "在线文档", "Forum" : "论坛", - "Getting help" : "获取帮助", - "Commercial support" : "商业支持", "None" : "无", "Login" : "登录", "Plain" : "明文", @@ -306,6 +279,7 @@ OC.L10N.register( "Invalid user" : "无效用户", "Unable to change mail address" : "无法修改电子邮箱地址", "Email saved" : "电子邮件已保存", + "%1$s changed your email address on %2$s." : "你在 %2$s 上的电子邮件地址已被 %1$s 更改。", "Password confirmation is required" : "需要密码确认", "Are you really sure you want add {domain} as trusted domain?" : "您确定将 {domain} 添加为信任的域名么?", "Add trusted domain" : "添加信任域名", @@ -384,6 +358,9 @@ OC.L10N.register( "Hide description …" : "隐藏描述...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本. 可能会在将来出现问题.", "Enable only for specific groups" : "仅特定组启用", + "Online documentation" : "在线文档", + "Getting help" : "获取帮助", + "Commercial support" : "商业支持", "You are using <strong>%s</strong> of <strong>%s</strong>" : "您正在使用 <strong>%s</strong> 的 <strong>%s</strong>", "You are member of the following groups:" : "您是以下组的成员:", "Get the apps to sync your files" : "安装应用进行文件同步", diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json index 84e99d74534..8b6418bb3d4 100644 --- a/settings/l10n/zh_CN.json +++ b/settings/l10n/zh_CN.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "%2$s %1$s 的密码已更改", "Password changed for %s" : "%s 的密码已更改", "If you did not request this, please contact an administrator." : "如果这不是您发起的请求,请联系管理员。", - "%1$s changed your email address on %2$s." : "你在 %2$s 上的电子邮件地址已被 %1$s 更改。", "Your email address on %s was changed." : "你在%s上的电子邮件地址已更改", "Your email address on %s was changed by an administrator." : "你在%s上的电子邮件地址已被管理员修改", "Email address for %1$s changed on %2$s" : "%2$s 上 %1$s 的电子邮件地址已更改", @@ -55,7 +54,6 @@ "Set your password" : "设置你的密码", "Go to %s" : "访问 %s", "Install Client" : "安装客户端", - "Logged in user must be a subadmin" : "已登录的用户必须为子管理员", "Migration in progress. Please wait until the migration is finished" : "正在进行迁移. 请稍等, 直到迁移完成", "Migration started …" : "迁移开始...", "Not saved" : "未保存", @@ -103,57 +101,35 @@ "Good password" : "较强的密码", "Strong password" : "强密码", "An error occured while changing your language. Please reload the page and try again." : "在为您更改语言设置的过程中出错,请刷新页面重试", - "An error occured while changing your locale. Please reload the page and try again." : "在更改语言时发生错误。请刷新页面并重试。", "Select a profile picture" : "选择头像", - "Week starts on {fdow}" : "每周的第一天为 {fdow}", "Groups" : "分组", - "Group list is empty" : "用户分组列表空", "Official" : "官方", - "No results" : "没有相关结果", "Visit website" : "访问网站", "User documentation" : "用户文档", "Developer documentation" : "开发者文档", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本. 可能会在将来出现问题.", "This app cannot be installed because the following dependencies are not fulfilled:" : "无法安装应用, 因为无法满足下列依赖: ", - "{license}-licensed" : "{license}-许可协议", - "Disable all" : "禁用所有", "Enable all" : "启用所有", - "Download and enable" : "下载和启用", "Enable" : "启用", "The app will be downloaded from the app store" : "该应用将从应用商店下载", "Settings" : "设置", - "You do not have permissions to see the details of this user" : "您没有查看此用户详情的权限", - "Delete user" : "删除用户", - "Disable user" : "禁用用户", - "Enable user" : "启用用户", - "Resend welcome email" : "重新发送欢迎邮件", - "Welcome mail sent!" : "欢迎邮件已发送。", - "Display name" : "显示用户名", "Email" : "电子邮件", "Group admin for" : "分组管理员", "Language" : "语言", "User backend" : "用户来源", "Unlimited" : "无限", "Default quota" : "默认配额", - "Default language" : "默认语言", - "Common languages" : "通用语言", - "All languages" : "所有语言", "You did not enter the password in time" : "您没有及时输入密码", "An error occured during the request. Unable to proceed." : "请求期间发生错误。 无法继续。", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", "App update" : "更新应用", "Error: This app can not be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", "Your apps" : "你的应用", - "Active apps" : "有效的应用", "Disabled apps" : "禁用应用", "Updates" : "更新", "App bundles" : "应用软件包", - "Default quota :" : "默认限额:", - "Remove group" : "移除分组", "Admins" : "管理员", - "Disabled users" : "已禁用的用户", "Everyone" : "所有人", - "New user" : "新用户", "SSL Root Certificates" : "SSL 根证书", "Common Name" : "通用名称", "Valid until" : "有效期至", @@ -161,10 +137,7 @@ "Valid until %s" : "有效期至 %s", "Import root certificate" : "导入根证书", "Administrator documentation" : "管理员文档", - "Online documentation" : "在线文档", "Forum" : "论坛", - "Getting help" : "获取帮助", - "Commercial support" : "商业支持", "None" : "无", "Login" : "登录", "Plain" : "明文", @@ -304,6 +277,7 @@ "Invalid user" : "无效用户", "Unable to change mail address" : "无法修改电子邮箱地址", "Email saved" : "电子邮件已保存", + "%1$s changed your email address on %2$s." : "你在 %2$s 上的电子邮件地址已被 %1$s 更改。", "Password confirmation is required" : "需要密码确认", "Are you really sure you want add {domain} as trusted domain?" : "您确定将 {domain} 添加为信任的域名么?", "Add trusted domain" : "添加信任域名", @@ -382,6 +356,9 @@ "Hide description …" : "隐藏描述...", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本. 可能会在将来出现问题.", "Enable only for specific groups" : "仅特定组启用", + "Online documentation" : "在线文档", + "Getting help" : "获取帮助", + "Commercial support" : "商业支持", "You are using <strong>%s</strong> of <strong>%s</strong>" : "您正在使用 <strong>%s</strong> 的 <strong>%s</strong>", "You are member of the following groups:" : "您是以下组的成员:", "Get the apps to sync your files" : "安装应用进行文件同步", diff --git a/settings/l10n/zh_TW.js b/settings/l10n/zh_TW.js index 270cc6f6c94..c05d5be7604 100644 --- a/settings/l10n/zh_TW.js +++ b/settings/l10n/zh_TW.js @@ -43,7 +43,6 @@ OC.L10N.register( "Password for %1$s changed on %2$s" : "%1$s 在 %2$s 的密碼已變更", "Password changed for %s" : "%s 的密碼已變更", "If you did not request this, please contact an administrator." : "如果你未發送此請求 ,請聯絡系統管理員", - "%1$s changed your email address on %2$s." : "%1$s變更了您在 %2$s 的電子郵件地址", "Your email address on %s was changed." : "您在 %s 的電子郵件地址已變更", "Your email address on %s was changed by an administrator." : "您在 %s 的電子郵件地址已被管理員變更", "Email address for %1$s changed on %2$s" : "%1$s 的電子郵件地址在 %2$s 變更", @@ -136,10 +135,7 @@ OC.L10N.register( "Valid until %s" : "有效至 %s", "Import root certificate" : "匯入根憑證", "Administrator documentation" : "管理者說明文件", - "Online documentation" : "線上說明文件", "Forum" : "論壇", - "Getting help" : "取得協助", - "Commercial support" : "商用支援", "None" : "無", "Login" : "登入", "Plain" : "Plain", @@ -271,6 +267,7 @@ OC.L10N.register( "Invalid user" : "無效的使用者", "Unable to change mail address" : "無法更改 email 地址", "Email saved" : "Email 已儲存", + "%1$s changed your email address on %2$s." : "%1$s變更了您在 %2$s 的電子郵件地址", "Password confirmation is required" : "需要密碼確認", "Are you really sure you want add {domain} as trusted domain?" : "您確定要新增 {domain} 為信任的網域?", "Add trusted domain" : "新增信任的網域", @@ -340,6 +337,9 @@ OC.L10N.register( "Hide description …" : "隱藏描述", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最高的Nextcloud版本,未來將會產生問題。", "Enable only for specific groups" : "僅對特定的群組啟用", + "Online documentation" : "線上說明文件", + "Getting help" : "取得協助", + "Commercial support" : "商用支援", "You are using <strong>%s</strong> of <strong>%s</strong>" : "您正在使用 <strong>%s</strong> ,共有 <strong>%s</strong>", "You are member of the following groups:" : "您的帳號屬於這些群組:", "Show storage location" : "顯示儲存位置", diff --git a/settings/l10n/zh_TW.json b/settings/l10n/zh_TW.json index 471063f1681..1fef3670e3f 100644 --- a/settings/l10n/zh_TW.json +++ b/settings/l10n/zh_TW.json @@ -41,7 +41,6 @@ "Password for %1$s changed on %2$s" : "%1$s 在 %2$s 的密碼已變更", "Password changed for %s" : "%s 的密碼已變更", "If you did not request this, please contact an administrator." : "如果你未發送此請求 ,請聯絡系統管理員", - "%1$s changed your email address on %2$s." : "%1$s變更了您在 %2$s 的電子郵件地址", "Your email address on %s was changed." : "您在 %s 的電子郵件地址已變更", "Your email address on %s was changed by an administrator." : "您在 %s 的電子郵件地址已被管理員變更", "Email address for %1$s changed on %2$s" : "%1$s 的電子郵件地址在 %2$s 變更", @@ -134,10 +133,7 @@ "Valid until %s" : "有效至 %s", "Import root certificate" : "匯入根憑證", "Administrator documentation" : "管理者說明文件", - "Online documentation" : "線上說明文件", "Forum" : "論壇", - "Getting help" : "取得協助", - "Commercial support" : "商用支援", "None" : "無", "Login" : "登入", "Plain" : "Plain", @@ -269,6 +265,7 @@ "Invalid user" : "無效的使用者", "Unable to change mail address" : "無法更改 email 地址", "Email saved" : "Email 已儲存", + "%1$s changed your email address on %2$s." : "%1$s變更了您在 %2$s 的電子郵件地址", "Password confirmation is required" : "需要密碼確認", "Are you really sure you want add {domain} as trusted domain?" : "您確定要新增 {domain} 為信任的網域?", "Add trusted domain" : "新增信任的網域", @@ -338,6 +335,9 @@ "Hide description …" : "隱藏描述", "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最高的Nextcloud版本,未來將會產生問題。", "Enable only for specific groups" : "僅對特定的群組啟用", + "Online documentation" : "線上說明文件", + "Getting help" : "取得協助", + "Commercial support" : "商用支援", "You are using <strong>%s</strong> of <strong>%s</strong>" : "您正在使用 <strong>%s</strong> ,共有 <strong>%s</strong>", "You are member of the following groups:" : "您的帳號屬於這些群組:", "Show storage location" : "顯示儲存位置", diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue index 2a696bfdcdc..1df61eb2335 100644 --- a/settings/src/components/appList.vue +++ b/settings/src/components/appList.vue @@ -64,7 +64,7 @@ <div id="apps-list-empty" class="emptycontent emptycontent-search" v-if="!loading && searchApps.length === 0 && apps.length === 0"> <div id="app-list-empty-icon" class="icon-settings-dark"></div> - <h2>{{ t('settings', 'No apps found for your versoin')}}</h2> + <h2>{{ t('settings', 'No apps found for your version')}}</h2> </div> <div id="searchresults"></div> diff --git a/settings/src/views/Users.vue b/settings/src/views/Users.vue index c3fda5b8a01..31770051a0d 100644 --- a/settings/src/views/Users.vue +++ b/settings/src/views/Users.vue @@ -323,7 +323,7 @@ export default { if (disabledGroup && disabledGroup.text) { disabledGroup.text = t('settings', 'Disabled users'); // rename disabled group disabledGroup.icon = 'icon-disabled-users'; // set icon - if (disabledGroup.utils.counter === 0) { + if (!disabledGroup.utils.counter) { groups.splice(disabledGroupIndex, 1); // remove disabled if empty } } diff --git a/settings/templates/help.php b/settings/templates/help.php index 3f042254f83..4f25444881e 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -16,8 +16,8 @@ <?php } ?> <li> - <a href="https://docs.nextcloud.org" target="_blank" rel="noreferrer noopener"> - <?php p($l->t('Online documentation')); ?> ↗ + <a href="https://docs.nextcloud.com" target="_blank" rel="noreferrer noopener"> + <?php p($l->t('Documentation')); ?> ↗ </a> </li> <li> @@ -25,20 +25,6 @@ <?php p($l->t('Forum')); ?> ↗ </a> </li> - - <?php if($_['admin']) { ?> - <li> - <a href="https://nextcloud.com/support/" target="_blank" rel="noreferrer noopener"> - <?php p($l->t('Getting help')); ?> ↗ - </a> - </li> - <?php } ?> - - <li> - <a href="https://nextcloud.com/enterprise/" target="_blank" rel="noreferrer noopener"> - <?php p($l->t('Commercial support')); ?> ↗ - </a> - </li> </div> <div id="app-content" class="help-includes"> diff --git a/tests/Core/Command/Group/AddTest.php b/tests/Core/Command/Group/AddTest.php new file mode 100644 index 00000000000..8aa2f040de1 --- /dev/null +++ b/tests/Core/Command/Group/AddTest.php @@ -0,0 +1,98 @@ +<?php +/** + * @copyright 2018, Denis Mosolov <denismosolov@gmail.com> + * + * @author Denis Mosolov <denismosolov@gmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Afferoq General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +namespace Test\Core\Command\Group; + +use OC\Core\Command\Group\Add; +use OCP\IGroup; +use OCP\IGroupManager; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; +use Test\TestCase; + +class AddTest extends TestCase { + + /** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */ + private $groupManager; + + /** @var Add */ + private $command; + + /** @var InputInterface|\PHPUnit_Framework_MockObject_MockObject */ + private $input; + + /** @var OutputInterface|\PHPUnit_Framework_MockObject_MockObject */ + private $output; + + public function setUp() { + parent::setUp(); + + $this->groupManager = $this->createMock(IGroupManager::class); + $this->command = new Add($this->groupManager); + + $this->input = $this->createMock(InputInterface::class); + $this->input->method('getArgument') + ->willReturnCallback(function($arg) { + if ($arg === 'groupid') { + return 'myGroup'; + } + throw new \Exception(); + }); + $this->output = $this->createMock(OutputInterface::class); + } + + public function testGroupExists() { + $gid = 'myGroup'; + $group = $this->createMock(IGroup::class); + $this->groupManager->method('get') + ->with($gid) + ->willReturn($group); + + $this->groupManager->expects($this->never()) + ->method('createGroup'); + $this->output->expects($this->once()) + ->method('writeln') + ->with($this->equalTo('<error>Group "' . $gid . '" already exists.</error>')); + + $this->invokePrivate($this->command, 'execute', [$this->input, $this->output]); + } + + public function testAdd() { + $gid = 'myGroup'; + $group = $this->createMock(IGroup::class); + $group->method('getGID') + ->willReturn($gid); + $this->groupManager->method('createGroup') + ->willReturn($group); + + $this->groupManager->expects($this->once()) + ->method('createGroup') + ->with($this->equalTo($gid)); + $this->output->expects($this->once()) + ->method('writeln') + ->with($this->equalTo('Created group "' . $group->getGID() . '"')); + + $this->invokePrivate($this->command, 'execute', [$this->input, $this->output]); + } + + +} diff --git a/tests/Core/Command/Group/DeleteTest.php b/tests/Core/Command/Group/DeleteTest.php new file mode 100644 index 00000000000..708e10b0581 --- /dev/null +++ b/tests/Core/Command/Group/DeleteTest.php @@ -0,0 +1,148 @@ +<?php +/** + * @copyright 2018, Denis Mosolov <denismosolov@gmail.com> + * + * @author Denis Mosolov <denismosolov@gmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Afferoq General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +namespace Test\Core\Command\Group; + +use OC\Core\Command\Group\Delete; +use OCP\IGroup; +use OCP\IGroupManager; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; +use Test\TestCase; + +class DeleteTest extends TestCase { + + /** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */ + private $groupManager; + + /** @var Delete */ + private $command; + + /** @var InputInterface|\PHPUnit_Framework_MockObject_MockObject */ + private $input; + + /** @var OutputInterface|\PHPUnit_Framework_MockObject_MockObject */ + private $output; + + public function setUp() { + parent::setUp(); + + $this->groupManager = $this->createMock(IGroupManager::class); + $this->command = new Delete($this->groupManager); + + $this->input = $this->createMock(InputInterface::class); + $this->output = $this->createMock(OutputInterface::class); + } + + public function testDoesNotExists() { + $gid = 'myGroup'; + $this->input->method('getArgument') + ->willReturnCallback(function($arg) use ($gid) { + if ($arg === 'groupid') { + return $gid; + } + throw new \Exception(); + }); + $this->groupManager->method('groupExists') + ->with($gid) + ->willReturn(false); + + $this->groupManager->expects($this->never()) + ->method('get'); + $this->output->expects($this->once()) + ->method('writeln') + ->with($this->equalTo('<error>Group "' . $gid . '" does not exist.</error>')); + + $this->invokePrivate($this->command, 'execute', [$this->input, $this->output]); + } + + public function testDeleteAdmin() { + $gid = 'admin'; + $this->input->method('getArgument') + ->willReturnCallback(function($arg) use ($gid) { + if ($arg === 'groupid') { + return $gid; + } + throw new \Exception(); + }); + + $this->groupManager->expects($this->never()) + ->method($this->anything()); + $this->output->expects($this->once()) + ->method('writeln') + ->with($this->equalTo('<error>Group "' . $gid . '" could not be deleted.</error>')); + + $this->invokePrivate($this->command, 'execute', [$this->input, $this->output]); + } + + public function testDeleteFailed() { + $gid = 'myGroup'; + $this->input->method('getArgument') + ->willReturnCallback(function($arg) use ($gid) { + if ($arg === 'groupid') { + return $gid; + } + throw new \Exception(); + }); + $group = $this->createMock(IGroup::class); + $group->method('delete') + ->willReturn(false); + $this->groupManager->method('groupExists') + ->with($gid) + ->willReturn(true); + $this->groupManager->method('get') + ->with($gid) + ->willReturn($group); + + $this->output->expects($this->once()) + ->method('writeln') + ->with($this->equalTo('<error>Group "' . $gid . '" could not be deleted. Please check the logs.</error>')); + + $this->invokePrivate($this->command, 'execute', [$this->input, $this->output]); + } + + public function testDelete() { + $gid = 'myGroup'; + $this->input->method('getArgument') + ->willReturnCallback(function($arg) use ($gid) { + if ($arg === 'groupid') { + return $gid; + } + throw new \Exception(); + }); + $group = $this->createMock(IGroup::class); + $group->method('delete') + ->willReturn(true); + $this->groupManager->method('groupExists') + ->with($gid) + ->willReturn(true); + $this->groupManager->method('get') + ->with($gid) + ->willReturn($group); + + $this->output->expects($this->once()) + ->method('writeln') + ->with($this->equalTo('Group "' . $gid . '" was removed')); + + $this->invokePrivate($this->command, 'execute', [$this->input, $this->output]); + } +} diff --git a/tests/Core/Controller/LostControllerTest.php b/tests/Core/Controller/LostControllerTest.php index 8ccabfbf79a..d6afa5959a0 100644 --- a/tests/Core/Controller/LostControllerTest.php +++ b/tests/Core/Controller/LostControllerTest.php @@ -27,6 +27,7 @@ use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Http\TemplateResponse; use OCP\AppFramework\Utility\ITimeFactory; use OCP\Defaults; +use OCP\Encryption\IEncryptionModule; use OCP\Encryption\IManager; use OCP\IConfig; use OCP\IL10N; @@ -713,10 +714,49 @@ class LostControllerTest extends \Test\TestCase { $this->assertEquals($expectedResponse, $response); } - public function testSetPasswordEncryptionDontProceed() { + public function testSetPasswordEncryptionDontProceedPerUserKey() { + /** @var IEncryptionModule|PHPUnit_Framework_MockObject_MockObject $encryptionModule */ + $encryptionModule = $this->createMock(IEncryptionModule::class); + $encryptionModule->expects($this->once())->method('needDetailedAccessList')->willReturn(true); + $this->encryptionManager->expects($this->once())->method('getEncryptionModules') + ->willReturn([0 => ['callback' => function() use ($encryptionModule) { return $encryptionModule; }]]); $response = $this->lostController->setPassword('myToken', 'user', 'newpass', false); $expectedResponse = ['status' => 'error', 'msg' => '', 'encryption' => true]; $this->assertSame($expectedResponse, $response); } + public function testSetPasswordDontProceedMasterKey() { + $encryptionModule = $this->createMock(IEncryptionModule::class); + $encryptionModule->expects($this->once())->method('needDetailedAccessList')->willReturn(false); + $this->encryptionManager->expects($this->once())->method('getEncryptionModules') + ->willReturn([0 => ['callback' => function() use ($encryptionModule) { return $encryptionModule; }]]); + $this->config->method('getUserValue') + ->with('ValidTokenUser', 'core', 'lostpassword', null) + ->willReturn('encryptedData'); + $this->existingUser->method('getLastLogin') + ->will($this->returnValue(12344)); + $this->existingUser->expects($this->once()) + ->method('setPassword') + ->with('NewPassword') + ->willReturn(true); + $this->userManager->method('get') + ->with('ValidTokenUser') + ->willReturn($this->existingUser); + $this->config->expects($this->once()) + ->method('deleteUserValue') + ->with('ValidTokenUser', 'core', 'lostpassword'); + $this->timeFactory->method('getTime') + ->will($this->returnValue(12348)); + + $this->crypto->method('decrypt') + ->with( + $this->equalTo('encryptedData'), + $this->equalTo('test@example.comSECRET') + )->willReturn('12345:TheOnlyAndOnlyOneTokenToResetThePassword'); + + $response = $this->lostController->setPassword('TheOnlyAndOnlyOneTokenToResetThePassword', 'ValidTokenUser', 'NewPassword', false); + $expectedResponse = array('user' => 'ValidTokenUser', 'status' => 'success'); + $this->assertSame($expectedResponse, $response); + } + } diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php index 305e2ba22ce..cc1ed6555c3 100644 --- a/tests/Settings/Controller/CheckSetupControllerTest.php +++ b/tests/Settings/Controller/CheckSetupControllerTest.php @@ -21,7 +21,9 @@ namespace Tests\Settings\Controller; +use OC; use OC\DB\Connection; +use OC\MemoryInfo; use OC\Settings\Controller\CheckSetupController; use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataDisplayResponse; @@ -36,6 +38,7 @@ use OCP\IRequest; use OCP\IURLGenerator; use OC_Util; use OCP\Lock\ILockingProvider; +use PHPUnit\Framework\MockObject\MockObject; use Psr\Http\Message\ResponseInterface; use Symfony\Component\EventDispatcher\EventDispatcher; use Test\TestCase; @@ -44,6 +47,7 @@ use OC\IntegrityCheck\Checker; /** * Class CheckSetupControllerTest * + * @backupStaticAttributes * @package Tests\Settings\Controller */ class CheckSetupControllerTest extends TestCase { @@ -73,6 +77,15 @@ class CheckSetupControllerTest extends TestCase { private $lockingProvider; /** @var IDateTimeFormatter|\PHPUnit_Framework_MockObject_MockObject */ private $dateTimeFormatter; + /** @var MemoryInfo|MockObject */ + private $memoryInfo; + + /** + * Holds a list of directories created during tests. + * + * @var array + */ + private $dirsToRemove = []; public function setUp() { parent::setUp(); @@ -103,6 +116,9 @@ class CheckSetupControllerTest extends TestCase { ->disableOriginalConstructor()->getMock(); $this->lockingProvider = $this->getMockBuilder(ILockingProvider::class)->getMock(); $this->dateTimeFormatter = $this->getMockBuilder(IDateTimeFormatter::class)->getMock(); + $this->memoryInfo = $this->getMockBuilder(MemoryInfo::class) + ->setMethods(['isMemoryLimitSufficient',]) + ->getMock(); $this->checkSetupController = $this->getMockBuilder('\OC\Settings\Controller\CheckSetupController') ->setConstructorArgs([ 'settings', @@ -118,6 +134,7 @@ class CheckSetupControllerTest extends TestCase { $this->db, $this->lockingProvider, $this->dateTimeFormatter, + $this->memoryInfo, ]) ->setMethods([ 'isReadOnlyConfig', @@ -135,9 +152,23 @@ class CheckSetupControllerTest extends TestCase { 'isSqliteUsed', 'isPhpMailerUsed', 'hasOpcacheLoaded', + 'getAppDirsWithDifferentOwner', ])->getMock(); } + /** + * Removes directories created during tests. + * + * @after + * @return void + */ + public function removeTestDirectories() { + foreach ($this->dirsToRemove as $dirToRemove) { + rmdir($dirToRemove); + } + $this->dirsToRemove = []; + } + public function testIsInternetConnectionWorkingDisabledViaConfig() { $this->config->expects($this->once()) ->method('getSystemValue') @@ -424,6 +455,14 @@ class CheckSetupControllerTest extends TestCase { ->expects($this->once()) ->method('hasPassedCheck') ->willReturn(true); + $this->memoryInfo + ->method('isMemoryLimitSufficient') + ->willReturn(true); + + $this->checkSetupController + ->expects($this->once()) + ->method('getAppDirsWithDifferentOwner') + ->willReturn([]); $expected = new DataResponse( [ @@ -465,6 +504,8 @@ class CheckSetupControllerTest extends TestCase { 'missingIndexes' => [], 'isPhpMailerUsed' => false, 'mailSettingsDocumentation' => 'https://server/index.php/settings/admin', + 'isMemoryLimitSufficient' => true, + 'appDirsWithDifferentOwner' => [], ] ); $this->assertEquals($expected, $this->checkSetupController->check()); @@ -486,6 +527,7 @@ class CheckSetupControllerTest extends TestCase { $this->db, $this->lockingProvider, $this->dateTimeFormatter, + $this->memoryInfo, ]) ->setMethods(null)->getMock(); @@ -571,6 +613,56 @@ class CheckSetupControllerTest extends TestCase { $this->assertSame('', $this->invokePrivate($this->checkSetupController, 'isUsedTlsLibOutdated')); } + /** + * Setups a temp directory and some subdirectories. + * Then calls the 'getAppDirsWithDifferentOwner' method. + * The result is expected to be empty since + * there are no directories with different owners than the current user. + * + * @return void + */ + public function testAppDirectoryOwnersOk() { + $tempDir = tempnam(sys_get_temp_dir(), 'apps') . 'dir'; + mkdir($tempDir); + mkdir($tempDir . DIRECTORY_SEPARATOR . 'app1'); + mkdir($tempDir . DIRECTORY_SEPARATOR . 'app2'); + $this->dirsToRemove[] = $tempDir . DIRECTORY_SEPARATOR . 'app1'; + $this->dirsToRemove[] = $tempDir . DIRECTORY_SEPARATOR . 'app2'; + $this->dirsToRemove[] = $tempDir; + OC::$APPSROOTS = [ + [ + 'path' => $tempDir, + 'url' => '/apps', + 'writable' => true, + ], + ]; + $this->assertSame( + [], + $this->invokePrivate($this->checkSetupController, 'getAppDirsWithDifferentOwner') + ); + } + + /** + * Calls the check for a none existing app root that is marked as not writable. + * It's expected that no error happens since the check shouldn't apply. + * + * @return void + */ + public function testAppDirectoryOwnersNotWritable() { + $tempDir = tempnam(sys_get_temp_dir(), 'apps') . 'dir'; + OC::$APPSROOTS = [ + [ + 'path' => $tempDir, + 'url' => '/apps', + 'writable' => false, + ], + ]; + $this->assertSame( + [], + $this->invokePrivate($this->checkSetupController, 'getAppDirsWithDifferentOwner') + ); + } + public function testIsBuggyNss400() { $this->config->expects($this->any()) ->method('getSystemValue') diff --git a/tests/acceptance/features/users.feature b/tests/acceptance/features/users.feature index 6baf3063631..b5a22cd3940 100644 --- a/tests/acceptance/features/users.feature +++ b/tests/acceptance/features/users.feature @@ -43,6 +43,20 @@ Feature: users When I open the "Disabled users" section Then I see that the list of users contains the user user0 + Scenario: users navigation without disabled users + Given I act as Jane + And I am logged in as the admin + And I open the User settings + And I open the "Disabled users" section + And I see that the list of users contains the user disabledUser + And I open the actions menu for the user disabledUser + And I see that the "Enable user" action in the disabledUser actions menu is shown + When I click the "Enable user" action in the disabledUser actions menu + Then I see that the section "Disabled users" is not shown + # check again after reloading the settings + When I open the User settings + Then I see that the section "Disabled users" is not shown + Scenario: assign user to a group Given I act as Jane And I am logged in as the admin diff --git a/tests/data/testimage.heic b/tests/data/testimage.heic Binary files differnew file mode 100644 index 00000000000..56612f5a271 --- /dev/null +++ b/tests/data/testimage.heic diff --git a/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php b/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php index e75486b3ed5..b3182ff00c8 100644 --- a/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php +++ b/tests/lib/App/AppStore/Bundles/EnterpriseBundleTest.php @@ -36,6 +36,7 @@ class EnterpriseBundleTest extends BundleBase { 'files_automatedtagging', 'user_saml', 'files_accesscontrol', + 'terms_of_service', ]; } } diff --git a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php index f2f9dcc5ccc..ccff5dcbd34 100644 --- a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php +++ b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php @@ -32,7 +32,8 @@ class GroupwareBundleTest extends BundleBase { $this->bundleAppIds = [ 'calendar', 'contacts', - 'spreed', + 'deck', + 'mail' ]; } } diff --git a/tests/lib/MemoryInfoTest.php b/tests/lib/MemoryInfoTest.php new file mode 100644 index 00000000000..489ef51d373 --- /dev/null +++ b/tests/lib/MemoryInfoTest.php @@ -0,0 +1,118 @@ +<?php +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2018, Michael Weimann (<mail@michael-weimann.eu>) + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace Test; + +use OC\MemoryInfo; +use PHPUnit\Framework\MockObject\MockObject; + +/** + * This class provides tests for the MemoryInfo class. + */ +class MemoryInfoTest extends TestCase { + /** + * The "memory_limit" value before tests. + * + * @var string + */ + private $iniSettingBeforeTest; + + /** + * @beforeClass + */ + public function backupMemoryInfoIniSetting() { + $this->iniSettingBeforeTest = ini_get('memory_limit'); + } + + /** + * @afterClass + */ + public function restoreMemoryInfoIniSetting() { + ini_set('memory_limit', $this->iniSettingBeforeTest); + } + + /** + * Provides test data. + * + * @return array + */ + public function getMemoryLimitTestData(): array { + return [ + 'unlimited' => ['-1', -1,], + '0' => ['0', 0,], + '134217728 bytes' => ['134217728', 134217728,], + '128M' => ['128M', 134217728,], + '131072K' => ['131072K', 134217728,], + '2G' => ['2G', 2147483648,], + ]; + } + + /** + * Tests that getMemoryLimit works as expected. + * + * @param string $iniValue The "memory_limit" ini data. + * @param int $expected The expected detected memory limit. + * @dataProvider getMemoryLimitTestData + */ + public function testMemoryLimit($iniValue, int $expected) { + ini_set('memory_limit', $iniValue); + $memoryInfo = new MemoryInfo(); + self::assertEquals($expected, $memoryInfo->getMemoryLimit()); + } + + /** + * Provides sufficient memory limit test data. + * + * @return array + */ + public function getSufficientMemoryTestData(): array { + return [ + 'unlimited' => [-1, true,], + '512M' => [512 * 1024 * 1024, true,], + '1G' => [1024 * 1024 * 1024, true,], + '256M' => [256 * 1024 * 1024, false,], + ]; + } + + /** + * Tests that isMemoryLimitSufficient returns the correct values. + * + * @param int $memoryLimit The memory limit + * @param bool $expected If the memory limit is sufficient. + * @dataProvider getSufficientMemoryTestData + * @return void + */ + public function testIsMemoryLimitSufficient(int $memoryLimit, bool $expected) { + /* @var MemoryInfo|MockObject $memoryInfo */ + $memoryInfo = $this->getMockBuilder(MemoryInfo::class) + ->setMethods(['getMemoryLimit',]) + ->getMock(); + + $memoryInfo + ->method('getMemoryLimit') + ->willReturn($memoryLimit); + + $isMemoryLimitSufficient = $memoryInfo->isMemoryLimitSufficient(); + self::assertEquals($expected, $isMemoryLimitSufficient); + } +} diff --git a/tests/lib/Preview/GeneratorTest.php b/tests/lib/Preview/GeneratorTest.php index b6200b1829b..64786fa9fe8 100644 --- a/tests/lib/Preview/GeneratorTest.php +++ b/tests/lib/Preview/GeneratorTest.php @@ -150,16 +150,24 @@ class GeneratorTest extends \Test\TestCase { })); $invalidProvider = $this->createMock(IProvider::class); + $invalidProvider->method('isAvailable') + ->willReturn(true); + $unavailableProvider = $this->createMock(IProvider::class); + $unavailableProvider->method('isAvailable') + ->willReturn(false); $validProvider = $this->createMock(IProvider::class); + $validProvider->method('isAvailable') + ->with($file) + ->willReturn(true); $this->previewManager->method('getProviders') ->willReturn([ '/image\/png/' => ['wrongProvider'], - '/myMimeType/' => ['brokenProvider', 'invalidProvider', 'validProvider'], + '/myMimeType/' => ['brokenProvider', 'invalidProvider', 'unavailableProvider', 'validProvider'], ]); $this->helper->method('getProvider') - ->will($this->returnCallback(function($provider) use ($invalidProvider, $validProvider) { + ->will($this->returnCallback(function($provider) use ($invalidProvider, $validProvider, $unavailableProvider) { if ($provider === 'wrongProvider') { $this->fail('Wrongprovider should not be constructed!'); } else if ($provider === 'brokenProvider') { @@ -168,6 +176,8 @@ class GeneratorTest extends \Test\TestCase { return $invalidProvider; } else if ($provider === 'validProvider') { return $validProvider; + } else if ($provider === 'unavailableProvider') { + return $unavailableProvider; } $this->fail('Unexpected provider requested'); })); diff --git a/tests/lib/Preview/HEICTest.php b/tests/lib/Preview/HEICTest.php new file mode 100644 index 00000000000..63b9038d35d --- /dev/null +++ b/tests/lib/Preview/HEICTest.php @@ -0,0 +1,48 @@ +<?php +/** + * @copyright Copyright (c) 2018, Sebastian Steinmetz (me@sebastiansteinmetz.ch) + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace Test\Preview; + +/** + * Class BitmapTest + * + * @group DB + * + * @package Test\Preview + */ +class HEICTest extends Provider { + + public function setUp() { + if ( !in_array("HEIC", \Imagick::queryFormats("HEI*")) ) { + $this->markTestSkipped('ImageMagick is not HEIC aware. Skipping tests'); + } else { + parent::setUp(); + + $fileName = 'testimage.heic'; + $this->imgPath = $this->prepareTestFile($fileName, \OC::$SERVERROOT . '/tests/data/' . $fileName); + $this->width = 1680; + $this->height = 1050; + $this->provider = new \OC\Preview\HEIC; + } + + } + +}
\ No newline at end of file diff --git a/version.php b/version.php index 4146fb97ccd..d82cd524e46 100644 --- a/version.php +++ b/version.php @@ -29,10 +29,10 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(14, 0, 0, 15); +$OC_Version = array(14, 0, 0, 16); // The human readable string -$OC_VersionString = '14.0.0 Beta 3'; +$OC_VersionString = '14.0.0 Beta 4'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ |