[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 4\nindent_style = space\n\n[*.php]\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": ".gitattributes",
    "content": ".github export-ignore\nTests export-ignore\n.gitattributes export-ignore\n.gitignore export-ignore\n.php_cs export-ignore\n.travis.yml export-ignore\nphpstan.neon export-ignore\nphpunit.xml.dist export-ignore\nyarn.lock export-ignore\n"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Contribution Guidelines\n\nThank you for considering contributing to this bundle. We welcome any kind of\ncontribution, no matter if its huge or small, about documentation or code. We\nalso welcome any kind of developers, from experts to people who just started\nworking on Open-Source projects.\n\n## Requirements\n\nBefore your first contribution, make sure you'll meet these requirements:\n\n * You have a user account on [GitHub](https://github.com/).\n * You have installed in your computer a working environment to develop PHP\n   applications.\n * You have a basic level of English (code, docs and discussions are in English).\n\nAll submitted contributions (both code and documentation) adhere implicitly to\nthe [Open-Source MIT License][mit-license].\n\n## Proposing New Features\n\nWe are determined to maintain the original simple and pragmatic philosophy of\nthe bundle. This means that we routinely reject any feature that complicates the\ncode too much or which doesn't fit in the bundle's philosophy.\n\nThat's why **we strongly recommend you** to propose new features by\n[opening a new issue][create-issue] in the repository to discuss about them\ninstead of submitting a pull request with the code of the proposed feature.\n\n## Reporting Bugs\n\n 1. Go to [the list of issues][adminthemebundle-issues] and look for any\n    existing bug similar to yours.\n 2. If the bug hasn't been reported yet, [create a new issue][create-issue] and\n    fill in the given issue template.\n\n## Sending Pull Requests\n\nThis project follows the same contribution workflow used by the Symfony project.\nFirst you must clone the repository, then create a feature branch and finally,\nsubmit a pull request via GitHub.\n\nRead the [Symfony contribution guide][sf-contribution] for more details and replace\n`symfony/symfony-docs` by `kevinpapst/adminlte-bundle` in every example.\n\n## Code styles\n\nRun `/vendor/bin/php-cs-fixer fix` before submitting any code. \n\n\n## Further information\n\n * [General GitHub documentation][gh-help]\n * [GitHub pull request documentation][gh-pr]\n\n[mit-license]: https://opensource.org/licenses/MIT\n[gh-help]: https://help.github.com\n[gh-pr]: https://help.github.com/send-pull-requests\n[adminthemebundle-issues]: https://github.com/kevinpapst/AdminLTEBundle/issues?utf8=%E2%9C%93&q=is%3Aissue\n[create-issue]: https://github.com/kevinpapst/AdminLTEBundle/issues/new\n[symfony-standard]: https://github.com/symfony/symfony-standard\n[sf-contribution]: http://symfony.com/doc/current/contributing/documentation/overview.html#your-first-documentation-contribution\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "github: [kevinpapst]\ncustom: https://paypal.me/kevinpapst\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "Please write here a description of your problem. Don't hesitate and add enough\ninformation to fix your problem properly - you can even use images!\n\nIf this is a BUG REPORT:\n\n  * Describe what you wanted to do and the wrong result you got.\n  * Fill the Debug info table below\n  * (Optional) If they are useful, include logs, code samples, screenshots, etc.\n\nIf this is a FEATURE REQUEST:\n\n  * Describe the new feature briefly.\n  * If you consider or have knowledge submit a Pull Request.\n\n### Debug info\n\n| Component  | Version |\n| ------------- | ------------- |\n| Symfony version  | Your current symfony version  |\n| AdminLTEBundle  | 0.9/dev-master/commit/tag  |\n| Operating System  | Windows or GNU/Linux or other  |\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "## Description\nA clear and concise description of what this pull request adds or changes.\n\n## Types of changes\n- [ ] Bug fix (non-breaking change which fixes an issue)\n- [ ] New feature (non-breaking change which adds functionality)\n- [ ] Breaking change (fix or feature that would cause existing functionality to change)\n\n## Checklist\n- [ ] I updated the documentation (see [here](https://github.com/kevinpapst/AdminLTEBundle/tree/master/Resources/docs))\n- [ ] I agree that this code is used in AdminLTEBundle and will be published under the [MIT license](https://github.com/kevinpapst/AdminLTEBundle/blob/master/LICENSE)\n"
  },
  {
    "path": ".github/workflows/linting.yaml",
    "content": "name: CI\non:\n    pull_request: null\n    push:\n        branches:\n            - master\njobs:\n    tests:\n        runs-on: ubuntu-latest\n        strategy:\n            matrix:\n                php: ['7.2', '7.3', '7.4']\n\n        name: Linting - PHP ${{ matrix.php }}\n        steps:\n            -   uses: actions/checkout@v2\n            -   uses: shivammathur/setup-php@v2\n                with:\n                    php-version: ${{ matrix.php }}\n                    coverage: none\n                    extensions: intl\n            -   run: composer install --no-progress\n            -   run: composer codestyle\n            -   run: composer phpstan\n            -   run: composer tests\n"
  },
  {
    "path": ".gitignore",
    "content": "nbproject/*\n.idea\nvendor\ncomposer.lock\npackage-lock.json\n\n# Ignore Eclipse IDE config files\n.buildpath\n.project\n.settings\n\n# Ignore cache files from php cs fixer\n.php_cs.cache\nnode_modules"
  },
  {
    "path": ".php_cs",
    "content": "<?php\n\n$fileHeaderComment = <<<COMMENT\nThis file is part of the AdminLTE bundle.\n\nFor the full copyright and license information, please view the LICENSE\nfile that was distributed with this source code.\nCOMMENT;\n\nreturn PhpCsFixer\\Config::create()\n    ->setRiskyAllowed(true)\n    ->setRules([\n        'encoding' => true,\n        'full_opening_tag' => true,\n        'blank_line_after_namespace' => true,\n        'braces' => true,\n        'class_definition' => true,\n        'elseif' => true,\n        'function_declaration' => true,\n        'indentation_type' => true,\n        'line_ending' => true,\n        'lowercase_constants' => true,\n        'lowercase_keywords' => true,\n        'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],\n        'header_comment' => ['header' => $fileHeaderComment, 'separate' => 'both'],\n        'no_php4_constructor' => true,\n        'ordered_imports' => true,\n        'no_break_comment' => true,\n        'no_closing_tag' => true,\n        'no_spaces_after_function_name' => true,\n        'no_spaces_inside_parenthesis' => true,\n        'no_trailing_whitespace' => true,\n        'no_trailing_whitespace_in_comment' => true,\n        'single_blank_line_at_eof' => true,\n        'single_class_element_per_statement' => ['elements' => ['property']],\n        'single_import_per_statement' => true,\n        'single_line_after_imports' => true,\n        'switch_case_semicolon_to_colon' => true,\n        'switch_case_space' => true,\n        'array_syntax' => [\n            'syntax' => 'short'\n        ],\n        'binary_operator_spaces' => true,\n        'blank_line_after_opening_tag' => true,\n        'blank_line_before_statement' => [\n            'statements' => ['return'],\n        ],\n        'cast_spaces' => true,\n        'class_attributes_separation' => ['elements' => ['method']],\n        'concat_space' => ['spacing' => 'one'],\n        'declare_equal_normalize' => true,\n        'function_typehint_space' => true,\n        'include' => true,\n        'lowercase_cast' => true,\n        'lowercase_static_reference' => true,\n        'magic_constant_casing' => true,\n        'native_function_casing' => true,\n        'new_with_braces' => true,\n        'no_blank_lines_after_class_opening' => true,\n        'no_blank_lines_after_phpdoc' => true,\n        'no_empty_comment' => true,\n        'no_empty_phpdoc' => true,\n        'no_empty_statement' => true,\n        'no_extra_blank_lines' => ['tokens' => [\n            'curly_brace_block',\n            'extra',\n            'parenthesis_brace_block',\n            'square_brace_block',\n            'throw',\n            'use',\n        ]],\n        'no_leading_import_slash' => true,\n        'no_leading_namespace_whitespace' => true,\n        'no_mixed_echo_print' => ['use' => 'echo'],\n        'no_multiline_whitespace_around_double_arrow' => true,\n        'no_short_bool_cast' => true,\n        'no_singleline_whitespace_before_semicolons' => true,\n        'no_spaces_around_offset' => true,\n        'no_trailing_comma_in_list_call' => true,\n        'no_trailing_comma_in_singleline_array' => true,\n        'no_unneeded_curly_braces' => true,\n        'no_unneeded_final_method' => true,\n        'no_unused_imports' => true,\n        'no_whitespace_before_comma_in_array' => true,\n        'no_whitespace_in_blank_line' => true,\n        'normalize_index_brace' => true,\n        'object_operator_without_whitespace' => true,\n        'php_unit_fqcn_annotation' => true,\n        'phpdoc_align' => [\n            'align' => 'left',\n            'tags' => [\n                'method',\n                'param',\n                'property',\n                'return',\n                'throws',\n                'type',\n                'var',\n            ],\n        ],\n        'phpdoc_annotation_without_dot' => true,\n        'phpdoc_indent' => true,\n        'phpdoc_inline_tag' => true,\n        'phpdoc_no_access' => true,\n        'phpdoc_no_alias_tag' => true,\n        'phpdoc_no_empty_return' => true,\n        'phpdoc_no_package' => true,\n        'phpdoc_no_useless_inheritdoc' => true,\n        'phpdoc_return_self_reference' => true,\n        'phpdoc_scalar' => true,\n        'phpdoc_separation' => false,\n        'phpdoc_single_line_var_spacing' => true,\n        'phpdoc_summary' => false,\n        'phpdoc_to_comment' => true,\n        'phpdoc_trim' => true,\n        'phpdoc_types' => true,\n        'phpdoc_var_without_name' => true,\n        'protected_to_private' => true,\n        'return_type_declaration' => true,\n        'semicolon_after_instruction' => true,\n        'short_scalar_cast' => true,\n        'single_blank_line_before_namespace' => true,\n        'single_line_comment_style' => [\n            'comment_types' => ['hash'],\n        ],\n        'single_quote' => true,\n        'space_after_semicolon' => [\n            'remove_in_empty_for_expressions' => true,\n        ],\n        'standardize_increment' => true,\n        'standardize_not_equals' => true,\n        'ternary_operator_spaces' => true,\n        'trailing_comma_in_multiline_array' => false,\n        'trim_array_spaces' => true,\n        'unary_operator_spaces' => true,\n        'whitespace_after_comma_in_array' => true,\n        'yoda_style' => false,\n        'ternary_to_null_coalescing' => true,\n        'visibility_required' => ['elements' => [\n            'const',\n            'method',\n            'property',\n        ]],\n    ])\n    ->setFinder(\n        PhpCsFixer\\Finder::create()\n            ->in([\n                __DIR__\n            ])\n            ->name('*.php')\n            ->exclude([\n                '.github/',\n                'node_modules/',\n                'Resources/',\n                'vendor/',\n            ])\n    )\n    ->setFormat('checkstyle')\n;\n"
  },
  {
    "path": "AdminLTEBundle.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle;\n\nuse KevinPapst\\AdminLTEBundle\\DependencyInjection\\Compiler\\TwigPass;\nuse Symfony\\Component\\DependencyInjection\\ContainerBuilder;\nuse Symfony\\Component\\HttpKernel\\Bundle\\Bundle;\n\nclass AdminLTEBundle extends Bundle\n{\n    public function build(ContainerBuilder $container)\n    {\n        parent::build($container);\n        $container->addCompilerPass(new TwigPass());\n    }\n}\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nThe AdminLTEBundle is an open source project and contributions made by the community are welcome. \nSend your ideas, code reviews, pull requests and feature requests to help me improve this project.\n\nTo make my and your live easier, here are the simple rules for PRs.\n\n## Pull request rules\n\n- Fix your codestyles before pushing with `composer codestyle-fix`\n- Fix static code analysis errors, use `composer phpstan`\n- Add PHPUnit tests for your changes and execute all tests with `composer tests`\n- Travis fails if you do not verify the above points: fix the errors :-)\n- Verify everything still works, e.g. using a branch inside the [demo apps](https://github.com/kevinpapst/AdminLTEBundle-Demo) with composer.json pointing to your AdminLTEBundle branch\n  - the app is not well tested (old codebase) so you have to do this manually \n- With sending in a PR, you accept that your contributions/code will be published under MIT license (see [LICENSE](LICENSE))\n\n## Code styles\n\nAs this project is a fork, the code is written in different flavours and the code base \nis not yet upgraded to be fully consistent. But for all new changes I'd like to stick to the following rules:\n- use strict typing wherever possible (function params, returns types ...)\n- camelCase variables and function names\n"
  },
  {
    "path": "Controller/BreadcrumbController.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Controller;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\BreadcrumbMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\MenuItemInterface;\nuse Symfony\\Component\\HttpFoundation\\Request;\nuse Symfony\\Component\\HttpFoundation\\Response;\n\n/**\n * Controller to handle breadcrumb display inside the layout\n */\nclass BreadcrumbController extends EmitterController\n{\n    /**\n     * Controller Reference action to be called inside the layout.\n     *\n     * Triggers the {@link BreadcrumbMenuEvent} to receive the currently active menu chain.\n     *\n     * If there are no listeners attached for this event, the return value is an empty response.\n     *\n     * @param Request $request\n     * @return Response\n     */\n    public function breadcrumbAction(Request $request): Response\n    {\n        @trigger_error('BreadcrumbController::breadcrumbAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(BreadcrumbMenuEvent::class)) {\n            return new Response();\n        }\n\n        /** @var SidebarMenuEvent $event */\n        $event = $this->dispatch(new BreadcrumbMenuEvent($request));\n\n        /** @var MenuItemInterface $active */\n        $active = $event->getActive();\n        $list = [];\n        if (null !== $active) {\n            $list[] = $active;\n            while (null !== ($item = $active->getActiveChild())) {\n                $list[] = $item;\n                $active = $item;\n            }\n        }\n\n        return $this->render('@AdminLTE/Breadcrumb/breadcrumb.html.twig', [\n            'active' => $list,\n        ]);\n    }\n}\n"
  },
  {
    "path": "Controller/EmitterController.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Controller;\n\nuse Symfony\\Bundle\\FrameworkBundle\\Controller\\AbstractController;\nuse Symfony\\Component\\EventDispatcher\\EventDispatcherInterface;\nuse Symfony\\Contracts\\EventDispatcher\\Event;\n\nclass EmitterController extends AbstractController\n{\n    /**\n     * @var EventDispatcherInterface\n     */\n    protected $eventDispatcher;\n\n    public function __construct(EventDispatcherInterface $dispatcher)\n    {\n        $this->eventDispatcher = $dispatcher;\n    }\n\n    protected function dispatch(Event $event): Event\n    {\n        /** @var Event $event */\n        $event = $this->eventDispatcher->dispatch($event);\n\n        return $event;\n    }\n\n    protected function hasListener(string $eventName): bool\n    {\n        return $this->eventDispatcher->hasListeners($eventName);\n    }\n}\n"
  },
  {
    "path": "Controller/NavbarController.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Controller;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\MessageListEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\NavbarUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\NotificationListEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\ShowUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\TaskListEvent;\nuse KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper;\nuse Symfony\\Component\\EventDispatcher\\EventDispatcherInterface;\nuse Symfony\\Component\\HttpFoundation\\Response;\n\nclass NavbarController extends EmitterController\n{\n    /**\n     * @var ContextHelper\n     */\n    private $helper;\n\n    public function __construct(EventDispatcherInterface $dispatcher, ContextHelper $helper)\n    {\n        parent::__construct($dispatcher);\n        $this->helper = $helper;\n    }\n\n    /**\n     * @param int|null $max\n     * @return Response\n     */\n    public function notificationsAction($max = null): Response\n    {\n        @trigger_error('NavbarController::notificationsAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(NotificationListEvent::class)) {\n            return new Response();\n        }\n\n        if (null === $max) {\n            $max = (int) $this->helper->getOption('max_navbar_notifications');\n        }\n\n        /** @var NotificationListEvent $listEvent */\n        $listEvent = $this->dispatch(new NotificationListEvent($max));\n\n        return $this->render(\n            '@AdminLTE/Navbar/notifications.html.twig',\n            [\n                'notifications' => $listEvent->getNotifications(),\n                'total' => $listEvent->getTotal(),\n            ]\n        );\n    }\n\n    /**\n     * @param int|null $max\n     * @return Response\n     */\n    public function messagesAction($max = null): Response\n    {\n        @trigger_error('NavbarController::messagesAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(MessageListEvent::class)) {\n            return new Response();\n        }\n\n        if (null === $max) {\n            $max = (int) $this->helper->getOption('max_navbar_messages');\n        }\n\n        /** @var MessageListEvent $listEvent */\n        $listEvent = $this->dispatch(new MessageListEvent($max));\n\n        return $this->render(\n            '@AdminLTE/Navbar/messages.html.twig',\n            [\n                'messages' => $listEvent->getMessages(),\n                'total' => $listEvent->getTotal(),\n            ]\n        );\n    }\n\n    /**\n     * @param int|null $max\n     * @return Response\n     */\n    public function tasksAction($max = null): Response\n    {\n        @trigger_error('NavbarController::tasksAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(TaskListEvent::class)) {\n            return new Response();\n        }\n\n        if (null === $max) {\n            $max = (int) $this->helper->getOption('max_navbar_tasks');\n        }\n\n        /** @var TaskListEvent $listEvent */\n        $listEvent = $this->dispatch(new TaskListEvent($max));\n\n        return $this->render(\n            '@AdminLTE/Navbar/tasks.html.twig',\n            [\n                'tasks' => $listEvent->getTasks(),\n                'total' => $listEvent->getTotal(),\n            ]\n        );\n    }\n\n    /**\n     * @return Response\n     */\n    public function userAction(): Response\n    {\n        @trigger_error('NavbarController::userAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(NavbarUserEvent::class)) {\n            return new Response();\n        }\n\n        /** @var ShowUserEvent $userEvent */\n        $userEvent = $this->dispatch(new NavbarUserEvent());\n\n        if ($userEvent instanceof ShowUserEvent && null !== $userEvent->getUser()) {\n            return $this->render(\n                '@AdminLTE/Navbar/user.html.twig',\n                [\n                    'user' => $userEvent->getUser(),\n                    'links' => $userEvent->getLinks(),\n                    'showProfileLink' => $userEvent->isShowProfileLink(),\n                    'showLogoutLink' => $userEvent->isShowLogoutLink(),\n                ]\n            );\n        }\n\n        return new Response();\n    }\n}\n"
  },
  {
    "path": "Controller/SidebarController.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Controller;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\ShowUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarUserEvent;\nuse Symfony\\Component\\HttpFoundation\\Request;\nuse Symfony\\Component\\HttpFoundation\\Response;\n\nfinal class SidebarController extends EmitterController\n{\n    public function userPanelAction(): Response\n    {\n        @trigger_error('SidebarController::userPanelAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(SidebarUserEvent::class)) {\n            return new Response();\n        }\n\n        /** @var ShowUserEvent $userEvent */\n        $userEvent = $this->dispatch(new SidebarUserEvent());\n\n        return $this->render(\n            '@AdminLTE/Sidebar/user-panel.html.twig',\n            [\n                'user' => $userEvent->getUser(),\n            ]\n        );\n    }\n\n    public function searchFormAction(): Response\n    {\n        @trigger_error('SidebarController::searchFormAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        return $this->render('@AdminLTE/Sidebar/search-form.html.twig', []);\n    }\n\n    public function menuAction(Request $request): Response\n    {\n        @trigger_error('SidebarController::menuAction() is deprecated and will be removed with 4.0', E_USER_DEPRECATED);\n\n        if (!$this->hasListener(SidebarMenuEvent::class)) {\n            return new Response();\n        }\n\n        /** @var SidebarMenuEvent $event */\n        $event = $this->dispatch(new SidebarMenuEvent($request));\n\n        return $this->render(\n            '@AdminLTE/Sidebar/menu.html.twig',\n            [\n                    'menu' => $event->getItems(),\n            ]\n        );\n    }\n}\n"
  },
  {
    "path": "DependencyInjection/AdminLTEExtension.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\DependencyInjection;\n\nuse Symfony\\Component\\Config\\FileLocator;\nuse Symfony\\Component\\DependencyInjection\\ContainerBuilder;\nuse Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface;\nuse Symfony\\Component\\DependencyInjection\\Loader;\nuse Symfony\\Component\\HttpKernel\\DependencyInjection\\Extension;\n\n/**\n * Loads AdminLTEBundle configuration\n *\n * @see http://symfony.com/doc/current/cookbook/bundles/extension.html\n */\nclass AdminLTEExtension extends Extension implements PrependExtensionInterface\n{\n    /**\n     * {@inheritdoc}\n     */\n    public function load(array $configs, ContainerBuilder $container)\n    {\n        $configuration = new Configuration();\n        $config = $this->processConfiguration($configuration, $configs);\n        $options = $this->getContextOptions($config);\n\n        if (!empty($config)) {\n            $container->setParameter('admin_lte_theme.options', $options);\n        }\n\n        $loader = new Loader\\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));\n        $loader->load('services.yml');\n\n        if ($options['knp_menu']['enable'] === true) {\n            $loader = new Loader\\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config/container'));\n            $loader->load('knp-menu.yml');\n        }\n    }\n\n    /**\n     * Merge available configuration options, so they are all available for the ContextHelper.\n     *\n     * @param array $config\n     * @return array\n     */\n    protected function getContextOptions(array $config = [])\n    {\n        $sidebar = [];\n\n        if (isset($config['control_sidebar']) && !empty($config['control_sidebar'])) {\n            $sidebar = $config['control_sidebar'];\n        }\n\n        $contextOptions = (array) ($config['options'] ?? []);\n        $contextOptions['control_sidebar'] = $sidebar;\n        $contextOptions['knp_menu'] = (array) $config['knp_menu'];\n        $contextOptions = array_merge($contextOptions, $config['theme']);\n\n        return $contextOptions;\n    }\n\n    /**\n     * @see https://symfony.com/doc/current/bundles/prepend_extension.html\n     *\n     * @param ContainerBuilder $container\n     */\n    public function prepend(ContainerBuilder $container)\n    {\n        $configuration = new Configuration();\n        $configs = $container->getExtensionConfig($this->getAlias());\n        $config = $this->processConfiguration($configuration, $configs);\n\n        $options = (array) ($config['options'] ?? []);\n        $routes = (array) ($config['routes'] ?? []);\n\n        $container->setParameter('admin_lte_theme.options', $options);\n        $container->setParameter('admin_lte_theme.routes', $routes);\n\n        if (!array_key_exists('form_theme', $options) || null === ($theme = $options['form_theme'])) {\n            return;\n        }\n\n        $themes = [\n            'default' => '@AdminLTE/layout/form-theme.html.twig',\n            'horizontal' => '@AdminLTE/layout/form-theme-horizontal.html.twig',\n        ];\n\n        if (!array_key_exists($theme, $themes)) {\n            return;\n        }\n\n        $bundles = $container->getParameter('kernel.bundles');\n\n        // register the form theme\n        if (isset($bundles['TwigBundle'])) {\n            $container->prependExtensionConfig('twig', ['form_theme' => [$themes[$theme]]]);\n        }\n    }\n}\n"
  },
  {
    "path": "DependencyInjection/Compiler/TwigPass.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\DependencyInjection\\Compiler;\n\nuse Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface;\nuse Symfony\\Component\\DependencyInjection\\ContainerBuilder;\nuse Symfony\\Component\\DependencyInjection\\Reference;\n\n/**\n * Class TwigPass\n */\nclass TwigPass implements CompilerPassInterface\n{\n    /**\n     * You can modify the container here before it is dumped to PHP code.\n     *\n     * @param ContainerBuilder $container\n     */\n    public function process(ContainerBuilder $container)\n    {\n        $bundles = $container->getParameter('kernel.bundles');\n\n        if (!isset($bundles['TwigBundle'])) {\n            return;\n        }\n\n        $param = $container->getParameter('twig.form.resources');\n\n        if (!is_array($param)) {\n            $param = [];\n        }\n\n        $container->setParameter('twig.form.resources', $param);\n\n        $twigDefinition = $container->getDefinition('twig');\n\n        $twigDefinition->addMethodCall(\n            'addGlobal',\n            [\n                'admin_lte_context',\n                new Reference('admin_lte_theme.context_helper'),\n            ]\n        );\n    }\n}\n"
  },
  {
    "path": "DependencyInjection/Configuration.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\DependencyInjection;\n\nuse Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition;\nuse Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder;\nuse Symfony\\Component\\Config\\Definition\\ConfigurationInterface;\n\n/**\n * This is the class that validates and merges the AdminLTEBundle configuration\n *\n * @see http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class\n */\nclass Configuration implements ConfigurationInterface\n{\n    /**\n     * {@inheritdoc}\n     */\n    public function getConfigTreeBuilder()\n    {\n        $treeBuilder = new TreeBuilder('admin_lte');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->children()\n                ->append($this->getOptionsConfig())\n                ->append($this->getControlSidebarConfig())\n                ->append($this->getThemeConfig())\n                ->append($this->getKnpMenuConfig())\n                ->append($this->getRouteAliasesConfig())\n            ->end()\n        ->end();\n\n        return $treeBuilder;\n    }\n\n    private function getRouteAliasesConfig()\n    {\n        $treeBuilder = new TreeBuilder('routes');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->addDefaultsIfNotSet()\n            ->children()\n                ->scalarNode('adminlte_welcome')\n                    ->defaultValue('home')\n                    ->info('name of the homepage route')\n                ->end()\n                ->scalarNode('adminlte_login')\n                    ->defaultValue('login')\n                    ->info('name of the form login route')\n                ->end()\n                ->scalarNode('adminlte_login_check')\n                    ->defaultValue('login_check')\n                    ->info('name of the form login_check route')\n                ->end()\n                ->scalarNode('adminlte_registration')\n                    ->defaultNull()\n                    ->info('name of the user registration form route')\n                ->end()\n                ->scalarNode('adminlte_password_reset')\n                    ->defaultNull()\n                    ->info('name of the forgot-password form route')\n                ->end()\n                ->scalarNode('adminlte_message')\n                    ->defaultValue('message')\n                    ->info('name of the route to one message')\n                ->end()\n                ->scalarNode('adminlte_messages')\n                    ->defaultValue('messages')\n                    ->info('name of the route to all messages')\n                ->end()\n                ->scalarNode('adminlte_notification')\n                    ->defaultValue('notification')\n                    ->info('name of the route to one notification')\n                ->end()\n                ->scalarNode('adminlte_notifications')\n                    ->defaultValue('notifications')\n                    ->info('name of the route to all notification')\n                ->end()\n                ->scalarNode('adminlte_task')\n                    ->defaultValue('task')\n                    ->info('name of the route to one task')\n                ->end()\n                ->scalarNode('adminlte_tasks')\n                    ->defaultValue('tasks')\n                    ->info('name of the route to all tasks')\n                ->end()\n                ->scalarNode('adminlte_profile')\n                    ->defaultValue('profile')\n                    ->info('name of the route to the users profile')\n                ->end()\n            ->end()\n        ->end();\n\n        return $rootNode;\n    }\n\n    private function getKnpMenuConfig()\n    {\n        $treeBuilder = new TreeBuilder('knp_menu');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->addDefaultsIfNotSet()\n            ->children()\n                ->booleanNode('enable')\n                    ->defaultFalse()\n                    ->info('')\n                ->end()\n                ->scalarNode('main_menu')\n                    ->defaultValue('adminlte_main')\n                    ->info('your builder alias')\n                ->end()\n                ->scalarNode('breadcrumb_menu')\n                    ->defaultFalse()\n                    ->info('Your builder alias or false to disable breadcrumbs')\n                ->end()\n            ->end()\n        ->end();\n\n        return $rootNode;\n    }\n\n    private function getWidgetConfig()\n    {\n        $treeBuilder = new TreeBuilder('widget');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->addDefaultsIfNotSet()\n            ->children()\n                ->scalarNode('collapsible_title')\n                    ->defaultValue('Collapse')\n                    ->info('')\n                ->end()\n                ->scalarNode('removable_title')\n                    ->defaultValue('Remove')\n                    ->info('')\n                ->end()\n                ->scalarNode('type')\n                    ->defaultValue('primary')\n                    ->info('')\n                ->end()\n                    ->booleanNode('bordered')\n                    ->defaultTrue()\n                    ->info('')\n                ->end()\n                    ->booleanNode('collapsible')\n                    ->defaultFalse()\n                    ->info('')\n                ->end()\n                ->booleanNode('removable')\n                    ->defaultFalse()\n                    ->info('')\n                ->end()\n                ->booleanNode('solid')\n                    ->defaultFalse()\n                    ->info('')\n                ->end()\n                ->booleanNode('use_footer')\n                    ->defaultTrue()\n                    ->info('')\n                ->end()\n            ->end()\n        ->end();\n\n        return $rootNode;\n    }\n\n    private function getButtonConfig()\n    {\n        $treeBuilder = new TreeBuilder('button');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->addDefaultsIfNotSet()\n            ->children()\n                ->scalarNode('type')\n                    ->defaultValue('primary')\n                    ->info('default button type')\n                ->end()\n                ->scalarNode('size')\n                    ->defaultFalse()\n                    ->info('default button size')\n                ->end()\n            ->end()\n        ->end();\n\n        return $rootNode;\n    }\n\n    private function getThemeConfig()\n    {\n        $treeBuilder = new TreeBuilder('theme');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->addDefaultsIfNotSet()\n            ->children()\n                ->append($this->getWidgetConfig())\n                ->append($this->getButtonConfig())\n            ->end()\n        ->end();\n\n        return $rootNode;\n    }\n\n    private function getOptionsConfig()\n    {\n        $treeBuilder = new TreeBuilder('options');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->addDefaultsIfNotSet()\n            ->children()\n                ->scalarNode('default_avatar')\n                    ->defaultValue('bundles/adminlte/images/default_avatar.png')\n                ->end()\n                ->scalarNode('skin')\n                    ->defaultValue('skin-blue')\n                    ->info('see skin listing for viable options')\n                ->end()\n                ->scalarNode('form_theme')\n                    ->defaultValue('default')\n                    ->info('the form theme, must be one of: default, horizontal or null')\n                    ->validate()\n                        ->ifTrue(function ($value) {\n                            if (null === $value) {\n                                return false;\n                            }\n\n                            return !in_array($value, ['default', 'horizontal']);\n                        })\n                        ->thenInvalid('Invalid form_theme. Expected one of: \"default\", \"horizontal\" or null')\n                    ->end()\n                ->end()\n                ->booleanNode('fixed_layout')\n                    ->defaultFalse()\n                ->end()\n                ->booleanNode('boxed_layout')\n                    ->defaultFalse()\n                    ->info('these settings relate directly to the \"Layout Options\"')\n                ->end()\n                ->booleanNode('collapsed_sidebar')\n                    ->defaultFalse()\n                    ->info('described in the documentation')\n                ->end()\n                ->booleanNode('mini_sidebar')\n                    ->defaultFalse()\n                    ->info('')\n                ->end()\n                ->integerNode('max_navbar_notifications')\n                    ->defaultValue(10)\n                    ->info('Max number of notifications displayed in the notification bar')\n                ->end()\n                ->integerNode('max_navbar_tasks')\n                    ->defaultValue(10)\n                    ->info('Max number of tasks displayed in the notification bar')\n                ->end()\n                ->integerNode('max_navbar_messages')\n                    ->defaultValue(10)\n                    ->info('Max number of messages displayed in the notification bar')\n                ->end()\n            ->end()\n        ->end();\n\n        return $rootNode;\n    }\n\n    private function getControlSidebarConfig()\n    {\n        $treeBuilder = new TreeBuilder('control_sidebar');\n        /** @var ArrayNodeDefinition $rootNode */\n        $rootNode = $treeBuilder->getRootNode();\n\n        $rootNode\n            ->arrayPrototype()\n                ->children()\n                    ->scalarNode('icon')->end()\n                    ->scalarNode('controller')->end()\n                    ->scalarNode('template')->end()\n                ->end()\n            ->end()\n            ->info('controls all panels in the right control_sidebar')\n        ->end();\n\n        return $rootNode;\n    }\n}\n"
  },
  {
    "path": "Event/BreadcrumbMenuEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\n/**\n * This class SHOULD extend the MenuEvent, but for BC reasons we extend SidebarMenuEvent.\n * This can be changed for 4.0.\n */\nclass BreadcrumbMenuEvent extends SidebarMenuEvent\n{\n}\n"
  },
  {
    "path": "Event/KnpMenuEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse Knp\\Menu\\FactoryInterface;\nuse Knp\\Menu\\ItemInterface;\n\n/**\n * Collect all MenuItemInterface objects that should be rendered in the menu/navigation section.\n */\nclass KnpMenuEvent extends ThemeEvent\n{\n    /**\n     * @var ItemInterface\n     */\n    protected $menu;\n    /**\n     * @var FactoryInterface\n     */\n    protected $factory;\n    /**\n     * @var array\n     */\n    private $options;\n    /**\n     * @var array\n     */\n    private $childOptions;\n\n    /**\n     * @param ItemInterface $menu\n     * @param FactoryInterface $factory\n     * @param array $options\n     * @param array $childOptions\n     */\n    public function __construct($menu, $factory, $options = [], $childOptions = [])\n    {\n        $this->menu = $menu;\n        $this->factory = $factory;\n        $this->options = $options;\n        $this->childOptions = $childOptions;\n    }\n\n    /**\n     * @return ItemInterface\n     */\n    public function getMenu()\n    {\n        return $this->menu;\n    }\n\n    /**\n     * @return FactoryInterface\n     */\n    public function getFactory()\n    {\n        return $this->factory;\n    }\n\n    /**\n     * @return array\n     */\n    public function getOptions()\n    {\n        return $this->options;\n    }\n\n    /**\n     * @return array\n     */\n    public function getChildOptions()\n    {\n        return $this->childOptions;\n    }\n}\n"
  },
  {
    "path": "Event/MenuEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\MenuItemInterface;\nuse Knp\\Menu\\MenuItem;\nuse Symfony\\Component\\HttpFoundation\\Request;\n\n/**\n * Collect all MenuItemInterface objects that should be rendered in the menu section.\n */\nabstract class MenuEvent extends ThemeEvent\n{\n    /**\n     * @var array\n     */\n    private $menuRootItems = [];\n    /**\n     * @var Request\n     */\n    private $request;\n\n    /**\n     * @param Request $request\n     */\n    public function __construct(Request $request = null)\n    {\n        $this->request = $request;\n    }\n\n    /**\n     * @return Request\n     */\n    public function getRequest(): ?Request\n    {\n        return $this->request;\n    }\n\n    /**\n     * @return MenuItemInterface[]\n     */\n    public function getItems(): array\n    {\n        return $this->menuRootItems;\n    }\n\n    /**\n     * @param MenuItemInterface $item\n     * @return MenuEvent\n     */\n    public function addItem($item)\n    {\n        $this->menuRootItems[$item->getIdentifier()] = $item;\n\n        return $this;\n    }\n\n    /**\n     * @param MenuItemInterface|string $item\n     * @return MenuEvent\n     */\n    public function removeItem($item): MenuEvent\n    {\n        if ($item instanceof MenuItemInterface && isset($this->menuRootItems[$item->getIdentifier()])) {\n            unset($this->menuRootItems[$item->getIdentifier()]);\n        } elseif (is_string($item) && isset($this->menuRootItems[$item])) {\n            unset($this->menuRootItems[$item]);\n        }\n\n        return $this;\n    }\n\n    /**\n     * @param string $id\n     * @return MenuItemInterface|MenuItem|null\n     */\n    public function getRootItem($id)\n    {\n        return $this->menuRootItems[$id] ?? null;\n    }\n\n    /**\n     * @return MenuItemInterface|MenuItem|null\n     */\n    public function getActive()\n    {\n        foreach ($this->getItems() as $item) {\n            if ($item->isActive()) {\n                return $item;\n            }\n        }\n\n        return null;\n    }\n}\n"
  },
  {
    "path": "Event/MessageListEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageInterface;\nuse KevinPapst\\AdminLTEBundle\\Repository\\MessageRepositoryInterface;\n\n/**\n * The MessageListEvent collects all MessageInterface objects that should be rendered in the messages section.\n */\nclass MessageListEvent extends ThemeEvent implements MessageRepositoryInterface\n{\n    /**\n     * Stores the list of messages\n     *\n     * @var array\n     */\n    protected $messages = [];\n\n    /**\n     * Stores the total amount\n     *\n     * @var int\n     */\n    protected $totalMessages = 0;\n\n    /**\n     * @var int\n     */\n    protected $max = null;\n\n    /**\n     * @param int $max Maximun number of messages displayed in panel\n     */\n    public function __construct($max = null)\n    {\n        $this->max = $max;\n    }\n\n    /**\n     * Get the maximun number of notifications displayed in panel\n     *\n     * @return int\n     */\n    public function getMax()\n    {\n        return $this->max;\n    }\n\n    /**\n     * Returns the message list\n     *\n     * @return array\n     */\n    public function getMessages()\n    {\n        if (null !== $this->max) {\n            return array_slice($this->messages, 0, $this->max);\n        }\n\n        return $this->messages;\n    }\n\n    /**\n     * Pushes the given message to the list of messages.\n     *\n     * @param MessageInterface $messageInterface\n     *\n     * @return $this\n     */\n    public function addMessage(MessageInterface $messageInterface)\n    {\n        $this->messages[] = $messageInterface;\n\n        return $this;\n    }\n\n    /**\n     * Returns the message count\n     *\n     * @return int\n     */\n    public function getTotal()\n    {\n        return $this->totalMessages === 0 ? count($this->messages) : $this->totalMessages;\n    }\n\n    /**\n     * @param int $totalMessages\n     */\n    public function setTotal($totalMessages)\n    {\n        $this->totalMessages = $totalMessages;\n    }\n}\n"
  },
  {
    "path": "Event/NavbarUserEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nclass NavbarUserEvent extends ShowUserEvent\n{\n}\n"
  },
  {
    "path": "Event/NotificationListEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationInterface;\nuse KevinPapst\\AdminLTEBundle\\Repository\\NotificationRepositoryInterface;\n\n/**\n * The NotificationListEvent collects all NotificationInterface objects that should be rendered in the notification section.\n */\nclass NotificationListEvent extends ThemeEvent implements NotificationRepositoryInterface\n{\n    /**\n     * @var array\n     */\n    protected $notifications = [];\n\n    /**\n     * @var int\n     */\n    protected $total = 0;\n\n    /**\n     * @var int\n     */\n    protected $max = null;\n\n    /**\n     * @param int $max Maximun number of notifications displayed in panel\n     */\n    public function __construct($max = null)\n    {\n        $this->max = $max;\n    }\n\n    /**\n     * Get the maximun number of notifications displayed in panel\n     *\n     * @return int\n     */\n    public function getMax()\n    {\n        return $this->max;\n    }\n\n    /**\n     * @return array\n     */\n    public function getNotifications()\n    {\n        if (null !== $this->max) {\n            return array_slice($this->notifications, 0, $this->max);\n        }\n\n        return $this->notifications;\n    }\n\n    /**\n     * @param NotificationInterface $notificationInterface\n     *\n     * @return $this\n     */\n    public function addNotification(NotificationInterface $notificationInterface)\n    {\n        $this->notifications[] = $notificationInterface;\n\n        return $this;\n    }\n\n    /**\n     * @param int $total\n     */\n    public function setTotal($total)\n    {\n        $this->total = $total;\n    }\n\n    /**\n     * @return int\n     */\n    public function getTotal()\n    {\n        return $this->total === 0 ? count($this->notifications) : $this->total;\n    }\n}\n"
  },
  {
    "path": "Event/ShowUserEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\NavBarUserLink;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserDetailsInterface;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserInterface;\n\n/**\n * Collect the UserInterface object that should be rendered in the user section.\n */\nabstract class ShowUserEvent extends ThemeEvent implements UserDetailsInterface\n{\n    /**\n     * @var UserInterface\n     */\n    private $user;\n    /**\n     * @var bool\n     */\n    private $showProfileLink = true;\n    /**\n     * @var bool\n     */\n    private $showLogoutLink = true;\n    /**\n     * @var NavBarUserLink[]\n     */\n    private $links = [];\n\n    /**\n     * @param UserInterface $user\n     * @return ShowUserEvent\n     */\n    public function setUser($user)\n    {\n        $this->user = $user;\n\n        return $this;\n    }\n\n    /**\n     * @return UserInterface|null\n     */\n    public function getUser(): ?UserInterface\n    {\n        return $this->user;\n    }\n\n    /**\n     * @return NavBarUserLink[]\n     */\n    public function getLinks(): array\n    {\n        return $this->links;\n    }\n\n    /**\n     * @param NavBarUserLink $link\n     * @return ShowUserEvent\n     */\n    public function addLink(NavBarUserLink $link)\n    {\n        $this->links[] = $link;\n\n        return $this;\n    }\n\n    /**\n     * @return bool\n     */\n    public function isShowProfileLink(): bool\n    {\n        return $this->showProfileLink;\n    }\n\n    /**\n     * @param bool $showProfileLink\n     * @return ShowUserEvent\n     */\n    public function setShowProfileLink(bool $showProfileLink)\n    {\n        $this->showProfileLink = $showProfileLink;\n\n        return $this;\n    }\n\n    /**\n     * @return bool\n     */\n    public function isShowLogoutLink(): bool\n    {\n        return $this->showLogoutLink;\n    }\n\n    /**\n     * @param bool $showLogoutLink\n     * @return ShowUserEvent\n     */\n    public function setShowLogoutLink(bool $showLogoutLink)\n    {\n        $this->showLogoutLink = $showLogoutLink;\n\n        return $this;\n    }\n}\n"
  },
  {
    "path": "Event/SidebarMenuEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nclass SidebarMenuEvent extends MenuEvent\n{\n}\n"
  },
  {
    "path": "Event/SidebarUserEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nclass SidebarUserEvent extends ShowUserEvent\n{\n}\n"
  },
  {
    "path": "Event/TaskListEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskInterface;\nuse KevinPapst\\AdminLTEBundle\\Repository\\TaskRepositoryInterface;\n\n/**\n * The TaskListEvent collects all TaskInterface objects that should be rendered in the tasks section.\n */\nclass TaskListEvent extends ThemeEvent implements TaskRepositoryInterface\n{\n    /**\n     * @var TaskInterface[]\n     */\n    protected $tasks = [];\n\n    /**\n     * @var int\n     */\n    protected $max;\n\n    /**\n     * @var int\n     */\n    protected $total = 0;\n\n    /**\n     * @param int|null $max Maximum number of tasks displayed in panel\n     */\n    public function __construct($max = null)\n    {\n        $this->max = $max;\n    }\n\n    /**\n     * Get the maximun number of notifications displayed in panel\n     *\n     * @return int\n     */\n    public function getMax()\n    {\n        return $this->max;\n    }\n\n    /**\n     * @return TaskInterface[]\n     */\n    public function getTasks()\n    {\n        if (null !== $this->max) {\n            return array_slice($this->tasks, 0, $this->max);\n        }\n\n        return $this->tasks;\n    }\n\n    /**\n     * @param TaskInterface $taskInterface\n     *\n     * @return $this\n     */\n    public function addTask(TaskInterface $taskInterface)\n    {\n        $this->tasks[] = $taskInterface;\n\n        return $this;\n    }\n\n    /**\n     * @param int $total\n     *\n     * @return $this\n     */\n    public function setTotal($total)\n    {\n        $this->total = $total;\n\n        return $this;\n    }\n\n    /**\n     * @return int\n     */\n    public function getTotal()\n    {\n        return $this->total === 0 ? count($this->tasks) : $this->total;\n    }\n}\n"
  },
  {
    "path": "Event/ThemeEvent.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\nuse Symfony\\Contracts\\EventDispatcher\\Event;\n\n/**\n * Base event class to make theme related events easier to detect\n */\nclass ThemeEvent extends Event\n{\n}\n"
  },
  {
    "path": "Event/ThemeEvents.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Event;\n\n/**\n * Holds all events used by the theme\n * @deprecated since 3.0, use new Event classes directly\n */\ninterface ThemeEvents\n{\n    /**\n     * Used to receive notification data\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_NOTIFICATIONS = NotificationListEvent::class;\n    /**\n     * Used to receive message data\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_MESSAGES = MessageListEvent::class;\n    /**\n     * Used to receive task data\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_TASKS = TaskListEvent::class;\n    /**\n     * Used to receive the current user for the navbar\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_NAVBAR_USER = NavbarUserEvent::class;\n    /**\n     * Used to receive breadcrumb data\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_BREADCRUMB = BreadcrumbMenuEvent::class;\n    /**\n     * Used to receive the current user for the sidebar\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_SIDEBAR_USER = SidebarUserEvent::class;\n    /**\n     * Used to receive the sidebar menu data\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_SIDEBAR_SETUP_MENU = SidebarMenuEvent::class;\n    /**\n     * Used for the knp menu mechanics\n     *\n     * @deprecated since 3.0, use new Event classes directly\n     */\n    public const THEME_SIDEBAR_SETUP_KNP_MENU = KnpMenuEvent::class;\n}\n"
  },
  {
    "path": "Helper/Constants.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Helper;\n\ninterface Constants\n{\n    public const COLOR_AQUA = 'aqua';\n    public const COLOR_GREEN = 'green';\n    public const COLOR_RED = 'red';\n    public const COLOR_YELLOW = 'yellow';\n    public const COLOR_GREY = 'grey';\n    public const COLOR_BLACK = 'black';\n\n    /**\n     * Used in:\n     * - Model\\NotificationModel\n     * - Twig\\AdminExtension\n     */\n    public const TYPE_SUCCESS = 'success';\n    public const TYPE_WARNING = 'warning';\n    public const TYPE_ERROR = 'error';\n    public const TYPE_INFO = 'info';\n}\n"
  },
  {
    "path": "Helper/ContextHelper.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Helper;\n\nclass ContextHelper extends \\ArrayObject\n{\n    /**\n     * @return array\n     */\n    public function getOptions(): array\n    {\n        return $this->getArrayCopy();\n    }\n\n    /**\n     * @param string $name\n     * @param mixed $value\n     * @return $this\n     */\n    public function setOption(string $name, $value): ContextHelper\n    {\n        $this->offsetSet($name, $value);\n\n        return $this;\n    }\n\n    /**\n     * @param string $name\n     * @return bool\n     */\n    public function hasOption(string $name): bool\n    {\n        return $this->offsetExists($name);\n    }\n\n    /**\n     * @param string $name\n     * @param mixed $default\n     * @return mixed|null\n     */\n    public function getOption(string $name, $default = null)\n    {\n        return $this->offsetExists($name) ? $this->offsetGet($name) : $default;\n    }\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2014-2018 Marc Bach, Ángel Guzmán Maeso, Kevin Papst and others\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n---\nYou can find the full list of contributors at:\nhttps://github.com/avanzu/AdminThemeBundle/graphs/contributors\nhttps://github.com/kevinpapst/AdminLTEBundle/graphs/contributors\n"
  },
  {
    "path": "Menu/MenuBuilder.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Menu;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\KnpMenuEvent;\nuse Knp\\Menu\\FactoryInterface;\nuse Symfony\\Component\\EventDispatcher\\EventDispatcherInterface;\n\nclass MenuBuilder\n{\n    /**\n     * @var FactoryInterface\n     */\n    private $factory;\n\n    /**\n     * @var EventDispatcherInterface\n     */\n    private $eventDispatcher;\n\n    /**\n     * @param FactoryInterface $factory\n     * @param EventDispatcherInterface $eventDispatcher\n     */\n    public function __construct(FactoryInterface $factory, EventDispatcherInterface $eventDispatcher)\n    {\n        $this->factory = $factory;\n        $this->eventDispatcher = $eventDispatcher;\n    }\n\n    public function createMainMenu(array $options)\n    {\n        $menu = $this->factory->createItem('root', [\n            'childrenAttributes' => ['class' => 'sidebar-menu tree', 'data-widget' => 'tree'],\n        ]);\n\n        $childOptions = [\n            'attributes' => ['class' => 'treeview'],\n            'childrenAttributes' => ['class' => 'treeview-menu'],\n            'labelAttributes' => [],\n        ];\n\n        $this->eventDispatcher->dispatch(new KnpMenuEvent($menu, $this->factory, $options, $childOptions));\n\n        return $menu;\n    }\n}\n"
  },
  {
    "path": "Model/MenuItemInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\n/**\n * Interface MenuItemInterface\n */\ninterface MenuItemInterface\n{\n    /**\n     * @return string\n     */\n    public function getIdentifier();\n\n    /**\n     * @return string\n     */\n    public function getLabel();\n\n    /**\n     * @return string\n     */\n    public function getRoute();\n\n    /**\n     * @return bool\n     */\n    public function isActive();\n\n    /**\n     * @param bool $isActive\n     */\n    public function setIsActive($isActive);\n\n    /**\n     * @return bool\n     */\n    public function hasChildren();\n\n    /**\n     * @return array\n     */\n    public function getChildren();\n\n    /**\n     * @param MenuItemInterface $child\n     */\n    public function addChild(MenuItemInterface $child);\n\n    /**\n     * @param MenuItemInterface $child\n     */\n    public function removeChild(MenuItemInterface $child);\n\n    /**\n     * @return string\n     */\n    public function getIcon();\n\n    /**\n     * @return string\n     */\n    public function getBadge();\n\n    /**\n     * @return string\n     */\n    public function getBadgeColor();\n\n    /**\n     * @return MenuItemInterface\n     */\n    public function getParent();\n\n    /**\n     * @return bool\n     */\n    public function hasParent();\n\n    /**\n     * @param MenuItemInterface $parent\n     */\n    public function setParent(MenuItemInterface $parent = null);\n\n    /**\n     * @return MenuItemInterface|null\n     */\n    public function getActiveChild();\n}\n"
  },
  {
    "path": "Model/MenuItemModel.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\n/**\n * Class MenuItemModel\n */\nclass MenuItemModel implements MenuItemInterface\n{\n    /**\n     * @var string\n     */\n    protected $identifier;\n\n    /**\n     * @var string\n     */\n    protected $label;\n\n    /**\n     * @var string\n     */\n    protected $route;\n\n    /**\n     * @var array\n     */\n    protected $routeArgs = [];\n    /**\n     * @var bool\n     */\n    protected $isActive = false;\n    /**\n     * @var array\n     */\n    protected $children = [];\n\n    /**\n     * @var mixed\n     */\n    protected $icon = false;\n\n    /**\n     * @var mixed\n     */\n    protected $badge = false;\n\n    /**\n     * @var string\n     */\n    protected $badgeColor = 'green';\n\n    /**\n     * @var MenuItemInterface\n     */\n    protected $parent = null;\n\n    /**\n     * @param string $id\n     * @param string $label\n     * @param string $route\n     * @param array $routeArgs\n     * @param mixed $icon\n     * @param mixed $badge\n     * @param string $badgeColor\n     */\n    public function __construct(\n        $id,\n        $label,\n        $route,\n        $routeArgs = [],\n        $icon = false,\n        $badge = false,\n        $badgeColor = 'green'\n    ) {\n        $this->badge = $badge;\n        $this->icon = $icon;\n        $this->identifier = $id;\n        $this->label = $label;\n        $this->route = $route;\n        $this->routeArgs = $routeArgs;\n        $this->badgeColor = $badgeColor;\n    }\n\n    /**\n     * @return mixed\n     */\n    public function getBadge()\n    {\n        return $this->badge;\n    }\n\n    /**\n     * @param mixed $badge\n     *\n     * @return $this\n     */\n    public function setBadge($badge)\n    {\n        $this->badge = $badge;\n\n        return $this;\n    }\n\n    /**\n     * @return array\n     */\n    public function getChildren()\n    {\n        return $this->children;\n    }\n\n    /**\n     * @param array $children\n     */\n    public function setChildren($children)\n    {\n        $this->children = $children;\n    }\n\n    /**\n     * @return mixed\n     */\n    public function getIcon()\n    {\n        return $this->icon;\n    }\n\n    /**\n     * @param mixed $icon\n     *\n     * @return $this\n     */\n    public function setIcon($icon)\n    {\n        $this->icon = $icon;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getIdentifier()\n    {\n        return $this->identifier;\n    }\n\n    /**\n     * @param string $identifier\n     *\n     * @return $this\n     */\n    public function setIdentifier($identifier)\n    {\n        $this->identifier = $identifier;\n\n        return $this;\n    }\n\n    /**\n     * @return bool\n     */\n    public function getIsActive()\n    {\n        return $this->isActive;\n    }\n\n    /**\n     * @param bool $isActive\n     *\n     * @return $this\n     */\n    public function setIsActive($isActive)\n    {\n        if ($this->hasParent()) {\n            $this->getParent()->setIsActive($isActive);\n        }\n\n        $this->isActive = $isActive;\n\n        return $this;\n    }\n\n    /**\n     * @return bool\n     */\n    public function hasParent()\n    {\n        return $this->parent instanceof MenuItemInterface;\n    }\n\n    /**\n     * @return MenuItemInterface\n     */\n    public function getParent()\n    {\n        return $this->parent;\n    }\n\n    /**\n     * @param MenuItemInterface $parent\n     *\n     * @return $this\n     */\n    public function setParent(MenuItemInterface $parent = null)\n    {\n        $this->parent = $parent;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getLabel()\n    {\n        return $this->label;\n    }\n\n    /**\n     * @param string $label\n     *\n     * @return $this\n     */\n    public function setLabel($label)\n    {\n        $this->label = $label;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getRoute()\n    {\n        return $this->route;\n    }\n\n    /**\n     * @param string $route\n     *\n     * @return $this\n     */\n    public function setRoute($route)\n    {\n        $this->route = $route;\n\n        return $this;\n    }\n\n    /**\n     * @return array\n     */\n    public function getRouteArgs()\n    {\n        return $this->routeArgs;\n    }\n\n    /**\n     * @param array $routeArgs\n     *\n     * @return $this\n     */\n    public function setRouteArgs($routeArgs)\n    {\n        $this->routeArgs = $routeArgs;\n\n        return $this;\n    }\n\n    /**\n     * @return bool\n     */\n    public function hasChildren()\n    {\n        return count($this->children) > 0;\n    }\n\n    /**\n     * @param MenuItemInterface $child\n     *\n     * @return $this\n     */\n    public function addChild(MenuItemInterface $child)\n    {\n        $child->setParent($this);\n        $this->children[] = $child;\n\n        return $this;\n    }\n\n    /**\n     * @param MenuItemInterface $child\n     *\n     * @return $this\n     */\n    public function removeChild(MenuItemInterface $child)\n    {\n        if (false !== ($key = array_search($child, $this->children))) {\n            unset($this->children[$key]);\n        }\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getBadgeColor()\n    {\n        return $this->badgeColor;\n    }\n\n    /**\n     * @param string $badgeColor\n     *\n     * @return $this\n     */\n    public function setBadgeColor($badgeColor)\n    {\n        $this->badgeColor = $badgeColor;\n\n        return $this;\n    }\n\n    /**\n     * @return MenuItemInterface|null\n     */\n    public function getActiveChild()\n    {\n        foreach ($this->children as $child) {\n            if ($child->isActive()) {\n                return $child;\n            }\n        }\n\n        return null;\n    }\n\n    /**\n     * @return bool\n     */\n    public function isActive()\n    {\n        return $this->isActive;\n    }\n}\n"
  },
  {
    "path": "Model/MessageInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\n/**\n * Representation of a displayable message in the theme's messages section\n */\ninterface MessageInterface\n{\n    /**\n     * Returns the sender\n     *\n     * @return UserInterface\n     */\n    public function getFrom();\n\n    /**\n     * Returns the sentAt date\n     *\n     * @return \\DateTime\n     */\n    public function getSentAt();\n\n    /**\n     * Returns the subject\n     *\n     * @return string\n     */\n    public function getSubject();\n\n    /**\n     * Returns the unique identifier of this message\n     *\n     * @return string\n     */\n    public function getIdentifier();\n}\n"
  },
  {
    "path": "Model/MessageModel.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\nclass MessageModel implements MessageInterface\n{\n    /**\n     * @var UserInterface\n     */\n    protected $from;\n    /**\n     * @var UserInterface\n     */\n    protected $to;\n    /**\n     * @var \\DateTime\n     */\n    protected $sentAt;\n    /**\n     * @var string\n     */\n    protected $subject;\n    /**\n     * @var string\n     */\n    protected $id;\n\n    /**\n     * Creates a new MessageModel object with the given values.\n     *\n     * SentAt will be set to the current DateTime when null is given.\n     *\n     * @param UserInterface $from\n     * @param string $subject\n     * @param \\DateTime $sentAt\n     * @param UserInterface $to\n     */\n    public function __construct(UserInterface $from = null, $subject = '', $sentAt = null, UserInterface $to = null)\n    {\n        $this->to = $to;\n        $this->subject = $subject;\n        $this->sentAt = $sentAt ?: new \\DateTime();\n        $this->from = $from;\n    }\n\n    /**\n     * @return string\n     */\n    public function getId()\n    {\n        return $this->id;\n    }\n\n    /**\n     * @param string $id\n     * @return MessageModel\n     */\n    public function setId($id): MessageModel\n    {\n        $this->id = $id;\n\n        return $this;\n    }\n\n    /**\n     * Set the sender\n     *\n     * @param UserInterface $from\n     * @return $this\n     */\n    public function setFrom(UserInterface $from): MessageModel\n    {\n        $this->from = $from;\n\n        return $this;\n    }\n\n    /**\n     * Get the Sender\n     *\n     * @return UserInterface\n     */\n    public function getFrom()\n    {\n        return $this->from;\n    }\n\n    /**\n     * Set the date sent\n     *\n     * @param \\DateTime $sentAt\n     *\n     * @return $this\n     */\n    public function setSentAt(\\DateTime $sentAt): MessageModel\n    {\n        $this->sentAt = $sentAt;\n\n        return $this;\n    }\n\n    /**\n     * Get the date sent\n     *\n     * @return \\DateTime\n     */\n    public function getSentAt(): \\DateTime\n    {\n        return $this->sentAt;\n    }\n\n    /**\n     * Set the subject\n     *\n     * @param string $subject\n     * @return $this\n     */\n    public function setSubject($subject): MessageModel\n    {\n        $this->subject = $subject;\n\n        return $this;\n    }\n\n    /**\n     * Get the subject\n     *\n     * @return string\n     */\n    public function getSubject()\n    {\n        return $this->subject;\n    }\n\n    /**\n     * Set the recipient\n     *\n     * @param UserInterface $to\n     * @return $this\n     */\n    public function setTo(UserInterface $to): MessageModel\n    {\n        $this->to = $to;\n\n        return $this;\n    }\n\n    /**\n     * Get the recipient\n     *\n     * @return UserInterface\n     */\n    public function getTo()\n    {\n        return $this->to;\n    }\n\n    /**\n     * Get the identifier\n     *\n     * @return string\n     */\n    public function getIdentifier()\n    {\n        if (!empty($this->id)) {\n            return $this->id;\n        }\n\n        return $this->getSubject();\n    }\n}\n"
  },
  {
    "path": "Model/NavBarUserLink.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\nclass NavBarUserLink\n{\n    /**\n     * @var string\n     */\n    protected $title;\n    /**\n     * @var string\n     */\n    protected $path;\n    /**\n     * @var array\n     */\n    protected $parameters;\n\n    /**\n     * @param string $title\n     * @param string $path\n     * @param array $parameters\n     */\n    public function __construct($title, $path, $parameters = [])\n    {\n        $this->title = $title;\n        $this->path = $path;\n        $this->parameters = $parameters;\n    }\n\n    /**\n     * @return string\n     */\n    public function getTitle()\n    {\n        return $this->title;\n    }\n\n    /**\n     * @param string $title\n     */\n    public function setTitle($title)\n    {\n        $this->title = $title;\n    }\n\n    /**\n     * @return string\n     */\n    public function getPath()\n    {\n        return $this->path;\n    }\n\n    /**\n     * @param string $path\n     */\n    public function setPath($path)\n    {\n        $this->path = $path;\n    }\n\n    /**\n     * @return array\n     */\n    public function getParameters()\n    {\n        return $this->parameters;\n    }\n\n    /**\n     * @param array $parameters\n     */\n    public function setParameters($parameters)\n    {\n        $this->parameters = $parameters;\n    }\n}\n"
  },
  {
    "path": "Model/NotificationInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\ninterface NotificationInterface\n{\n    /**\n     * @return string\n     */\n    public function getMessage();\n\n    /**\n     * @return string\n     */\n    public function getType();\n\n    /**\n     * @return string\n     */\n    public function getIcon();\n\n    /**\n     * @return string\n     */\n    public function getIdentifier();\n}\n"
  },
  {
    "path": "Model/NotificationModel.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\n\nclass NotificationModel implements NotificationInterface\n{\n    /**\n     * @var string\n     */\n    protected $type = Constants::TYPE_INFO;\n    /**\n     * @var string\n     */\n    protected $message;\n    /**\n     * @var string\n     */\n    protected $icon;\n    /**\n     * @var string\n     */\n    protected $id;\n\n    /**\n     * @param string|null $message\n     * @param string $type\n     * @param string $icon\n     */\n    public function __construct($message = null, $type = Constants::TYPE_INFO, $icon = 'fas fa-exclamation-triangle')\n    {\n        $this->message = $message;\n        $this->type = $type;\n        $this->icon = $icon;\n    }\n\n    /**\n     * @return string\n     */\n    public function getId()\n    {\n        return $this->id;\n    }\n\n    /**\n     * @param string $id\n     * @return NotificationModel\n     */\n    public function setId($id)\n    {\n        $this->id = $id;\n\n        return $this;\n    }\n\n    /**\n     * @param string $message\n     *\n     * @return NotificationModel\n     */\n    public function setMessage($message)\n    {\n        $this->message = $message;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getMessage()\n    {\n        return $this->message;\n    }\n\n    /**\n     * @param string $type\n     *\n     * @return NotificationModel\n     */\n    public function setType($type)\n    {\n        $this->type = $type;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getType()\n    {\n        return $this->type;\n    }\n\n    /**\n     * @param string $icon\n     *\n     * @return NotificationModel\n     */\n    public function setIcon($icon)\n    {\n        $this->icon = $icon;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getIcon()\n    {\n        return $this->icon;\n    }\n\n    /**\n     * @return string\n     */\n    public function getIdentifier()\n    {\n        if (!empty($this->id)) {\n            return $this->id;\n        }\n\n        return $this->message;\n    }\n}\n"
  },
  {
    "path": "Model/TaskInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\ninterface TaskInterface\n{\n    /**\n     * @return string\n     */\n    public function getColor();\n\n    /**\n     * @return int\n     */\n    public function getProgress();\n\n    /**\n     * @return string\n     */\n    public function getTitle();\n\n    /**\n     * @return string\n     */\n    public function getIdentifier();\n}\n"
  },
  {
    "path": "Model/TaskModel.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\n\nclass TaskModel implements TaskInterface\n{\n    /**\n     * @var int\n     */\n    protected $progress;\n\n    /**\n     * @var string\n     */\n    protected $color = Constants::COLOR_AQUA;\n\n    /**\n     * @var string\n     */\n    protected $title;\n\n    /**\n     * @var string\n     */\n    protected $id;\n\n    /**\n     * @param string $title\n     * @param int $progress\n     * @param string $color\n     */\n    public function __construct($title = null, $progress = 0, $color = Constants::COLOR_AQUA)\n    {\n        $this->title = $title;\n        $this->progress = $progress;\n        $this->color = $color;\n    }\n\n    /**\n     * @return string\n     */\n    public function getId()\n    {\n        return $this->id;\n    }\n\n    /**\n     * @param string $id\n     * @return TaskModel\n     */\n    public function setId($id)\n    {\n        $this->id = $id;\n\n        return $this;\n    }\n\n    /**\n     * @param string $color\n     *\n     * @return TaskModel\n     */\n    public function setColor($color)\n    {\n        $this->color = $color;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getColor()\n    {\n        return $this->color;\n    }\n\n    /**\n     * @param int $progress\n     *\n     * @return TaskModel\n     */\n    public function setProgress($progress)\n    {\n        $this->progress = $progress;\n\n        return $this;\n    }\n\n    /**\n     * @return int\n     */\n    public function getProgress()\n    {\n        return $this->progress;\n    }\n\n    /**\n     * @param string $title\n     *\n     * @return TaskModel\n     */\n    public function setTitle($title)\n    {\n        $this->title = $title;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getTitle()\n    {\n        return $this->title;\n    }\n\n    /**\n     * @return string\n     */\n    public function getIdentifier()\n    {\n        if (!empty($this->id)) {\n            return $this->id;\n        }\n\n        return $this->title;\n    }\n}\n"
  },
  {
    "path": "Model/UserDetailsInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\ninterface UserDetailsInterface\n{\n    /**\n     * @return NavBarUserLink[]\n     */\n    public function getLinks(): array;\n\n    public function getUser(): ?UserInterface;\n\n    public function isShowProfileLink(): bool;\n\n    public function isShowLogoutLink(): bool;\n}\n"
  },
  {
    "path": "Model/UserInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\ninterface UserInterface\n{\n    /**\n     * @return string\n     */\n    public function getAvatar();\n\n    /**\n     * @return string\n     */\n    public function getUsername();\n\n    /**\n     * @return string\n     */\n    public function getName();\n\n    /**\n     * @return \\DateTime\n     */\n    public function getMemberSince();\n\n    /**\n     * @return bool\n     */\n    public function isOnline();\n\n    /**\n     * @return string\n     */\n    public function getIdentifier();\n\n    /**\n     * @return string\n     */\n    public function getTitle();\n}\n"
  },
  {
    "path": "Model/UserModel.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Model;\n\nclass UserModel implements UserInterface\n{\n    /**\n     * @var string\n     */\n    protected $avatar;\n\n    /**\n     * @var string\n     */\n    protected $username;\n\n    /**\n     * @var string\n     */\n    protected $name;\n\n    /**\n     * @var string\n     */\n    protected $title;\n\n    /**\n     * @var \\DateTime\n     */\n    protected $memberSince;\n\n    /**\n     * @var bool\n     */\n    protected $isOnline = false;\n\n    /**\n     * @var string\n     */\n    protected $id;\n\n    /**\n     * @param string $username\n     * @param string $avatar\n     * @param \\DateTime $memberSince\n     * @param bool $isOnline\n     * @param string $name\n     * @param string $title\n     */\n    public function __construct($username = '', $avatar = '', $memberSince = null, $isOnline = true, $name = '', $title = '')\n    {\n        $this->username = $username;\n        $this->avatar = $avatar;\n        $this->memberSince = $memberSince ?: new \\DateTime();\n        $this->isOnline = $isOnline;\n        $this->name = $name;\n        $this->title = $title;\n    }\n\n    /**\n     * @return string\n     */\n    public function getId()\n    {\n        return $this->id;\n    }\n\n    /**\n     * @param string $id\n     * @return UserModel\n     */\n    public function setId($id)\n    {\n        $this->id = $id;\n\n        return $this;\n    }\n\n    /**\n     * @param string $avatar\n     *\n     * @return $this\n     */\n    public function setAvatar($avatar)\n    {\n        $this->avatar = $avatar;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getAvatar()\n    {\n        return $this->avatar;\n    }\n\n    /**\n     * @param bool $isOnline\n     *\n     * @return $this\n     */\n    public function setIsOnline($isOnline)\n    {\n        $this->isOnline = $isOnline;\n\n        return $this;\n    }\n\n    /**\n     * @return bool\n     */\n    public function getIsOnline()\n    {\n        return $this->isOnline;\n    }\n\n    /**\n     * @param \\DateTime $memberSince\n     *\n     * @return $this\n     */\n    public function setMemberSince(\\DateTime $memberSince)\n    {\n        $this->memberSince = $memberSince;\n\n        return $this;\n    }\n\n    /**\n     * @return \\DateTime\n     */\n    public function getMemberSince()\n    {\n        return $this->memberSince;\n    }\n\n    /**\n     * @param string $username\n     *\n     * @return $this\n     */\n    public function setUsername($username)\n    {\n        $this->username = $username;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getUsername()\n    {\n        return $this->username;\n    }\n\n    /**\n     * @param string $name\n     *\n     * @return $this\n     */\n    public function setName($name)\n    {\n        $this->name = $name;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getName()\n    {\n        return $this->name;\n    }\n\n    /**\n     * @param string $title\n     *\n     * @return $this\n     */\n    public function setTitle($title)\n    {\n        $this->title = $title;\n\n        return $this;\n    }\n\n    /**\n     * @return string\n     */\n    public function getTitle()\n    {\n        return $this->title;\n    }\n\n    /**\n     * @return bool\n     */\n    public function isOnline()\n    {\n        return $this->getIsOnline();\n    }\n\n    /**\n     * @return string\n     */\n    public function getIdentifier()\n    {\n        if (!empty($this->id)) {\n            return $this->id;\n        }\n\n        return str_replace(' ', '-', $this->getUsername());\n    }\n}\n"
  },
  {
    "path": "README.md",
    "content": "\n--- \n# THIS BUNDLE IS NOT MAINTAINED ANYMORE\n\nThe used AdminLTE version is old.\nBoth: supported Symfony and PHP version are EOL.\n\nIssues, bug requests and even pull requests will not neither be answered nor merged.\n\nIf you are looking for a modern alternative, check out the Tabler bundle at: https://github.com/kevinpapst/TablerBundle\n\n--- \n\n\n[![Latest Stable Version](https://poser.pugx.org/kevinpapst/adminlte-bundle/v/stable)](https://packagist.org/packages/kevinpapst/adminlte-bundle)\n[![Total Downloads](https://poser.pugx.org/kevinpapst/adminlte-bundle/downloads)](https://packagist.org/packages/kevinpapst/adminlte-bundle)\n[![License](https://poser.pugx.org/kevinpapst/adminlte-bundle/license)](LICENSE)\n\n# AdminLTE Bundle for Symfony\n\nThis repository contains an upgraded version of the AvanzuAdminThemeBundle, bringing the AdminLTE theme to Symfony 4.\n\n## Introduction\n\n- [Documentation](Resources/docs/) - How to install, use and enjoy this bundle\n- [Demo app](https://github.com/kevinpapst/AdminLTEBundle-Demo) - Demo application using this bundle\n- [Kimai time-tracking](https://github.com/kimai/kimai) - online time-tracking app using this bundle and Symfony 4 \n\n### Minimum requirements\n\n- Symfony 4.3\n- PHP > 7.2\n- Twig 2.0\n\n**Compatibility:**\n\nVersion 3.x should be compatible with Symfony 5 and PHP 8, [please leave your feedback](https://github.com/kevinpapst/AdminLTEBundle/issues/144).\n\n- Version 3.x is only compatible with Symfony >= 4.3\n- Version 2.x of this bundle is compatible with Symfony < 4.3\n\n## Features\n\nSome of the main features of this theme bundle:\n\n- Two main layouts for main application and security (login, forgot password, register account...)\n- Support for Symfony 4.x\n- Support for KNPMenuBundle \n- Support for FOSUserBundle\n- Webpack-Encore support for building assets\n- Event-driven handling of menu entries, tasks and notifications\n- Translations for: english, german, italian, czech, spanish, russian, arabic, finnish, japanese, swedish, portuguese (brazilian), dutch, french, turkish, danish, chinese, slovakian, basque, polish, esperanto, hebrew, romanian (please help translating it to more languages)\n- Based on AdminLTE 2.4.8\n- Using FontAwesome 5\n\n## Installation with Symfony Flex\n\nInstallation using Symfony flex:\n\n```bash\ncomposer config extra.symfony.allow-contrib true\ncomposer req \"kevinpapst/adminlte-bundle:^3.0\"\n```\n\n## Installation with Composer\n\nInstallation using the \"traditional\" composer approach:\n\n```bash\n   composer require kevinpapst/adminlte-bundle ^3.0\n```\n\nAfterwards copy the default config to your `config/packages/` directory:\n\n```bash\ncp vendor/kevinpapst/adminlte-bundle/config/packages/admin_lte.yaml config/packages/\n```\n\nThen, enable the bundle by adding it to the list of registered bundles in the `config/bundles.php` file of your project:\n\n```php\n<?php\n\nreturn [\n    // ...\n    KevinPapst\\AdminLTEBundle\\AdminLTEBundle::class => ['all' => true],\n];\n```\n\n## Difference between AdminLTEBundle and AvanzuAdminThemeBundle\n\nFirst and foremost: the original repository has a strong backward compatibility in mind, maintenance is only done if Symfony 2 and 3 compatibility is kept (e.g. [here](https://github.com/avanzu/AdminThemeBundle/pull/216)).\n\nThat means you don't get the new shiny stuff for SF4. As I work on a Symfony 4 project, utilizing webpack-encore I needed a solution. \n\nFirst I tried to sent PRs for the original repository, but those were not always accepted [eg. here](https://github.com/avanzu/AdminThemeBundle/pulls/kevinpapst). \nAs I really needed an upgraded version, I tried to manage a branch in a fork for a couple of weeks, but that wasn't working well \nand I found myself overwriting more and more stuff in my project until there was a point were I had to choose between:\n1. doing all the changes in my project \n2. doing the changes in my forked repository and having \"dev-\" entries in my composer.json\n3. cleanup the fork, merge it with my project changes and release it for the community\n\nThe choice **3** was easy and obvious for me: I am doing the work now in this repository with a fresh start and the chance for backward-compatibility breaks (for the users migrating from the AdminThemeBundle).\n\n### Main differences\n\nThis repository was created from the original master, but with a lot of enhancements on top:\n\n- Auto discovery for commands (see [#215](https://github.com/avanzu/AdminThemeBundle/pull/215))\n- Symfony4 compatibility (see [#215](https://github.com/avanzu/AdminThemeBundle/pull/216))\n- Dynamic config options (see [#217](https://github.com/avanzu/AdminThemeBundle/pull/217))\n- Upgraded to AdminLTE 2.4.8\n- Added support for [FOSUserBundle](Resources/docs/fos_userbundle.md)\n- Added Symfony Flex recipe for easier integration\n- Using Webpack-Encore for compiling frontend-assets\n- Fixed KNPMenu integration\n- Replaced AliasRouting with simpler version\n- Changed namespaces to allow co-existence with AdminThemeBundle for migration\n- Changed and extended default configuration\n- Huge cleanup of the codebase\n- Changed all twig block-names (with additional layout shim files for migration)   \n- Changed control-sidebar, content is now configurable from admin_lte.yaml or the ContextHelper\n- A [Demo application](https://github.com/kevinpapst/AdminLTEBundle-Demo) as living documentation for first time users and easier testing\n- Updated composer.json to reflect more up-to-date bundle dependencies\n- Introduction of unit tests, phpstan and code-style rules (all checked by Travis)\n\n### Migration from AvanzuAdminTheme\n\nBe aware: I decided to change some project internals and got rid of some features from the original AdminThemeBundle.\nI found the all-in-one solution to be more problematic then helpful at several places, so I took the chance to update it to my own interpretation of a theme bundle.\n\nIf you previously used the `AvanzuAdminTheme` you will not be able to \"just replace\" the composer package. \nPlan ahead, you will need (depending on the size of your project) a couple of hours [for the migration](Resources/docs/migration_guide.md).\n\nI migrated my own project within ~4 hours, but I had to move a lot of the customization to the bundle (e.g. the webpack-encore build) in the same time. \nSee the PRs [#202](https://github.com/kimai/kimai/pull/202/files) and [#206](https://github.com/kevinpapst/kimai2/pull/206/files) for migration examples. \n\n## License and contributors\n\nPublished under the MIT, read the [LICENSE](LICENSE) file for more information.\n\nThis repository is based on the work of [AdminThemeBundle](https://github.com/avanzu/AdminThemeBundle), please check their contributor list as well and give them a star!\n"
  },
  {
    "path": "Repository/MessageRepositoryInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Repository;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageInterface;\n\ninterface MessageRepositoryInterface\n{\n    /**\n     * @return int\n     */\n    public function getTotal();\n\n    /**\n     * @return iterable<MessageInterface>\n     */\n    public function getMessages();\n}\n"
  },
  {
    "path": "Repository/NotificationRepositoryInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Repository;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationInterface;\n\ninterface NotificationRepositoryInterface\n{\n    /**\n     * @return int\n     */\n    public function getTotal();\n\n    /**\n     * @return iterable<NotificationInterface>\n     */\n    public function getNotifications();\n}\n"
  },
  {
    "path": "Repository/TaskRepositoryInterface.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Repository;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskInterface;\n\ninterface TaskRepositoryInterface\n{\n    /**\n     * @return int\n     */\n    public function getTotal();\n\n    /**\n     * @return iterable<TaskInterface>\n     */\n    public function getTasks();\n}\n"
  },
  {
    "path": "Resources/assets/admin-lte-extensions.scss",
    "content": "\n@import \"~bootstrap-sass/assets/stylesheets/bootstrap/variables\";\n\n/*\n * This theme was upgraded to FONT AWESOME 5\n * which is not supported by the original \"AdminLTE\" theme yet.\n *\n * So we have to do add add some additional styles:\n */\n.sidebar-menu>li>a>.far,\n.sidebar-menu>li>a>.fas,\n.sidebar-menu>li>a>.fal,\n.sidebar-menu>li>a>.fab {\n    width: 20px;\n}\n\n.sidebar-menu .treeview-menu>li>a>.far,\n.sidebar-menu .treeview-menu>li>a>.fas,\n.sidebar-menu .treeview-menu>li>a>.fal,\n.sidebar-menu .treeview-menu>li>a>.fab {\n    width: 20px;\n}\n\n.main-header .sidebar-toggle {\n    font-family: \"Font Awesome 5 Free\";\n    font-weight: 900;\n}\n\n.login-page form label {\n    padding-left: 5px;\n}\n\n.control-label.required:after {\n    content:\" *\";\n    font-size: 110%;\n}\n\n.timeline > li > .far,\n.timeline > li > .fas,\n.timeline > li > .fal,\n.timeline > li > .fab {\n    width: 30px;\n    height: 30px;\n    font-size: 15px;\n    line-height: 30px;\n    position: absolute;\n    color: #666;\n    background: #d2d6de;\n    border-radius: 50%;\n    text-align: center;\n    left: 18px;\n    top: 0;\n}\n\n@media (min-width: $screen-sm-min) {\n    body.login-page {\n        .login-logo {\n            padding-top: 45px;\n            margin-bottom: 55px;\n        }\n    }\n}\n\nbody.login-page {\n    .login-box-body {\n        padding: 20px;\n        box-shadow: 0px 29px 147.5px 102.5px rgba(0, 0, 0, 0.05), 0px 29px 95px 0px rgba(0, 0, 0, 0.16);\n    }\n    label {\n        font-weight: normal;\n    }\n    button.btn.btn-flat, input[type=text], input[type=password] {\n        border-radius: 3px;\n    }\n}"
  },
  {
    "path": "Resources/assets/admin-lte.js",
    "content": "// ------ jquery and bootstrap basics ------\n// create global $ and jQuery variables\nconst $ = require('jquery');\nglobal.$ = global.jQuery = $;\n\nrequire('jquery-ui');\nrequire('bootstrap-sass');\nrequire('jquery-slimscroll');\nrequire('bootstrap-select');\n\nconst Moment = require('moment');\nglobal.moment = Moment;\nrequire('daterangepicker');\n\n// ------ AdminLTE framework ------\nrequire('./admin-lte.scss');\nrequire('admin-lte/dist/css/AdminLTE.min.css');\nrequire('admin-lte/dist/css/skins/_all-skins.css');\nrequire('./admin-lte-extensions.scss');\n\nglobal.$.AdminLTE = {};\nglobal.$.AdminLTE.options = {};\nrequire('admin-lte/dist/js/adminlte.min');\n\n// ------ Theme itself ------\nrequire('./default_avatar.png');\n\n// ------ icheck for enhanced radio buttons and checkboxes ------\nrequire('icheck');\nrequire('icheck/skins/square/blue.css');\n"
  },
  {
    "path": "Resources/assets/admin-lte.scss",
    "content": "\n$icon-font-path: \"~bootstrap-sass/assets/fonts/bootstrap/\";\n$fa-font-path: \"~@fortawesome/fontawesome-free/webfonts/\";\n\n@import '~bootstrap-sass/assets/stylesheets/bootstrap';\n@import '~@fortawesome/fontawesome-free/scss/fontawesome';\n@import '~@fortawesome/fontawesome-free/scss/regular';\n@import '~@fortawesome/fontawesome-free/scss/solid';\n@import '~@fortawesome/fontawesome-free/scss/brands';\n@import '~daterangepicker/daterangepicker.css';\n@import '~bootstrap-select/dist/css/bootstrap-select.min.css';\n"
  },
  {
    "path": "Resources/config/container/knp-menu.yml",
    "content": "services:\n\n    KevinPapst\\AdminLTEBundle\\Menu\\MenuBuilder:\n        class: KevinPapst\\AdminLTEBundle\\Menu\\MenuBuilder\n        arguments:\n            - \"@knp_menu.factory\"\n            - \"@event_dispatcher\"\n        tags:\n            - { name: knp_menu.menu_builder, method: createMainMenu, alias: adminlte_main }"
  },
  {
    "path": "Resources/config/services.yml",
    "content": "services:\n\n    KevinPapst\\AdminLTEBundle\\Twig\\RuntimeExtension:\n        class: KevinPapst\\AdminLTEBundle\\Twig\\RuntimeExtension\n        arguments:\n            - '@admin_lte_theme.context_helper'\n            - '%admin_lte_theme.routes%'\n        tags:\n            - { name: twig.runtime }\n\n    KevinPapst\\AdminLTEBundle\\Twig\\EventsExtension:\n        class: KevinPapst\\AdminLTEBundle\\Twig\\EventsExtension\n        arguments:\n            - '@event_dispatcher'\n            - '@admin_lte_theme.context_helper'\n        tags:\n            - { name: twig.runtime }\n\n    KevinPapst\\AdminLTEBundle\\Twig\\AdminExtension:\n        class: KevinPapst\\AdminLTEBundle\\Twig\\AdminExtension\n        tags:\n            - { name: twig.extension }\n\n    admin_lte_theme.context_helper:\n        class: KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper\n        arguments:\n            - '%admin_lte_theme.options%'\n\n    KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper:\n        alias: admin_lte_theme.context_helper\n"
  },
  {
    "path": "Resources/docs/README.md",
    "content": "# AdminLTE Bundle documentation\n\nIf you cannot find the needed information in this list of topics, please create an [issue](https://github.com/kevinpapst/AdminLTEBundle/issues):\n\n* [Bundle configuration](configurations.md)\n  * [Configure the theme](bundle_options.md)\n* [Using the layout](layout.md)\n* [Components](component_events.md)\n* [Breadcrumb Menu](breadcrumbs.md)\n* [Form theme](form_theme.md)\n* [Twig Widgets / Embeds](twig_widgets.md)\n* [FOSUserBundle integration](fos_userbundle.md)\n\nCustomizing the left menu-sidebar:\n\n* [Sidebar User](sidebar_user.md)\n* [Sidebar Navigation](sidebar_navigation.md)\n* [KNP Menu integration](knp_menu.md) \n\nCustomizing the upper navigation bar:\n\n* [Navbar User](navbar_user.md)\n* [Navbar Tasks](navbar_tasks.md)\n* [Navbar Messages](navbar_messages.md)\n* [Navbar Notifications](navbar_notifications.md)\n\nCustomizing the right control sidebar:\n\n* [Control Sidebar](control_sidebar.md)\n\nExtending webpack-encore:\n\n* [Building frontend assets](frontend_assets.md)\n* [Extend Webpack Encore](extend_webpack_encore.md)\n\nFor the users how come from the original AdminThemeBundle:\n\n* [Migrating from AdminThemeBundle](migration_guide.md)\n\n## Resources\n\nFurther resources related to this theme:\n\n* [AdminLTEBundle demo application](https://github.com/kevinpapst/AdminLTEBundle-Demo)\n* [AdminLTE 2.3](https://adminlte.io/themes/AdminLTE/documentation/index.html)\n* [Bootstrap 3](https://getbootstrap.com/docs/3.3/)\n* [FontAwesome 5](https://fontawesome.com)"
  },
  {
    "path": "Resources/docs/breadcrumbs.md",
    "content": "# The Breadcrumb component\n\nThe breadcrumb maps a list of route to a list of link. \n\nYou don't need to build a new EventListener/EventSubscriber as long as you've already made it with the [Sidebar Navigation](sidebar_navigation.md) component. \nIf it fits your needs, you can re-use this class to build the Breadcrumb list of links.\n\n## EventSubscriber\n\nEdit the previously made class `MenuBuilderSubscriber` and register it for another event:\n\n```php\n<?php\n// src/EventSubscriber/MenuBuilderSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\BreadcrumbMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarMenuEvent;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\n\nclass MenuBuilderSubscriber implements EventSubscriberInterface\n{\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            SidebarMenuEvent::class => ['onSetupMenu', 100],\n            BreadcrumbMenuEvent::class => ['onSetupNavbar', 100],\n        ];\n    }\n    \n    // ... the rest of the class follows here ...\n}\n```\n\n## EventListener\n\nIf you are using an EventListener, you have to register it as new listener to the event system. \n\n```yaml\n# config/services.yaml\nservices:\n    app.breadcrumb_listener:\n        class: App\\EventListener\\MenuBuilderListener\n        tags:\n            - { name: kernel.event_listener, event: theme.breadcrumb, method: onSetupMenu }\n```\n\nAs you can see we are using the menu listener from the [Sidebar Navigation](sidebar_navigation.md) \nbut attaching to the `theme.breadcrumb` event.\n\n## Translating breadcrumb items\n\nYou don't have to care about translating your breadcrumb, each item will be automatically displayed by applying the `|trans` filter. \nWe apply the same principle as we do in the [Sidebar Navigation](sidebar_navigation.md). \n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/bundle_options.md",
    "content": "# Theme options\n\nThe theme options define the basic layout of your side. \nIf you want to change any default value, define the key in `config/packages/admin_lte.yaml` under the `admin_lte.options` key. \n\nSee example below:\n\n```yaml\nadmin_lte:\n    options:\n        default_avatar: 'bundles/adminlte/images/default_avatar.png'\n        skin: 'skin-blue'\n        fixed_layout: false\n        boxed_layout: false\n        collapsed_sidebar: false\n        mini_sidebar: false\n```\n\nAvailable AdminLTE skins are: \n\n- skin-blue (default)\n- skin-blue-light\n- skin-yellow\n- skin-yellow-light\n- skin-green\n- skin-green-light\n- skin-purple\n- skin-purple-light\n- skin-red\n- skin-red-light\n- skin-black\n- skin-black-light\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/component_events.md",
    "content": "# Accessing components\n\nThe contents of the navbar and sidebar are separated into components, following an event driven approach.\n\nThe general process to use a particular component is: create an EventListener or EventSubscriber and use the given event object to add UI elements.\n\nEach component has its own event and specific UI data interface.\n\n## Available events\n\nPlease see the [event directory](https://github.com/kevinpapst/AdminLTEBundle/blob/master/Event/) for all available events.\n\n| Name | Description |\n|:-|-|\n\n| Event-Class | Description | Link |\n|---|---|---|\n| `NotificationListEvent::class`    | Used to receive notification data                 | [read more](navbar_notifications.md) |\n| `MessageListEvent::class`         | Used to receive message data                      | [read more](navbar_messages.md) |\n| `TaskListEvent::class`            | Used to receive task data                         | [read more](navbar_tasks.md) |\n| `NavbarUserEvent::class`          | Used to receive the current user for the navbar   | [read more](navbar_user.md) |\n| `BreadcrumbMenuEvent::class`      | Used to receive breadcrumb data                   | [read more](breadcrumbs.md) |\n| `SidebarUserEvent::class`         | Used to receive the current user for the sidebar  | [read more](sidebar_user.md) |\n| `SidebarMenuEvent::class`         | Used to receive the sidebar menu data             | [read more](sidebar_navigation.md) |\n| `KnpMenuEvent::class`             | Used for the knp menu mechanics                   | [read more](knp_menu.md) |\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/configurations.md",
    "content": "# Configurations\n\nAfter installing the theme, you have to adjust a couple of config settings to your application.\n\nThe configuration file is located at `config/packages/admin_lte.yaml` and contains these main sections:\n\n```yaml\nadmin_lte: \n    options: \n    control_sidebar: \n    theme: \n    knp_menu: \n    routes: \n```\n\n## Theme options (admin_lte.options)\n\nThe theme options define the basic layout of your side. \n\nRead more in the [theme options](bundle_options.md) documentation.\n\n## Control Sidebar (admin_lte.control_sidebar)\n\nThe control sidebar on the right-hand screen will slide-in over the content area.\nIt can contain up to 5 tabs, all of them will display an icon in the tab header.     \n\nRead more in the [control sidebar](control_sidebar.md) documentation.\n\n## Theme configuration (admin_lte.theme)\n\nDefault values for several components can be set in `widget` section, find more information in the [Twig widgets](twig_widgets.md) documentation.\n\n## KNP Menu (admin_lte.knp_menu)\n\nIf you use the KNP MenuBundle in your application, you can configure it to be used in the theme.\n\nPlease read the [KNP menu docu](knp_menu.md) for more information.\n\n## Route aliases (admin_lte.routes)\n\nSince most of the components do generate one or two specific links (e.g. task list and task details) we are using an alias concept for defining the link within the theme.\n\nThe specific routes must be rigged with the option `admin_lte.routes` defining the alias name like so: \n\n```yaml\nadmin_lte:\n    routes:\n        adminlte_welcome: dashboard\n```\n\nSo the theme route name `adminlte_welcome` maps to your route `dashboard`. Without defining these routes, the theme will not be able to render.\n\n### Available route aliases\n\n- `adminlte_welcome`: Used for the \"homepage\" within the theme (defaults to: home)\n- `adminlte_login`: The login route (defaults to: login, must match option: `security.firewalls.xyz.form_login.login_path`)\n- `adminlte_login_check`: The login route (defaults to: login_check, must match option: `security.firewalls.xyz.form_login.check_path`)\n- `adminlte_registration`: The route for the registration form (defaults to: null). If route is not defined, then the link is not shown.\n- `adminlte_password_reset`: The route for the \"forgot password\" form (defaults to: null). If route is not defined, then the link is not shown.\n- `adminlte_message`: Used to generate a link to a specific message, receives parameter `id` (defaults to: message)\n- `adminlte_messages`: Used to generate the message list link (defaults to: messages)\n- `adminlte_notification`: Used to generate a link to a specific notification, receives parameter `id` (defaults to: notification)\n- `adminlte_notifications`: Used to generate the notification list link (defaults to: notifications)\n- `adminlte_task`: Used to generate a link to a specific task, receives parameter `id` (defaults to: task)\n- `adminlte_tasks`: Used to generate the task list link (defaults to: tasks)\n- `adminlte_profile`: Used for the current user's profile (defaults to: profile)\n\n## Default configuration\n\nThe key `control_sidebar` is not part of the default configuration, for more information read the [control sidebar](control_sidebar.md) chapter. \n\n```yaml\nadmin_lte: \n    options: \n        default_avatar: 'bundles/adminlte/images/default_avatar.png'\n        skin: 'skin-blue'\n        fixed_layout: false\n        boxed_layout: false\n        collapsed_sidebar: false\n        mini_sidebar: false\n        form_theme: default\n        max_navbar_notifications: 5\n        max_navbar_tasks: 5\n        max_navbar_messages: 5\n        \n    control_sidebar: \n        [...]\n        \n    theme: \n        widget: \n            type: 'primary'\n            bordered: true\n            collapsible: false\n            collapsible_title: 'Collapse'\n            removable: false\n            removable_title: 'Remove'\n            solid: false\n            use_footer: true\n        button: \n            type: 'primary'\n            size: false\n            \n    knp_menu: \n        enable: false\n        main_menu: 'adminlte_main'\n        breadcrumb_menu: false\n        \n    routes: \n        adminlte_welcome: 'home'\n        adminlte_login: 'login'\n        adminlte_login_check: 'login_check'\n        adminlte_registration: NULL\n        adminlte_password_reset: NULL\n        adminlte_message: 'message'\n        adminlte_messages: 'messages'\n        adminlte_notification: 'notification'\n        adminlte_notifications: 'notifications'\n        adminlte_task: 'task'\n        adminlte_tasks: 'tasks'\n        adminlte_profile: 'profile'\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/control_sidebar.md",
    "content": "# Control-Sidebar\n\nThe control sidebar on the right-hand screen will slide-in over the content area.\nIt can contain up to 5 tabs, all of them will display an icon in the tab header.     \n\nIt can be configured with the package config `admin_lte.yaml` at the node:\n```yaml\nadmin_lte:\n    control_sidebar:\n```\n\nThe `control_sidebar` key is an array, where each key represents a tab. It must contain an combination of two keys:\n\n- either `icon` and `template`\n- or `icon` and `controller`\n\nBoth variants can be mixed through the tabs, so this would be a valid configuration:\n \n```yaml\nadmin_lte:\n    control_sidebar:\n        home:\n            icon: fas fa-home\n            template: control-sidebar/home.html.twig\n        settings:\n            icon: fas fa-cogs\n            controller: 'App\\Controller\\DefaultController::controlSidebarSettings'\n```\n\nThe first tab `home` will use the FontAwesome icon `home` and render the content from the template located at `templates/control-sidebar/home.html.twig`.\n\nThe second tab `settings` will use the FontAwesome icon `cogs` and render the content from the result of the call to the `DefaultController` and its action `controlSidebarSettings()`.\n\n## Using controller actions\n\nA simple example for the above configuration could look like this:\n\n```php\nnamespace App\\Controller;\n\nuse Symfony\\Component\\HttpFoundation\\Request;\n\nclass DefaultController extends AbstractController\n{\n    public function controlSidebarSettings(Request $originalRequest) \n    {\n        return $this->render('control-sidebar/settings.html.twig', []);\n    }\n}\n```\n\nNote that you can get the original request passed in with the variable `$originalRequest` (which is optional).\nThis might be useful if you want to access the original requested route or request parameter. \n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/extend_webpack_encore.md",
    "content": "# Extend Webpack Encore\n\nIf you are going to use your customized webpack-encore configuration and\nwant to take advantage of all the libraries imported from AdminLTEBundle, \nyou can easily extend its configuration.\n\n## Create your webpack.config.js\n\nFirst of all, create your own webpack.config.js, as in [Symfony documentation](http://symfony.com/doc/current/frontend/encore/simple-example.html):\n\n```js\nvar Encore = require('@symfony/webpack-encore');\n\nEncore\n    .setOutputPath('public/builds/')\n    .setPublicPath('/builds')\n\n    // this will be your app!\n    .addEntry('app', './assets/js/app.js')\n    .autoProvidejQuery()\n    .enableSourceMaps(!Encore.isProduction())\n    .cleanupOutputBeforeBuild()\n    .enableBuildNotifications()\n    // You need sass loader!\n    .enableSassLoader()\n;\n\nmodule.exports = Encore.getWebpackConfig();\n```\n\nNow you need to create (or update) your `package.json`. If you don't have one, copy\n[package.json](../../package.json) from AdminLTEBundle. If you already have one, then\nintegrate it with the packages listed in `vendor/kevinpapst/adminlte-bundle/package.json`.  \n\nThen create your main app and require adminlte:\n```js\n// assets/js/app.js\nrequire('../../vendor/kevinpapst/adminlte-bundle/Resources/assets/admin-lte');\n```\n\nThen, if you haven't done it already, install all packages and build your assets:\n\n```bash\nyarn install\n[...]\n./node_modules/.bin/encore production\n```\n\n## Correct the assets path\n\nNow you have to update your assets path. To do this, create a new template\nthat is going to extend AdminLTEBundle main template:\n\n```twig\n{# templates/base.html.twig #}\n\n{% extends '@AdminLTE/layout/default-layout.html.twig' %}\n\n{% block stylesheets %}\n    <link rel=\"stylesheet\" href=\"{{ asset('builds/app.css') }}\">\n{% endblock %}\n\n{% block javascripts %}\n    <script src=\"{{ asset('builds/app.js') }}\"></script>\n{% endblock %}\n```\n\nAnd finally, in your project, extend your `templates/base.html.twig` when rendering \nyour pages:\n\n```twig\n{% extends 'base.html.twig' %}\n```\n\nNow, you can edit your `webpack.config.js` as you need. \n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/form_theme.md",
    "content": "# Form theme\n\nThis bundle provides two form-themes:\n- [Resources/views/layout/form-theme.html.twig](Resources/views/layout/form-theme.html.twig)\n- [Resources/views/layout/form-theme-horizontal.html.twig](Resources/views/layout/form-theme-horizontal.html.twig)\n\nThe first one `form-theme.html.twig` is the default theme, which is automatically registered and will be applied to all form elements, \nunless you overwrite it with an application wide form theme or manually overwrite it for a single form.\n\n## Deactivate or switch default theme\n\nSome users might not be comfortable with the default registration of the form theme, eg. because:\n- they want to use the horizontal layout by default\n- they want to activate the form theme only for single forms and not globally\n\nWith v4 you can now change that with the following config key:\n```yaml\nadmin_lte:\n    options:\n        form_theme: ~\n```\nThe allowed values are `default`, `horizontal` and the value null (here represented by `~`).\n\n## Use the horizontal theme\n\nTo use the horizontal theme everywhere in your application edit `config/packages/twig.yaml`:\n\n```yaml\ntwig:\n    form_themes:\n        - '@AdminLTE/layout/form-theme-horizontal.html.twig'\n```\n\nTo use it only for one form, change your twig file:\n\n```twig\n    {% form_theme form '@AdminLTE/layout/form-theme-horizontal.html.twig' %}\n    {{ form_start(form) }}\n```\n\n## Overwrite form theme in your application\n\nCreate a new twig file, e.g. at `templates/form/theme.html.twig`:\n\n```twig\n{% extends \"@AdminLTE/layout/form-theme.html.twig\" %}\n\n{% block form_label %}\n    {% if form.vars.docu is defined and form.vars.docu is not empty %}\n        <a href=\"{{ path('help_chapter', {'chapter': form.vars.docu}) }}\"><i class=\"{{ 'help'|icon }}\"></i></a>\n    {% endif %}\n    {{ parent() }}\n{% endblock form_label %}\n``` \n\nand register it in `config/packages/twig.yaml`:\n\n```yaml\ntwig:\n    form_themes:\n        - 'form/theme.html.twig'\n```\n\n### Overwrite one form with your layout\n\nTo override the default theme in any twig template you add a line like this to your twig file:\n\n```twig\n{% form_theme form 'form/theme.html.twig' %}\n```\n\n## Links \nIt is also possible to overwrite the form theme by referencing \n[multiple templates](https://symfony.com/doc/current/form/form_customization.html#multiple-templates) in order of priority \nor only customize/override some child elements in the form like:\n\n```twig\n{% form_theme form.submit '@AdminLTE/layout/form-theme.html.twig' %}\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/fos_userbundle.md",
    "content": "# FOSUserBundle integration\n\nThis bundle is prepared for a flawless integration with FOSUserBundle, but its not coming out-of-the-box.\n\nFirst follow the [installation instruction for the FOSUserBundle](http://symfony.com/doc/current/bundles/FOSUserBundle/index.html) and\nconfigure it to your needs. \n\nThen integrate it with the AdminLTEBundle as follows.\n\n## config/packages/admin_lte.yaml\n\n```yaml\nadmin_lte:\n    routes:\n        adminlte_login: fos_user_security_login\n        adminlte_login_check: fos_user_security_check\n        adminlte_registration: fos_user_registration_register\n        adminlte_password_reset: fos_user_resetting_request\n```\n\nIf you don't want the \"password reset\" and/or \"register account\" functionality, \nsimply remove the configuration keys `adminlte_password_reset` and `adminlte_registration`. \n\n## Create templates\n\nCreate the directory `templates/bundles/FOSUserBundle/` with the following directory structure and files:\n\n```\ntemplates/bundles\n└── FOSUserBundle\n    ├── Registration\n    │   ├── confirmed.html.twig\n    │   └── register.html.twig\n    ├── Resetting\n    │   └── request.html.twig\n    ├── Security\n    │   └── login.html.twig\n    └── layout.html.twig\n```\n\nNow create the files with the following content:\n \n### Registration/confirmed.html.twig\n\n```yaml\n{% extends '@AdminLTE/FOSUserBundle/Registration/confirmed.html.twig' %}\n```\n\n### Registration/register.html.twig\n\n```yaml\n{% extends '@AdminLTE/FOSUserBundle/Registration/register.html.twig' %}\n```\n\n### Resetting/request.html.twig\n\n```yaml\n{% extends '@AdminLTE/FOSUserBundle/Resetting/request.html.twig' %}\n```\n\n### Security/login.html.twig\n\n```yaml\n{% extends '@AdminLTE/FOSUserBundle/Security/login.html.twig' %}\n```\n\n### layout.html.twig\n\n```yaml\n{% extends '@AdminLTE/FOSUserBundle/layout.html.twig' %}\n```\n\n## Overwriting the application name\n\nYou might want to overwrite the block `logo_login` in each file to display your app name like this:\n\n```yaml\n{% block logo_login %}<b>Demo</b><br>Application{% endblock %}\n```\n\nYou can have a look at the files in the [demo application](https://github.com/kevinpapst/AdminLTEBundle-Demo/tree/master/templates/bundles/FOSUserBundle) to get a first idea.\n"
  },
  {
    "path": "Resources/docs/frontend_assets.md",
    "content": "# Rebuilding assets\n\nIn case you want to rebuild the static scripts or need a build for a custom environment.\n\n## Install vendor scripts\n\nExecute `yarn install` to install the dependencies for this theme. \n    \n## Build asset files\n\nTo re-generate the asset files execute: \n\n```\nnpm run build\n```\n\nThese new assets will be stored at `Resources/public/`.\n\n## Subdirectory usage\n\nThe AdminLTE theme comes pre-compiled for usage at domain level. If your application runs under a subdirectory,\nyou have to change a line in the file [webpack.config.js](https://github.com/kevinpapst/AdminLTEBundle/blob/master/webpack.config.js#L8) from:\n\n```\n    .setPublicPath('/bundles/adminlte/')\n```\n\nto your subdirectory. \n\nLets say run app runs at https://www.example.com/my-app/ then you need to change it to:\n\n```\n    .setPublicPath('/my-app/bundles/adminlte/')\n```\n\nThis path is used for referencing assets from the users browser, so the generated path must be an absolute path to \nthe directory `my-app/public/bundles/adminlte/`.\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/knp_menu.md",
    "content": "# KnpMenu integration\n\nThe KnpMenu can be used instead of the regular built-in menu and breadcrumb components. \n\n## Install the suggested dependency\n\nInstall through composer with:\n\n```\ncomposer require knplabs/knp-menu-bundle\n```\n\nThen add in your `config/bundles.php`:\n\n```\n<?php\nreturn [\n    Knp\\Bundle\\MenuBundle\\KnpMenuBundle::class => ['all' => true],\n];\n```\n\n## Enabling the KnpMenu support \nIn order to use the KnpMenu integration you need to enable it in the configuration: \n\n```yaml\nadmin_lte:\n    knp_menu:   \n        enable: true\n```\nEnabling the KnpMenu support will disable the regular breadcrumb and menu events. \nInstead, there will be a new `knp_menu.menu_builder` aliased `adminlte_main` which will dispatch a new event to hook into.\n\n### The Event\n\nQuite similar to the `SidebarMenuEvent`, using the knp_menu will trigger the `KnpMenuEvent` event. \n\nThe event listener will receive the `KnpMenuEvent` gives access to the root menu item, the menu factory and if applicable the `$options` and `$childOptions` as configured in the menu builder. \n\n## EventSubscriber - auto-discovery with Symfony 4\n\nIn case you activated service discovery and auto-wiring in your app, you can write an EventSubscriber which will \nbe automatically registered in your container:\n\n```php\n<?php\n// src/EventSubscriber/KnpMenuBuilderSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\KnpMenuEvent;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\n\nclass KnpMenuBuilderSubscriber implements EventSubscriberInterface\n{\n\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            KnpMenuEvent::class => ['onSetupMenu', 100],\n        ];\n    }\n    \n    public function onSetupMenu(KnpMenuEvent $event)\n    {\n        $menu = $event->getMenu();\n\n        $menu->addChild('MainNavigationMenuItem', [\n       \t    'label' => 'MAIN NAVIGATION',\n            'childOptions' => $event->getChildOptions()\n        ])->setAttribute('class', 'header');\n        \n        $menu->addChild('blogId', [\n            'route' => 'item_symfony_route',\n            'label' => 'Blog',\n            'childOptions' => $event->getChildOptions(),\n            'extras' => [\n                'badge' => [\n                    'color' => 'yellow',\n                    'value' => 4,\n                ],\n            ],\n        ])->setLabelAttribute('icon', 'fas fa-tachometer-alt');\n        \n        $menu->getChild('blogId')->addChild('ChildOneItemId', [\n            'route' => 'child_1_route',\n            'label' => 'ChildOneDisplayName',\n            'extras' => [\n                'badges' => [\n                    [ 'value' => 6, 'color' => 'blue' ],\n                    [ 'value' => 5, ],\n                ],\n            ],\n            'childOptions' => $event->getChildOptions()\n        ])->setLabelAttribute('icon', 'fas fa-rss-square');\n        \n        $menu->getChild('blogId')->addChild('ChildTwoItemId', [\n            'route' => 'child_2_route',\n            'label' => 'ChildTwoDisplayName',\n            'childOptions' => $event->getChildOptions()\n        ]);\n    }\n}\n```\nFor a more in depth guide on how to use the KnpMenuBundle, please refer to the [official documentation](http://symfony.com/doc/current/bundles/KnpMenuBundle/index.html). \n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nWrite an EventListener to work with the `KnpMenuEvent`.\n\n```php\n<?php\n// src/EventListener/KnpMenuBuilderListener.php\nnamespace App\\EventListener;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\KnpMenuEvent;\n\nclass KnpMenuBuilderListener\n{\n    public function onSetupMenu(KnpMenuEvent $event)\n    {\n        $menu = $event->getMenu();\n\n        $menu->addChild('MainNavigationMenuItem', [\n       \t    'label' => 'MAIN NAVIGATION',\n            'childOptions' => $event->getChildOptions()\n        ])->setAttribute('class', 'header');\n        \n        $menu->addChild('blogId', [\n            'route' => 'item_symfony_route',\n            'label' => 'Blog',\n            'childOptions' => $event->getChildOptions()\n        ])->setLabelAttribute('icon', 'fas fa-tachometer-alt');\n        \n        $menu->getChild('blogId')->addChild('ChildOneItemId', [\n            'route' => 'child_1_route',\n            'label' => 'ChildOneDisplayName',\n            'childOptions' => $event->getChildOptions()\n        ])->setLabelAttribute('icon', 'fas fa-rss-square');\n        \n        $menu->getChild('blogId')->addChild('ChildTwoItemId', [\n            'route' => 'child_2_route',\n            'label' => 'ChildTwoDisplayName',\n            'childOptions' => $event->getChildOptions()\n        ]);\n    }\n}\n```\nFor a more in depth guide on how to use the KnpMenuBundle, please refer to the [official documentation](http://symfony.com/doc/current/bundles/KnpMenuBundle/index.html). \n\nAnd attach your new listener to the event system in `config/services.yaml`:\n```yaml\nservices:\n    app.setup_knp_menu_listener:\n        class: App\\EventListener\\KnpMenuBuilderListener\n        tags:\n            - { name: kernel.event_listener, event: theme.sidebar_setup_knp_menu, method: onSetupMenu }\n```\n\n### Enabling breadcrumb support\n\nBreadcrumb support is deactivated by default for KnpMenu. Its behavior can be configured with the key `breadcrumb_menu`.\n\nYou have three choices:\n- set it to `false` (which is the default value) will deactivate the breadcrumb\n- set it to `true` will enable breadcrumb support and use the menubuilder configured in the key `main_menu` (whose default value is `adminlte_main`) \n- set it to your own menu alias (the default menu builder alias is `adminlte_main`)\n\nExample 1 - activate breadcrumb by using your default menu: \n\n```yaml\nadmin_lte:\n    knp_menu:   \n        enable : true\n        breadcrumb_menu: true\n```\n\nExample 2 - activate breadcrumb and use your own menu builder: \n\n```yaml\nadmin_lte:\n    knp_menu:   \n        enable : true\n        breadcrumb_menu: my_menu\n```\n\n### Replacing the MenuBuilder\n\nRather than using the menu builder provided by this bundle (which is aliased as `adminlte_main`), you could also generate your own implementation and change the bundle configuration to use your menu builder alias. \n\n```yaml\nadmin_lte:\n    knp_menu:   \n        enable : true\n        main_menu: <your builder alias> # By default \"adminlte_main\" alias\n        breadcrumb_menu: <true|false|your builder alias>\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/layout.md",
    "content": "# Using the layout\n\nIn order to use the layout, your views should extend from the provided `default-layout`\n```twig\n{% extends '@AdminLTE/layout/default-layout.html.twig' %}\n```\n## Twig Context-Helper\n \nInstead of fully relying on blocks and includes, you are provided with a twig global named `admin_lte_context` to retrieve \nseveral configuration values throughout the page rendering.\n \nThis is basically a parameter bag with some pre-defined values based on the bundle configuration.\nIt contains the following configuration keys:\n\n- everything from `admin_lte.options`\n- `button` from `admin_lte.theme.button`\n- `widget` from `admin_lte.theme.widget`\n- `control_sidebar` from `admin_lte.control_sidebar`\n- `knp_menu` from `admin_lte.knp_menu`\n\nTo see all available settings, simply dump it in one of your templates:\n\n```twig\n{{ dump(admin_lte_context.options) }}\n```\n\n## Layout files\n\nThis bundle ships with two main template files which you need to extend in your theme:\n\n- `default-layout.html.twig` for all default files\n```\n{% extends '@AdminLTE/layout/default-layout.html.twig' %}\n```\n- `security-layout.html.twig` for the security screens (login, register, forgot password)\n```\n{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n```\nSee [FOSUserBundle](fos_userbundle.md) for an easy integration of the security functionality.\n\n\n## Partials\n\nIn order to make overriding some of the template regions easier, there are several partials included within the layout \nwhich can be overridden individually as described [here](http://symfony.com/doc/current/templating/overriding.html). \n\nListed in the order of appearance, these are:\n\n<dl>\n\n<dt>@AdminLTE/Sidebar/knp-menu.html.twig\n<dd>Renders the knp menu using the builder defined as `main_menu`. \n<br/>___Notice___ *this partial will only be included when the knp_menu is enabled.*\n\n<dt>@AdminLTE/Breadcrumb/knp-breadcrumb.html.twig\n<dd>Renders the knp menu using the builder defined as `breadcrumb_menu` \n<br/>___Notice___ *this partial will only be included when the knp_menu is enabled.*\n\n<dt>@AdminLTE/Partials/_footer.html.twig\n<dd>Renders the main footer\n\n<dt>@AdminLTE/Partials/_control-sidebar.html.twig\n<dd>Renders the control sidebar (right-hand panel) WHEN there are configured panels in the config `admin_lte.options.control_sidebar`\n\n</dl>\n\n## Layout blocks\n\nThe blocks are defined in the layout in order of appearance. Some of them do contain some of the major components like the sidebar or navbar. \nIn order to redefine the block and to keep the default content, don't forget to use `{{parent()}}`.\n\n### security-layout.html.twig\n\n<dl>\n\n<dt>login_box\n<dd>The main content block, containing the complete body of the   \n\n<dt>logo_login\n<dd>The welcome title, should hold your application name or logo icon\n\n<dt>login_box_msg\n<dd>The box (inside) title, e.g. when you have different forms add a short title/explanation here\n\n<dt>login_box_error\n<dd>Security errors will be rendered in this block\n\n<dt>login_form\n<dd>\n\n<dt>login_form_start\n<dd>\n\n<dt>login_form_end\n<dd>\n\n<dt>login_social_auth\n<dd>\n\n<dt>login_actions\n<dd>\n\n</dl>\n\n\n### default-layout.html.twig\n\n<dl>\n\n<dt>html_start\n<dd>Allows to add additional attributes to the `html` tag (like `ng-app` for Angular)\n\n<dt>title\n<dd>Defines the `title` and defaults to the contents of the block `page_title`\n\n<dt>stylesheets\n<dd>Defines all stylesheet tags that will be embedded in the `head` section\n\n<dt>head\n<dd>additional tags that go into the `head` section\n\n<dt>body_start\n<dd>Can be used to add additional attributes in the `body` tag (like `ng-app` for Angular)\n\n<dt>after_body_start\n<dd>comes right after the opening `body` tag\n\n<dt>logo_path\n<dd>The href value of `a.logo`\n\n<dt>logo_mini\n<dd>Contents of `.logo-mini`\n\n<dt>logo_large\n<dd>Contents of `.logo-lg`\n\n<dt>navbar_toggle\n<dd>Renders the `.sidebar-toggle` button\n\n<dt>navbar_messages\n<dd>Renders the `messages` component\n\n<dt>navbar_notifications\n<dd>Renders the `notifications` component\n\n<dt>navbar_tasks\n<dd>Renders the `tasks` component\n\n<dt>navbar_user\n<dd>Renders the `user` component\n\n<dt>navbar_control_sidebar_toggle\n<dd>Renders the toggle for the `control_sidebar` (if enabled)\n\n<dt>sidebar_user\n<dd>Renders the `userPanel` component \n\n<dt>sidebar_search\n<dd>Renders the `searchPanel` component\n\n<dt>sidebar_nav\n<dd>Renders the `menu` component _or_ includes `@AdminLTE/Sidebar/knp-menu.html.twig` depending on wether the `knp_menu` is enabled or not. \n\n<dt>page_title\n<dd>Defines the page header inside `.content-header` and implicitly the `title` if you haven't changed the content of `title`\n\n<dt>page_subtitle\n<dd>Defines the `small` portion of `.content-header`\n\n<dt>breadcrumb\n<dd>Renders either the `breadcrumb` component or includes `@AdminLTE/Breadcrumb/knp-breadcrumb.html.twig` based on your configuration.\n\n<dt>page_content\n<dd>The main content area.\n\n<dt>page_content_class\n<dd>The CSS class for the content block `page_content`.\n\n<dt>page_content_before\n<dd>A block to add additional content right before the start of `page_content`.\n\n<dt>page_content_after\n<dd>A block to add additional content right after the end of `page_content`.\n\n<dt>footer\n<dd>The main footer. Includes `@AdminLTE/Partials/_footer.html.twig` by default.\n\n<dt>control_sidebar\n<dd>Includes `@AdminLTE/Partials/_control-sidebar.html.twig`\n\n<dt>javascripts\n<dd>block to render `script` tags right before the closing `body`\n\n</dl>\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/migration_guide.md",
    "content": "# Migration from the AdminThemeBundle\n\nThis is not a step-by-step migration guide, but a collection of hints what needs to be done. \nMany of you will have a highly adjusted version of the AdminThemeBundle, so the best tip is to search for `avanzu` and \ncheck if you need to change this occurrence.\n\nThe following hints should be reviewed carefully, as they apply for all of your projects. \n\n## New requirements\n\n- PHP >= 7.1.3\n- Symfony >= 4.0\n- FontAwesome 5\n- npm (for rebuilding the frontend assets)\n\n## Replace composer package\n\nFirst you want to start-off with changing the composer package:\n\n```\ncomposer remove avanzu/admin-theme-bundle\ncomposer require kevinpapst/adminlte-bundle\n``` \n\nThe bundle in your `config/bundles.php` should be auto-replaced, it changes from:\n```\n<?php\nreturn [\n    ...\n    Avanzu\\AdminThemeBundle\\AvanzuAdminThemeBundle::class => ['all' => true],\n];\n```\nto\n```\n<?php\nreturn [\n    ...\n    KevinPapst\\AdminLTEBundle\\AdminLTEBundle::class => ['all' => true],\n];\n```\n\n## Changed bundle name\n\nDue to the changes in the bundle, you have to replace all class and view references.\n\n### Namespaces\n\nReplace `use Avanzu\\AdminThemeBundle\\` with `use KevinPapst\\AdminLTEBundle\\`.\n\n### Template references\n\nReplace `@AdminThemeBundle/` with `@AdminLTE`, as example before\n```\n{% include('@AdminThemeBundle/Partials/_footer.html.twig') %}\n```\nand afterwards\n```\n{% include('@AdminLTE/Partials/_footer.html.twig') %}\n```\n\nAlso the controller references need to be changed from `AdminThemeBundle:` to `AdminLTEBundle:`, as example from:\n```\ncontroller('AdminThemeBundle:Navbar:messages')\n```\nto\n```\ncontroller('AdminLTEBundle:Navbar:messages')\n```\n\nSome macro files were updated and moved, replace:\n\n```\n{% import \"@AvanzuAdminTheme/layout/macros.html.twig\" as macro %}\n```\nto\n```\n{% import \"@AdminLTE/Macros/default.html.twig\" as macro %}\n```\n\n## Changed config\n\nThe configuration is now in the file `admin_lte.yaml` with the main key `admin_lte`, \nwhich was previously `avanzu_admin_theme` in the file `avanzu_admin_theme.yaml` (depending on your setup this might be located somewhere else).\n\nThe following keys must be removed:\n\n- `use_twig: true`\n- `use_assetic: false`\n- `bower_bin: \"/usr/local/bin/bower\"`\n\nThe config key `control_sidebar: true` was a boolean before and is now an array (see below in \"Configurable control-sidebar\").\n\nNOTE: only `YAML` configs are shipped, while `XML` is not supported any longer.\n\n## Changed route aliases\n\nThe file `routes.yml` was removed and the route-aliases were moved to the file `admin-lte.yaml` in the config key `admin_lte.routes`.\n\nThe configuration was simplified, it is now a key-value definition, where the key is the theme-internal name and the value is the route name for your application.\n\nFor example you need to replace:\n```\navanzu_admin_profile:\n  path: /{_locale}/profile/{username}\n  options:\n    avanzu_admin_route: profile\n``` \nwith\n``` \nadmin_lte:\n    routes:\n        adminlte_profile: user_profile\n```\nwhere the route is defined via annotation:\n```\nclass ProfileController extends AbstractController\n{\n    /**\n     * @Route(\"/profile/{username}\", name=\"user_profile\")\n     */\n    public function indexAction(User $profile)\n    {\n        return $this->getProfileView($profile, 'charts');\n    }\n\n}\n```\n\nMore information can be found in the [configurations docu](configurations.md).\n\n## Removed components\n\nThe following files were removed, please check your references:\n\n- all demo classes, files and configs (replaced by the [demo application](https://github.com/kevinpapst/AdminLTEBundle-Demo))\n- class: WidgetHelper\n- class: ExceptionController\n- class: DefaultController\n- class: WidgetController\n- class: RouteAliasCollection\n- class: ThemeManager\n- class: WidgetExtension\n- class: DependencyResolver\n\n## Templates and layouts\n\nThere are shim files, which you can use while you are migrating your application. \nIf you previously relied on the AvanzuAdminTheme layouts, then these files are a replacement for the default twig layouts:\n\n- Use `default-layout-avanzu.html.twig` instead of `default-layout.html.twig` \n- Use `login-layout-avanzu.html.twig` instead of `login-layout.html.twig` \n\nMake sure that you don't call `{{ parent() }}` in all blocks start start with the prefix `avanzu_`, as these blocks are only called virtually and don't exist any longer.\n\nFurther modifications:\n\n- removed include `Partials/_head.html.twig` (use blocks `head`, `document_title`, `stylesheets` and `javascripts`)\n- removed include `Partials/_scripts.html.twig`\n\nThe default layouts were modified to be more compatible with other themes, so the block names were changed and they do not contain `avanzu_` any longer as prefix.\n\n### Changed blocks \n\nRemoved blocks:\n\n- `avanzu_javascripts` \n- `avanzu_javascripts_inline`\n\nUse `javascripts` instead and don't forget to call `{{ parent() }}` (unless you compile the assets yourself).\n\n## Configurable control-sidebar\n\nThe implementation of the control-sidebar is now dynamically and you can add tabs by defining their icon and content (either by include or controller action).\n\nIf you previously use your own `Partials/_control-sidebar.html.twig` then please check if you can replace it with the theme version.\nConsidering you cannot or don't want to change to the theme's implenetation then you might need to overwrite the block `{% block avanzu_navbar_control_sidebar_toggle %}` or create an empty fake configuration:\n\n```yaml\n# admin-lte.yaml\nadmin_lte:\n    options:\n        control_sidebar:\n            fake:\n                icon: foo\n                template: bar\n```\n\nPlease check the [configurations](configurations.md) and [control-sidebar](control_sidebar.md) docu to for more information.\n\n## Frontend assets\n\nThe frontend-assets are pre-compiled into one CSS and one Javascript file. There is no `ThemeManager` any longer!\n\nIf you have your own assets or need to run your application in a subdirectory, you need to adjust the build process.\nRead the [building frontend assets](frontend_assets.md) documentation and see the [demo application](https://github.com/kevinpapst/AdminLTEBundle-Demo) on how that can be achieved.\n\n### FontAwesome 5\n\nCompared to the original theme, this bundle was upgraded to use FontAwesome 5.\n\nPlease read the [upgrading from v4](https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4) documentation carefully, most icon definitions are incompatible as the previous prefix `fa` was replaced by `far` / `fas` / `fab`.\n\nYou have to find the proper font and icon and replace it from this:\n\n```html\n<i class=\"fa fa-tachometer\"></i>\n```\n\nto the new version:\n\n```html\n<i class=\"fas fa-tachometer-alt\"></i>\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/navbar_messages.md",
    "content": "# The Navbar Messages component\n\n## Routes\n\nJust like the other theme components, this one requires some route aliases to work. \nPlease refer to the [configurations overview](configurations.md) to learn about the route alias details. \n\n## Required aliases\n\n* all_messages\n* message\n\n## Data Model\n\nIn order to use this component, your user class has to implement the `KevinPapst\\AdminLTEBundle\\Model\\MessageInterface`\n```php\n<?php\nnamespace App\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageInterface;\n\nclass MessageModel implements MessageInterface \n{\n    // implement interface methods\n}\n```\n\nThe bundle provides the `MessageModel` as a ready to use implementation of the `MessageInterface`. \n\n\n## EventSubscriber - auto-discovery with Symfony 4\n\nIn case you activated service discovery and auto-wiring in your app, you can write an EventSubscriber which will \nbe automatically registered in your container:\n\n\n```php\n<?php\n// src/EventSubscriber/MessageSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\MessageListEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageModel;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserModel;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\nuse Symfony\\Component\\Security\\Core\\Security;\nuse App\\Entity\\User;\n\nclass MessageSubscriber implements EventSubscriberInterface\n{\n    protected $security;\n\n    public function __construct(Security $security)\n    {\n        $this->security = $security;\n    }\n\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            MessageListEvent::class => ['onMessages', 100],\n        ];\n    }\n\n    public function onMessages(MessageListEvent $event)\n    {\n        if (null === $this->security->getUser()) {\n            return;\n        }\n\n        /* @var $myUser User */\n        $myUser = $this->security->getUser();\n\n        $userModel = new UserModel();\n        $userModel->setName($myUser->getUsername());\n        $message = new MessageModel($userModel, 'Hello world');\n        $event->addMessage($message);\n        \n        /*\n         * You can also set the total number of messages which could be different from those displayed in the navbar\n         * If no total is set, the total will be calculated on the number of messages added to the event\n         */ \n        $event->setTotal(15);\n    }\n}\n```\n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nWrite an EventListener to work with the `MessageListEvent`:\n\n```php\n<?php\n// src/EventListener/MessageListListener.php\nnamespace App\\EventListener;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\MessageListEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageModel;\n\nclass MessageListListener\n{\n    public function onListMessages(MessageListEvent $event)\n    {\n        foreach($this->getMessages() as $message) {\n            $event->addMessage($message);\n        }\n    }\n    \n    protected function getMessages()\n    {\n        // see above in MessageSubscriber for a full example\n        return [];\n    }\n}\n```\n\n## Service definition\n\nFinally, you need to attach your new listener to the event system:\n```yaml\nservices:\n    app.message_list_listener:\n        class: App\\EventListener\\MessageListListener\n        tags:\n            - { name: kernel.event_listener, event: theme.messages, method: onListMessages }\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/navbar_notifications.md",
    "content": "# The Navbar Notifications component\n\n## Routes\n\nJust like the other theme components, this one requires some route aliases to work. \nPlease refer to the [configurations overview](configurations.md) to learn about the route alias details. \n\n## Required aliases\n\n* all_notifications\n* notification\n\n## Data Model\n\nIn order to use this component, your user class has to implement the `KevinPapst\\AdminLTEBundle\\Model\\NotificationInterface`\n```php\n<?php\nnamespace App\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationInterface;\n\nclass NotificationModel implements NotificationInterface\n{\n    // implement interface methods\n}\n```\n\nThe bundle provides the `NotificationModel` as a ready to use implementation of the `NotificationInterface`. \n\n## EventSubscriber - auto-discovery with Symfony 4\n\nIn case you activated service discovery and auto-wiring in your app, you can write an EventSubscriber which will \nbe automatically registered in your container:\n\n```php\n<?php\n// src/EventSubscriber/NotificationSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\NotificationListEvent;\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationModel;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\n\nclass NotificationSubscriber implements EventSubscriberInterface\n{\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            NotificationListEvent::class => ['onNotifications', 100],\n        ];\n    }\n\n    public function onNotifications(NotificationListEvent $event)\n    {\n        $notification = new NotificationModel();\n        $notification\n            ->setId(1)\n            ->setMessage('A demo message')\n            ->setType(Constants::TYPE_SUCCESS)\n            ->setIcon('far fa-envelope')\n        ;\n        $event->addNotification($notification);\n        \n        /*\n         * You can also set the total number of notifications which could be different from those displayed in the navbar\n         * If no total is set, the total will be calculated on the number of notifications added to the event\n         */ \n        $event->setTotal(15);\n    }\n}\n```\n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nWrite an EventListener to work with the `NotificationListEvent`:\n\n```php\n<?php\n// src/EventListener/NotificationListListener.php\nnamespace App\\EventListener;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\NotificationListEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationModel;\n\nclass NotificationListListener\n{\n    public function onListNotifications(NotificationListEvent $event)\n    {\n        foreach($this->getNotifications() as $Notification) {\n            $event->addNotification($Notification);\n        }\n    }\n    \n    protected function getNotifications()\n    {\n        // see above in NotificationSubscriber for a full example\n        return [new NotificationModel()];\n    }\n}\n```\n\nAnd attach your new listener to the event system:\n\n```yaml\nservices:\n    app.notification_list_listener:\n        class: App\\EventListener\\NotificationListListener\n        tags:\n            - { name: kernel.event_listener, event: theme.notifications, method: onListNotifications }\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/navbar_tasks.md",
    "content": "# The Navbar Tasks component\n\n## Routes\n\nJust like the other theme components, this one requires some route aliases to work. \nPlease refer to the [configurations overview](configurations.md) to learn about the route alias details. \n \n### Required aliases\n\n* all_task\n* task\n\n## Data Model\n\nIn order to use this component, your task class has to implement the `KevinPapst\\AdminLTEBundle\\Model\\TaskInterface`\n```php\n<?php\nnamespace App\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskInterface;\n\nclass TaskModel implements TaskInterface\n{\n    // implement interface methods\n}\n```\n\nThe bundle provides the `TaskModel` as a ready to use implementation of the `TaskInterface`. \n\n## EventSubscriber - auto-discovery with Symfony 4\n\nIn case you activated service discovery and auto-wiring in your app, you can write an EventSubscriber which will \nbe automatically registered in your container:\n\n```php\n<?php\n// src/EventSubscriber/TaskSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\TaskListEvent;\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskModel;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\n\nclass TaskSubscriber implements EventSubscriberInterface\n{\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            TaskListEvent::class => ['onTasks', 100],\n        ];\n    }\n\n    public function onTasks(TaskListEvent $event)\n    {\n        $task = new TaskModel();\n        $task\n            ->setId(1)\n            ->setTitle('My task')\n            ->setColor(Constants::COLOR_AQUA)\n            ->setProgress(80)\n        ;\n        $event->addTask($task);\n        \n        /*\n         * You can also set the total number of tasks which could be different from those displayed in the navbar\n         * If no total is set, the total will be calculated on the number of tasks added to the event\n         */ \n        $event->setTotal(15);\n    }\n}\n```\n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nWrite an EventListener to work with the `TaskListEvent`:\n\n```php\n<?php\n// src/EventListener/TaskListListener.php\nnamespace App\\EventListener;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\TaskListEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskModel;\n\nclass TaskListListener\n{\n    public function onListTasks(TaskListEvent $event)\n    {\n        foreach($this->getTasks() as $task) {\n            $event->addTask($task);\n        }\n    }\n    \n    protected function getTasks()\n    {\n        // see above in TaskSubscriber for a full example\n        return [new TaskModel()];\n    }\n}\n```\n\n## Service definition\n\nFinally, you need to attach your new listener to the event system:\n```yaml\nservices:\n    app.task_list_listener:\n        class: App\\EventListener\\TaskListListener\n        tags:\n            - { name: kernel.event_listener, event: theme.tasks, method: onListTasks }\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/navbar_user.md",
    "content": "# The Navbar User component\n\n## Routes\nJust like the other theme components, this one requires some route aliases to work. \nPlease refer to the [configurations overview](configurations.md) to learn about the route alias details. \n\n### Required aliases\n* profile\n* logout\n\n## Data Model\n\nIn order to use this component, your user class has to implement the `KevinPapst\\AdminLTEBundle\\Model\\UserInterface`\n```php\n<?php\nnamespace App\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\UserInterface;\n\nclass UserModel implements UserInterface {\n    // ...\n    // implement interface methods\n    // ...\n}\n```\n\nThe bundle provides the `UserModel` as a ready to use implementation of the `UserInterface`. \n\n## EventSubscriber - auto-discovery with Symfony 4\n\nIn case you activated service discovery and auto-wiring in your app, you can write an EventSubscriber which will \nbe automatically registered in your container:\n\n```php\n<?php\n// src/EventSubscriber/NavbarUserSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse App\\Entity\\User;\nuse KevinPapst\\AdminLTEBundle\\Event\\ShowUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\NavbarUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserModel;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\nuse Symfony\\Component\\Security\\Core\\Security;\n\nclass NavbarUserSubscriber implements EventSubscriberInterface\n{\n    protected $security;\n\n    public function __construct(Security $security)\n    {\n        $this->security = $security;\n    }\n\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            NavbarUserEvent::class => ['onShowUser', 100],\n            SidebarUserEvent::class => ['onShowUser', 100],\n        ];\n    }\n\n    public function onShowUser(ShowUserEvent $event)\n    {\n        if (null === $this->security->getUser()) {\n            return;\n        }\n\n        /* @var $myUser User */\n        $myUser = $this->security->getUser();\n\n        $user = new UserModel();\n        $user\n            ->setId($myUser->getId())\n            ->setName($myUser->getUsername())\n            ->setUsername($myUser->getUsername())\n            ->setIsOnline(true)\n            ->setTitle('demo user')\n            ->setAvatar($myUser->getAvatar())\n            ->setMemberSince($myUser->getRegisteredAt())\n        ;\n\n        $event->setUser($user);\n    }\n}\n```\n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nWrite an EventListener to work with the `ShowUserEvent`:\n\n```php\n<?php\n// src/EventListener/NavbarUserListener.php\nnamespace App\\EventListener;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\ShowUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\NavBarUserLink;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserModel;\n\nclass NavbarUserListener\n{\n    public function onShowUser(ShowUserEvent $event)\n    {\n        $user = $this->getUser();\n        $event->setUser($user);\n        \n        $event->setShowProfileLink(false);\n    \n        $event->addLink(new NavBarUserLink('Followers', 'logout'));\n        $event->addLink(new NavBarUserLink('Sales', 'logout'));\n        $event->addLink(new NavBarUserLink('Friends', 'logout', ['id' => 2]));\n    }\n    \n    protected function getUser()\n    {\n        // retrieve your concrete user model or entity\n        // see above in NavbarUserSubscriber for a full example\n        return new UserModel();\n    }\n\n}\n```\n\nAnd attach your new listener to the event system:\n\n```yaml\n# config/services.yml\nservices:\n    my_admin_bundle.show_user_listener:\n        class: App\\EventListener\\NavbarUserListener\n        tags:\n            - { name: kernel.event_listener, event: theme.navbar_user, method: onShowUser }\n```\n\n## Customizing the HTML output\n\nConsidering you want to change the generated HTML of the user dropdown, you can simply overwrite the template.\n\nCreate the file `templates/bundles/AdminLTEBundle/Navbar/user.html.twig` and add your own HTML.\n\nOr you can even replace some blocks inside the themes template by extending it:\n```twig\n{% extends \"@!AdminLTE/Navbar/user.html.twig\" %}\n{% block member_since %}\n    {# I do not want to display the member since information #}\n{% endblock %}\n```\n\nRight now, there is only the one block `member_since`, but if you need more: just drop a PR for new ones!\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/sidebar_navigation.md",
    "content": "# The Sidebar Navigation component\n\n__*Notice* If you would rather use the KnpMenuBundle instead, please refer to the [integration guide][1].__\n\nAlthough the `MenuItemInteface` as well as the `MenuItemModel` are designed to support an unlimited depth, \nthe sidebar menu is currently limited to two levels.\n\n## Data Model\n\nIn order to use this component, your have to create a `MenuItemModel` class that implements `\\KevinPapst\\AdminLTEBundle\\Model\\MenuItemInterface`\n```php\n<?php\nnamespace App\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\MenuItemInterface;\n\nclass MenuItemModel implements MenuItemInterface {\n    // ...\n    // implement interface methods\n    // ...\n}\n```\nThe bundle provides the `MenuItemModel` as a ready to use implementation of the `MenuItemInterface`. \nYou can use it to create a menu item:\n\n```php\n$menuItem = new \\KevinPapst\\AdminLTEBundle\\Model\\MenuItemModel('item', 'Item', 'item_route_name');\n```\n\nor a menu label:\n```php\n$menuLabel = new \\KevinPapst\\AdminLTEBundle\\Model\\MenuItemModel('label', 'Label', false);\n```\n\n## EventSubscriber - auto-discovery with Symfony 4\n\nIn case you activated service discovery and auto-wiring in your app, you can write an EventSubscriber which will \nbe automatically registered in your container:\n\n```php\n<?php\n// src/EventSubscriber/MenuBuilderSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\MenuItemModel;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\n\nclass MenuBuilderSubscriber implements EventSubscriberInterface\n{\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            SidebarMenuEvent::class => ['onSetupMenu', 100],\n        ];\n    }\n    \n    public function onSetupMenu(SidebarMenuEvent $event)\n    {\n        $blog = new MenuItemModel('blogId', 'Blog', 'item_symfony_route', [], 'fas fa-tachometer-alt');\n    \n        $blog->addChild(\n            new MenuItemModel('ChildOneItemId', 'ChildOneDisplayName', 'child_1_route', [], 'fas fa-rss-square')\n        )->addChild(\n            new MenuItemModel('ChildTwoItemId', 'ChildTwoDisplayName', 'child_2_route')\n        );\n        \n        $event->addItem($blog);\n\n        $this->activateByRoute(\n            $event->getRequest()->get('_route'),\n            $event->getItems()\n        );\n    }\n\n    /**\n     * @param string $route\n     * @param MenuItemModel[] $items\n     */\n    protected function activateByRoute($route, $items)\n    {\n        foreach ($items as $item) {\n            if ($item->hasChildren()) {\n                $this->activateByRoute($route, $item->getChildren());\n            } elseif ($item->getRoute() == $route) {\n                $item->setIsActive(true);\n            }\n        }\n    }\n}\n```\n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nWrite an EventListener to work with the `SidebarMenuEvent`.\n\n```php\n<?php\n// src/EventListener/MenuBuilderListener.php\nnamespace App\\EventListener;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\MenuItemModel;\nuse Symfony\\Component\\HttpFoundation\\Request;\n\nclass MenuBuilderListener\n{\n    public function onSetupMenu(SidebarMenuEvent $event)\n    {\n        $request = $event->getRequest();\n    \n        foreach ($this->getMenu($request) as $item) {\n            $event->addItem($item);\n        }\n    }\n    \n    protected function getMenu(Request $request)\n    {\n        $blog = new MenuItemModel('ItemId', 'ItemDisplayName', 'item_symfony_route', [], 'iconclasses fa fa-plane');\n    \n        $blog->addChild(\n            new MenuItemModel('ChildOneItemId', 'ChildOneDisplayName', 'child_1_route', [], 'fa fa-rss-square')\n        )->addChild(\n            new MenuItemModel('ChildTwoItemId', 'ChildTwoDisplayName', 'child_2_route')\n        );\n        \n        return $this->activateByRoute($request->get('_route'), [$blog]);\n    }\n    \n    /**\n     * @param string $route\n     * @param MenuItemModel[] $items\n     * @return MenuItemModel[]\n     */\n    protected function activateByRoute($route, $items)\n    {\n        foreach($items as $item) {\n            if($item->hasChildren()) {\n                $this->activateByRoute($route, $item->getChildren());\n            } elseif($item->getRoute() == $route) {\n                $item->setIsActive(true);\n            }\n        }\n    \n        return $items;\n    }\n}\n```\n\nAnd attach your new listener to the event system in `config/services.yaml`:\n```yaml\nservices:\n    my_admin_bundle.menu_listener:\n        class: App\\EventListener\\MenuBuilderListener\n        tags:\n            - { name: kernel.event_listener, event: theme.sidebar_setup_menu, method: onSetupMenu }\n```\n\n## Translating menu items\n\nYou don't have to care about translating your menu items, simply use the translation key instead of the translated string.\n\nThe label of each menu item will be automatically displayed by applying the `|trans` filter: \n```twig\n{{ item.label|trans }} \n```\nThe default translation domain `messages` will be used (see `Resources/views/Macros/menu.html.twig`).\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n\n[1]: knp_menu.md"
  },
  {
    "path": "Resources/docs/sidebar_user.md",
    "content": "# The Sidebar User component\n\nThis component uses the same setup as the [Navbar User](navbar_user.md) except for the event name it listens to.\n\n## EventSubscriber - auto-discovery with Symfony 4\n\nEdit the previously made class `NavbarUserSubscriber` and register it for another event:\n\n```php\n<?php\n// src/EventSubscriber/NavbarUserSubscriber.php\nnamespace App\\EventSubscriber;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\NavbarUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarUserEvent;\nuse Symfony\\Component\\EventDispatcher\\EventSubscriberInterface;\n\nclass NavbarUserSubscriber implements EventSubscriberInterface\n{\n    public static function getSubscribedEvents(): array\n    {\n        return [\n            NavbarUserEvent::class => ['onShowUser', 100],\n            SidebarUserEvent::class => ['onShowUser', 100],\n        ];\n    }\n    \n    // ... the rest of the class follows here ...\n}\n```\n\n## EventListener and Service definition    \n\nIf your application is using the classical approach of manually registering Services and EventListener use this method.\n\nJust add the following listener definition to the event system in `config/services.yaml` and you're good to go:\n```yaml\nservices:\n    app.show_user_listener:\n        class: App\\EventListener\\NavbarUserListener\n        tags:\n            - { name: kernel.event_listener, event: theme.sidebar_user, method: onShowUser }\n```\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n"
  },
  {
    "path": "Resources/docs/twig_widgets.md",
    "content": "# Twig widgets\n\nIn order to simplify the usage of widget and info boxes, and to help with a consistent look and feel throughout your application, \nthe bundle provides an [embeddable][3] template for the [box-widget][1] and the [infobox-widget][2]. \n\n## Global configuration\nThe global/general configuration for the box-widget can be defined using the bundle configuration. \nThe values in this configuration example are the default settings. \n\n```yaml\nadmin_lte:\n    theme:\n        widget:\n            # relates to box-<type>, default: primary\n            type: primary \n            # will add .with-border to .box-header, default: true\n            bordered: true\n            # will add a collapse button to the widget toolbar, default: true\n            collapsible: true\n            # sets the title attribute for the collapse button\n            collapsible_title: Collapse\n            # will ad a remove button to the widget toolbar\n            removable: false\n            # defines the title attribute for the remove button\n            removable_title: Remove\n            # will add .box-solid \n            solid: false\n            # will avoid rendering the .box-footer without content\n            use_footer: true\n```\n\n## box-widget.html.twig\n\n```twig\n{% embed '@AdminLTE/Widgets/box-widget.html.twig' %}\n    {% block box_title %}\n        {# Title goes here #}\n    {% endblock %}\n    {% block box_body %}\n        {# Content goes here #}\n    {% endblock %}\n{% endembed %}\n```\n\nThe box widget comes with several variables and blocks to define content and customize the rendering and behavior individually. \n\n### Variables\n_**Notice:** since FALSE will not be considered a value by Twig and therefor activate the default filter, you will have to use `0` instead.\n \n<dl>\n<dt>collapsed\n<dd>Will render the Widget in a collapsed state and add and expander toolbutton. \n\n<dt>solid\n<dd>Will render the widget as solid box if set to true. \n\n<dt>border\n<dd>Will add .with-border to the box header. \n\n<dt>use_footer\n<dd>Will render the .box-footer even if it has no content.\n\n<dt>collapsible & collapsible_title\n<dd>Will add a collapse tool-button. This setting will always be true if the box is defined as `collapsed`. The `collapsible_title` will be set as the button's `title` attribute.\n\n<dt>removable & removable_title\n<dd>Will add a remove tool-button. The `removable_title` will be set as the button's `title` attribute. \n\n<dt>boxtype\n<dd>Sets the color-type of the box. The value should only be the type name without prefix. \n</dl>\n\n### Blocks\n\n<dl>\n\n<dt>box_before\n<dd>Content just before the box's opening div. \n\n<dt>box_title\n<dd>Content inside of `.box-title`. \n\n<dt>box_tools\n<dd>Content inside the `.box-tools` just before the collapse and/or remove buttons. \n\n<dt>box_body\n<dd>The block for the actual box content. \n\n<dt>box_footer\n<dd>Content inside the `.box-footer`. Using this block will force the footer rendering, regardless of the `footer` variable or configuration setting. \n\n<dt>box_after\n<dd>Content just after the box's closing `div`\n\n<dt>box_body_class\n<dd>Additional css class for the box_body HTML element\n\n<dt>box_attributes\n<dd>Additional HTML attributes for the outer box HTML element\n\n<dt>box_tools_attributes\n<dd>Additional attributes for the tools HTML element\n\n</dl>\n\n## infobox-widget\nThe infobox widget has no default configuration. The very nature of this widget type is to be distinguishable from each other hence, the configuration would be overridden anyways.\n```twig\n{% embed '@AdminLTE/Widgets/infobox-widget.html.twig'  with {\n    'color' : 'aqua',\n    'icon'  : 'comments-o',\n    }%}\n    {% block box_text %}\n        {# text goes here #}\n    {% endblock %}\n    {% block box_number %}\n        {# number goes here #}\n    {% endblock %}\n    {% block progress_description %}\n        {# progress text goes here#}\n    {% endblock %}\n{% endembed %}\n\n```\n### Variables\n<dl>\n\n<dt>solid\n<dd>If you want to define a solid box, this variable should contain the color name. \n\n<dt>color\n<dd>Defines the `.info-box-icon` color and should be the color name (obsolete if you have a `solid` box).\n\n<dt>icon\n<dd>Defines the fontawesome icon name. The value should only be the actual icon name including the prefix (e.g. `fas fa-tachometer-alt`) \n\n<dt>progress\n<dd>Defines the progress value. The progress bar will only be rendered if the progress variable is defined. \n\n</dl>\n\n### Blocks\n<dl>\n\n<dt>box_before\n<dd>Content just before the opening `div`.\n\n<dt>box_text\n<dd>Content of `.info-box-text`. \n\n<dt>box_number\n<dd>Content of `.info-box-number`.\n\n<dt>progress_description\n<dd>Content of `.progress_description`. \n\n<dt>box_after\n<dd>Content just after the closing `div`\n\n\n</dl>\n\n## Next steps\n\nPlease go back to the [AdminLTE bundle documentation](README.md) to find out more about using the theme.\n\n[1]: https://almsaeedstudio.com/themes/AdminLTE/documentation/index.html#component-box\n[2]: https://almsaeedstudio.com/themes/AdminLTE/documentation/index.html#component-info-box\n[3]: http://twig.sensiolabs.org/doc/tags/embed.html\n"
  },
  {
    "path": "Resources/public/adminlte.css",
    "content": "@charset \"UTF-8\";.daterangepicker{position:absolute;color:inherit;background-color:#fff;border-radius:4px;border:1px solid #ddd;width:278px;max-width:none;padding:0;margin-top:7px;top:100px;left:20px;z-index:3001;display:none;font-family:arial;font-size:15px;line-height:1em}.daterangepicker:after,.daterangepicker:before{position:absolute;display:inline-block;border-bottom-color:rgba(0,0,0,.2);content:\"\"}.daterangepicker:before{top:-7px;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:7px solid #ccc}.daterangepicker:after{top:-6px;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent}.daterangepicker.opensleft:before{right:9px}.daterangepicker.opensleft:after{right:10px}.daterangepicker.openscenter:after,.daterangepicker.openscenter:before{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.opensright:before{left:9px}.daterangepicker.opensright:after{left:10px}.daterangepicker.drop-up{margin-top:-7px}.daterangepicker.drop-up:before{top:auto;bottom:-7px;border-bottom:initial;border-top:7px solid #ccc}.daterangepicker.drop-up:after{top:auto;bottom:-6px;border-bottom:initial;border-top:6px solid #fff}.daterangepicker.single .daterangepicker .ranges,.daterangepicker.single .drp-calendar{float:none}.daterangepicker.single .drp-selected{display:none}.daterangepicker.show-calendar .drp-buttons,.daterangepicker.show-calendar .drp-calendar{display:block}.daterangepicker.auto-apply .drp-buttons{display:none}.daterangepicker .drp-calendar{display:none;max-width:270px}.daterangepicker .drp-calendar.left{padding:8px 0 8px 8px}.daterangepicker .drp-calendar.right{padding:8px}.daterangepicker .drp-calendar.single .calendar-table{border:none}.daterangepicker .calendar-table .next span,.daterangepicker .calendar-table .prev span{color:#fff;border:solid #000;border-width:0 2px 2px 0;border-radius:0;display:inline-block;padding:3px}.daterangepicker .calendar-table .next span{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.daterangepicker .calendar-table .prev span{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.daterangepicker .calendar-table td,.daterangepicker .calendar-table th{text-align:center;vertical-align:middle;min-width:32px;width:32px;height:24px;line-height:24px;font-size:12px;border-radius:4px;border:1px solid transparent;white-space:nowrap;cursor:pointer}.daterangepicker .calendar-table{border:1px solid #fff;border-radius:4px;background-color:#fff}.daterangepicker .calendar-table table{width:100%;margin:0;border-spacing:0;border-collapse:collapse}.daterangepicker td.available:hover,.daterangepicker th.available:hover{background-color:#eee;border-color:transparent;color:inherit}.daterangepicker td.week,.daterangepicker th.week{font-size:80%;color:#ccc}.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{background-color:#fff;border-color:transparent;color:#999}.daterangepicker td.in-range{background-color:#ebf4f8;border-color:transparent;color:#000;border-radius:0}.daterangepicker td.start-date{border-radius:4px 0 0 4px}.daterangepicker td.end-date{border-radius:0 4px 4px 0}.daterangepicker td.start-date.end-date{border-radius:4px}.daterangepicker td.active,.daterangepicker td.active:hover{background-color:#357ebd;border-color:transparent;color:#fff}.daterangepicker th.month{width:auto}.daterangepicker option.disabled,.daterangepicker td.disabled{color:#999;cursor:not-allowed;text-decoration:line-through}.daterangepicker select.monthselect,.daterangepicker select.yearselect{font-size:12px;padding:1px;height:auto;margin:0;cursor:default}.daterangepicker select.monthselect{margin-right:2%;width:56%}.daterangepicker select.yearselect{width:40%}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{width:50px;margin:0 auto;background:#eee;border:1px solid #eee;padding:2px;outline:0;font-size:12px}.daterangepicker .calendar-time{text-align:center;margin:4px auto 0;line-height:30px;position:relative}.daterangepicker .calendar-time select.disabled{color:#ccc;cursor:not-allowed}.daterangepicker .drp-buttons{clear:both;text-align:right;padding:8px;border-top:1px solid #ddd;display:none;line-height:12px;vertical-align:middle}.daterangepicker .drp-selected{display:inline-block;font-size:12px;padding-right:8px}.daterangepicker .drp-buttons .btn{margin-left:8px;font-size:12px;font-weight:700;padding:4px 8px}.daterangepicker.show-ranges.single.rtl .drp-calendar.left{border-right:1px solid #ddd}.daterangepicker.show-ranges.single.ltr .drp-calendar.left{border-left:1px solid #ddd}.daterangepicker.show-ranges.rtl .drp-calendar.right{border-right:1px solid #ddd}.daterangepicker.show-ranges.ltr .drp-calendar.left{border-left:1px solid #ddd}.daterangepicker .ranges{float:none;text-align:left;margin:0}.daterangepicker.show-calendar .ranges{margin-top:8px}.daterangepicker .ranges ul{list-style:none;margin:0 auto;padding:0;width:100%}.daterangepicker .ranges li{font-size:12px;padding:8px 12px;cursor:pointer}.daterangepicker .ranges li:hover{background-color:#eee}.daterangepicker .ranges li.active{background-color:#08c;color:#fff}@media (min-width:564px){.daterangepicker{width:auto}.daterangepicker .ranges ul{width:140px}.daterangepicker.single .ranges ul{width:100%}.daterangepicker.single .drp-calendar.left{clear:none}.daterangepicker.single .drp-calendar,.daterangepicker.single .ranges{float:left}.daterangepicker{direction:ltr;text-align:left}.daterangepicker .drp-calendar.left{clear:left;margin-right:0}.daterangepicker .drp-calendar.left .calendar-table{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.daterangepicker .drp-calendar.right{margin-left:0}.daterangepicker .drp-calendar.right .calendar-table{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker .drp-calendar.left .calendar-table{padding-right:8px}.daterangepicker .drp-calendar,.daterangepicker .ranges{float:left}}@media (min-width:730px){.daterangepicker .ranges{width:auto;float:left}.daterangepicker.rtl .ranges{float:right}.daterangepicker .drp-calendar.left{clear:none!important}}\n\n/*!\n * Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select)\n *\n * Copyright 2012-2020 SnapAppointments, LLC\n * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)\n */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}to{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}to{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}to{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:hsla(0,0%,100%,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:hsla(0,0%,100%,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:bs-notify-fadeOut .3s linear .75s forwards;-o-animation:.3s linear .75s forwards bs-notify-fadeOut;animation:bs-notify-fadeOut .3s linear .75s forwards}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:\"\\00a0\"}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:\"\";display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:\"\";border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid hsla(0,0%,80%,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:\"\";border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid hsla(0,0%,80%,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}\n/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}\n\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:\" (\" attr(href) \")\"}abbr[title]:after{content:\" (\" attr(title) \")\"}a[href^=\"#\"]:after,a[href^=\"javascript:\"]:after{content:\"\"}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:Glyphicons Halflings;src:url(/bundles/adminlte/fonts/glyphicons-halflings-regular.eot?5be1347c);src:url(/bundles/adminlte/fonts/glyphicons-halflings-regular.eot?5be1347c?#iefix) format(\"embedded-opentype\"),url(/bundles/adminlte/fonts/glyphicons-halflings-regular.woff2?be810be3) format(\"woff2\"),url(/bundles/adminlte/fonts/glyphicons-halflings-regular.woff?82b1212e) format(\"woff\"),url(/bundles/adminlte/fonts/glyphicons-halflings-regular.ttf?4692b9ec) format(\"truetype\"),url(/bundles/adminlte/images/glyphicons-halflings-regular.svg?060b2710#glyphicons_halflingsregular) format(\"svg\")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:\"\\002a\"}.glyphicon-plus:before{content:\"\\002b\"}.glyphicon-eur:before,.glyphicon-euro:before{content:\"\\20ac\"}.glyphicon-minus:before{content:\"\\2212\"}.glyphicon-cloud:before{content:\"\\2601\"}.glyphicon-envelope:before{content:\"\\2709\"}.glyphicon-pencil:before{content:\"\\270f\"}.glyphicon-glass:before{content:\"\\e001\"}.glyphicon-music:before{content:\"\\e002\"}.glyphicon-search:before{content:\"\\e003\"}.glyphicon-heart:before{content:\"\\e005\"}.glyphicon-star:before{content:\"\\e006\"}.glyphicon-star-empty:before{content:\"\\e007\"}.glyphicon-user:before{content:\"\\e008\"}.glyphicon-film:before{content:\"\\e009\"}.glyphicon-th-large:before{content:\"\\e010\"}.glyphicon-th:before{content:\"\\e011\"}.glyphicon-th-list:before{content:\"\\e012\"}.glyphicon-ok:before{content:\"\\e013\"}.glyphicon-remove:before{content:\"\\e014\"}.glyphicon-zoom-in:before{content:\"\\e015\"}.glyphicon-zoom-out:before{content:\"\\e016\"}.glyphicon-off:before{content:\"\\e017\"}.glyphicon-signal:before{content:\"\\e018\"}.glyphicon-cog:before{content:\"\\e019\"}.glyphicon-trash:before{content:\"\\e020\"}.glyphicon-home:before{content:\"\\e021\"}.glyphicon-file:before{content:\"\\e022\"}.glyphicon-time:before{content:\"\\e023\"}.glyphicon-road:before{content:\"\\e024\"}.glyphicon-download-alt:before{content:\"\\e025\"}.glyphicon-download:before{content:\"\\e026\"}.glyphicon-upload:before{content:\"\\e027\"}.glyphicon-inbox:before{content:\"\\e028\"}.glyphicon-play-circle:before{content:\"\\e029\"}.glyphicon-repeat:before{content:\"\\e030\"}.glyphicon-refresh:before{content:\"\\e031\"}.glyphicon-list-alt:before{content:\"\\e032\"}.glyphicon-lock:before{content:\"\\e033\"}.glyphicon-flag:before{content:\"\\e034\"}.glyphicon-headphones:before{content:\"\\e035\"}.glyphicon-volume-off:before{content:\"\\e036\"}.glyphicon-volume-down:before{content:\"\\e037\"}.glyphicon-volume-up:before{content:\"\\e038\"}.glyphicon-qrcode:before{content:\"\\e039\"}.glyphicon-barcode:before{content:\"\\e040\"}.glyphicon-tag:before{content:\"\\e041\"}.glyphicon-tags:before{content:\"\\e042\"}.glyphicon-book:before{content:\"\\e043\"}.glyphicon-bookmark:before{content:\"\\e044\"}.glyphicon-print:before{content:\"\\e045\"}.glyphicon-camera:before{content:\"\\e046\"}.glyphicon-font:before{content:\"\\e047\"}.glyphicon-bold:before{content:\"\\e048\"}.glyphicon-italic:before{content:\"\\e049\"}.glyphicon-text-height:before{content:\"\\e050\"}.glyphicon-text-width:before{content:\"\\e051\"}.glyphicon-align-left:before{content:\"\\e052\"}.glyphicon-align-center:before{content:\"\\e053\"}.glyphicon-align-right:before{content:\"\\e054\"}.glyphicon-align-justify:before{content:\"\\e055\"}.glyphicon-list:before{content:\"\\e056\"}.glyphicon-indent-left:before{content:\"\\e057\"}.glyphicon-indent-right:before{content:\"\\e058\"}.glyphicon-facetime-video:before{content:\"\\e059\"}.glyphicon-picture:before{content:\"\\e060\"}.glyphicon-map-marker:before{content:\"\\e062\"}.glyphicon-adjust:before{content:\"\\e063\"}.glyphicon-tint:before{content:\"\\e064\"}.glyphicon-edit:before{content:\"\\e065\"}.glyphicon-share:before{content:\"\\e066\"}.glyphicon-check:before{content:\"\\e067\"}.glyphicon-move:before{content:\"\\e068\"}.glyphicon-step-backward:before{content:\"\\e069\"}.glyphicon-fast-backward:before{content:\"\\e070\"}.glyphicon-backward:before{content:\"\\e071\"}.glyphicon-play:before{content:\"\\e072\"}.glyphicon-pause:before{content:\"\\e073\"}.glyphicon-stop:before{content:\"\\e074\"}.glyphicon-forward:before{content:\"\\e075\"}.glyphicon-fast-forward:before{content:\"\\e076\"}.glyphicon-step-forward:before{content:\"\\e077\"}.glyphicon-eject:before{content:\"\\e078\"}.glyphicon-chevron-left:before{content:\"\\e079\"}.glyphicon-chevron-right:before{content:\"\\e080\"}.glyphicon-plus-sign:before{content:\"\\e081\"}.glyphicon-minus-sign:before{content:\"\\e082\"}.glyphicon-remove-sign:before{content:\"\\e083\"}.glyphicon-ok-sign:before{content:\"\\e084\"}.glyphicon-question-sign:before{content:\"\\e085\"}.glyphicon-info-sign:before{content:\"\\e086\"}.glyphicon-screenshot:before{content:\"\\e087\"}.glyphicon-remove-circle:before{content:\"\\e088\"}.glyphicon-ok-circle:before{content:\"\\e089\"}.glyphicon-ban-circle:before{content:\"\\e090\"}.glyphicon-arrow-left:before{content:\"\\e091\"}.glyphicon-arrow-right:before{content:\"\\e092\"}.glyphicon-arrow-up:before{content:\"\\e093\"}.glyphicon-arrow-down:before{content:\"\\e094\"}.glyphicon-share-alt:before{content:\"\\e095\"}.glyphicon-resize-full:before{content:\"\\e096\"}.glyphicon-resize-small:before{content:\"\\e097\"}.glyphicon-exclamation-sign:before{content:\"\\e101\"}.glyphicon-gift:before{content:\"\\e102\"}.glyphicon-leaf:before{content:\"\\e103\"}.glyphicon-fire:before{content:\"\\e104\"}.glyphicon-eye-open:before{content:\"\\e105\"}.glyphicon-eye-close:before{content:\"\\e106\"}.glyphicon-warning-sign:before{content:\"\\e107\"}.glyphicon-plane:before{content:\"\\e108\"}.glyphicon-calendar:before{content:\"\\e109\"}.glyphicon-random:before{content:\"\\e110\"}.glyphicon-comment:before{content:\"\\e111\"}.glyphicon-magnet:before{content:\"\\e112\"}.glyphicon-chevron-up:before{content:\"\\e113\"}.glyphicon-chevron-down:before{content:\"\\e114\"}.glyphicon-retweet:before{content:\"\\e115\"}.glyphicon-shopping-cart:before{content:\"\\e116\"}.glyphicon-folder-close:before{content:\"\\e117\"}.glyphicon-folder-open:before{content:\"\\e118\"}.glyphicon-resize-vertical:before{content:\"\\e119\"}.glyphicon-resize-horizontal:before{content:\"\\e120\"}.glyphicon-hdd:before{content:\"\\e121\"}.glyphicon-bullhorn:before{content:\"\\e122\"}.glyphicon-bell:before{content:\"\\e123\"}.glyphicon-certificate:before{content:\"\\e124\"}.glyphicon-thumbs-up:before{content:\"\\e125\"}.glyphicon-thumbs-down:before{content:\"\\e126\"}.glyphicon-hand-right:before{content:\"\\e127\"}.glyphicon-hand-left:before{content:\"\\e128\"}.glyphicon-hand-up:before{content:\"\\e129\"}.glyphicon-hand-down:before{content:\"\\e130\"}.glyphicon-circle-arrow-right:before{content:\"\\e131\"}.glyphicon-circle-arrow-left:before{content:\"\\e132\"}.glyphicon-circle-arrow-up:before{content:\"\\e133\"}.glyphicon-circle-arrow-down:before{content:\"\\e134\"}.glyphicon-globe:before{content:\"\\e135\"}.glyphicon-wrench:before{content:\"\\e136\"}.glyphicon-tasks:before{content:\"\\e137\"}.glyphicon-filter:before{content:\"\\e138\"}.glyphicon-briefcase:before{content:\"\\e139\"}.glyphicon-fullscreen:before{content:\"\\e140\"}.glyphicon-dashboard:before{content:\"\\e141\"}.glyphicon-paperclip:before{content:\"\\e142\"}.glyphicon-heart-empty:before{content:\"\\e143\"}.glyphicon-link:before{content:\"\\e144\"}.glyphicon-phone:before{content:\"\\e145\"}.glyphicon-pushpin:before{content:\"\\e146\"}.glyphicon-usd:before{content:\"\\e148\"}.glyphicon-gbp:before{content:\"\\e149\"}.glyphicon-sort:before{content:\"\\e150\"}.glyphicon-sort-by-alphabet:before{content:\"\\e151\"}.glyphicon-sort-by-alphabet-alt:before{content:\"\\e152\"}.glyphicon-sort-by-order:before{content:\"\\e153\"}.glyphicon-sort-by-order-alt:before{content:\"\\e154\"}.glyphicon-sort-by-attributes:before{content:\"\\e155\"}.glyphicon-sort-by-attributes-alt:before{content:\"\\e156\"}.glyphicon-unchecked:before{content:\"\\e157\"}.glyphicon-expand:before{content:\"\\e158\"}.glyphicon-collapse-down:before{content:\"\\e159\"}.glyphicon-collapse-up:before{content:\"\\e160\"}.glyphicon-log-in:before{content:\"\\e161\"}.glyphicon-flash:before{content:\"\\e162\"}.glyphicon-log-out:before{content:\"\\e163\"}.glyphicon-new-window:before{content:\"\\e164\"}.glyphicon-record:before{content:\"\\e165\"}.glyphicon-save:before{content:\"\\e166\"}.glyphicon-open:before{content:\"\\e167\"}.glyphicon-saved:before{content:\"\\e168\"}.glyphicon-import:before{content:\"\\e169\"}.glyphicon-export:before{content:\"\\e170\"}.glyphicon-send:before{content:\"\\e171\"}.glyphicon-floppy-disk:before{content:\"\\e172\"}.glyphicon-floppy-saved:before{content:\"\\e173\"}.glyphicon-floppy-remove:before{content:\"\\e174\"}.glyphicon-floppy-save:before{content:\"\\e175\"}.glyphicon-floppy-open:before{content:\"\\e176\"}.glyphicon-credit-card:before{content:\"\\e177\"}.glyphicon-transfer:before{content:\"\\e178\"}.glyphicon-cutlery:before{content:\"\\e179\"}.glyphicon-header:before{content:\"\\e180\"}.glyphicon-compressed:before{content:\"\\e181\"}.glyphicon-earphone:before{content:\"\\e182\"}.glyphicon-phone-alt:before{content:\"\\e183\"}.glyphicon-tower:before{content:\"\\e184\"}.glyphicon-stats:before{content:\"\\e185\"}.glyphicon-sd-video:before{content:\"\\e186\"}.glyphicon-hd-video:before{content:\"\\e187\"}.glyphicon-subtitles:before{content:\"\\e188\"}.glyphicon-sound-stereo:before{content:\"\\e189\"}.glyphicon-sound-dolby:before{content:\"\\e190\"}.glyphicon-sound-5-1:before{content:\"\\e191\"}.glyphicon-sound-6-1:before{content:\"\\e192\"}.glyphicon-sound-7-1:before{content:\"\\e193\"}.glyphicon-copyright-mark:before{content:\"\\e194\"}.glyphicon-registration-mark:before{content:\"\\e195\"}.glyphicon-cloud-download:before{content:\"\\e197\"}.glyphicon-cloud-upload:before{content:\"\\e198\"}.glyphicon-tree-conifer:before{content:\"\\e199\"}.glyphicon-tree-deciduous:before{content:\"\\e200\"}.glyphicon-cd:before{content:\"\\e201\"}.glyphicon-save-file:before{content:\"\\e202\"}.glyphicon-open-file:before{content:\"\\e203\"}.glyphicon-level-up:before{content:\"\\e204\"}.glyphicon-copy:before{content:\"\\e205\"}.glyphicon-paste:before{content:\"\\e206\"}.glyphicon-alert:before{content:\"\\e209\"}.glyphicon-equalizer:before{content:\"\\e210\"}.glyphicon-king:before{content:\"\\e211\"}.glyphicon-queen:before{content:\"\\e212\"}.glyphicon-pawn:before{content:\"\\e213\"}.glyphicon-bishop:before{content:\"\\e214\"}.glyphicon-knight:before{content:\"\\e215\"}.glyphicon-baby-formula:before{content:\"\\e216\"}.glyphicon-tent:before{content:\"\\26fa\"}.glyphicon-blackboard:before{content:\"\\e218\"}.glyphicon-bed:before{content:\"\\e219\"}.glyphicon-apple:before{content:\"\\f8ff\"}.glyphicon-erase:before{content:\"\\e221\"}.glyphicon-hourglass:before{content:\"\\231b\"}.glyphicon-lamp:before{content:\"\\e223\"}.glyphicon-duplicate:before{content:\"\\e224\"}.glyphicon-piggy-bank:before{content:\"\\e225\"}.glyphicon-scissors:before{content:\"\\e226\"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:\"\\e227\"}.glyphicon-jpy:before,.glyphicon-yen:before{content:\"\\00a5\"}.glyphicon-rub:before,.glyphicon-ruble:before{content:\"\\20bd\"}.glyphicon-scale:before{content:\"\\e230\"}.glyphicon-ice-lolly:before{content:\"\\e231\"}.glyphicon-ice-lolly-tasted:before{content:\"\\e232\"}.glyphicon-education:before{content:\"\\e233\"}.glyphicon-option-horizontal:before{content:\"\\e234\"}.glyphicon-option-vertical:before{content:\"\\e235\"}.glyphicon-menu-hamburger:before{content:\"\\e236\"}.glyphicon-modal-window:before{content:\"\\e237\"}.glyphicon-oil:before{content:\"\\e238\"}.glyphicon-grain:before{content:\"\\e239\"}.glyphicon-sunglasses:before{content:\"\\e240\"}.glyphicon-text-size:before{content:\"\\e241\"}.glyphicon-text-color:before{content:\"\\e242\"}.glyphicon-text-background:before{content:\"\\e243\"}.glyphicon-object-align-top:before{content:\"\\e244\"}.glyphicon-object-align-bottom:before{content:\"\\e245\"}.glyphicon-object-align-horizontal:before{content:\"\\e246\"}.glyphicon-object-align-left:before{content:\"\\e247\"}.glyphicon-object-align-vertical:before{content:\"\\e248\"}.glyphicon-object-align-right:before{content:\"\\e249\"}.glyphicon-triangle-right:before{content:\"\\e250\"}.glyphicon-triangle-left:before{content:\"\\e251\"}.glyphicon-triangle-bottom:before{content:\"\\e252\"}.glyphicon-triangle-top:before{content:\"\\e253\"}.glyphicon-console:before{content:\"\\e254\"}.glyphicon-superscript:before{content:\"\\e255\"}.glyphicon-subscript:before{content:\"\\e256\"}.glyphicon-menu-left:before{content:\"\\e257\"}.glyphicon-menu-right:before{content:\"\\e258\"}.glyphicon-menu-down:before{content:\"\\e259\"}.glyphicon-menu-up:before{content:\"\\e260\"}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857}dt{font-weight:700}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{display:table;content:\" \"}.dl-horizontal dd:after{clear:both}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:\"\\2014 \\00A0\"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:\"\"}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:\"\\00A0 \\2014\"}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:after,.container:before{display:table;content:\" \"}.container:after{clear:both}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container-fluid:after,.container-fluid:before{display:table;content:\" \"}.container-fluid:after{clear:both}.row{margin-right:-15px;margin-left:-15px}.row:after,.row:before{display:table;content:\" \"}.row:after{clear:both}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}table{background-color:transparent}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;margin:0}fieldset,legend{padding:0;border:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\\9;line-height:normal}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.42857;color:#555}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm>.input-group-btn>input.btn[type=date],.input-group-sm>.input-group-btn>input.btn[type=datetime-local],.input-group-sm>.input-group-btn>input.btn[type=month],.input-group-sm>.input-group-btn>input.btn[type=time],.input-group-sm>input.form-control[type=date],.input-group-sm>input.form-control[type=datetime-local],.input-group-sm>input.form-control[type=month],.input-group-sm>input.form-control[type=time],.input-group-sm>input.input-group-addon[type=date],.input-group-sm>input.input-group-addon[type=datetime-local],.input-group-sm>input.input-group-addon[type=month],.input-group-sm>input.input-group-addon[type=time],.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg>.input-group-btn>input.btn[type=date],.input-group-lg>.input-group-btn>input.btn[type=datetime-local],.input-group-lg>.input-group-btn>input.btn[type=month],.input-group-lg>.input-group-btn>input.btn[type=time],.input-group-lg>input.form-control[type=date],.input-group-lg>input.form-control[type=datetime-local],.input-group-lg>input.form-control[type=month],.input-group-lg>input.form-control[type=time],.input-group-lg>input.input-group-addon[type=date],.input-group-lg>input.input-group-addon[type=datetime-local],.input-group-lg>input.input-group-addon[type=month],.input-group-lg>input.input-group-addon[type=time],.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio]{position:absolute;margin-top:4px\\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm{height:30px;line-height:30px}.input-group-sm>.input-group-btn>select.btn[multiple],.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select.form-control[multiple],.input-group-sm>select.input-group-addon[multiple],.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg{height:46px;line-height:46px}.input-group-lg>.input-group-btn>select.btn[multiple],.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select.form-control[multiple],.input-group-lg>select.input-group-addon[multiple],.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{display:table;content:\" \"}.form-horizontal .form-group:after{clear:both}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:\"\";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:after,.btn-toolbar:before{display:table;content:\" \"}.btn-toolbar:after{clear:both}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{display:table;content:\" \"}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:after,.nav:before{display:table;content:\" \"}.nav:after{clear:both}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid;border-color:#ddd #ddd transparent}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:after,.navbar:before{display:table;content:\" \"}.navbar:after{clear:both}@media (min-width:768px){.navbar{border-radius:4px}}.navbar-header:after,.navbar-header:before{display:table;content:\" \"}.navbar-header:after{clear:both}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:after,.navbar-collapse:before{display:table;content:\" \"}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container-fluid .navbar-brand,.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);margin:8px -15px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#090909}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:\"/ \"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:after,.pager:before{display:table;content:\" \"}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container-fluid .jumbotron,.container .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container-fluid .jumbotron,.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-body:after,.panel-body:before{display:table;content:\" \"}.panel-body:after{clear:both}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;appearance:none}.modal,.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);-ms-transform:translateY(-25%);-o-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header:after,.modal-header:before{display:table;content:\" \"}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:after,.modal-footer:before{display:table;content:\" \"}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow:after{content:\"\";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:\" \";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:\" \";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:\" \";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:\" \";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.carousel,.carousel-inner{position:relative}.carousel-inner{width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:left .6s ease-in-out;-o-transition:.6s ease-in-out left;transition:left .6s ease-in-out}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;max-width:100%;height:auto;line-height:1}@media (-webkit-transform-3d),(transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-moz-transition:-moz-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translateZ(0);transform:translateZ(0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:transparent;filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,.0001));background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(90deg,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#80000000\",endColorstr=\"#00000000\",GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001),rgba(0,0,0,.5));background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(90deg,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#00000000\",endColorstr=\"#80000000\",GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:\"\\2039\"}.carousel-control .icon-next:before{content:\"\\203a\"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\\9;background-color:transparent;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:after,.clearfix:before{display:table;content:\" \"}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}\n\n/*!\n * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s linear infinite}.fa-pulse{animation:fa-spin 1s steps(8) infinite}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:\"\\f26e\"}.fa-accessible-icon:before{content:\"\\f368\"}.fa-accusoft:before{content:\"\\f369\"}.fa-acquisitions-incorporated:before{content:\"\\f6af\"}.fa-ad:before{content:\"\\f641\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-card:before{content:\"\\f2bb\"}.fa-adjust:before{content:\"\\f042\"}.fa-adn:before{content:\"\\f170\"}.fa-adversal:before{content:\"\\f36a\"}.fa-affiliatetheme:before{content:\"\\f36b\"}.fa-air-freshener:before{content:\"\\f5d0\"}.fa-airbnb:before{content:\"\\f834\"}.fa-algolia:before{content:\"\\f36c\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-justify:before{content:\"\\f039\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-right:before{content:\"\\f038\"}.fa-alipay:before{content:\"\\f642\"}.fa-allergies:before{content:\"\\f461\"}.fa-amazon:before{content:\"\\f270\"}.fa-amazon-pay:before{content:\"\\f42c\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-amilia:before{content:\"\\f36d\"}.fa-anchor:before{content:\"\\f13d\"}.fa-android:before{content:\"\\f17b\"}.fa-angellist:before{content:\"\\f209\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-down:before{content:\"\\f107\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angry:before{content:\"\\f556\"}.fa-angrycreative:before{content:\"\\f36e\"}.fa-angular:before{content:\"\\f420\"}.fa-ankh:before{content:\"\\f644\"}.fa-app-store:before{content:\"\\f36f\"}.fa-app-store-ios:before{content:\"\\f370\"}.fa-apper:before{content:\"\\f371\"}.fa-apple:before{content:\"\\f179\"}.fa-apple-alt:before{content:\"\\f5d1\"}.fa-apple-pay:before{content:\"\\f415\"}.fa-archive:before{content:\"\\f187\"}.fa-archway:before{content:\"\\f557\"}.fa-arrow-alt-circle-down:before{content:\"\\f358\"}.fa-arrow-alt-circle-left:before{content:\"\\f359\"}.fa-arrow-alt-circle-right:before{content:\"\\f35a\"}.fa-arrow-alt-circle-up:before{content:\"\\f35b\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-arrows-alt-h:before{content:\"\\f337\"}.fa-arrows-alt-v:before{content:\"\\f338\"}.fa-artstation:before{content:\"\\f77a\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asterisk:before{content:\"\\f069\"}.fa-asymmetrik:before{content:\"\\f372\"}.fa-at:before{content:\"\\f1fa\"}.fa-atlas:before{content:\"\\f558\"}.fa-atlassian:before{content:\"\\f77b\"}.fa-atom:before{content:\"\\f5d2\"}.fa-audible:before{content:\"\\f373\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-autoprefixer:before{content:\"\\f41c\"}.fa-avianex:before{content:\"\\f374\"}.fa-aviato:before{content:\"\\f421\"}.fa-award:before{content:\"\\f559\"}.fa-aws:before{content:\"\\f375\"}.fa-baby:before{content:\"\\f77c\"}.fa-baby-carriage:before{content:\"\\f77d\"}.fa-backspace:before{content:\"\\f55a\"}.fa-backward:before{content:\"\\f04a\"}.fa-bacon:before{content:\"\\f7e5\"}.fa-bacteria:before{content:\"\\e059\"}.fa-bacterium:before{content:\"\\e05a\"}.fa-bahai:before{content:\"\\f666\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-balance-scale-left:before{content:\"\\f515\"}.fa-balance-scale-right:before{content:\"\\f516\"}.fa-ban:before{content:\"\\f05e\"}.fa-band-aid:before{content:\"\\f462\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-barcode:before{content:\"\\f02a\"}.fa-bars:before{content:\"\\f0c9\"}.fa-baseball-ball:before{content:\"\\f433\"}.fa-basketball-ball:before{content:\"\\f434\"}.fa-bath:before{content:\"\\f2cd\"}.fa-battery-empty:before{content:\"\\f244\"}.fa-battery-full:before{content:\"\\f240\"}.fa-battery-half:before{content:\"\\f242\"}.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-battle-net:before{content:\"\\f835\"}.fa-bed:before{content:\"\\f236\"}.fa-beer:before{content:\"\\f0fc\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-bell:before{content:\"\\f0f3\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bezier-curve:before{content:\"\\f55b\"}.fa-bible:before{content:\"\\f647\"}.fa-bicycle:before{content:\"\\f206\"}.fa-biking:before{content:\"\\f84a\"}.fa-bimobject:before{content:\"\\f378\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-biohazard:before{content:\"\\f780\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitcoin:before{content:\"\\f379\"}.fa-bity:before{content:\"\\f37a\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-blackberry:before{content:\"\\f37b\"}.fa-blender:before{content:\"\\f517\"}.fa-blender-phone:before{content:\"\\f6b6\"}.fa-blind:before{content:\"\\f29d\"}.fa-blog:before{content:\"\\f781\"}.fa-blogger:before{content:\"\\f37c\"}.fa-blogger-b:before{content:\"\\f37d\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-bold:before{content:\"\\f032\"}.fa-bolt:before{content:\"\\f0e7\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-bone:before{content:\"\\f5d7\"}.fa-bong:before{content:\"\\f55c\"}.fa-book:before{content:\"\\f02d\"}.fa-book-dead:before{content:\"\\f6b7\"}.fa-book-medical:before{content:\"\\f7e6\"}.fa-book-open:before{content:\"\\f518\"}.fa-book-reader:before{content:\"\\f5da\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-bootstrap:before{content:\"\\f836\"}.fa-border-all:before{content:\"\\f84c\"}.fa-border-none:before{content:\"\\f850\"}.fa-border-style:before{content:\"\\f853\"}.fa-bowling-ball:before{content:\"\\f436\"}.fa-box:before{content:\"\\f466\"}.fa-box-open:before{content:\"\\f49e\"}.fa-box-tissue:before{content:\"\\e05b\"}.fa-boxes:before{content:\"\\f468\"}.fa-braille:before{content:\"\\f2a1\"}.fa-brain:before{content:\"\\f5dc\"}.fa-bread-slice:before{content:\"\\f7ec\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-briefcase-medical:before{content:\"\\f469\"}.fa-broadcast-tower:before{content:\"\\f519\"}.fa-broom:before{content:\"\\f51a\"}.fa-brush:before{content:\"\\f55d\"}.fa-btc:before{content:\"\\f15a\"}.fa-buffer:before{content:\"\\f837\"}.fa-bug:before{content:\"\\f188\"}.fa-building:before{content:\"\\f1ad\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bullseye:before{content:\"\\f140\"}.fa-burn:before{content:\"\\f46a\"}.fa-buromobelexperte:before{content:\"\\f37f\"}.fa-bus:before{content:\"\\f207\"}.fa-bus-alt:before{content:\"\\f55e\"}.fa-business-time:before{content:\"\\f64a\"}.fa-buy-n-large:before{content:\"\\f8a6\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-calendar:before{content:\"\\f133\"}.fa-calendar-alt:before{content:\"\\f073\"}.fa-calendar-check:before{content:\"\\f274\"}.fa-calendar-day:before{content:\"\\f783\"}.fa-calendar-minus:before{content:\"\\f272\"}.fa-calendar-plus:before{content:\"\\f271\"}.fa-calendar-times:before{content:\"\\f273\"}.fa-calendar-week:before{content:\"\\f784\"}.fa-camera:before{content:\"\\f030\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-campground:before{content:\"\\f6bb\"}.fa-canadian-maple-leaf:before{content:\"\\f785\"}.fa-candy-cane:before{content:\"\\f786\"}.fa-cannabis:before{content:\"\\f55f\"}.fa-capsules:before{content:\"\\f46b\"}.fa-car:before{content:\"\\f1b9\"}.fa-car-alt:before{content:\"\\f5de\"}.fa-car-battery:before{content:\"\\f5df\"}.fa-car-crash:before{content:\"\\f5e1\"}.fa-car-side:before{content:\"\\f5e4\"}.fa-caravan:before{content:\"\\f8ff\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-caret-square-down:before{content:\"\\f150\"}.fa-caret-square-left:before{content:\"\\f191\"}.fa-caret-square-right:before{content:\"\\f152\"}.fa-caret-square-up:before{content:\"\\f151\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-carrot:before{content:\"\\f787\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cash-register:before{content:\"\\f788\"}.fa-cat:before{content:\"\\f6be\"}.fa-cc-amazon-pay:before{content:\"\\f42d\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-apple-pay:before{content:\"\\f416\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-centercode:before{content:\"\\f380\"}.fa-centos:before{content:\"\\f789\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-chair:before{content:\"\\f6c0\"}.fa-chalkboard:before{content:\"\\f51b\"}.fa-chalkboard-teacher:before{content:\"\\f51c\"}.fa-charging-station:before{content:\"\\f5e7\"}.fa-chart-area:before{content:\"\\f1fe\"}.fa-chart-bar:before{content:\"\\f080\"}.fa-chart-line:before{content:\"\\f201\"}.fa-chart-pie:before{content:\"\\f200\"}.fa-check:before{content:\"\\f00c\"}.fa-check-circle:before{content:\"\\f058\"}.fa-check-double:before{content:\"\\f560\"}.fa-check-square:before{content:\"\\f14a\"}.fa-cheese:before{content:\"\\f7ef\"}.fa-chess:before{content:\"\\f439\"}.fa-chess-bishop:before{content:\"\\f43a\"}.fa-chess-board:before{content:\"\\f43c\"}.fa-chess-king:before{content:\"\\f43f\"}.fa-chess-knight:before{content:\"\\f441\"}.fa-chess-pawn:before{content:\"\\f443\"}.fa-chess-queen:before{content:\"\\f445\"}.fa-chess-rook:before{content:\"\\f447\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-child:before{content:\"\\f1ae\"}.fa-chrome:before{content:\"\\f268\"}.fa-chromecast:before{content:\"\\f838\"}.fa-church:before{content:\"\\f51d\"}.fa-circle:before{content:\"\\f111\"}.fa-circle-notch:before{content:\"\\f1ce\"}.fa-city:before{content:\"\\f64f\"}.fa-clinic-medical:before{content:\"\\f7f2\"}.fa-clipboard:before{content:\"\\f328\"}.fa-clipboard-check:before{content:\"\\f46c\"}.fa-clipboard-list:before{content:\"\\f46d\"}.fa-clock:before{content:\"\\f017\"}.fa-clone:before{content:\"\\f24d\"}.fa-closed-captioning:before{content:\"\\f20a\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-cloud-download-alt:before{content:\"\\f381\"}.fa-cloud-meatball:before{content:\"\\f73b\"}.fa-cloud-moon:before{content:\"\\f6c3\"}.fa-cloud-moon-rain:before{content:\"\\f73c\"}.fa-cloud-rain:before{content:\"\\f73d\"}.fa-cloud-showers-heavy:before{content:\"\\f740\"}.fa-cloud-sun:before{content:\"\\f6c4\"}.fa-cloud-sun-rain:before{content:\"\\f743\"}.fa-cloud-upload-alt:before{content:\"\\f382\"}.fa-cloudflare:before{content:\"\\e07d\"}.fa-cloudscale:before{content:\"\\f383\"}.fa-cloudsmith:before{content:\"\\f384\"}.fa-cloudversify:before{content:\"\\f385\"}.fa-cocktail:before{content:\"\\f561\"}.fa-code:before{content:\"\\f121\"}.fa-code-branch:before{content:\"\\f126\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-codiepie:before{content:\"\\f284\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cog:before{content:\"\\f013\"}.fa-cogs:before{content:\"\\f085\"}.fa-coins:before{content:\"\\f51e\"}.fa-columns:before{content:\"\\f0db\"}.fa-comment:before{content:\"\\f075\"}.fa-comment-alt:before{content:\"\\f27a\"}.fa-comment-dollar:before{content:\"\\f651\"}.fa-comment-dots:before{content:\"\\f4ad\"}.fa-comment-medical:before{content:\"\\f7f5\"}.fa-comment-slash:before{content:\"\\f4b3\"}.fa-comments:before{content:\"\\f086\"}.fa-comments-dollar:before{content:\"\\f653\"}.fa-compact-disc:before{content:\"\\f51f\"}.fa-compass:before{content:\"\\f14e\"}.fa-compress:before{content:\"\\f066\"}.fa-compress-alt:before{content:\"\\f422\"}.fa-compress-arrows-alt:before{content:\"\\f78c\"}.fa-concierge-bell:before{content:\"\\f562\"}.fa-confluence:before{content:\"\\f78d\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-contao:before{content:\"\\f26d\"}.fa-cookie:before{content:\"\\f563\"}.fa-cookie-bite:before{content:\"\\f564\"}.fa-copy:before{content:\"\\f0c5\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-cotton-bureau:before{content:\"\\f89e\"}.fa-couch:before{content:\"\\f4b8\"}.fa-cpanel:before{content:\"\\f388\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-creative-commons-by:before{content:\"\\f4e7\"}.fa-creative-commons-nc:before{content:\"\\f4e8\"}.fa-creative-commons-nc-eu:before{content:\"\\f4e9\"}.fa-creative-commons-nc-jp:before{content:\"\\f4ea\"}.fa-creative-commons-nd:before{content:\"\\f4eb\"}.fa-creative-commons-pd:before{content:\"\\f4ec\"}.fa-creative-commons-pd-alt:before{content:\"\\f4ed\"}.fa-creative-commons-remix:before{content:\"\\f4ee\"}.fa-creative-commons-sa:before{content:\"\\f4ef\"}.fa-creative-commons-sampling:before{content:\"\\f4f0\"}.fa-creative-commons-sampling-plus:before{content:\"\\f4f1\"}.fa-creative-commons-share:before{content:\"\\f4f2\"}.fa-creative-commons-zero:before{content:\"\\f4f3\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-critical-role:before{content:\"\\f6c9\"}.fa-crop:before{content:\"\\f125\"}.fa-crop-alt:before{content:\"\\f565\"}.fa-cross:before{content:\"\\f654\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-crow:before{content:\"\\f520\"}.fa-crown:before{content:\"\\f521\"}.fa-crutch:before{content:\"\\f7f7\"}.fa-css3:before{content:\"\\f13c\"}.fa-css3-alt:before{content:\"\\f38b\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-cut:before{content:\"\\f0c4\"}.fa-cuttlefish:before{content:\"\\f38c\"}.fa-d-and-d:before{content:\"\\f38d\"}.fa-d-and-d-beyond:before{content:\"\\f6ca\"}.fa-dailymotion:before{content:\"\\e052\"}.fa-dashcube:before{content:\"\\f210\"}.fa-database:before{content:\"\\f1c0\"}.fa-deaf:before{content:\"\\f2a4\"}.fa-deezer:before{content:\"\\e077\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-democrat:before{content:\"\\f747\"}.fa-deploydog:before{content:\"\\f38e\"}.fa-deskpro:before{content:\"\\f38f\"}.fa-desktop:before{content:\"\\f108\"}.fa-dev:before{content:\"\\f6cc\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-dharmachakra:before{content:\"\\f655\"}.fa-dhl:before{content:\"\\f790\"}.fa-diagnoses:before{content:\"\\f470\"}.fa-diaspora:before{content:\"\\f791\"}.fa-dice:before{content:\"\\f522\"}.fa-dice-d20:before{content:\"\\f6cf\"}.fa-dice-d6:before{content:\"\\f6d1\"}.fa-dice-five:before{content:\"\\f523\"}.fa-dice-four:before{content:\"\\f524\"}.fa-dice-one:before{content:\"\\f525\"}.fa-dice-six:before{content:\"\\f526\"}.fa-dice-three:before{content:\"\\f527\"}.fa-dice-two:before{content:\"\\f528\"}.fa-digg:before{content:\"\\f1a6\"}.fa-digital-ocean:before{content:\"\\f391\"}.fa-digital-tachograph:before{content:\"\\f566\"}.fa-directions:before{content:\"\\f5eb\"}.fa-discord:before{content:\"\\f392\"}.fa-discourse:before{content:\"\\f393\"}.fa-disease:before{content:\"\\f7fa\"}.fa-divide:before{content:\"\\f529\"}.fa-dizzy:before{content:\"\\f567\"}.fa-dna:before{content:\"\\f471\"}.fa-dochub:before{content:\"\\f394\"}.fa-docker:before{content:\"\\f395\"}.fa-dog:before{content:\"\\f6d3\"}.fa-dollar-sign:before{content:\"\\f155\"}.fa-dolly:before{content:\"\\f472\"}.fa-dolly-flatbed:before{content:\"\\f474\"}.fa-donate:before{content:\"\\f4b9\"}.fa-door-closed:before{content:\"\\f52a\"}.fa-door-open:before{content:\"\\f52b\"}.fa-dot-circle:before{content:\"\\f192\"}.fa-dove:before{content:\"\\f4ba\"}.fa-download:before{content:\"\\f019\"}.fa-draft2digital:before{content:\"\\f396\"}.fa-drafting-compass:before{content:\"\\f568\"}.fa-dragon:before{content:\"\\f6d5\"}.fa-draw-polygon:before{content:\"\\f5ee\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-dribbble-square:before{content:\"\\f397\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-drum:before{content:\"\\f569\"}.fa-drum-steelpan:before{content:\"\\f56a\"}.fa-drumstick-bite:before{content:\"\\f6d7\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-dumbbell:before{content:\"\\f44b\"}.fa-dumpster:before{content:\"\\f793\"}.fa-dumpster-fire:before{content:\"\\f794\"}.fa-dungeon:before{content:\"\\f6d9\"}.fa-dyalog:before{content:\"\\f399\"}.fa-earlybirds:before{content:\"\\f39a\"}.fa-ebay:before{content:\"\\f4f4\"}.fa-edge:before{content:\"\\f282\"}.fa-edge-legacy:before{content:\"\\e078\"}.fa-edit:before{content:\"\\f044\"}.fa-egg:before{content:\"\\f7fb\"}.fa-eject:before{content:\"\\f052\"}.fa-elementor:before{content:\"\\f430\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-ello:before{content:\"\\f5f1\"}.fa-ember:before{content:\"\\f423\"}.fa-empire:before{content:\"\\f1d1\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-open-text:before{content:\"\\f658\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-envira:before{content:\"\\f299\"}.fa-equals:before{content:\"\\f52c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-erlang:before{content:\"\\f39d\"}.fa-ethereum:before{content:\"\\f42e\"}.fa-ethernet:before{content:\"\\f796\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-euro-sign:before{content:\"\\f153\"}.fa-evernote:before{content:\"\\f839\"}.fa-exchange-alt:before{content:\"\\f362\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-expand:before{content:\"\\f065\"}.fa-expand-alt:before{content:\"\\f424\"}.fa-expand-arrows-alt:before{content:\"\\f31e\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-external-link-alt:before{content:\"\\f35d\"}.fa-external-link-square-alt:before{content:\"\\f360\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-dropper:before{content:\"\\f1fb\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-facebook:before{content:\"\\f09a\"}.fa-facebook-f:before{content:\"\\f39e\"}.fa-facebook-messenger:before{content:\"\\f39f\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-fan:before{content:\"\\f863\"}.fa-fantasy-flight-games:before{content:\"\\f6dc\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-faucet:before{content:\"\\e005\"}.fa-fax:before{content:\"\\f1ac\"}.fa-feather:before{content:\"\\f52d\"}.fa-feather-alt:before{content:\"\\f56b\"}.fa-fedex:before{content:\"\\f797\"}.fa-fedora:before{content:\"\\f798\"}.fa-female:before{content:\"\\f182\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-figma:before{content:\"\\f799\"}.fa-file:before{content:\"\\f15b\"}.fa-file-alt:before{content:\"\\f15c\"}.fa-file-archive:before{content:\"\\f1c6\"}.fa-file-audio:before{content:\"\\f1c7\"}.fa-file-code:before{content:\"\\f1c9\"}.fa-file-contract:before{content:\"\\f56c\"}.fa-file-csv:before{content:\"\\f6dd\"}.fa-file-download:before{content:\"\\f56d\"}.fa-file-excel:before{content:\"\\f1c3\"}.fa-file-export:before{content:\"\\f56e\"}.fa-file-image:before{content:\"\\f1c5\"}.fa-file-import:before{content:\"\\f56f\"}.fa-file-invoice:before{content:\"\\f570\"}.fa-file-invoice-dollar:before{content:\"\\f571\"}.fa-file-medical:before{content:\"\\f477\"}.fa-file-medical-alt:before{content:\"\\f478\"}.fa-file-pdf:before{content:\"\\f1c1\"}.fa-file-powerpoint:before{content:\"\\f1c4\"}.fa-file-prescription:before{content:\"\\f572\"}.fa-file-signature:before{content:\"\\f573\"}.fa-file-upload:before{content:\"\\f574\"}.fa-file-video:before{content:\"\\f1c8\"}.fa-file-word:before{content:\"\\f1c2\"}.fa-fill:before{content:\"\\f575\"}.fa-fill-drip:before{content:\"\\f576\"}.fa-film:before{content:\"\\f008\"}.fa-filter:before{content:\"\\f0b0\"}.fa-fingerprint:before{content:\"\\f577\"}.fa-fire:before{content:\"\\f06d\"}.fa-fire-alt:before{content:\"\\f7e4\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-firefox:before{content:\"\\f269\"}.fa-firefox-browser:before{content:\"\\e007\"}.fa-first-aid:before{content:\"\\f479\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-first-order-alt:before{content:\"\\f50a\"}.fa-firstdraft:before{content:\"\\f3a1\"}.fa-fish:before{content:\"\\f578\"}.fa-fist-raised:before{content:\"\\f6de\"}.fa-flag:before{content:\"\\f024\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-flag-usa:before{content:\"\\f74d\"}.fa-flask:before{content:\"\\f0c3\"}.fa-flickr:before{content:\"\\f16e\"}.fa-flipboard:before{content:\"\\f44d\"}.fa-flushed:before{content:\"\\f579\"}.fa-fly:before{content:\"\\f417\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-minus:before{content:\"\\f65d\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-folder-plus:before{content:\"\\f65e\"}.fa-font:before{content:\"\\f031\"}.fa-font-awesome:before{content:\"\\f2b4\"}.fa-font-awesome-alt:before{content:\"\\f35c\"}.fa-font-awesome-flag:before{content:\"\\f425\"}.fa-font-awesome-logo-full:before{content:\"\\f4e6\"}.fa-fonticons:before{content:\"\\f280\"}.fa-fonticons-fi:before{content:\"\\f3a2\"}.fa-football-ball:before{content:\"\\f44e\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-fort-awesome-alt:before{content:\"\\f3a3\"}.fa-forumbee:before{content:\"\\f211\"}.fa-forward:before{content:\"\\f04e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-freebsd:before{content:\"\\f3a4\"}.fa-frog:before{content:\"\\f52e\"}.fa-frown:before{content:\"\\f119\"}.fa-frown-open:before{content:\"\\f57a\"}.fa-fulcrum:before{content:\"\\f50b\"}.fa-funnel-dollar:before{content:\"\\f662\"}.fa-futbol:before{content:\"\\f1e3\"}.fa-galactic-republic:before{content:\"\\f50c\"}.fa-galactic-senate:before{content:\"\\f50d\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-gas-pump:before{content:\"\\f52f\"}.fa-gavel:before{content:\"\\f0e3\"}.fa-gem:before{content:\"\\f3a5\"}.fa-genderless:before{content:\"\\f22d\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-ghost:before{content:\"\\f6e2\"}.fa-gift:before{content:\"\\f06b\"}.fa-gifts:before{content:\"\\f79c\"}.fa-git:before{content:\"\\f1d3\"}.fa-git-alt:before{content:\"\\f841\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-github:before{content:\"\\f09b\"}.fa-github-alt:before{content:\"\\f113\"}.fa-github-square:before{content:\"\\f092\"}.fa-gitkraken:before{content:\"\\f3a6\"}.fa-gitlab:before{content:\"\\f296\"}.fa-gitter:before{content:\"\\f426\"}.fa-glass-cheers:before{content:\"\\f79f\"}.fa-glass-martini:before{content:\"\\f000\"}.fa-glass-martini-alt:before{content:\"\\f57b\"}.fa-glass-whiskey:before{content:\"\\f7a0\"}.fa-glasses:before{content:\"\\f530\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-globe:before{content:\"\\f0ac\"}.fa-globe-africa:before{content:\"\\f57c\"}.fa-globe-americas:before{content:\"\\f57d\"}.fa-globe-asia:before{content:\"\\f57e\"}.fa-globe-europe:before{content:\"\\f7a2\"}.fa-gofore:before{content:\"\\f3a7\"}.fa-golf-ball:before{content:\"\\f450\"}.fa-goodreads:before{content:\"\\f3a8\"}.fa-goodreads-g:before{content:\"\\f3a9\"}.fa-google:before{content:\"\\f1a0\"}.fa-google-drive:before{content:\"\\f3aa\"}.fa-google-pay:before{content:\"\\e079\"}.fa-google-play:before{content:\"\\f3ab\"}.fa-google-plus:before{content:\"\\f2b3\"}.fa-google-plus-g:before{content:\"\\f0d5\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-gopuram:before{content:\"\\f664\"}.fa-graduation-cap:before{content:\"\\f19d\"}.fa-gratipay:before{content:\"\\f184\"}.fa-grav:before{content:\"\\f2d6\"}.fa-greater-than:before{content:\"\\f531\"}.fa-greater-than-equal:before{content:\"\\f532\"}.fa-grimace:before{content:\"\\f57f\"}.fa-grin:before{content:\"\\f580\"}.fa-grin-alt:before{content:\"\\f581\"}.fa-grin-beam:before{content:\"\\f582\"}.fa-grin-beam-sweat:before{content:\"\\f583\"}.fa-grin-hearts:before{content:\"\\f584\"}.fa-grin-squint:before{content:\"\\f585\"}.fa-grin-squint-tears:before{content:\"\\f586\"}.fa-grin-stars:before{content:\"\\f587\"}.fa-grin-tears:before{content:\"\\f588\"}.fa-grin-tongue:before{content:\"\\f589\"}.fa-grin-tongue-squint:before{content:\"\\f58a\"}.fa-grin-tongue-wink:before{content:\"\\f58b\"}.fa-grin-wink:before{content:\"\\f58c\"}.fa-grip-horizontal:before{content:\"\\f58d\"}.fa-grip-lines:before{content:\"\\f7a4\"}.fa-grip-lines-vertical:before{content:\"\\f7a5\"}.fa-grip-vertical:before{content:\"\\f58e\"}.fa-gripfire:before{content:\"\\f3ac\"}.fa-grunt:before{content:\"\\f3ad\"}.fa-guilded:before{content:\"\\e07e\"}.fa-guitar:before{content:\"\\f7a6\"}.fa-gulp:before{content:\"\\f3ae\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-hacker-news:before{content:\"\\f1d4\"}.fa-hacker-news-square:before{content:\"\\f3af\"}.fa-hackerrank:before{content:\"\\f5f7\"}.fa-hamburger:before{content:\"\\f805\"}.fa-hammer:before{content:\"\\f6e3\"}.fa-hamsa:before{content:\"\\f665\"}.fa-hand-holding:before{content:\"\\f4bd\"}.fa-hand-holding-heart:before{content:\"\\f4be\"}.fa-hand-holding-medical:before{content:\"\\e05c\"}.fa-hand-holding-usd:before{content:\"\\f4c0\"}.fa-hand-holding-water:before{content:\"\\f4c1\"}.fa-hand-lizard:before{content:\"\\f258\"}.fa-hand-middle-finger:before{content:\"\\f806\"}.fa-hand-paper:before{content:\"\\f256\"}.fa-hand-peace:before{content:\"\\f25b\"}.fa-hand-point-down:before{content:\"\\f0a7\"}.fa-hand-point-left:before{content:\"\\f0a5\"}.fa-hand-point-right:before{content:\"\\f0a4\"}.fa-hand-point-up:before{content:\"\\f0a6\"}.fa-hand-pointer:before{content:\"\\f25a\"}.fa-hand-rock:before{content:\"\\f255\"}.fa-hand-scissors:before{content:\"\\f257\"}.fa-hand-sparkles:before{content:\"\\e05d\"}.fa-hand-spock:before{content:\"\\f259\"}.fa-hands:before{content:\"\\f4c2\"}.fa-hands-helping:before{content:\"\\f4c4\"}.fa-hands-wash:before{content:\"\\e05e\"}.fa-handshake:before{content:\"\\f2b5\"}.fa-handshake-alt-slash:before{content:\"\\e05f\"}.fa-handshake-slash:before{content:\"\\e060\"}.fa-hanukiah:before{content:\"\\f6e6\"}.fa-hard-hat:before{content:\"\\f807\"}.fa-hashtag:before{content:\"\\f292\"}.fa-hat-cowboy:before{content:\"\\f8c0\"}.fa-hat-cowboy-side:before{content:\"\\f8c1\"}.fa-hat-wizard:before{content:\"\\f6e8\"}.fa-hdd:before{content:\"\\f0a0\"}.fa-head-side-cough:before{content:\"\\e061\"}.fa-head-side-cough-slash:before{content:\"\\e062\"}.fa-head-side-mask:before{content:\"\\e063\"}.fa-head-side-virus:before{content:\"\\e064\"}.fa-heading:before{content:\"\\f1dc\"}.fa-headphones:before{content:\"\\f025\"}.fa-headphones-alt:before{content:\"\\f58f\"}.fa-headset:before{content:\"\\f590\"}.fa-heart:before{content:\"\\f004\"}.fa-heart-broken:before{content:\"\\f7a9\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-helicopter:before{content:\"\\f533\"}.fa-highlighter:before{content:\"\\f591\"}.fa-hiking:before{content:\"\\f6ec\"}.fa-hippo:before{content:\"\\f6ed\"}.fa-hips:before{content:\"\\f452\"}.fa-hire-a-helper:before{content:\"\\f3b0\"}.fa-history:before{content:\"\\f1da\"}.fa-hive:before{content:\"\\e07f\"}.fa-hockey-puck:before{content:\"\\f453\"}.fa-holly-berry:before{content:\"\\f7aa\"}.fa-home:before{content:\"\\f015\"}.fa-hooli:before{content:\"\\f427\"}.fa-hornbill:before{content:\"\\f592\"}.fa-horse:before{content:\"\\f6f0\"}.fa-horse-head:before{content:\"\\f7ab\"}.fa-hospital:before{content:\"\\f0f8\"}.fa-hospital-alt:before{content:\"\\f47d\"}.fa-hospital-symbol:before{content:\"\\f47e\"}.fa-hospital-user:before{content:\"\\f80d\"}.fa-hot-tub:before{content:\"\\f593\"}.fa-hotdog:before{content:\"\\f80f\"}.fa-hotel:before{content:\"\\f594\"}.fa-hotjar:before{content:\"\\f3b1\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-start:before{content:\"\\f251\"}.fa-house-damage:before{content:\"\\f6f1\"}.fa-house-user:before{content:\"\\e065\"}.fa-houzz:before{content:\"\\f27c\"}.fa-hryvnia:before{content:\"\\f6f2\"}.fa-html5:before{content:\"\\f13b\"}.fa-hubspot:before{content:\"\\f3b2\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-ice-cream:before{content:\"\\f810\"}.fa-icicles:before{content:\"\\f7ad\"}.fa-icons:before{content:\"\\f86d\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-id-card:before{content:\"\\f2c2\"}.fa-id-card-alt:before{content:\"\\f47f\"}.fa-ideal:before{content:\"\\e013\"}.fa-igloo:before{content:\"\\f7ae\"}.fa-image:before{content:\"\\f03e\"}.fa-images:before{content:\"\\f302\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-inbox:before{content:\"\\f01c\"}.fa-indent:before{content:\"\\f03c\"}.fa-industry:before{content:\"\\f275\"}.fa-infinity:before{content:\"\\f534\"}.fa-info:before{content:\"\\f129\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-innosoft:before{content:\"\\e080\"}.fa-instagram:before{content:\"\\f16d\"}.fa-instagram-square:before{content:\"\\e055\"}.fa-instalod:before{content:\"\\e081\"}.fa-intercom:before{content:\"\\f7af\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-invision:before{content:\"\\f7b0\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-italic:before{content:\"\\f033\"}.fa-itch-io:before{content:\"\\f83a\"}.fa-itunes:before{content:\"\\f3b4\"}.fa-itunes-note:before{content:\"\\f3b5\"}.fa-java:before{content:\"\\f4e4\"}.fa-jedi:before{content:\"\\f669\"}.fa-jedi-order:before{content:\"\\f50e\"}.fa-jenkins:before{content:\"\\f3b6\"}.fa-jira:before{content:\"\\f7b1\"}.fa-joget:before{content:\"\\f3b7\"}.fa-joint:before{content:\"\\f595\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-journal-whills:before{content:\"\\f66a\"}.fa-js:before{content:\"\\f3b8\"}.fa-js-square:before{content:\"\\f3b9\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-kaaba:before{content:\"\\f66b\"}.fa-kaggle:before{content:\"\\f5fa\"}.fa-key:before{content:\"\\f084\"}.fa-keybase:before{content:\"\\f4f5\"}.fa-keyboard:before{content:\"\\f11c\"}.fa-keycdn:before{content:\"\\f3ba\"}.fa-khanda:before{content:\"\\f66d\"}.fa-kickstarter:before{content:\"\\f3bb\"}.fa-kickstarter-k:before{content:\"\\f3bc\"}.fa-kiss:before{content:\"\\f596\"}.fa-kiss-beam:before{content:\"\\f597\"}.fa-kiss-wink-heart:before{content:\"\\f598\"}.fa-kiwi-bird:before{content:\"\\f535\"}.fa-korvue:before{content:\"\\f42f\"}.fa-landmark:before{content:\"\\f66f\"}.fa-language:before{content:\"\\f1ab\"}.fa-laptop:before{content:\"\\f109\"}.fa-laptop-code:before{content:\"\\f5fc\"}.fa-laptop-house:before{content:\"\\e066\"}.fa-laptop-medical:before{content:\"\\f812\"}.fa-laravel:before{content:\"\\f3bd\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-laugh:before{content:\"\\f599\"}.fa-laugh-beam:before{content:\"\\f59a\"}.fa-laugh-squint:before{content:\"\\f59b\"}.fa-laugh-wink:before{content:\"\\f59c\"}.fa-layer-group:before{content:\"\\f5fd\"}.fa-leaf:before{content:\"\\f06c\"}.fa-leanpub:before{content:\"\\f212\"}.fa-lemon:before{content:\"\\f094\"}.fa-less:before{content:\"\\f41d\"}.fa-less-than:before{content:\"\\f536\"}.fa-less-than-equal:before{content:\"\\f537\"}.fa-level-down-alt:before{content:\"\\f3be\"}.fa-level-up-alt:before{content:\"\\f3bf\"}.fa-life-ring:before{content:\"\\f1cd\"}.fa-lightbulb:before{content:\"\\f0eb\"}.fa-line:before{content:\"\\f3c0\"}.fa-link:before{content:\"\\f0c1\"}.fa-linkedin:before{content:\"\\f08c\"}.fa-linkedin-in:before{content:\"\\f0e1\"}.fa-linode:before{content:\"\\f2b8\"}.fa-linux:before{content:\"\\f17c\"}.fa-lira-sign:before{content:\"\\f195\"}.fa-list:before{content:\"\\f03a\"}.fa-list-alt:before{content:\"\\f022\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-lock:before{content:\"\\f023\"}.fa-lock-open:before{content:\"\\f3c1\"}.fa-long-arrow-alt-down:before{content:\"\\f309\"}.fa-long-arrow-alt-left:before{content:\"\\f30a\"}.fa-long-arrow-alt-right:before{content:\"\\f30b\"}.fa-long-arrow-alt-up:before{content:\"\\f30c\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-luggage-cart:before{content:\"\\f59d\"}.fa-lungs:before{content:\"\\f604\"}.fa-lungs-virus:before{content:\"\\e067\"}.fa-lyft:before{content:\"\\f3c3\"}.fa-magento:before{content:\"\\f3c4\"}.fa-magic:before{content:\"\\f0d0\"}.fa-magnet:before{content:\"\\f076\"}.fa-mail-bulk:before{content:\"\\f674\"}.fa-mailchimp:before{content:\"\\f59e\"}.fa-male:before{content:\"\\f183\"}.fa-mandalorian:before{content:\"\\f50f\"}.fa-map:before{content:\"\\f279\"}.fa-map-marked:before{content:\"\\f59f\"}.fa-map-marked-alt:before{content:\"\\f5a0\"}.fa-map-marker:before{content:\"\\f041\"}.fa-map-marker-alt:before{content:\"\\f3c5\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-markdown:before{content:\"\\f60f\"}.fa-marker:before{content:\"\\f5a1\"}.fa-mars:before{content:\"\\f222\"}.fa-mars-double:before{content:\"\\f227\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mask:before{content:\"\\f6fa\"}.fa-mastodon:before{content:\"\\f4f6\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-mdb:before{content:\"\\f8ca\"}.fa-medal:before{content:\"\\f5a2\"}.fa-medapps:before{content:\"\\f3c6\"}.fa-medium:before{content:\"\\f23a\"}.fa-medium-m:before{content:\"\\f3c7\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-medrt:before{content:\"\\f3c8\"}.fa-meetup:before{content:\"\\f2e0\"}.fa-megaport:before{content:\"\\f5a3\"}.fa-meh:before{content:\"\\f11a\"}.fa-meh-blank:before{content:\"\\f5a4\"}.fa-meh-rolling-eyes:before{content:\"\\f5a5\"}.fa-memory:before{content:\"\\f538\"}.fa-mendeley:before{content:\"\\f7b3\"}.fa-menorah:before{content:\"\\f676\"}.fa-mercury:before{content:\"\\f223\"}.fa-meteor:before{content:\"\\f753\"}.fa-microblog:before{content:\"\\e01a\"}.fa-microchip:before{content:\"\\f2db\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-alt:before{content:\"\\f3c9\"}.fa-microphone-alt-slash:before{content:\"\\f539\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-microscope:before{content:\"\\f610\"}.fa-microsoft:before{content:\"\\f3ca\"}.fa-minus:before{content:\"\\f068\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-minus-square:before{content:\"\\f146\"}.fa-mitten:before{content:\"\\f7b5\"}.fa-mix:before{content:\"\\f3cb\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-mixer:before{content:\"\\e056\"}.fa-mizuni:before{content:\"\\f3cc\"}.fa-mobile:before{content:\"\\f10b\"}.fa-mobile-alt:before{content:\"\\f3cd\"}.fa-modx:before{content:\"\\f285\"}.fa-monero:before{content:\"\\f3d0\"}.fa-money-bill:before{content:\"\\f0d6\"}.fa-money-bill-alt:before{content:\"\\f3d1\"}.fa-money-bill-wave:before{content:\"\\f53a\"}.fa-money-bill-wave-alt:before{content:\"\\f53b\"}.fa-money-check:before{content:\"\\f53c\"}.fa-money-check-alt:before{content:\"\\f53d\"}.fa-monument:before{content:\"\\f5a6\"}.fa-moon:before{content:\"\\f186\"}.fa-mortar-pestle:before{content:\"\\f5a7\"}.fa-mosque:before{content:\"\\f678\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-mountain:before{content:\"\\f6fc\"}.fa-mouse:before{content:\"\\f8cc\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-mug-hot:before{content:\"\\f7b6\"}.fa-music:before{content:\"\\f001\"}.fa-napster:before{content:\"\\f3d2\"}.fa-neos:before{content:\"\\f612\"}.fa-network-wired:before{content:\"\\f6ff\"}.fa-neuter:before{content:\"\\f22c\"}.fa-newspaper:before{content:\"\\f1ea\"}.fa-nimblr:before{content:\"\\f5a8\"}.fa-node:before{content:\"\\f419\"}.fa-node-js:before{content:\"\\f3d3\"}.fa-not-equal:before{content:\"\\f53e\"}.fa-notes-medical:before{content:\"\\f481\"}.fa-npm:before{content:\"\\f3d4\"}.fa-ns8:before{content:\"\\f3d5\"}.fa-nutritionix:before{content:\"\\f3d6\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-octopus-deploy:before{content:\"\\e082\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-oil-can:before{content:\"\\f613\"}.fa-old-republic:before{content:\"\\f510\"}.fa-om:before{content:\"\\f679\"}.fa-opencart:before{content:\"\\f23d\"}.fa-openid:before{content:\"\\f19b\"}.fa-opera:before{content:\"\\f26a\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-orcid:before{content:\"\\f8d2\"}.fa-osi:before{content:\"\\f41a\"}.fa-otter:before{content:\"\\f700\"}.fa-outdent:before{content:\"\\f03b\"}.fa-page4:before{content:\"\\f3d7\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-pager:before{content:\"\\f815\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-paint-roller:before{content:\"\\f5aa\"}.fa-palette:before{content:\"\\f53f\"}.fa-palfed:before{content:\"\\f3d8\"}.fa-pallet:before{content:\"\\f482\"}.fa-paper-plane:before{content:\"\\f1d8\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-parachute-box:before{content:\"\\f4cd\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-parking:before{content:\"\\f540\"}.fa-passport:before{content:\"\\f5ab\"}.fa-pastafarianism:before{content:\"\\f67b\"}.fa-paste:before{content:\"\\f0ea\"}.fa-patreon:before{content:\"\\f3d9\"}.fa-pause:before{content:\"\\f04c\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-paw:before{content:\"\\f1b0\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-peace:before{content:\"\\f67c\"}.fa-pen:before{content:\"\\f304\"}.fa-pen-alt:before{content:\"\\f305\"}.fa-pen-fancy:before{content:\"\\f5ac\"}.fa-pen-nib:before{content:\"\\f5ad\"}.fa-pen-square:before{content:\"\\f14b\"}.fa-pencil-alt:before{content:\"\\f303\"}.fa-pencil-ruler:before{content:\"\\f5ae\"}.fa-penny-arcade:before{content:\"\\f704\"}.fa-people-arrows:before{content:\"\\e068\"}.fa-people-carry:before{content:\"\\f4ce\"}.fa-pepper-hot:before{content:\"\\f816\"}.fa-perbyte:before{content:\"\\e083\"}.fa-percent:before{content:\"\\f295\"}.fa-percentage:before{content:\"\\f541\"}.fa-periscope:before{content:\"\\f3da\"}.fa-person-booth:before{content:\"\\f756\"}.fa-phabricator:before{content:\"\\f3db\"}.fa-phoenix-framework:before{content:\"\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\f511\"}.fa-phone:before{content:\"\\f095\"}.fa-phone-alt:before{content:\"\\f879\"}.fa-phone-slash:before{content:\"\\f3dd\"}.fa-phone-square:before{content:\"\\f098\"}.fa-phone-square-alt:before{content:\"\\f87b\"}.fa-phone-volume:before{content:\"\\f2a0\"}.fa-photo-video:before{content:\"\\f87c\"}.fa-php:before{content:\"\\f457\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-pied-piper-hat:before{content:\"\\f4e5\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-pied-piper-square:before{content:\"\\e01e\"}.fa-piggy-bank:before{content:\"\\f4d3\"}.fa-pills:before{content:\"\\f484\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-pizza-slice:before{content:\"\\f818\"}.fa-place-of-worship:before{content:\"\\f67f\"}.fa-plane:before{content:\"\\f072\"}.fa-plane-arrival:before{content:\"\\f5af\"}.fa-plane-departure:before{content:\"\\f5b0\"}.fa-plane-slash:before{content:\"\\e069\"}.fa-play:before{content:\"\\f04b\"}.fa-play-circle:before{content:\"\\f144\"}.fa-playstation:before{content:\"\\f3df\"}.fa-plug:before{content:\"\\f1e6\"}.fa-plus:before{content:\"\\f067\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-poll:before{content:\"\\f681\"}.fa-poll-h:before{content:\"\\f682\"}.fa-poo:before{content:\"\\f2fe\"}.fa-poo-storm:before{content:\"\\f75a\"}.fa-poop:before{content:\"\\f619\"}.fa-portrait:before{content:\"\\f3e0\"}.fa-pound-sign:before{content:\"\\f154\"}.fa-power-off:before{content:\"\\f011\"}.fa-pray:before{content:\"\\f683\"}.fa-praying-hands:before{content:\"\\f684\"}.fa-prescription:before{content:\"\\f5b1\"}.fa-prescription-bottle:before{content:\"\\f485\"}.fa-prescription-bottle-alt:before{content:\"\\f486\"}.fa-print:before{content:\"\\f02f\"}.fa-procedures:before{content:\"\\f487\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-project-diagram:before{content:\"\\f542\"}.fa-pump-medical:before{content:\"\\e06a\"}.fa-pump-soap:before{content:\"\\e06b\"}.fa-pushed:before{content:\"\\f3e1\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-python:before{content:\"\\f3e2\"}.fa-qq:before{content:\"\\f1d6\"}.fa-qrcode:before{content:\"\\f029\"}.fa-question:before{content:\"\\f128\"}.fa-question-circle:before{content:\"\\f059\"}.fa-quidditch:before{content:\"\\f458\"}.fa-quinscape:before{content:\"\\f459\"}.fa-quora:before{content:\"\\f2c4\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-quran:before{content:\"\\f687\"}.fa-r-project:before{content:\"\\f4f7\"}.fa-radiation:before{content:\"\\f7b9\"}.fa-radiation-alt:before{content:\"\\f7ba\"}.fa-rainbow:before{content:\"\\f75b\"}.fa-random:before{content:\"\\f074\"}.fa-raspberry-pi:before{content:\"\\f7bb\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-react:before{content:\"\\f41b\"}.fa-reacteurope:before{content:\"\\f75d\"}.fa-readme:before{content:\"\\f4d5\"}.fa-rebel:before{content:\"\\f1d0\"}.fa-receipt:before{content:\"\\f543\"}.fa-record-vinyl:before{content:\"\\f8d9\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-red-river:before{content:\"\\f3e3\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-redhat:before{content:\"\\f7bc\"}.fa-redo:before{content:\"\\f01e\"}.fa-redo-alt:before{content:\"\\f2f9\"}.fa-registered:before{content:\"\\f25d\"}.fa-remove-format:before{content:\"\\f87d\"}.fa-renren:before{content:\"\\f18b\"}.fa-reply:before{content:\"\\f3e5\"}.fa-reply-all:before{content:\"\\f122\"}.fa-replyd:before{content:\"\\f3e6\"}.fa-republican:before{content:\"\\f75e\"}.fa-researchgate:before{content:\"\\f4f8\"}.fa-resolving:before{content:\"\\f3e7\"}.fa-restroom:before{content:\"\\f7bd\"}.fa-retweet:before{content:\"\\f079\"}.fa-rev:before{content:\"\\f5b2\"}.fa-ribbon:before{content:\"\\f4d6\"}.fa-ring:before{content:\"\\f70b\"}.fa-road:before{content:\"\\f018\"}.fa-robot:before{content:\"\\f544\"}.fa-rocket:before{content:\"\\f135\"}.fa-rocketchat:before{content:\"\\f3e8\"}.fa-rockrms:before{content:\"\\f3e9\"}.fa-route:before{content:\"\\f4d7\"}.fa-rss:before{content:\"\\f09e\"}.fa-rss-square:before{content:\"\\f143\"}.fa-ruble-sign:before{content:\"\\f158\"}.fa-ruler:before{content:\"\\f545\"}.fa-ruler-combined:before{content:\"\\f546\"}.fa-ruler-horizontal:before{content:\"\\f547\"}.fa-ruler-vertical:before{content:\"\\f548\"}.fa-running:before{content:\"\\f70c\"}.fa-rupee-sign:before{content:\"\\f156\"}.fa-rust:before{content:\"\\e07a\"}.fa-sad-cry:before{content:\"\\f5b3\"}.fa-sad-tear:before{content:\"\\f5b4\"}.fa-safari:before{content:\"\\f267\"}.fa-salesforce:before{content:\"\\f83b\"}.fa-sass:before{content:\"\\f41e\"}.fa-satellite:before{content:\"\\f7bf\"}.fa-satellite-dish:before{content:\"\\f7c0\"}.fa-save:before{content:\"\\f0c7\"}.fa-schlix:before{content:\"\\f3ea\"}.fa-school:before{content:\"\\f549\"}.fa-screwdriver:before{content:\"\\f54a\"}.fa-scribd:before{content:\"\\f28a\"}.fa-scroll:before{content:\"\\f70e\"}.fa-sd-card:before{content:\"\\f7c2\"}.fa-search:before{content:\"\\f002\"}.fa-search-dollar:before{content:\"\\f688\"}.fa-search-location:before{content:\"\\f689\"}.fa-search-minus:before{content:\"\\f010\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-searchengin:before{content:\"\\f3eb\"}.fa-seedling:before{content:\"\\f4d8\"}.fa-sellcast:before{content:\"\\f2da\"}.fa-sellsy:before{content:\"\\f213\"}.fa-server:before{content:\"\\f233\"}.fa-servicestack:before{content:\"\\f3ec\"}.fa-shapes:before{content:\"\\f61f\"}.fa-share:before{content:\"\\f064\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-share-square:before{content:\"\\f14d\"}.fa-shekel-sign:before{content:\"\\f20b\"}.fa-shield-alt:before{content:\"\\f3ed\"}.fa-shield-virus:before{content:\"\\e06c\"}.fa-ship:before{content:\"\\f21a\"}.fa-shipping-fast:before{content:\"\\f48b\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-shoe-prints:before{content:\"\\f54b\"}.fa-shopify:before{content:\"\\e057\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-shopware:before{content:\"\\f5b5\"}.fa-shower:before{content:\"\\f2cc\"}.fa-shuttle-van:before{content:\"\\f5b6\"}.fa-sign:before{content:\"\\f4d9\"}.fa-sign-in-alt:before{content:\"\\f2f6\"}.fa-sign-language:before{content:\"\\f2a7\"}.fa-sign-out-alt:before{content:\"\\f2f5\"}.fa-signal:before{content:\"\\f012\"}.fa-signature:before{content:\"\\f5b7\"}.fa-sim-card:before{content:\"\\f7c4\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-sink:before{content:\"\\e06d\"}.fa-sistrix:before{content:\"\\f3ee\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-sith:before{content:\"\\f512\"}.fa-skating:before{content:\"\\f7c5\"}.fa-sketch:before{content:\"\\f7c6\"}.fa-skiing:before{content:\"\\f7c9\"}.fa-skiing-nordic:before{content:\"\\f7ca\"}.fa-skull:before{content:\"\\f54c\"}.fa-skull-crossbones:before{content:\"\\f714\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-skype:before{content:\"\\f17e\"}.fa-slack:before{content:\"\\f198\"}.fa-slack-hash:before{content:\"\\f3ef\"}.fa-slash:before{content:\"\\f715\"}.fa-sleigh:before{content:\"\\f7cc\"}.fa-sliders-h:before{content:\"\\f1de\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-smile:before{content:\"\\f118\"}.fa-smile-beam:before{content:\"\\f5b8\"}.fa-smile-wink:before{content:\"\\f4da\"}.fa-smog:before{content:\"\\f75f\"}.fa-smoking:before{content:\"\\f48d\"}.fa-smoking-ban:before{content:\"\\f54d\"}.fa-sms:before{content:\"\\f7cd\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-snowboarding:before{content:\"\\f7ce\"}.fa-snowflake:before{content:\"\\f2dc\"}.fa-snowman:before{content:\"\\f7d0\"}.fa-snowplow:before{content:\"\\f7d2\"}.fa-soap:before{content:\"\\e06e\"}.fa-socks:before{content:\"\\f696\"}.fa-solar-panel:before{content:\"\\f5ba\"}.fa-sort:before{content:\"\\f0dc\"}.fa-sort-alpha-down:before{content:\"\\f15d\"}.fa-sort-alpha-down-alt:before{content:\"\\f881\"}.fa-sort-alpha-up:before{content:\"\\f15e\"}.fa-sort-alpha-up-alt:before{content:\"\\f882\"}.fa-sort-amount-down:before{content:\"\\f160\"}.fa-sort-amount-down-alt:before{content:\"\\f884\"}.fa-sort-amount-up:before{content:\"\\f161\"}.fa-sort-amount-up-alt:before{content:\"\\f885\"}.fa-sort-down:before{content:\"\\f0dd\"}.fa-sort-numeric-down:before{content:\"\\f162\"}.fa-sort-numeric-down-alt:before{content:\"\\f886\"}.fa-sort-numeric-up:before{content:\"\\f163\"}.fa-sort-numeric-up-alt:before{content:\"\\f887\"}.fa-sort-up:before{content:\"\\f0de\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-sourcetree:before{content:\"\\f7d3\"}.fa-spa:before{content:\"\\f5bb\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-speakap:before{content:\"\\f3f3\"}.fa-speaker-deck:before{content:\"\\f83c\"}.fa-spell-check:before{content:\"\\f891\"}.fa-spider:before{content:\"\\f717\"}.fa-spinner:before{content:\"\\f110\"}.fa-splotch:before{content:\"\\f5bc\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-spray-can:before{content:\"\\f5bd\"}.fa-square:before{content:\"\\f0c8\"}.fa-square-full:before{content:\"\\f45c\"}.fa-square-root-alt:before{content:\"\\f698\"}.fa-squarespace:before{content:\"\\f5be\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-stackpath:before{content:\"\\f842\"}.fa-stamp:before{content:\"\\f5bf\"}.fa-star:before{content:\"\\f005\"}.fa-star-and-crescent:before{content:\"\\f699\"}.fa-star-half:before{content:\"\\f089\"}.fa-star-half-alt:before{content:\"\\f5c0\"}.fa-star-of-david:before{content:\"\\f69a\"}.fa-star-of-life:before{content:\"\\f621\"}.fa-staylinked:before{content:\"\\f3f5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-steam-symbol:before{content:\"\\f3f6\"}.fa-step-backward:before{content:\"\\f048\"}.fa-step-forward:before{content:\"\\f051\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-sticker-mule:before{content:\"\\f3f7\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-stop:before{content:\"\\f04d\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stopwatch:before{content:\"\\f2f2\"}.fa-stopwatch-20:before{content:\"\\e06f\"}.fa-store:before{content:\"\\f54e\"}.fa-store-alt:before{content:\"\\f54f\"}.fa-store-alt-slash:before{content:\"\\e070\"}.fa-store-slash:before{content:\"\\e071\"}.fa-strava:before{content:\"\\f428\"}.fa-stream:before{content:\"\\f550\"}.fa-street-view:before{content:\"\\f21d\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-stripe:before{content:\"\\f429\"}.fa-stripe-s:before{content:\"\\f42a\"}.fa-stroopwafel:before{content:\"\\f551\"}.fa-studiovinari:before{content:\"\\f3f8\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-subscript:before{content:\"\\f12c\"}.fa-subway:before{content:\"\\f239\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-suitcase-rolling:before{content:\"\\f5c1\"}.fa-sun:before{content:\"\\f185\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-superscript:before{content:\"\\f12b\"}.fa-supple:before{content:\"\\f3f9\"}.fa-surprise:before{content:\"\\f5c2\"}.fa-suse:before{content:\"\\f7d6\"}.fa-swatchbook:before{content:\"\\f5c3\"}.fa-swift:before{content:\"\\f8e1\"}.fa-swimmer:before{content:\"\\f5c4\"}.fa-swimming-pool:before{content:\"\\f5c5\"}.fa-symfony:before{content:\"\\f83d\"}.fa-synagogue:before{content:\"\\f69b\"}.fa-sync:before{content:\"\\f021\"}.fa-sync-alt:before{content:\"\\f2f1\"}.fa-syringe:before{content:\"\\f48e\"}.fa-table:before{content:\"\\f0ce\"}.fa-table-tennis:before{content:\"\\f45d\"}.fa-tablet:before{content:\"\\f10a\"}.fa-tablet-alt:before{content:\"\\f3fa\"}.fa-tablets:before{content:\"\\f490\"}.fa-tachometer-alt:before{content:\"\\f3fd\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-tape:before{content:\"\\f4db\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-taxi:before{content:\"\\f1ba\"}.fa-teamspeak:before{content:\"\\f4f9\"}.fa-teeth:before{content:\"\\f62e\"}.fa-teeth-open:before{content:\"\\f62f\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-telegram-plane:before{content:\"\\f3fe\"}.fa-temperature-high:before{content:\"\\f769\"}.fa-temperature-low:before{content:\"\\f76b\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-tenge:before{content:\"\\f7d7\"}.fa-terminal:before{content:\"\\f120\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-th:before{content:\"\\f00a\"}.fa-th-large:before{content:\"\\f009\"}.fa-th-list:before{content:\"\\f00b\"}.fa-the-red-yeti:before{content:\"\\f69d\"}.fa-theater-masks:before{content:\"\\f630\"}.fa-themeco:before{content:\"\\f5c6\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-thermometer:before{content:\"\\f491\"}.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-think-peaks:before{content:\"\\f731\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbtack:before{content:\"\\f08d\"}.fa-ticket-alt:before{content:\"\\f3ff\"}.fa-tiktok:before{content:\"\\e07b\"}.fa-times:before{content:\"\\f00d\"}.fa-times-circle:before{content:\"\\f057\"}.fa-tint:before{content:\"\\f043\"}.fa-tint-slash:before{content:\"\\f5c7\"}.fa-tired:before{content:\"\\f5c8\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-toilet:before{content:\"\\f7d8\"}.fa-toilet-paper:before{content:\"\\f71e\"}.fa-toilet-paper-slash:before{content:\"\\e072\"}.fa-toolbox:before{content:\"\\f552\"}.fa-tools:before{content:\"\\f7d9\"}.fa-tooth:before{content:\"\\f5c9\"}.fa-torah:before{content:\"\\f6a0\"}.fa-torii-gate:before{content:\"\\f6a1\"}.fa-tractor:before{content:\"\\f722\"}.fa-trade-federation:before{content:\"\\f513\"}.fa-trademark:before{content:\"\\f25c\"}.fa-traffic-light:before{content:\"\\f637\"}.fa-trailer:before{content:\"\\e041\"}.fa-train:before{content:\"\\f238\"}.fa-tram:before{content:\"\\f7da\"}.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-trash:before{content:\"\\f1f8\"}.fa-trash-alt:before{content:\"\\f2ed\"}.fa-trash-restore:before{content:\"\\f829\"}.fa-trash-restore-alt:before{content:\"\\f82a\"}.fa-tree:before{content:\"\\f1bb\"}.fa-trello:before{content:\"\\f181\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-trophy:before{content:\"\\f091\"}.fa-truck:before{content:\"\\f0d1\"}.fa-truck-loading:before{content:\"\\f4de\"}.fa-truck-monster:before{content:\"\\f63b\"}.fa-truck-moving:before{content:\"\\f4df\"}.fa-truck-pickup:before{content:\"\\f63c\"}.fa-tshirt:before{content:\"\\f553\"}.fa-tty:before{content:\"\\f1e4\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-tv:before{content:\"\\f26c\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-twitter:before{content:\"\\f099\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-typo3:before{content:\"\\f42b\"}.fa-uber:before{content:\"\\f402\"}.fa-ubuntu:before{content:\"\\f7df\"}.fa-uikit:before{content:\"\\f403\"}.fa-umbraco:before{content:\"\\f8e8\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-umbrella-beach:before{content:\"\\f5ca\"}.fa-uncharted:before{content:\"\\e084\"}.fa-underline:before{content:\"\\f0cd\"}.fa-undo:before{content:\"\\f0e2\"}.fa-undo-alt:before{content:\"\\f2ea\"}.fa-uniregistry:before{content:\"\\f404\"}.fa-unity:before{content:\"\\e049\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-university:before{content:\"\\f19c\"}.fa-unlink:before{content:\"\\f127\"}.fa-unlock:before{content:\"\\f09c\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-unsplash:before{content:\"\\e07c\"}.fa-untappd:before{content:\"\\f405\"}.fa-upload:before{content:\"\\f093\"}.fa-ups:before{content:\"\\f7e0\"}.fa-usb:before{content:\"\\f287\"}.fa-user:before{content:\"\\f007\"}.fa-user-alt:before{content:\"\\f406\"}.fa-user-alt-slash:before{content:\"\\f4fa\"}.fa-user-astronaut:before{content:\"\\f4fb\"}.fa-user-check:before{content:\"\\f4fc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-clock:before{content:\"\\f4fd\"}.fa-user-cog:before{content:\"\\f4fe\"}.fa-user-edit:before{content:\"\\f4ff\"}.fa-user-friends:before{content:\"\\f500\"}.fa-user-graduate:before{content:\"\\f501\"}.fa-user-injured:before{content:\"\\f728\"}.fa-user-lock:before{content:\"\\f502\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-user-minus:before{content:\"\\f503\"}.fa-user-ninja:before{content:\"\\f504\"}.fa-user-nurse:before{content:\"\\f82f\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-user-shield:before{content:\"\\f505\"}.fa-user-slash:before{content:\"\\f506\"}.fa-user-tag:before{content:\"\\f507\"}.fa-user-tie:before{content:\"\\f508\"}.fa-user-times:before{content:\"\\f235\"}.fa-users:before{content:\"\\f0c0\"}.fa-users-cog:before{content:\"\\f509\"}.fa-users-slash:before{content:\"\\e073\"}.fa-usps:before{content:\"\\f7e1\"}.fa-ussunnah:before{content:\"\\f407\"}.fa-utensil-spoon:before{content:\"\\f2e5\"}.fa-utensils:before{content:\"\\f2e7\"}.fa-vaadin:before{content:\"\\f408\"}.fa-vector-square:before{content:\"\\f5cb\"}.fa-venus:before{content:\"\\f221\"}.fa-venus-double:before{content:\"\\f226\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-vest:before{content:\"\\e085\"}.fa-vest-patches:before{content:\"\\e086\"}.fa-viacoin:before{content:\"\\f237\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-vial:before{content:\"\\f492\"}.fa-vials:before{content:\"\\f493\"}.fa-viber:before{content:\"\\f409\"}.fa-video:before{content:\"\\f03d\"}.fa-video-slash:before{content:\"\\f4e2\"}.fa-vihara:before{content:\"\\f6a7\"}.fa-vimeo:before{content:\"\\f40a\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-vimeo-v:before{content:\"\\f27d\"}.fa-vine:before{content:\"\\f1ca\"}.fa-virus:before{content:\"\\e074\"}.fa-virus-slash:before{content:\"\\e075\"}.fa-viruses:before{content:\"\\e076\"}.fa-vk:before{content:\"\\f189\"}.fa-vnv:before{content:\"\\f40b\"}.fa-voicemail:before{content:\"\\f897\"}.fa-volleyball-ball:before{content:\"\\f45f\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-mute:before{content:\"\\f6a9\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-up:before{content:\"\\f028\"}.fa-vote-yea:before{content:\"\\f772\"}.fa-vr-cardboard:before{content:\"\\f729\"}.fa-vuejs:before{content:\"\\f41f\"}.fa-walking:before{content:\"\\f554\"}.fa-wallet:before{content:\"\\f555\"}.fa-warehouse:before{content:\"\\f494\"}.fa-watchman-monitoring:before{content:\"\\e087\"}.fa-water:before{content:\"\\f773\"}.fa-wave-square:before{content:\"\\f83e\"}.fa-waze:before{content:\"\\f83f\"}.fa-weebly:before{content:\"\\f5cc\"}.fa-weibo:before{content:\"\\f18a\"}.fa-weight:before{content:\"\\f496\"}.fa-weight-hanging:before{content:\"\\f5cd\"}.fa-weixin:before{content:\"\\f1d7\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-whatsapp-square:before{content:\"\\f40c\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-whmcs:before{content:\"\\f40d\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-wind:before{content:\"\\f72e\"}.fa-window-close:before{content:\"\\f410\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-windows:before{content:\"\\f17a\"}.fa-wine-bottle:before{content:\"\\f72f\"}.fa-wine-glass:before{content:\"\\f4e3\"}.fa-wine-glass-alt:before{content:\"\\f5ce\"}.fa-wix:before{content:\"\\f5cf\"}.fa-wizards-of-the-coast:before{content:\"\\f730\"}.fa-wodu:before{content:\"\\e088\"}.fa-wolf-pack-battalion:before{content:\"\\f514\"}.fa-won-sign:before{content:\"\\f159\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-wordpress-simple:before{content:\"\\f411\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-wpforms:before{content:\"\\f298\"}.fa-wpressr:before{content:\"\\f3e4\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-x-ray:before{content:\"\\f497\"}.fa-xbox:before{content:\"\\f412\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-y-combinator:before{content:\"\\f23b\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-yammer:before{content:\"\\f840\"}.fa-yandex:before{content:\"\\f413\"}.fa-yandex-international:before{content:\"\\f414\"}.fa-yarn:before{content:\"\\f7e3\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-yen-sign:before{content:\"\\f157\"}.fa-yin-yang:before{content:\"\\f6ad\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-youtube:before{content:\"\\f167\"}.fa-youtube-square:before{content:\"\\f431\"}.fa-zhihu:before{content:\"\\f63f\"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}\n\n/*!\n * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */@font-face{font-family:Font Awesome\\ 5 Free;font-style:normal;font-weight:400;font-display:block;src:url(/bundles/adminlte/fonts/fa-regular-400.eot?62a07ffe);src:url(/bundles/adminlte/fonts/fa-regular-400.eot?62a07ffe?#iefix) format(\"embedded-opentype\"),url(/bundles/adminlte/fonts/fa-regular-400.woff2?2c154b0f) format(\"woff2\"),url(/bundles/adminlte/fonts/fa-regular-400.woff?ea5a41ec) format(\"woff\"),url(/bundles/adminlte/fonts/fa-regular-400.ttf?ac236764) format(\"truetype\"),url(/bundles/adminlte/images/fa-regular-400.svg?f3187c74#fontawesome) format(\"svg\")}.far{font-weight:400}\n\n/*!\n * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */@font-face{font-family:Font Awesome\\ 5 Free;font-style:normal;font-weight:900;font-display:block;src:url(/bundles/adminlte/fonts/fa-solid-900.eot?6606667d);src:url(/bundles/adminlte/fonts/fa-solid-900.eot?6606667d?#iefix) format(\"embedded-opentype\"),url(/bundles/adminlte/fonts/fa-solid-900.woff2?3eb06c70) format(\"woff2\"),url(/bundles/adminlte/fonts/fa-solid-900.woff?f4f93856) format(\"woff\"),url(/bundles/adminlte/fonts/fa-solid-900.ttf?915a0b79) format(\"truetype\"),url(/bundles/adminlte/images/fa-solid-900.svg?0454203f#fontawesome) format(\"svg\")}.fa,.far,.fas{font-family:Font Awesome\\ 5 Free}.fa,.fas{font-weight:900}\n\n/*!\n * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */@font-face{font-family:Font Awesome\\ 5 Brands;font-style:normal;font-weight:400;font-display:block;src:url(/bundles/adminlte/fonts/fa-brands-400.eot?98f20b9e);src:url(/bundles/adminlte/fonts/fa-brands-400.eot?98f20b9e?#iefix) format(\"embedded-opentype\"),url(/bundles/adminlte/fonts/fa-brands-400.woff2?6e63bd22) format(\"woff2\"),url(/bundles/adminlte/fonts/fa-brands-400.woff?5f63cb7f) format(\"woff\"),url(/bundles/adminlte/fonts/fa-brands-400.ttf?330e879a) format(\"truetype\"),url(/bundles/adminlte/images/fa-brands-400.svg?991c1c76#fontawesome) format(\"svg\")}.fab{font-family:Font Awesome\\ 5 Brands;font-weight:400}\n\n/*!\n * AdminLTE v2.4.18\n * \n *   Author:  Colorlib\n *   Support: <https://github.com/ColorlibHQ/AdminLTE/issues>\n *   Repository: git://github.com/ColorlibHQ/AdminLTE.git\n *   License: MIT <http://opensource.org/licenses/MIT>\n */.layout-boxed body,.layout-boxed html,body,html{height:100%}body{font-family:Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400}.wrapper,body{overflow-x:hidden;overflow-y:auto}.wrapper{height:100%;position:relative}.wrapper:after,.wrapper:before{content:\" \";display:table}.wrapper:after{clear:both}.layout-boxed .wrapper{max-width:1250px;margin:0 auto;min-height:100%;box-shadow:0 0 8px rgba(0,0,0,.5);position:relative}.layout-boxed{background-color:#f9fafc}.content-wrapper,.main-footer{-webkit-transition:-webkit-transform .3s ease-in-out,margin .3s ease-in-out;-moz-transition:-moz-transform .3s ease-in-out,margin .3s ease-in-out;-o-transition:-o-transform .3s ease-in-out,margin .3s ease-in-out;transition:transform .3s ease-in-out,margin .3s ease-in-out;margin-left:230px;z-index:820}.layout-top-nav .content-wrapper,.layout-top-nav .main-footer{margin-left:0}@media (max-width:767px){.content-wrapper,.main-footer{margin-left:0}}@media (min-width:768px){.sidebar-collapse .content-wrapper,.sidebar-collapse .main-footer{margin-left:0}}@media (max-width:767px){.sidebar-open .content-wrapper,.sidebar-open .main-footer{-webkit-transform:translate(230px);-ms-transform:translate(230px);-o-transform:translate(230px);transform:translate(230px)}}.content-wrapper{min-height:calc(100vh - 101px);background-color:#ecf0f5;z-index:800}@media (max-width:767px){.content-wrapper{min-height:calc(100vh - 151px)}}.main-footer{background:#fff;padding:15px;color:#444;border-top:1px solid #d2d6de}.fixed .left-side,.fixed .main-header,.fixed .main-sidebar{position:fixed}.fixed .main-header{top:0;right:0;left:0}.fixed .content-wrapper,.fixed .right-side{padding-top:50px}@media (max-width:767px){.fixed .content-wrapper,.fixed .right-side{padding-top:100px}}.fixed.layout-boxed .wrapper{max-width:100%}.fixed .wrapper{overflow:hidden}.hold-transition .content-wrapper,.hold-transition .left-side,.hold-transition .main-footer,.hold-transition .main-header .logo,.hold-transition .main-header .navbar,.hold-transition .main-sidebar,.hold-transition .menu-open .fa-angle-left,.hold-transition .right-side{-webkit-transition:none;-o-transition:none;transition:none}.content{min-height:250px;margin-right:auto;margin-left:auto;padding:15px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Source Sans Pro,sans-serif}a{color:#3c8dbc}a:active,a:focus,a:hover{outline:none;text-decoration:none;color:#72afd2}.page-header{margin:10px 0 20px;font-size:22px}.page-header>small{color:#666;display:block;margin-top:5px}.main-header{position:relative;max-height:100px;z-index:1030}.main-header .navbar{-webkit-transition:margin-left .3s ease-in-out;-o-transition:margin-left .3s ease-in-out;transition:margin-left .3s ease-in-out;margin-bottom:0;margin-left:230px;border:none;min-height:50px;border-radius:0}.layout-top-nav .main-header .navbar{margin-left:0}.main-header #navbar-search-input.form-control{background:hsla(0,0%,100%,.2);border-color:transparent}.main-header #navbar-search-input.form-control:active,.main-header #navbar-search-input.form-control:focus{border-color:rgba(0,0,0,.1);background:hsla(0,0%,100%,.9)}.main-header #navbar-search-input.form-control::-moz-placeholder{color:#ccc;opacity:1}.main-header #navbar-search-input.form-control:-ms-input-placeholder{color:#ccc}.main-header #navbar-search-input.form-control::-webkit-input-placeholder{color:#ccc}.main-header .navbar-custom-menu,.main-header .navbar-right{float:right}@media (max-width:991px){.main-header .navbar-custom-menu a,.main-header .navbar-right a{color:inherit;background:transparent}}@media (max-width:767px){.main-header .navbar-right{float:none}.navbar-collapse .main-header .navbar-right{margin:7.5px -15px}.main-header .navbar-right>li{color:inherit;border:0}}.main-header .sidebar-toggle{float:left;background-color:transparent;background-image:none;padding:15px;font-family:fontAwesome}.main-header .sidebar-toggle:before{content:\"\\f0c9\"}.main-header .sidebar-toggle:hover{color:#fff}.main-header .sidebar-toggle:active,.main-header .sidebar-toggle:focus{background:transparent}.main-header .sidebar-toggle.fa5{font-family:\"Font Awesome\\ 5 Free\"}.main-header .sidebar-toggle.fa5:before{content:\"\\f0c9\";font-weight:900}.main-header .sidebar-toggle .icon-bar{display:none}.main-header .navbar .nav>li.user>a>.fa,.main-header .navbar .nav>li.user>a>.glyphicon,.main-header .navbar .nav>li.user>a>.ion{margin-right:5px}.main-header .navbar .nav>li>a>.label{position:absolute;top:9px;right:7px;text-align:center;font-size:9px;padding:2px 3px;line-height:.9}.main-header .logo{-webkit-transition:width .3s ease-in-out;-o-transition:width .3s ease-in-out;transition:width .3s ease-in-out;display:block;float:left;height:50px;font-size:20px;line-height:50px;text-align:center;width:230px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:0 15px;font-weight:300;overflow:hidden}.main-header .logo img{padding:4px;object-fit:contain;margin:0 auto}.main-header .logo .logo-lg{display:block}.main-header .logo .logo-lg img{max-width:200px;max-height:50px}.main-header .logo .logo-lg .brandlogo-image{margin-top:8px;margin-right:10px;margin-left:-5px}.main-header .logo .logo-mini{display:none}.main-header .logo .logo-mini img{max-width:50px;max-height:50px}.main-header .logo .logo-mini .brandlogo-image{margin-top:8px;margin-right:10px;margin-left:10px}.main-header .logo .brandlogo-image{float:left;height:34px;width:auto}.main-header .navbar-brand{color:#fff}.content-header{position:relative;padding:15px 15px 0}.content-header>h1{margin:0;font-size:24px}.content-header>h1>small{font-size:15px;display:inline-block;padding-left:4px;font-weight:300}.content-header>.breadcrumb{float:right;background:transparent;margin-top:0;margin-bottom:0;font-size:12px;padding:7px 5px;position:absolute;top:15px;right:10px;border-radius:2px}.content-header>.breadcrumb>li>a{color:#444;text-decoration:none;display:inline-block}.content-header>.breadcrumb>li>a>.fa,.content-header>.breadcrumb>li>a>.glyphicon,.content-header>.breadcrumb>li>a>.ion{margin-right:5px}.content-header>.breadcrumb>li+li:before{content:\">\\00a0\"}@media (max-width:991px){.content-header>.breadcrumb{position:relative;margin-top:5px;top:0;right:0;float:none;background:#d2d6de;padding-left:10px}.content-header>.breadcrumb li:before{color:#97a0b3}}.navbar-toggle{color:#fff;border:0;margin:0;padding:15px}@media (max-width:991px){.navbar-custom-menu .navbar-nav>li{float:left}.navbar-custom-menu .navbar-nav{margin:0;float:left}.navbar-custom-menu .navbar-nav>li>a{padding-top:15px;padding-bottom:15px;line-height:20px}}@media (max-width:767px){.main-header{position:relative}.main-header .logo,.main-header .navbar{width:100%;float:none}.main-header .navbar{margin:0}.main-header .navbar-custom-menu{float:right}}@media (max-width:991px){.navbar-collapse.pull-left{float:none!important}.navbar-collapse.pull-left+.navbar-custom-menu{display:block;position:absolute;top:0;right:40px}}.main-sidebar{position:absolute;top:0;left:0;padding-top:50px;min-height:100%;width:230px;z-index:810;-webkit-transition:-webkit-transform .3s ease-in-out,width .3s ease-in-out;-moz-transition:-moz-transform .3s ease-in-out,width .3s ease-in-out;-o-transition:-o-transform .3s ease-in-out,width .3s ease-in-out;transition:transform .3s ease-in-out,width .3s ease-in-out}@media (max-width:767px){.main-sidebar{padding-top:100px;-webkit-transform:translate(-230px);-ms-transform:translate(-230px);-o-transform:translate(-230px);transform:translate(-230px)}}@media (min-width:768px){.sidebar-collapse .main-sidebar{-webkit-transform:translate(-230px);-ms-transform:translate(-230px);-o-transform:translate(-230px);transform:translate(-230px)}}@media (max-width:767px){.sidebar-open .main-sidebar{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0)}}.sidebar{padding-bottom:10px}.sidebar-form input:focus{border-color:transparent}.user-panel{position:relative;width:100%;padding:10px;overflow:hidden}.user-panel:after,.user-panel:before{content:\" \";display:table}.user-panel:after{clear:both}.user-panel>.image>img{width:100%;max-width:45px;height:auto}.user-panel>.info{padding:5px 5px 5px 15px;line-height:1;position:absolute;left:55px}.user-panel>.info>p{font-weight:600;margin-bottom:9px}.user-panel>.info>a{text-decoration:none;padding-right:5px;margin-top:3px;font-size:11px}.user-panel>.info>a>.fa,.user-panel>.info>a>.glyphicon,.user-panel>.info>a>.ion{margin-right:3px}.sidebar-menu{list-style:none;margin:0;padding:0}.sidebar-menu>li{position:relative;margin:0;padding:0}.sidebar-menu>li>a{padding:12px 5px 12px 15px;display:block}.sidebar-menu>li>a>.fa,.sidebar-menu>li>a>.glyphicon,.sidebar-menu>li>a>.ion{width:20px}.sidebar-menu>li .badge,.sidebar-menu>li .label{margin-right:5px}.sidebar-menu>li .badge{margin-top:3px}.sidebar-menu li.header{padding:10px 25px 10px 15px;font-size:12px}.sidebar-menu li>a>.fa-angle-left,.sidebar-menu li>a>.pull-right-container>.fa-angle-left{width:auto;height:auto;padding:0;margin-right:10px;-webkit-transition:transform .5s ease;-o-transition:transform .5s ease;transition:transform .5s ease}.sidebar-menu li>a>.fa-angle-left{position:absolute;top:50%;right:10px;margin-top:-8px}.sidebar-menu .menu-open>a>.fa-angle-left,.sidebar-menu .menu-open>a>.pull-right-container>.fa-angle-left{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.sidebar-menu .active>.treeview-menu{display:block}@media (min-width:768px){.sidebar-mini.sidebar-collapse .content-wrapper,.sidebar-mini.sidebar-collapse .main-footer,.sidebar-mini.sidebar-collapse .right-side{margin-left:50px!important;z-index:840}.sidebar-mini.sidebar-collapse .main-sidebar{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0);width:50px!important;z-index:850}.sidebar-mini.sidebar-collapse .sidebar-menu>li{position:relative}.sidebar-mini.sidebar-collapse .sidebar-menu>li>a{margin-right:0}.sidebar-mini.sidebar-collapse .sidebar-menu>li>a>span{border-top-right-radius:4px}.sidebar-mini.sidebar-collapse .sidebar-menu>li:not(.treeview)>a>span{border-bottom-right-radius:4px}.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{padding-top:5px;padding-bottom:5px;border-bottom-right-radius:4px}.sidebar-mini.sidebar-collapse .main-sidebar .user-panel>.info,.sidebar-mini.sidebar-collapse .sidebar-form,.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu,.sidebar-mini.sidebar-collapse .sidebar-menu>li>a>.pull-right,.sidebar-mini.sidebar-collapse .sidebar-menu>li>a>span,.sidebar-mini.sidebar-collapse .sidebar-menu>li>a>span>.pull-right,.sidebar-mini.sidebar-collapse .sidebar-menu li.header{display:none!important;-webkit-transform:translateZ(0)}.sidebar-mini.sidebar-collapse .main-header .logo{width:50px}.sidebar-mini.sidebar-collapse .main-header .logo>.logo-mini{display:block;margin-left:-15px;margin-right:-15px;font-size:18px}.sidebar-mini.sidebar-collapse .main-header .logo>.logo-lg{display:none}.sidebar-mini.sidebar-collapse .main-header .navbar{margin-left:50px}}@media (min-width:768px){.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>.treeview-menu,.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>span:not(.pull-right){display:block!important;position:absolute;width:180px;left:50px}.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>span{top:0;margin-left:-3px;padding:12px 5px 12px 20px;background-color:inherit}.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>.pull-right-container{position:relative!important;float:right;width:auto!important;left:180px!important;top:-22px!important;z-index:900}.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>.pull-right-container>.label:not(:first-of-type){display:none}.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>.treeview-menu{top:44px;margin-left:0}}.sidebar-expanded-on-hover .content-wrapper,.sidebar-expanded-on-hover .main-footer{margin-left:50px}.sidebar-expanded-on-hover .main-sidebar{box-shadow:3px 0 8px rgba(0,0,0,.125)}.main-sidebar .user-panel,.sidebar-menu,.sidebar-menu>li.header{white-space:nowrap;overflow:hidden}.sidebar-menu:hover{overflow:visible}.sidebar-form,.sidebar-menu>li.header{overflow:hidden;text-overflow:clip}.sidebar-menu li>a{position:relative}.sidebar-menu li>a>.pull-right-container{position:absolute;right:10px;top:50%;margin-top:-7px}.control-sidebar-bg{position:fixed;z-index:1000;bottom:0}.control-sidebar,.control-sidebar-bg{top:0;right:-230px;width:230px;-webkit-transition:right .3s ease-in-out;-o-transition:right .3s ease-in-out;transition:right .3s ease-in-out}.control-sidebar{position:absolute;padding-top:50px;z-index:1010}@media (max-width:767px){.control-sidebar{padding-top:100px}}.control-sidebar>.tab-content{padding:10px 15px}.control-sidebar.control-sidebar-open,.control-sidebar.control-sidebar-open+.control-sidebar-bg{right:0}.control-sidebar-hold-transition .content-wrapper,.control-sidebar-hold-transition .control-sidebar,.control-sidebar-hold-transition .control-sidebar-bg{transition:none}.control-sidebar-open .control-sidebar,.control-sidebar-open .control-sidebar-bg{right:0}@media (min-width:768px){.control-sidebar-open .content-wrapper,.control-sidebar-open .main-footer,.control-sidebar-open .right-side{margin-right:230px}}.fixed .control-sidebar{position:fixed;height:100%;overflow-y:auto;padding-bottom:50px}.nav-tabs.control-sidebar-tabs>li:first-of-type>a,.nav-tabs.control-sidebar-tabs>li:first-of-type>a:focus,.nav-tabs.control-sidebar-tabs>li:first-of-type>a:hover{border-left-width:0}.nav-tabs.control-sidebar-tabs>li>a{border-radius:0}.nav-tabs.control-sidebar-tabs>li>a,.nav-tabs.control-sidebar-tabs>li>a:hover{border:1px solid transparent;border-top:none;border-right:none}.nav-tabs.control-sidebar-tabs>li>a .icon{font-size:16px}.nav-tabs.control-sidebar-tabs>li.active>a,.nav-tabs.control-sidebar-tabs>li.active>a:active,.nav-tabs.control-sidebar-tabs>li.active>a:focus,.nav-tabs.control-sidebar-tabs>li.active>a:hover{border-top:none;border-right:none;border-bottom:none}@media (max-width:768px){.nav-tabs.control-sidebar-tabs{display:table}.nav-tabs.control-sidebar-tabs>li{display:table-cell}}.control-sidebar-heading{font-weight:400;font-size:16px;padding:10px 0;margin-bottom:10px}.control-sidebar-subheading{display:block;font-weight:400;font-size:14px}.control-sidebar-menu{list-style:none;padding:0;margin:0 -15px}.control-sidebar-menu>li>a{display:block;padding:10px 15px}.control-sidebar-menu>li>a:after,.control-sidebar-menu>li>a:before{content:\" \";display:table}.control-sidebar-menu>li>a:after{clear:both}.control-sidebar-menu>li>a>.control-sidebar-subheading{margin-top:0}.control-sidebar-menu .menu-icon{float:left;width:35px;height:35px;border-radius:50%;text-align:center;line-height:35px}.control-sidebar-menu .menu-info{margin-left:45px;margin-top:3px}.control-sidebar-menu .menu-info>.control-sidebar-subheading{margin:0}.control-sidebar-menu .menu-info>p{margin:0;font-size:11px}.control-sidebar-menu .progress{margin:0}.control-sidebar-dark{color:#b8c7ce}.control-sidebar-dark,.control-sidebar-dark+.control-sidebar-bg{background:#222d32}.control-sidebar-dark .nav-tabs.control-sidebar-tabs{border-bottom:#1c2529}.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a{background:#181f23;color:#b8c7ce}.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a:focus,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a:hover{border-left-color:#141a1d;border-bottom-color:#141a1d}.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a:active,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a:focus,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a:hover{background:#1c2529}.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li>a:hover{color:#fff}.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li.active>a,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li.active>a:active,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li.active>a:focus,.control-sidebar-dark .nav-tabs.control-sidebar-tabs>li.active>a:hover{background:#222d32;color:#fff}.control-sidebar-dark .control-sidebar-heading,.control-sidebar-dark .control-sidebar-subheading{color:#fff}.control-sidebar-dark .control-sidebar-menu>li>a:hover{background:#1e282c}.control-sidebar-dark .control-sidebar-menu>li>a .menu-info>p{color:#b8c7ce}.control-sidebar-light{color:#5e5e5e}.control-sidebar-light,.control-sidebar-light+.control-sidebar-bg{background:#f9fafc;border-left:1px solid #d2d6de}.control-sidebar-light .nav-tabs.control-sidebar-tabs{border-bottom:#d2d6de}.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a{background:#e8ecf4;color:#444}.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a:focus,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a:hover{border-left-color:#d2d6de;border-bottom-color:#d2d6de}.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a:active,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a:focus,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li>a:hover{background:#eff1f7}.control-sidebar-light .nav-tabs.control-sidebar-tabs>li.active>a,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li.active>a:active,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li.active>a:focus,.control-sidebar-light .nav-tabs.control-sidebar-tabs>li.active>a:hover{background:#f9fafc;color:#111}.control-sidebar-light .control-sidebar-heading,.control-sidebar-light .control-sidebar-subheading{color:#111}.control-sidebar-light .control-sidebar-menu{margin-left:-14px}.control-sidebar-light .control-sidebar-menu>li>a:hover{background:#f4f4f5}.control-sidebar-light .control-sidebar-menu>li>a .menu-info>p{color:#5e5e5e}.dropdown-menu{box-shadow:none;border-color:#eee}.dropdown-menu>li>a{color:#777}.dropdown-menu>li>a>.fa,.dropdown-menu>li>a>.glyphicon,.dropdown-menu>li>a>.ion{margin-right:10px}.dropdown-menu>li>a:hover{background-color:#e1e3e9;color:#333}.dropdown-menu>.divider{background-color:#eee}.navbar-nav>.messages-menu>.dropdown-menu,.navbar-nav>.notifications-menu>.dropdown-menu,.navbar-nav>.tasks-menu>.dropdown-menu{width:280px;padding:0;margin:0;top:100%}.navbar-nav>.messages-menu>.dropdown-menu>li,.navbar-nav>.notifications-menu>.dropdown-menu>li,.navbar-nav>.tasks-menu>.dropdown-menu>li{position:relative}.navbar-nav>.messages-menu>.dropdown-menu>li.header,.navbar-nav>.notifications-menu>.dropdown-menu>li.header,.navbar-nav>.tasks-menu>.dropdown-menu>li.header{border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0;background-color:#fff;padding:7px 10px;border-bottom:1px solid #f4f4f4;color:#444;font-size:14px}.navbar-nav>.messages-menu>.dropdown-menu>li.footer>a,.navbar-nav>.notifications-menu>.dropdown-menu>li.footer>a,.navbar-nav>.tasks-menu>.dropdown-menu>li.footer>a{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px;font-size:12px;background-color:#fff;padding:7px 10px;border-bottom:1px solid #eee;color:#444!important;text-align:center}@media (max-width:991px){.navbar-nav>.messages-menu>.dropdown-menu>li.footer>a,.navbar-nav>.notifications-menu>.dropdown-menu>li.footer>a,.navbar-nav>.tasks-menu>.dropdown-menu>li.footer>a{background:#fff!important;color:#444!important}}.navbar-nav>.messages-menu>.dropdown-menu>li.footer>a:hover,.navbar-nav>.notifications-menu>.dropdown-menu>li.footer>a:hover,.navbar-nav>.tasks-menu>.dropdown-menu>li.footer>a:hover{text-decoration:none;font-weight:400}.navbar-nav>.messages-menu>.dropdown-menu>li .menu,.navbar-nav>.notifications-menu>.dropdown-menu>li .menu,.navbar-nav>.tasks-menu>.dropdown-menu>li .menu{max-height:200px;margin:0;padding:0;list-style:none;overflow-x:hidden}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a,.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a,.navbar-nav>.tasks-menu>.dropdown-menu>li .menu>li>a{display:block;white-space:nowrap;border-bottom:1px solid #f4f4f4}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a:hover,.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a:hover,.navbar-nav>.tasks-menu>.dropdown-menu>li .menu>li>a:hover{background:#f4f4f4;text-decoration:none}.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a{color:#444;overflow:hidden;text-overflow:ellipsis;padding:10px}.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a>.fa,.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a>.glyphicon,.navbar-nav>.notifications-menu>.dropdown-menu>li .menu>li>a>.ion{width:20px}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a{margin:0;padding:10px}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a>div>img{margin:auto 10px auto auto;width:40px;height:40px}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a>h4{padding:0;margin:0 0 0 45px;color:#444;font-size:15px;position:relative}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a>h4>small{color:#999;font-size:10px;position:absolute;top:0;right:0}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a>p{margin:0 0 0 45px;font-size:12px;color:#888}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a:after,.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a:before{content:\" \";display:table}.navbar-nav>.messages-menu>.dropdown-menu>li .menu>li>a:after{clear:both}.navbar-nav>.tasks-menu>.dropdown-menu>li .menu>li>a{padding:10px}.navbar-nav>.tasks-menu>.dropdown-menu>li .menu>li>a>h3{font-size:14px;padding:0;margin:0 0 10px;color:#666}.navbar-nav>.tasks-menu>.dropdown-menu>li .menu>li>a>.progress{padding:0;margin:0}.navbar-nav>.user-menu>.dropdown-menu{border-top-right-radius:0;border-top-left-radius:0;padding:1px 0 0;border-top-width:0;width:280px}.navbar-nav>.user-menu>.dropdown-menu,.navbar-nav>.user-menu>.dropdown-menu>.user-body{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.navbar-nav>.user-menu>.dropdown-menu>li.user-header{height:175px;padding:10px;text-align:center}.navbar-nav>.user-menu>.dropdown-menu>li.user-header>img{z-index:5;height:90px;width:90px;border:3px solid hsla(0,0%,100%,.2)}.navbar-nav>.user-menu>.dropdown-menu>li.user-header>p{z-index:5;color:#fff;color:hsla(0,0%,100%,.8);font-size:17px;margin-top:10px}.navbar-nav>.user-menu>.dropdown-menu>li.user-header>p>small{display:block;font-size:12px}.navbar-nav>.user-menu>.dropdown-menu>.user-body{padding:15px;border-bottom:1px solid #f4f4f4;border-top:1px solid #ddd}.navbar-nav>.user-menu>.dropdown-menu>.user-body:after,.navbar-nav>.user-menu>.dropdown-menu>.user-body:before{content:\" \";display:table}.navbar-nav>.user-menu>.dropdown-menu>.user-body:after{clear:both}.navbar-nav>.user-menu>.dropdown-menu>.user-body a{color:#444!important}@media (max-width:991px){.navbar-nav>.user-menu>.dropdown-menu>.user-body a{background:#fff!important;color:#444!important}}.navbar-nav>.user-menu>.dropdown-menu>.user-footer{background-color:#f9f9f9;padding:10px}.navbar-nav>.user-menu>.dropdown-menu>.user-footer:after,.navbar-nav>.user-menu>.dropdown-menu>.user-footer:before{content:\" \";display:table}.navbar-nav>.user-menu>.dropdown-menu>.user-footer:after{clear:both}.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default{color:#666}@media (max-width:991px){.navbar-nav>.user-menu>.dropdown-menu>.user-footer .btn-default:hover{background-color:#f9f9f9}}.navbar-nav>.user-menu .user-image{float:left;width:25px;height:25px;border-radius:50%;margin-right:10px;margin-top:-2px}@media (max-width:767px){.navbar-nav>.user-menu .user-image{float:none;margin-right:0;margin-top:-8px;line-height:10px}}.open:not(.dropup)>.animated-dropdown-menu{backface-visibility:visible!important;-webkit-animation:flipInX .7s both;-o-animation:flipInX .7s both;animation:flipInX .7s both}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);transition-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);transition-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);-webkit-transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);-webkit-transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px)}}.navbar-custom-menu>.navbar-nav>li{position:relative}.navbar-custom-menu>.navbar-nav>li>.dropdown-menu{position:absolute;right:0;left:auto}@media (max-width:991px){.navbar-custom-menu>.navbar-nav{float:right}.navbar-custom-menu>.navbar-nav>li{position:static}.navbar-custom-menu>.navbar-nav>li>.dropdown-menu{position:absolute;right:5%;left:auto;border:1px solid #ddd;background:#fff}}.form-control{border-radius:0;box-shadow:none;border-color:#d2d6de}.form-control:focus{border-color:#3c8dbc;box-shadow:none}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder{color:#bbb;opacity:1}.form-control:not(select){-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-group.has-success label{color:#00a65a}.form-group.has-success .form-control,.form-group.has-success .input-group-addon{border-color:#00a65a;box-shadow:none}.form-group.has-success .help-block{color:#00a65a}.form-group.has-warning label{color:#f39c12}.form-group.has-warning .form-control,.form-group.has-warning .input-group-addon{border-color:#f39c12;box-shadow:none}.form-group.has-warning .help-block{color:#f39c12}.form-group.has-error label{color:#dd4b39}.form-group.has-error .form-control,.form-group.has-error .input-group-addon{border-color:#dd4b39;box-shadow:none}.form-group.has-error .help-block{color:#dd4b39}.input-group .input-group-addon{border-radius:0;border-color:#d2d6de;background-color:#fff}.btn-group-vertical .btn.btn-flat:first-of-type,.btn-group-vertical .btn.btn-flat:last-of-type{border-radius:0}.icheck>label{padding-left:0}.form-control-feedback.fa{line-height:34px}.form-group-lg .form-control+.form-control-feedback.fa,.input-group-lg+.form-control-feedback.fa,.input-lg+.form-control-feedback.fa{line-height:46px}.form-group-sm .form-control+.form-control-feedback.fa,.input-group-sm+.form-control-feedback.fa,.input-sm+.form-control-feedback.fa{line-height:30px}.progress,.progress>.progress-bar{-webkit-box-shadow:none;box-shadow:none}.progress,.progress .progress-bar,.progress>.progress-bar,.progress>.progress-bar .progress-bar{border-radius:1px}.progress-sm,.progress.sm{height:10px}.progress-sm,.progress-sm .progress-bar,.progress.sm,.progress.sm .progress-bar{border-radius:1px}.progress-xs,.progress.xs{height:7px}.progress-xs,.progress-xs .progress-bar,.progress.xs,.progress.xs .progress-bar{border-radius:1px}.progress-xxs,.progress.xxs{height:3px}.progress-xxs,.progress-xxs .progress-bar,.progress.xxs,.progress.xxs .progress-bar{border-radius:1px}.progress.vertical{position:relative;width:30px;height:200px;display:inline-block;margin-right:10px}.progress.vertical>.progress-bar{width:100%;position:absolute;bottom:0}.progress.vertical.progress-sm,.progress.vertical.sm{width:20px}.progress.vertical.progress-xs,.progress.vertical.xs{width:10px}.progress.vertical.progress-xxs,.progress.vertical.xxs{width:3px}.progress-group .progress-text{font-weight:600}.progress-group .progress-number{float:right}.table tr>td .progress{margin:0}.progress-bar-light-blue,.progress-bar-primary{background-color:#3c8dbc}.progress-striped .progress-bar-light-blue,.progress-striped .progress-bar-primary{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-green,.progress-bar-success{background-color:#00a65a}.progress-striped .progress-bar-green,.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-aqua,.progress-bar-info{background-color:#00c0ef}.progress-striped .progress-bar-aqua,.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning,.progress-bar-yellow{background-color:#f39c12}.progress-striped .progress-bar-warning,.progress-striped .progress-bar-yellow{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger,.progress-bar-red{background-color:#dd4b39}.progress-striped .progress-bar-danger,.progress-striped .progress-bar-red{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.small-box{border-radius:2px;position:relative;display:block;margin-bottom:20px;box-shadow:0 1px 1px rgba(0,0,0,.1)}.small-box>.inner{padding:10px}.small-box>.small-box-footer{position:relative;text-align:center;padding:3px 0;color:#fff;color:hsla(0,0%,100%,.8);display:block;z-index:10;background:rgba(0,0,0,.1);text-decoration:none}.small-box>.small-box-footer:hover{color:#fff;background:rgba(0,0,0,.15)}.small-box h3{font-size:38px;font-weight:700;margin:0 0 10px;white-space:nowrap;padding:0}.small-box p{font-size:15px}.small-box p>small{display:block;color:#f9f9f9;font-size:13px;margin-top:5px}.small-box h3,.small-box p{z-index:5}.small-box .icon{-webkit-transition:all .3s linear;-o-transition:all .3s linear;transition:all .3s linear;position:absolute;top:-10px;right:10px;z-index:0;font-size:90px;color:rgba(0,0,0,.15)}.small-box:hover{text-decoration:none;color:#f9f9f9}.small-box:hover .icon{font-size:95px}@media (max-width:767px){.small-box{text-align:center}.small-box .icon{display:none}.small-box p{font-size:12px}}.box{position:relative;border-radius:3px;background:#fff;border-top:3px solid #d2d6de;margin-bottom:20px;width:100%;box-shadow:0 1px 1px rgba(0,0,0,.1)}.box.box-primary{border-top-color:#3c8dbc}.box.box-info{border-top-color:#00c0ef}.box.box-danger{border-top-color:#dd4b39}.box.box-warning{border-top-color:#f39c12}.box.box-success{border-top-color:#00a65a}.box.box-default{border-top-color:#d2d6de}.box.collapsed-box .box-body,.box.collapsed-box .box-footer{display:none}.box .nav-stacked>li{border-bottom:1px solid #f4f4f4;margin:0}.box .nav-stacked>li:last-of-type{border-bottom:none}.box.height-control .box-body{max-height:300px;overflow:auto}.box .border-right{border-right:1px solid #f4f4f4}.box .border-left{border-left:1px solid #f4f4f4}.box.box-solid{border-top:0}.box.box-solid>.box-header .btn.btn-default{background:transparent}.box.box-solid>.box-header .btn:hover,.box.box-solid>.box-header a:hover{background:rgba(0,0,0,.1)}.box.box-solid.box-default{border:1px solid #d2d6de}.box.box-solid.box-default>.box-header{color:#444;background:#d2d6de;background-color:#d2d6de}.box.box-solid.box-default>.box-header .btn,.box.box-solid.box-default>.box-header a{color:#444}.box.box-solid.box-primary{border:1px solid #3c8dbc}.box.box-solid.box-primary>.box-header{color:#fff;background:#3c8dbc;background-color:#3c8dbc}.box.box-solid.box-primary>.box-header .btn,.box.box-solid.box-primary>.box-header a{color:#fff}.box.box-solid.box-info{border:1px solid #00c0ef}.box.box-solid.box-info>.box-header{color:#fff;background:#00c0ef;background-color:#00c0ef}.box.box-solid.box-info>.box-header .btn,.box.box-solid.box-info>.box-header a{color:#fff}.box.box-solid.box-danger{border:1px solid #dd4b39}.box.box-solid.box-danger>.box-header{color:#fff;background:#dd4b39;background-color:#dd4b39}.box.box-solid.box-danger>.box-header .btn,.box.box-solid.box-danger>.box-header a{color:#fff}.box.box-solid.box-warning{border:1px solid #f39c12}.box.box-solid.box-warning>.box-header{color:#fff;background:#f39c12;background-color:#f39c12}.box.box-solid.box-warning>.box-header .btn,.box.box-solid.box-warning>.box-header a{color:#fff}.box.box-solid.box-success{border:1px solid #00a65a}.box.box-solid.box-success>.box-header{color:#fff;background:#00a65a;background-color:#00a65a}.box.box-solid.box-success>.box-header .btn,.box.box-solid.box-success>.box-header a{color:#fff}.box.box-solid>.box-header>.box-tools .btn{border:0;box-shadow:none}.box.box-solid[class*=bg]>.box-header{color:#fff}.box .box-group>.box{margin-bottom:5px}.box .knob-label{text-align:center;color:#333;font-weight:100;font-size:12px;margin-bottom:.3em}.box>.loading-img,.box>.overlay,.overlay-wrapper>.loading-img,.overlay-wrapper>.overlay{position:absolute;top:0;left:0;width:100%;height:100%}.box .overlay,.overlay-wrapper .overlay{z-index:50;background:hsla(0,0%,100%,.7);border-radius:3px}.box .overlay>.fa,.overlay-wrapper .overlay>.fa{position:absolute;top:50%;left:50%;margin-left:-15px;margin-top:-15px;color:#000;font-size:30px}.box .overlay.dark,.overlay-wrapper .overlay.dark{background:rgba(0,0,0,.5)}.box-body:after,.box-body:before,.box-footer:after,.box-footer:before,.box-header:after,.box-header:before{content:\" \";display:table}.box-body:after,.box-footer:after,.box-header:after{clear:both}.box-header{color:#444;display:block;padding:10px;position:relative}.box-header.with-border{border-bottom:1px solid #f4f4f4}.collapsed-box .box-header.with-border{border-bottom:none}.box-header .box-title,.box-header>.fa,.box-header>.glyphicon,.box-header>.ion{display:inline-block;font-size:18px;margin:0;line-height:1}.box-header>.fa,.box-header>.glyphicon,.box-header>.ion{margin-right:5px}.box-header>.box-tools{float:right;margin-top:-5px;margin-bottom:-5px}.box-header>.box-tools [data-toggle=tooltip]{position:relative}.box-header>.box-tools.pull-right .dropdown-menu{right:0;left:auto}.box-header>.box-tools .dropdown-menu>li>a{color:#444!important}.btn-box-tool{padding:5px;font-size:12px;background:transparent;color:#97a0b3}.btn-box-tool:hover,.open .btn-box-tool{color:#606c84}.btn-box-tool.btn:active{box-shadow:none}.box-body{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;padding:10px}.no-header .box-body{border-top-right-radius:3px;border-top-left-radius:3px}.box-body>.table{margin-bottom:0}.box-body .fc{margin-top:5px}.box-body .full-width-chart{margin:-19px}.box-body.no-padding .full-width-chart{margin:-9px}.box-body .box-pane{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:3px}.box-body .box-pane-right{border-bottom-left-radius:0}.box-body .box-pane-right,.box-footer{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:3px}.box-footer{border-bottom-left-radius:3px;border-top:1px solid #f4f4f4;padding:10px;background-color:#fff}.chart-legend{margin:10px 0}@media (max-width:991px){.chart-legend>li{float:left;margin-right:10px}}.box-comments{background:#f7f7f7}.box-comments .box-comment{padding:8px 0;border-bottom:1px solid #eee}.box-comments .box-comment:after,.box-comments .box-comment:before{content:\" \";display:table}.box-comments .box-comment:after{clear:both}.box-comments .box-comment:last-of-type{border-bottom:0}.box-comments .box-comment:first-of-type{padding-top:0}.box-comments .box-comment img{float:left}.box-comments .comment-text{margin-left:40px;color:#555}.box-comments .username{color:#444;display:block;font-weight:600}.box-comments .text-muted{font-weight:400;font-size:12px}.todo-list{margin:0;padding:0;list-style:none;overflow:auto}.todo-list>li{border-radius:2px;padding:10px;background:#f4f4f4;margin-bottom:2px;border-left:2px solid #e6e7e8;color:#444}.todo-list>li:last-of-type{margin-bottom:0}.todo-list>li>input[type=checkbox]{margin:0 10px 0 5px}.todo-list>li .text{display:inline-block;margin-left:5px;font-weight:600}.todo-list>li .label{margin-left:10px;font-size:9px}.todo-list>li .tools{display:none;float:right;color:#dd4b39}.todo-list>li .tools>.fa,.todo-list>li .tools>.glyphicon,.todo-list>li .tools>.ion{margin-right:5px;cursor:pointer}.todo-list>li:hover .tools{display:inline-block}.todo-list>li.done{color:#999}.todo-list>li.done .text{text-decoration:line-through;font-weight:500}.todo-list>li.done .label{background:#d2d6de!important}.todo-list .danger{border-left-color:#dd4b39}.todo-list .warning{border-left-color:#f39c12}.todo-list .info{border-left-color:#00c0ef}.todo-list .success{border-left-color:#00a65a}.todo-list .primary{border-left-color:#3c8dbc}.todo-list .handle{display:inline-block;cursor:move;margin:0 5px}.chat{padding:5px 20px 5px 10px}.chat .item{margin-bottom:10px}.chat .item:after,.chat .item:before{content:\" \";display:table}.chat .item:after{clear:both}.chat .item>img{width:40px;height:40px;border:2px solid transparent;border-radius:50%}.chat .item>.online{border:2px solid #00a65a}.chat .item>.offline{border:2px solid #dd4b39}.chat .item>.message{margin-left:55px;margin-top:-40px}.chat .item>.message>.name{display:block;font-weight:600}.chat .item>.attachment{border-radius:3px;background:#f4f4f4;margin-left:65px;margin-right:15px;padding:10px}.chat .item>.attachment>h4{margin:0 0 5px;font-weight:600;font-size:14px}.chat .item>.attachment>.filename,.chat .item>.attachment>p{font-weight:600;font-size:13px;font-style:italic;margin:0}.chat .item>.attachment:after,.chat .item>.attachment:before{content:\" \";display:table}.chat .item>.attachment:after{clear:both}.box-input{max-width:200px}.modal .panel-body{color:#444}.info-box{display:block;min-height:90px;background:#fff;width:100%;box-shadow:0 1px 1px rgba(0,0,0,.1);border-radius:2px;margin-bottom:15px}.info-box small{font-size:14px}.info-box .progress{background:rgba(0,0,0,.2);margin:5px -10px;height:2px}.info-box .progress,.info-box .progress .progress-bar{border-radius:0}.info-box .progress .progress-bar{background:#fff}.info-box-icon{border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px;display:block;float:left;height:90px;width:90px;text-align:center;font-size:45px;line-height:90px;background:rgba(0,0,0,.2)}.info-box-icon>img{max-width:100%}.info-box-content{padding:5px 10px;margin-left:90px}.info-box-number{display:block;font-weight:700;font-size:18px}.info-box-text,.progress-description{display:block;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.info-box-text{text-transform:uppercase}.info-box-more{display:block}.progress-description{margin:0}.timeline{position:relative;margin:0 0 30px;padding:0;list-style:none}.timeline:before{content:\"\";position:absolute;top:0;bottom:0;width:4px;background:#ddd;left:31px;margin:0;border-radius:2px}.timeline>li{position:relative;margin-right:10px;margin-bottom:15px}.timeline>li:after,.timeline>li:before{content:\" \";display:table}.timeline>li:after{clear:both}.timeline>li>.timeline-item{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1);border-radius:3px;margin-top:0;background:#fff;color:#444;margin-left:60px;margin-right:15px;padding:0;position:relative}.timeline>li>.timeline-item>.time{color:#999;float:right;padding:10px;font-size:12px}.timeline>li>.timeline-item>.timeline-header{margin:0;color:#555;border-bottom:1px solid #f4f4f4;padding:10px;font-size:16px;line-height:1.1}.timeline>li>.timeline-item>.timeline-header>a{font-weight:600}.timeline>li>.timeline-item>.timeline-body,.timeline>li>.timeline-item>.timeline-footer{padding:10px}.timeline>li>.fa,.timeline>li>.glyphicon,.timeline>li>.ion{width:30px;height:30px;font-size:15px;line-height:30px;position:absolute;color:#666;background:#d2d6de;border-radius:50%;text-align:center;left:18px;top:0}.timeline>.time-label>span{font-weight:600;padding:5px;display:inline-block;background-color:#fff;border-radius:4px}.timeline-inverse>li>.timeline-item{background:#f0f0f0;border:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none}.timeline-inverse>li>.timeline-item>.timeline-header{border-bottom-color:#ddd}.btn{border-radius:3px;-webkit-box-shadow:none;box-shadow:none;border:1px solid transparent}.btn.uppercase{text-transform:uppercase}.btn.btn-flat{border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-width:1px}.btn:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);-moz-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:focus{outline:none}.btn.btn-file{position:relative;overflow:hidden}.btn.btn-file>input[type=file]{position:absolute;top:0;right:0;min-width:100%;min-height:100%;font-size:100px;text-align:right;opacity:0;filter:alpha(opacity=0);outline:none;background:#fff;cursor:inherit;display:block}.btn-default{background-color:#f4f4f4;color:#444;border-color:#ddd}.btn-default.hover,.btn-default:active,.btn-default:hover{background-color:#e7e7e7}.btn-primary{background-color:#3c8dbc;border-color:#367fa9}.btn-primary.hover,.btn-primary:active,.btn-primary:hover{background-color:#367fa9}.btn-success{background-color:#00a65a;border-color:#008d4c}.btn-success.hover,.btn-success:active,.btn-success:hover{background-color:#008d4c}.btn-info{background-color:#00c0ef;border-color:#00acd6}.btn-info.hover,.btn-info:active,.btn-info:hover{background-color:#00acd6}.btn-danger{background-color:#dd4b39;border-color:#d73925}.btn-danger.hover,.btn-danger:active,.btn-danger:hover{background-color:#d73925}.btn-warning{background-color:#f39c12;border-color:#e08e0b}.btn-warning.hover,.btn-warning:active,.btn-warning:hover{background-color:#e08e0b}.btn-outline{border:1px solid #fff;background:transparent;color:#fff}.btn-outline:active,.btn-outline:focus,.btn-outline:hover{color:hsla(0,0%,100%,.7);border-color:hsla(0,0%,100%,.7)}.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn[class*=bg-]:hover{-webkit-box-shadow:inset 0 0 100px rgba(0,0,0,.2);box-shadow:inset 0 0 100px rgba(0,0,0,.2)}.btn-app{border-radius:3px;position:relative;padding:15px 5px;margin:0 0 10px 10px;min-width:80px;height:60px;text-align:center;color:#666;border:1px solid #ddd;background-color:#f4f4f4;font-size:12px}.btn-app>.fa,.btn-app>.glyphicon,.btn-app>.ion{font-size:20px;display:block}.btn-app:hover{background:#f4f4f4;color:#444;border-color:#aaa}.btn-app:active,.btn-app:focus{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);-moz-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-app>.badge{position:absolute;top:-3px;right:-10px;font-size:10px;font-weight:400}.callout{border-radius:3px;margin:0 0 20px;padding:15px 30px 15px 15px;border-left:5px solid #eee}.callout a{color:#fff;text-decoration:underline}.callout a:hover{color:#eee}.callout h4{margin-top:0;font-weight:600}.callout p:last-child{margin-bottom:0}.callout .highlight,.callout code{background-color:#fff}.callout.callout-danger{border-color:#c23321}.callout.callout-warning{border-color:#c87f0a}.callout.callout-info{border-color:#0097bc}.callout.callout-success{border-color:#00733e}.alert{border-radius:3px}.alert h4{font-weight:600}.alert .icon{margin-right:10px}.alert .close{color:#000;opacity:.2;filter:alpha(opacity=20)}.alert .close:hover{opacity:.5;filter:alpha(opacity=50)}.alert a{color:#fff;text-decoration:underline}.alert-success{border-color:#008d4c}.alert-danger,.alert-error{border-color:#d73925}.alert-warning{border-color:#e08e0b}.alert-info{border-color:#00acd6}.nav>li>a:active,.nav>li>a:focus,.nav>li>a:hover{color:#444;background:#f7f7f7}.nav-pills>li>a{border-radius:0;border-top:3px solid transparent;color:#444}.nav-pills>li>a>.fa,.nav-pills>li>a>.glyphicon,.nav-pills>li>a>.ion{margin-right:5px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{border-top-color:#3c8dbc}.nav-pills>li.active>a{font-weight:600}.nav-stacked>li>a{border-radius:0;border-top:0;border-left:3px solid transparent;color:#444}.nav-stacked>li.active>a,.nav-stacked>li.active>a:hover{background:transparent;color:#444;border-top:0;border-left-color:#3c8dbc}.nav-stacked>li.header{border-bottom:1px solid #ddd;color:#777;margin-bottom:10px;padding:5px 10px;text-transform:uppercase}.nav-tabs-custom{margin-bottom:20px;background:#fff;box-shadow:0 1px 1px rgba(0,0,0,.1);border-radius:3px}.nav-tabs-custom>.nav-tabs{margin:0;border-bottom-color:#f4f4f4;border-top-right-radius:3px;border-top-left-radius:3px}.nav-tabs-custom>.nav-tabs>li{border-top:3px solid transparent;margin-bottom:-2px;margin-right:5px}.nav-tabs-custom>.nav-tabs>li.disabled>a{color:#777}.nav-tabs-custom>.nav-tabs>li>a{color:#444;border-radius:0}.nav-tabs-custom>.nav-tabs>li>a.text-muted{color:#999}.nav-tabs-custom>.nav-tabs>li>a,.nav-tabs-custom>.nav-tabs>li>a:hover{background:transparent;margin:0}.nav-tabs-custom>.nav-tabs>li>a:hover{color:#999}.nav-tabs-custom>.nav-tabs>li:not(.active)>a:active,.nav-tabs-custom>.nav-tabs>li:not(.active)>a:focus,.nav-tabs-custom>.nav-tabs>li:not(.active)>a:hover{border-color:transparent}.nav-tabs-custom>.nav-tabs>li.active{border-top-color:#3c8dbc}.nav-tabs-custom>.nav-tabs>li.active:hover>a,.nav-tabs-custom>.nav-tabs>li.active>a{background-color:#fff;color:#444}.nav-tabs-custom>.nav-tabs>li.active>a{border-top-color:transparent;border-left-color:#f4f4f4;border-right-color:#f4f4f4}.nav-tabs-custom>.nav-tabs>li:first-of-type{margin-left:0}.nav-tabs-custom>.nav-tabs>li:first-of-type.active>a{border-left-color:transparent}.nav-tabs-custom>.nav-tabs.pull-right{float:none!important}.nav-tabs-custom>.nav-tabs.pull-right>li{float:right}.nav-tabs-custom>.nav-tabs.pull-right>li:first-of-type{margin-right:0}.nav-tabs-custom>.nav-tabs.pull-right>li:first-of-type>a{border-left-width:1px}.nav-tabs-custom>.nav-tabs.pull-right>li:first-of-type.active>a{border-left-color:#f4f4f4;border-right-color:transparent}.nav-tabs-custom>.nav-tabs>li.header{line-height:35px;padding:0 10px;font-size:20px;color:#444}.nav-tabs-custom>.nav-tabs>li.header>.fa,.nav-tabs-custom>.nav-tabs>li.header>.glyphicon,.nav-tabs-custom>.nav-tabs>li.header>.ion{margin-right:5px}.nav-tabs-custom>.tab-content{background:#fff;padding:10px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.nav-tabs-custom .dropdown.open>a:active,.nav-tabs-custom .dropdown.open>a:focus{background:transparent;color:#999}.nav-tabs-custom.tab-primary>.nav-tabs>li.active{border-top-color:#3c8dbc}.nav-tabs-custom.tab-info>.nav-tabs>li.active{border-top-color:#00c0ef}.nav-tabs-custom.tab-danger>.nav-tabs>li.active{border-top-color:#dd4b39}.nav-tabs-custom.tab-warning>.nav-tabs>li.active{border-top-color:#f39c12}.nav-tabs-custom.tab-success>.nav-tabs>li.active{border-top-color:#00a65a}.nav-tabs-custom.tab-default>.nav-tabs>li.active{border-top-color:#d2d6de}.pagination>li>a{background:#fafafa;color:#666}.pagination.pagination-flat>li>a{border-radius:0!important}.products-list{list-style:none;margin:0;padding:0}.products-list>.item{border-radius:3px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1);padding:10px 0;background:#fff}.products-list>.item:after,.products-list>.item:before{content:\" \";display:table}.products-list>.item:after{clear:both}.products-list .product-img{float:left}.products-list .product-img img{width:50px;height:50px}.products-list .product-info{margin-left:60px}.products-list .product-title{font-weight:600}.products-list .product-description{display:block;color:#999;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.product-list-in-box>.item{-webkit-box-shadow:none;box-shadow:none;border-radius:0;border-bottom:1px solid #f4f4f4}.product-list-in-box>.item:last-of-type{border-bottom-width:0}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{border-top:1px solid #f4f4f4}.table>thead>tr>th{border-bottom:2px solid #f4f4f4}.table tr td .progress{margin-top:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #f4f4f4}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table.no-border,.table.no-border td,.table.no-border th{border:0}table.text-center,table.text-center td,table.text-center th{text-align:center}.table.align th{text-align:left}.table.align td{text-align:right}.label-default{background-color:#d2d6de;color:#444}.direct-chat .box-body{border-bottom-right-radius:0;border-bottom-left-radius:0;position:relative;overflow-x:hidden;padding:0}.direct-chat-messages,.direct-chat.chat-pane-open .direct-chat-contacts{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0)}.direct-chat-messages{padding:10px;height:250px;overflow:auto}.direct-chat-msg,.direct-chat-text{display:block}.direct-chat-msg{margin-bottom:10px}.direct-chat-msg:after,.direct-chat-msg:before{content:\" \";display:table}.direct-chat-msg:after{clear:both}.direct-chat-contacts,.direct-chat-messages{-webkit-transition:-webkit-transform .5s ease-in-out;-moz-transition:-moz-transform .5s ease-in-out;-o-transition:-o-transform .5s ease-in-out;transition:transform .5s ease-in-out}.direct-chat-text{border-radius:5px;position:relative;padding:5px 10px;background:#d2d6de;border:1px solid #d2d6de;margin:5px 0 0 50px;color:#444}.direct-chat-text:after,.direct-chat-text:before{position:absolute;right:100%;top:15px;border:solid transparent;border-right:solid #d2d6de;content:\" \";height:0;width:0;pointer-events:none}.direct-chat-text:after{border-width:5px;margin-top:-5px}.direct-chat-text:before{border-width:6px;margin-top:-6px}.right .direct-chat-text{margin-right:50px;margin-left:0}.right .direct-chat-text:after,.right .direct-chat-text:before{right:auto;left:100%;border-right-color:transparent;border-left-color:#d2d6de}.direct-chat-img{border-radius:50%;float:left;width:40px;height:40px}.right .direct-chat-img{float:right}.direct-chat-info{display:block;margin-bottom:2px;font-size:12px}.direct-chat-name{font-weight:600}.direct-chat-timestamp{color:#999}.direct-chat-contacts-open .direct-chat-contacts{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0)}.direct-chat-contacts{-webkit-transform:translate(101%);-ms-transform:translate(101%);-o-transform:translate(101%);transform:translate(101%);position:absolute;top:0;bottom:0;height:250px;width:100%;background:#222d32;color:#fff;overflow:auto}.contacts-list>li{border-bottom:1px solid rgba(0,0,0,.2);padding:10px;margin:0}.contacts-list>li:after,.contacts-list>li:before{content:\" \";display:table}.contacts-list>li:after{clear:both}.contacts-list>li:last-of-type{border-bottom:none}.contacts-list-img{border-radius:50%;width:40px;float:left}.contacts-list-info{margin-left:45px;color:#fff}.contacts-list-name,.contacts-list-status{display:block}.contacts-list-name{font-weight:600}.contacts-list-status{font-size:12px}.contacts-list-date{color:#aaa;font-weight:400}.contacts-list-msg{color:#999}.direct-chat-danger .right>.direct-chat-text{background:#dd4b39;border-color:#dd4b39;color:#fff}.direct-chat-danger .right>.direct-chat-text:after,.direct-chat-danger .right>.direct-chat-text:before{border-left-color:#dd4b39}.direct-chat-primary .right>.direct-chat-text{background:#3c8dbc;border-color:#3c8dbc;color:#fff}.direct-chat-primary .right>.direct-chat-text:after,.direct-chat-primary .right>.direct-chat-text:before{border-left-color:#3c8dbc}.direct-chat-warning .right>.direct-chat-text{background:#f39c12;border-color:#f39c12;color:#fff}.direct-chat-warning .right>.direct-chat-text:after,.direct-chat-warning .right>.direct-chat-text:before{border-left-color:#f39c12}.direct-chat-info .right>.direct-chat-text{background:#00c0ef;border-color:#00c0ef;color:#fff}.direct-chat-info .right>.direct-chat-text:after,.direct-chat-info .right>.direct-chat-text:before{border-left-color:#00c0ef}.direct-chat-success .right>.direct-chat-text{background:#00a65a;border-color:#00a65a;color:#fff}.direct-chat-success .right>.direct-chat-text:after,.direct-chat-success .right>.direct-chat-text:before{border-left-color:#00a65a}.users-list>li{width:25%;float:left;padding:10px;text-align:center}.users-list>li img{border-radius:50%;max-width:100%;height:auto}.users-list>li>a:hover,.users-list>li>a:hover .users-list-name{color:#999}.users-list-date,.users-list-name{display:block}.users-list-name{font-weight:600;color:#444;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.users-list-date{color:#999;font-size:12px}.carousel-control.left,.carousel-control.right{background-image:none}.carousel-control>.fa{font-size:40px;position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-20px}.modal{background:rgba(0,0,0,.3)}.modal-content{border-radius:0;-webkit-box-shadow:0 2px 3px rgba(0,0,0,.125);box-shadow:0 2px 3px rgba(0,0,0,.125);border:0}@media (min-width:768px){.modal-content{-webkit-box-shadow:0 2px 3px rgba(0,0,0,.125);box-shadow:0 2px 3px rgba(0,0,0,.125)}}.modal-header{border-bottom-color:#f4f4f4}.modal-footer{border-top-color:#f4f4f4}.modal-primary .modal-footer,.modal-primary .modal-header{border-color:#307095}.modal-warning .modal-footer,.modal-warning .modal-header{border-color:#c87f0a}.modal-info .modal-footer,.modal-info .modal-header{border-color:#0097bc}.modal-success .modal-footer,.modal-success .modal-header{border-color:#00733e}.modal-danger .modal-footer,.modal-danger .modal-header{border-color:#c23321}.box-widget{border:none;position:relative}.widget-user .widget-user-header{padding:20px;height:120px;border-top-right-radius:3px;border-top-left-radius:3px}.widget-user .widget-user-username{margin-top:0;margin-bottom:5px;font-size:25px;font-weight:300;text-shadow:0 1px 1px rgba(0,0,0,.2)}.widget-user .widget-user-desc{margin-top:0}.widget-user .widget-user-image{position:absolute;top:65px;left:50%;margin-left:-45px}.widget-user .widget-user-image>img{width:90px;height:auto;border:3px solid #fff}.widget-user .box-footer{padding-top:30px}.widget-user-2 .widget-user-header{padding:20px;border-top-right-radius:3px;border-top-left-radius:3px}.widget-user-2 .widget-user-username{margin-top:5px;margin-bottom:5px;font-size:25px;font-weight:300}.widget-user-2 .widget-user-desc{margin-top:0}.widget-user-2 .widget-user-desc,.widget-user-2 .widget-user-username{margin-left:75px}.widget-user-2 .widget-user-image>img{width:65px;height:auto;float:left}.treeview-menu{display:none;list-style:none;margin:0;padding:0 0 0 5px}.treeview-menu .treeview-menu{padding-left:20px}.treeview-menu>li{margin:0}.treeview-menu>li>a{padding:5px 5px 5px 15px;display:block;font-size:14px}.treeview-menu>li>a>.fa,.treeview-menu>li>a>.glyphicon,.treeview-menu>li>a>.ion{width:20px}.treeview-menu>li>a>.fa-angle-down,.treeview-menu>li>a>.fa-angle-left,.treeview-menu>li>a>.pull-right-container>.fa-angle-down,.treeview-menu>li>a>.pull-right-container>.fa-angle-left{width:auto}.treeview>ul.treeview-menu{overflow:hidden;height:auto;padding-top:0!important;padding-bottom:0!important}.treeview.menu-open>ul.treeview-menu{overflow:visible;height:auto}.mailbox-messages>.table{margin:0}.mailbox-controls{padding:5px}.mailbox-controls.with-border,.mailbox-read-info{border-bottom:1px solid #f4f4f4}.mailbox-read-info{padding:10px}.mailbox-read-info h3{font-size:20px;margin:0}.mailbox-read-info h5{margin:0;padding:5px 0 0}.mailbox-read-time{color:#999;font-size:13px}.mailbox-read-message{padding:10px}.mailbox-attachments li{float:left;width:200px;border:1px solid #eee;margin-bottom:10px;margin-right:10px}.mailbox-attachment-name{font-weight:700;color:#666}.mailbox-attachment-icon,.mailbox-attachment-info,.mailbox-attachment-size{display:block}.mailbox-attachment-info{padding:10px;background:#f4f4f4}.mailbox-attachment-size{color:#999;font-size:12px}.mailbox-attachment-icon{text-align:center;font-size:65px;color:#666;padding:20px 10px}.mailbox-attachment-icon.has-img{padding:0}.mailbox-attachment-icon.has-img>img{max-width:100%;height:auto}.lockscreen{background:#d2d6de}.lockscreen-logo{font-size:35px;text-align:center;margin-bottom:25px;font-weight:300}.lockscreen-logo a{color:#444}.lockscreen-wrapper{max-width:400px;margin:10% auto 0}.lockscreen .lockscreen-name{text-align:center;font-weight:600}.lockscreen-item{border-radius:4px;padding:0;background:#fff;position:relative;margin:10px auto 30px;width:290px}.lockscreen-image{border-radius:50%;position:absolute;left:-10px;top:-25px;background:#fff;padding:5px;z-index:10}.lockscreen-image>img{border-radius:50%;width:70px;height:70px}.lockscreen-credentials{margin-left:70px}.lockscreen-credentials .form-control{border:0}.lockscreen-credentials .btn{background-color:#fff;border:0;padding:0 10px}.lockscreen-footer{margin-top:10px}.login-logo,.register-logo{font-size:35px;text-align:center;margin-bottom:25px;font-weight:300}.login-logo a,.register-logo a{color:#444}.login-page,.register-page{height:auto;background:#d2d6de}.login-box,.register-box{width:360px;margin:7% auto}@media (max-width:768px){.login-box,.register-box{width:90%;margin-top:20px}}.login-box-body,.register-box-body{background:#fff;padding:20px;border-top:0;color:#666}.login-box-body .form-control-feedback,.register-box-body .form-control-feedback{color:#777}.login-box-msg,.register-box-msg{margin:0;text-align:center;padding:0 20px 20px}.social-auth-links{margin:10px 0}.error-page{width:600px;margin:20px auto 0}@media (max-width:991px){.error-page{width:100%}}.error-page>.headline{float:left;font-size:100px;font-weight:300}@media (max-width:991px){.error-page>.headline{float:none;text-align:center}}.error-page>.error-content{margin-left:190px;display:block}@media (max-width:991px){.error-page>.error-content{margin-left:0}}.error-page>.error-content>h3{font-weight:300;font-size:25px}@media (max-width:991px){.error-page>.error-content>h3{text-align:center}}.invoice{position:relative;background:#fff;border:1px solid #f4f4f4;padding:20px;margin:10px 25px}.invoice-title{margin-top:0}.profile-user-img{margin:0 auto;width:100px;padding:3px;border:3px solid #d2d6de}.profile-username{font-size:21px;margin-top:5px}.post{border-bottom:1px solid #d2d6de;margin-bottom:15px;padding-bottom:15px;color:#666}.post:last-of-type{border-bottom:0;margin-bottom:0;padding-bottom:0}.post .user-block{margin-bottom:15px}.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,.2)}.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}.btn-social-icon{position:relative;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding:0}.btn-social-icon>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;border-right:1px solid rgba(0,0,0,.2)}.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}.btn-social-icon>:first-child{border:none;text-align:center;width:100%}.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}.btn-adn{color:#fff;background-color:#d87a68;border-color:rgba(0,0,0,.2)}.btn-adn.active,.btn-adn.focus,.btn-adn:active,.btn-adn:focus,.btn-adn:hover,.open>.dropdown-toggle.btn-adn{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,.2)}.btn-adn.active.focus,.btn-adn.active:focus,.btn-adn.active:hover,.btn-adn:active.focus,.btn-adn:active:focus,.btn-adn:active:hover,.open>.dropdown-toggle.btn-adn.focus,.open>.dropdown-toggle.btn-adn:focus,.open>.dropdown-toggle.btn-adn:hover{color:#fff;background-color:#b94630;border-color:rgba(0,0,0,.2)}.btn-adn.active,.btn-adn:active,.open>.dropdown-toggle.btn-adn{background-image:none}.btn-adn.disabled.focus,.btn-adn.disabled:focus,.btn-adn.disabled:hover,.btn-adn[disabled].focus,.btn-adn[disabled]:focus,.btn-adn[disabled]:hover,fieldset[disabled] .btn-adn.focus,fieldset[disabled] .btn-adn:focus,fieldset[disabled] .btn-adn:hover{background-color:#d87a68;border-color:rgba(0,0,0,.2)}.btn-adn .badge{color:#d87a68;background-color:#fff}.btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,.2)}.btn-bitbucket.active,.btn-bitbucket.focus,.btn-bitbucket:active,.btn-bitbucket:focus,.btn-bitbucket:hover,.open>.dropdown-toggle.btn-bitbucket{color:#fff;background-color:#163758;border-color:rgba(0,0,0,.2)}.btn-bitbucket.active.focus,.btn-bitbucket.active:focus,.btn-bitbucket.active:hover,.btn-bitbucket:active.focus,.btn-bitbucket:active:focus,.btn-bitbucket:active:hover,.open>.dropdown-toggle.btn-bitbucket.focus,.open>.dropdown-toggle.btn-bitbucket:focus,.open>.dropdown-toggle.btn-bitbucket:hover{color:#fff;background-color:#0f253c;border-color:rgba(0,0,0,.2)}.btn-bitbucket.active,.btn-bitbucket:active,.open>.dropdown-toggle.btn-bitbucket{background-image:none}.btn-bitbucket.disabled.focus,.btn-bitbucket.disabled:focus,.btn-bitbucket.disabled:hover,.btn-bitbucket[disabled].focus,.btn-bitbucket[disabled]:focus,.btn-bitbucket[disabled]:hover,fieldset[disabled] .btn-bitbucket.focus,fieldset[disabled] .btn-bitbucket:focus,fieldset[disabled] .btn-bitbucket:hover{background-color:#205081;border-color:rgba(0,0,0,.2)}.btn-bitbucket .badge{color:#205081;background-color:#fff}.btn-dropbox{color:#fff;background-color:#1087dd;border-color:rgba(0,0,0,.2)}.btn-dropbox.active,.btn-dropbox.focus,.btn-dropbox:active,.btn-dropbox:focus,.btn-dropbox:hover,.open>.dropdown-toggle.btn-dropbox{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,.2)}.btn-dropbox.active.focus,.btn-dropbox.active:focus,.btn-dropbox.active:hover,.btn-dropbox:active.focus,.btn-dropbox:active:focus,.btn-dropbox:active:hover,.open>.dropdown-toggle.btn-dropbox.focus,.open>.dropdown-toggle.btn-dropbox:focus,.open>.dropdown-toggle.btn-dropbox:hover{color:#fff;background-color:#0a568c;border-color:rgba(0,0,0,.2)}.btn-dropbox.active,.btn-dropbox:active,.open>.dropdown-toggle.btn-dropbox{background-image:none}.btn-dropbox.disabled.focus,.btn-dropbox.disabled:focus,.btn-dropbox.disabled:hover,.btn-dropbox[disabled].focus,.btn-dropbox[disabled]:focus,.btn-dropbox[disabled]:hover,fieldset[disabled] .btn-dropbox.focus,fieldset[disabled] .btn-dropbox:focus,fieldset[disabled] .btn-dropbox:hover{background-color:#1087dd;border-color:rgba(0,0,0,.2)}.btn-dropbox .badge{color:#1087dd;background-color:#fff}.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,.2)}.btn-facebook.active,.btn-facebook.focus,.btn-facebook:active,.btn-facebook:focus,.btn-facebook:hover,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,.2)}.btn-facebook.active.focus,.btn-facebook.active:focus,.btn-facebook.active:hover,.btn-facebook:active.focus,.btn-facebook:active:focus,.btn-facebook:active:hover,.open>.dropdown-toggle.btn-facebook.focus,.open>.dropdown-toggle.btn-facebook:focus,.open>.dropdown-toggle.btn-facebook:hover{color:#fff;background-color:#23345a;border-color:rgba(0,0,0,.2)}.btn-facebook.active,.btn-facebook:active,.open>.dropdown-toggle.btn-facebook{background-image:none}.btn-facebook.disabled.focus,.btn-facebook.disabled:focus,.btn-facebook.disabled:hover,.btn-facebook[disabled].focus,.btn-facebook[disabled]:focus,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook.focus,fieldset[disabled] .btn-facebook:focus,fieldset[disabled] .btn-facebook:hover{background-color:#3b5998;border-color:rgba(0,0,0,.2)}.btn-facebook .badge{color:#3b5998;background-color:#fff}.btn-flickr{color:#fff;background-color:#ff0084;border-color:rgba(0,0,0,.2)}.btn-flickr.active,.btn-flickr.focus,.btn-flickr:active,.btn-flickr:focus,.btn-flickr:hover,.open>.dropdown-toggle.btn-flickr{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,.2)}.btn-flickr.active.focus,.btn-flickr.active:focus,.btn-flickr.active:hover,.btn-flickr:active.focus,.btn-flickr:active:focus,.btn-flickr:active:hover,.open>.dropdown-toggle.btn-flickr.focus,.open>.dropdown-toggle.btn-flickr:focus,.open>.dropdown-toggle.btn-flickr:hover{color:#fff;background-color:#a80057;border-color:rgba(0,0,0,.2)}.btn-flickr.active,.btn-flickr:active,.open>.dropdown-toggle.btn-flickr{background-image:none}.btn-flickr.disabled.focus,.btn-flickr.disabled:focus,.btn-flickr.disabled:hover,.btn-flickr[disabled].focus,.btn-flickr[disabled]:focus,.btn-flickr[disabled]:hover,fieldset[disabled] .btn-flickr.focus,fieldset[disabled] .btn-flickr:focus,fieldset[disabled] .btn-flickr:hover{background-color:#ff0084;border-color:rgba(0,0,0,.2)}.btn-flickr .badge{color:#ff0084;background-color:#fff}.btn-foursquare{color:#fff;background-color:#f94877;border-color:rgba(0,0,0,.2)}.btn-foursquare.active,.btn-foursquare.focus,.btn-foursquare:active,.btn-foursquare:focus,.btn-foursquare:hover,.open>.dropdown-toggle.btn-foursquare{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,.2)}.btn-foursquare.active.focus,.btn-foursquare.active:focus,.btn-foursquare.active:hover,.btn-foursquare:active.focus,.btn-foursquare:active:focus,.btn-foursquare:active:hover,.open>.dropdown-toggle.btn-foursquare.focus,.open>.dropdown-toggle.btn-foursquare:focus,.open>.dropdown-toggle.btn-foursquare:hover{color:#fff;background-color:#e30742;border-color:rgba(0,0,0,.2)}.btn-foursquare.active,.btn-foursquare:active,.open>.dropdown-toggle.btn-foursquare{background-image:none}.btn-foursquare.disabled.focus,.btn-foursquare.disabled:focus,.btn-foursquare.disabled:hover,.btn-foursquare[disabled].focus,.btn-foursquare[disabled]:focus,.btn-foursquare[disabled]:hover,fieldset[disabled] .btn-foursquare.focus,fieldset[disabled] .btn-foursquare:focus,fieldset[disabled] .btn-foursquare:hover{background-color:#f94877;border-color:rgba(0,0,0,.2)}.btn-foursquare .badge{color:#f94877;background-color:#fff}.btn-github{color:#fff;background-color:#444;border-color:rgba(0,0,0,.2)}.btn-github.active,.btn-github.focus,.btn-github:active,.btn-github:focus,.btn-github:hover,.open>.dropdown-toggle.btn-github{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,.2)}.btn-github.active.focus,.btn-github.active:focus,.btn-github.active:hover,.btn-github:active.focus,.btn-github:active:focus,.btn-github:active:hover,.open>.dropdown-toggle.btn-github.focus,.open>.dropdown-toggle.btn-github:focus,.open>.dropdown-toggle.btn-github:hover{color:#fff;background-color:#191919;border-color:rgba(0,0,0,.2)}.btn-github.active,.btn-github:active,.open>.dropdown-toggle.btn-github{background-image:none}.btn-github.disabled.focus,.btn-github.disabled:focus,.btn-github.disabled:hover,.btn-github[disabled].focus,.btn-github[disabled]:focus,.btn-github[disabled]:hover,fieldset[disabled] .btn-github.focus,fieldset[disabled] .btn-github:focus,fieldset[disabled] .btn-github:hover{background-color:#444;border-color:rgba(0,0,0,.2)}.btn-github .badge{color:#444;background-color:#fff}.btn-google{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,.2)}.btn-google.active,.btn-google.focus,.btn-google:active,.btn-google:focus,.btn-google:hover,.open>.dropdown-toggle.btn-google{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,.2)}.btn-google.active.focus,.btn-google.active:focus,.btn-google.active:hover,.btn-google:active.focus,.btn-google:active:focus,.btn-google:active:hover,.open>.dropdown-toggle.btn-google.focus,.open>.dropdown-toggle.btn-google:focus,.open>.dropdown-toggle.btn-google:hover{color:#fff;background-color:#a32b1c;border-color:rgba(0,0,0,.2)}.btn-google.active,.btn-google:active,.open>.dropdown-toggle.btn-google{background-image:none}.btn-google.disabled.focus,.btn-google.disabled:focus,.btn-google.disabled:hover,.btn-google[disabled].focus,.btn-google[disabled]:focus,.btn-google[disabled]:hover,fieldset[disabled] .btn-google.focus,fieldset[disabled] .btn-google:focus,fieldset[disabled] .btn-google:hover{background-color:#dd4b39;border-color:rgba(0,0,0,.2)}.btn-google .badge{color:#dd4b39;background-color:#fff}.btn-instagram{color:#fff;background-color:#3f729b;border-color:rgba(0,0,0,.2)}.btn-instagram.active,.btn-instagram.focus,.btn-instagram:active,.btn-instagram:focus,.btn-instagram:hover,.open>.dropdown-toggle.btn-instagram{color:#fff;background-color:#305777;border-color:rgba(0,0,0,.2)}.btn-instagram.active.focus,.btn-instagram.active:focus,.btn-instagram.active:hover,.btn-instagram:active.focus,.btn-instagram:active:focus,.btn-instagram:active:hover,.open>.dropdown-toggle.btn-instagram.focus,.open>.dropdown-toggle.btn-instagram:focus,.open>.dropdown-toggle.btn-instagram:hover{color:#fff;background-color:#26455d;border-color:rgba(0,0,0,.2)}.btn-instagram.active,.btn-instagram:active,.open>.dropdown-toggle.btn-instagram{background-image:none}.btn-instagram.disabled.focus,.btn-instagram.disabled:focus,.btn-instagram.disabled:hover,.btn-instagram[disabled].focus,.btn-instagram[disabled]:focus,.btn-instagram[disabled]:hover,fieldset[disabled] .btn-instagram.focus,fieldset[disabled] .btn-instagram:focus,fieldset[disabled] .btn-instagram:hover{background-color:#3f729b;border-color:rgba(0,0,0,.2)}.btn-instagram .badge{color:#3f729b;background-color:#fff}.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,.2)}.btn-linkedin.active,.btn-linkedin.focus,.btn-linkedin:active,.btn-linkedin:focus,.btn-linkedin:hover,.open>.dropdown-toggle.btn-linkedin{color:#fff;background-color:#005983;border-color:rgba(0,0,0,.2)}.btn-linkedin.active.focus,.btn-linkedin.active:focus,.btn-linkedin.active:hover,.btn-linkedin:active.focus,.btn-linkedin:active:focus,.btn-linkedin:active:hover,.open>.dropdown-toggle.btn-linkedin.focus,.open>.dropdown-toggle.btn-linkedin:focus,.open>.dropdown-toggle.btn-linkedin:hover{color:#fff;background-color:#00405f;border-color:rgba(0,0,0,.2)}.btn-linkedin.active,.btn-linkedin:active,.open>.dropdown-toggle.btn-linkedin{background-image:none}.btn-linkedin.disabled.focus,.btn-linkedin.disabled:focus,.btn-linkedin.disabled:hover,.btn-linkedin[disabled].focus,.btn-linkedin[disabled]:focus,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin.focus,fieldset[disabled] .btn-linkedin:focus,fieldset[disabled] .btn-linkedin:hover{background-color:#007bb6;border-color:rgba(0,0,0,.2)}.btn-linkedin .badge{color:#007bb6;background-color:#fff}.btn-microsoft{color:#fff;background-color:#2672ec;border-color:rgba(0,0,0,.2)}.btn-microsoft.active,.btn-microsoft.focus,.btn-microsoft:active,.btn-microsoft:focus,.btn-microsoft:hover,.open>.dropdown-toggle.btn-microsoft{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,.2)}.btn-microsoft.active.focus,.btn-microsoft.active:focus,.btn-microsoft.active:hover,.btn-microsoft:active.focus,.btn-microsoft:active:focus,.btn-microsoft:active:hover,.open>.dropdown-toggle.btn-microsoft.focus,.open>.dropdown-toggle.btn-microsoft:focus,.open>.dropdown-toggle.btn-microsoft:hover{color:#fff;background-color:#0f4bac;border-color:rgba(0,0,0,.2)}.btn-microsoft.active,.btn-microsoft:active,.open>.dropdown-toggle.btn-microsoft{background-image:none}.btn-microsoft.disabled.focus,.btn-microsoft.disabled:focus,.btn-microsoft.disabled:hover,.btn-microsoft[disabled].focus,.btn-microsoft[disabled]:focus,.btn-microsoft[disabled]:hover,fieldset[disabled] .btn-microsoft.focus,fieldset[disabled] .btn-microsoft:focus,fieldset[disabled] .btn-microsoft:hover{background-color:#2672ec;border-color:rgba(0,0,0,.2)}.btn-microsoft .badge{color:#2672ec;background-color:#fff}.btn-openid{color:#fff;background-color:#f7931e;border-color:rgba(0,0,0,.2)}.btn-openid.active,.btn-openid.focus,.btn-openid:active,.btn-openid:focus,.btn-openid:hover,.open>.dropdown-toggle.btn-openid{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,.2)}.btn-openid.active.focus,.btn-openid.active:focus,.btn-openid.active:hover,.btn-openid:active.focus,.btn-openid:active:focus,.btn-openid:active:hover,.open>.dropdown-toggle.btn-openid.focus,.open>.dropdown-toggle.btn-openid:focus,.open>.dropdown-toggle.btn-openid:hover{color:#fff;background-color:#b86607;border-color:rgba(0,0,0,.2)}.btn-openid.active,.btn-openid:active,.open>.dropdown-toggle.btn-openid{background-image:none}.btn-openid.disabled.focus,.btn-openid.disabled:focus,.btn-openid.disabled:hover,.btn-openid[disabled].focus,.btn-openid[disabled]:focus,.btn-openid[disabled]:hover,fieldset[disabled] .btn-openid.focus,fieldset[disabled] .btn-openid:focus,fieldset[disabled] .btn-openid:hover{background-color:#f7931e;border-color:rgba(0,0,0,.2)}.btn-openid .badge{color:#f7931e;background-color:#fff}.btn-pinterest{color:#fff;background-color:#cb2027;border-color:rgba(0,0,0,.2)}.btn-pinterest.active,.btn-pinterest.focus,.btn-pinterest:active,.btn-pinterest:focus,.btn-pinterest:hover,.open>.dropdown-toggle.btn-pinterest{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,.2)}.btn-pinterest.active.focus,.btn-pinterest.active:focus,.btn-pinterest.active:hover,.btn-pinterest:active.focus,.btn-pinterest:active:focus,.btn-pinterest:active:hover,.open>.dropdown-toggle.btn-pinterest.focus,.open>.dropdown-toggle.btn-pinterest:focus,.open>.dropdown-toggle.btn-pinterest:hover{color:#fff;background-color:#801419;border-color:rgba(0,0,0,.2)}.btn-pinterest.active,.btn-pinterest:active,.open>.dropdown-toggle.btn-pinterest{background-image:none}.btn-pinterest.disabled.focus,.btn-pinterest.disabled:focus,.btn-pinterest.disabled:hover,.btn-pinterest[disabled].focus,.btn-pinterest[disabled]:focus,.btn-pinterest[disabled]:hover,fieldset[disabled] .btn-pinterest.focus,fieldset[disabled] .btn-pinterest:focus,fieldset[disabled] .btn-pinterest:hover{background-color:#cb2027;border-color:rgba(0,0,0,.2)}.btn-pinterest .badge{color:#cb2027;background-color:#fff}.btn-reddit{color:#000;background-color:#eff7ff;border-color:rgba(0,0,0,.2)}.btn-reddit.active,.btn-reddit.focus,.btn-reddit:active,.btn-reddit:focus,.btn-reddit:hover,.open>.dropdown-toggle.btn-reddit{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,.2)}.btn-reddit.active.focus,.btn-reddit.active:focus,.btn-reddit.active:hover,.btn-reddit:active.focus,.btn-reddit:active:focus,.btn-reddit:active:hover,.open>.dropdown-toggle.btn-reddit.focus,.open>.dropdown-toggle.btn-reddit:focus,.open>.dropdown-toggle.btn-reddit:hover{color:#000;background-color:#98ccff;border-color:rgba(0,0,0,.2)}.btn-reddit.active,.btn-reddit:active,.open>.dropdown-toggle.btn-reddit{background-image:none}.btn-reddit.disabled.focus,.btn-reddit.disabled:focus,.btn-reddit.disabled:hover,.btn-reddit[disabled].focus,.btn-reddit[disabled]:focus,.btn-reddit[disabled]:hover,fieldset[disabled] .btn-reddit.focus,fieldset[disabled] .btn-reddit:focus,fieldset[disabled] .btn-reddit:hover{background-color:#eff7ff;border-color:rgba(0,0,0,.2)}.btn-reddit .badge{color:#eff7ff;background-color:#000}.btn-soundcloud{color:#fff;background-color:#f50;border-color:rgba(0,0,0,.2)}.btn-soundcloud.active,.btn-soundcloud.focus,.btn-soundcloud:active,.btn-soundcloud:focus,.btn-soundcloud:hover,.open>.dropdown-toggle.btn-soundcloud{color:#fff;background-color:#c40;border-color:rgba(0,0,0,.2)}.btn-soundcloud.active.focus,.btn-soundcloud.active:focus,.btn-soundcloud.active:hover,.btn-soundcloud:active.focus,.btn-soundcloud:active:focus,.btn-soundcloud:active:hover,.open>.dropdown-toggle.btn-soundcloud.focus,.open>.dropdown-toggle.btn-soundcloud:focus,.open>.dropdown-toggle.btn-soundcloud:hover{color:#fff;background-color:#a83800;border-color:rgba(0,0,0,.2)}.btn-soundcloud.active,.btn-soundcloud:active,.open>.dropdown-toggle.btn-soundcloud{background-image:none}.btn-soundcloud.disabled.focus,.btn-soundcloud.disabled:focus,.btn-soundcloud.disabled:hover,.btn-soundcloud[disabled].focus,.btn-soundcloud[disabled]:focus,.btn-soundcloud[disabled]:hover,fieldset[disabled] .btn-soundcloud.focus,fieldset[disabled] .btn-soundcloud:focus,fieldset[disabled] .btn-soundcloud:hover{background-color:#f50;border-color:rgba(0,0,0,.2)}.btn-soundcloud .badge{color:#f50;background-color:#fff}.btn-tumblr{color:#fff;background-color:#2c4762;border-color:rgba(0,0,0,.2)}.btn-tumblr.active,.btn-tumblr.focus,.btn-tumblr:active,.btn-tumblr:focus,.btn-tumblr:hover,.open>.dropdown-toggle.btn-tumblr{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,.2)}.btn-tumblr.active.focus,.btn-tumblr.active:focus,.btn-tumblr.active:hover,.btn-tumblr:active.focus,.btn-tumblr:active:focus,.btn-tumblr:active:hover,.open>.dropdown-toggle.btn-tumblr.focus,.open>.dropdown-toggle.btn-tumblr:focus,.open>.dropdown-toggle.btn-tumblr:hover{color:#fff;background-color:#111c26;border-color:rgba(0,0,0,.2)}.btn-tumblr.active,.btn-tumblr:active,.open>.dropdown-toggle.btn-tumblr{background-image:none}.btn-tumblr.disabled.focus,.btn-tumblr.disabled:focus,.btn-tumblr.disabled:hover,.btn-tumblr[disabled].focus,.btn-tumblr[disabled]:focus,.btn-tumblr[disabled]:hover,fieldset[disabled] .btn-tumblr.focus,fieldset[disabled] .btn-tumblr:focus,fieldset[disabled] .btn-tumblr:hover{background-color:#2c4762;border-color:rgba(0,0,0,.2)}.btn-tumblr .badge{color:#2c4762;background-color:#fff}.btn-twitter{color:#fff;background-color:#55acee;border-color:rgba(0,0,0,.2)}.btn-twitter.active,.btn-twitter.focus,.btn-twitter:active,.btn-twitter:focus,.btn-twitter:hover,.open>.dropdown-toggle.btn-twitter{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,.2)}.btn-twitter.active.focus,.btn-twitter.active:focus,.btn-twitter.active:hover,.btn-twitter:active.focus,.btn-twitter:active:focus,.btn-twitter:active:hover,.open>.dropdown-toggle.btn-twitter.focus,.open>.dropdown-toggle.btn-twitter:focus,.open>.dropdown-toggle.btn-twitter:hover{color:#fff;background-color:#1583d7;border-color:rgba(0,0,0,.2)}.btn-twitter.active,.btn-twitter:active,.open>.dropdown-toggle.btn-twitter{background-image:none}.btn-twitter.disabled.focus,.btn-twitter.disabled:focus,.btn-twitter.disabled:hover,.btn-twitter[disabled].focus,.btn-twitter[disabled]:focus,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter.focus,fieldset[disabled] .btn-twitter:focus,fieldset[disabled] .btn-twitter:hover{background-color:#55acee;border-color:rgba(0,0,0,.2)}.btn-twitter .badge{color:#55acee;background-color:#fff}.btn-vimeo{color:#fff;background-color:#1ab7ea;border-color:rgba(0,0,0,.2)}.btn-vimeo.active,.btn-vimeo.focus,.btn-vimeo:active,.btn-vimeo:focus,.btn-vimeo:hover,.open>.dropdown-toggle.btn-vimeo{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,.2)}.btn-vimeo.active.focus,.btn-vimeo.active:focus,.btn-vimeo.active:hover,.btn-vimeo:active.focus,.btn-vimeo:active:focus,.btn-vimeo:active:hover,.open>.dropdown-toggle.btn-vimeo.focus,.open>.dropdown-toggle.btn-vimeo:focus,.open>.dropdown-toggle.btn-vimeo:hover{color:#fff;background-color:#0f7b9f;border-color:rgba(0,0,0,.2)}.btn-vimeo.active,.btn-vimeo:active,.open>.dropdown-toggle.btn-vimeo{background-image:none}.btn-vimeo.disabled.focus,.btn-vimeo.disabled:focus,.btn-vimeo.disabled:hover,.btn-vimeo[disabled].focus,.btn-vimeo[disabled]:focus,.btn-vimeo[disabled]:hover,fieldset[disabled] .btn-vimeo.focus,fieldset[disabled] .btn-vimeo:focus,fieldset[disabled] .btn-vimeo:hover{background-color:#1ab7ea;border-color:rgba(0,0,0,.2)}.btn-vimeo .badge{color:#1ab7ea;background-color:#fff}.btn-vk{color:#fff;background-color:#587ea3;border-color:rgba(0,0,0,.2)}.btn-vk.active,.btn-vk.focus,.btn-vk:active,.btn-vk:focus,.btn-vk:hover,.open>.dropdown-toggle.btn-vk{color:#fff;background-color:#466482;border-color:rgba(0,0,0,.2)}.btn-vk.active.focus,.btn-vk.active:focus,.btn-vk.active:hover,.btn-vk:active.focus,.btn-vk:active:focus,.btn-vk:active:hover,.open>.dropdown-toggle.btn-vk.focus,.open>.dropdown-toggle.btn-vk:focus,.open>.dropdown-toggle.btn-vk:hover{color:#fff;background-color:#3a526b;border-color:rgba(0,0,0,.2)}.btn-vk.active,.btn-vk:active,.open>.dropdown-toggle.btn-vk{background-image:none}.btn-vk.disabled.focus,.btn-vk.disabled:focus,.btn-vk.disabled:hover,.btn-vk[disabled].focus,.btn-vk[disabled]:focus,.btn-vk[disabled]:hover,fieldset[disabled] .btn-vk.focus,fieldset[disabled] .btn-vk:focus,fieldset[disabled] .btn-vk:hover{background-color:#587ea3;border-color:rgba(0,0,0,.2)}.btn-vk .badge{color:#587ea3;background-color:#fff}.btn-yahoo{color:#fff;background-color:#720e9e;border-color:rgba(0,0,0,.2)}.btn-yahoo.active,.btn-yahoo.focus,.btn-yahoo:active,.btn-yahoo:focus,.btn-yahoo:hover,.open>.dropdown-toggle.btn-yahoo{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,.2)}.btn-yahoo.active.focus,.btn-yahoo.active:focus,.btn-yahoo.active:hover,.btn-yahoo:active.focus,.btn-yahoo:active:focus,.btn-yahoo:active:hover,.open>.dropdown-toggle.btn-yahoo.focus,.open>.dropdown-toggle.btn-yahoo:focus,.open>.dropdown-toggle.btn-yahoo:hover{color:#fff;background-color:#39074e;border-color:rgba(0,0,0,.2)}.btn-yahoo.active,.btn-yahoo:active,.open>.dropdown-toggle.btn-yahoo{background-image:none}.btn-yahoo.disabled.focus,.btn-yahoo.disabled:focus,.btn-yahoo.disabled:hover,.btn-yahoo[disabled].focus,.btn-yahoo[disabled]:focus,.btn-yahoo[disabled]:hover,fieldset[disabled] .btn-yahoo.focus,fieldset[disabled] .btn-yahoo:focus,fieldset[disabled] .btn-yahoo:hover{background-color:#720e9e;border-color:rgba(0,0,0,.2)}.btn-yahoo .badge{color:#720e9e;background-color:#fff}.fc-button{background:#f4f4f4;background-image:none;color:#444;border-color:#ddd}.fc-button.hover,.fc-button:active,.fc-button:hover{background-color:#e9e9e9}.fc-header-title h2{font-size:15px;line-height:1.6em;color:#666;margin-left:10px}.fc-header-right{padding-right:10px}.fc-header-left{padding-left:10px}.fc-widget-header{background:#fafafa}.fc-grid{width:100%;border:0}.fc-widget-content:first-of-type,.fc-widget-header:first-of-type{border-left:0;border-right:0}.fc-widget-content:last-of-type,.fc-widget-header:last-of-type{border-right:0}.fc-toolbar{padding:10px;margin:0}.fc-day-number{font-size:20px;font-weight:300;padding-right:10px}.fc-color-picker{list-style:none;margin:0;padding:0}.fc-color-picker>li{float:left;font-size:30px;margin-right:5px;line-height:30px}.fc-color-picker>li .fa{-webkit-transition:-webkit-transform .3s linear;-moz-transition:-moz-transform linear .3s;-o-transition:-o-transform linear .3s;transition:transform .3s linear}.fc-color-picker>li .fa:hover{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);-o-transform:rotate(30deg);transform:rotate(30deg)}#add-new-event{-webkit-transition:all .3s linear;-o-transition:all linear .3s;transition:all .3s linear}.external-event{padding:5px 10px;font-weight:700;margin-bottom:4px;box-shadow:0 1px 1px rgba(0,0,0,.1);text-shadow:0 1px 1px rgba(0,0,0,.1);border-radius:3px;cursor:move}.external-event:hover{box-shadow:inset 0 0 90px rgba(0,0,0,.2)}.select2-container--default.select2-container--focus,.select2-container--default:active,.select2-container--default:focus,.select2-selection.select2-container--focus,.select2-selection:active,.select2-selection:focus{outline:none}.select2-container--default .select2-selection--single,.select2-selection .select2-selection--single{border:1px solid #d2d6de;border-radius:0;padding:6px 12px;height:34px}.select2-container--default.select2-container--open{border-color:#3c8dbc}.select2-dropdown{border:1px solid #d2d6de;border-radius:0}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#3c8dbc;color:#fff}.select2-results__option{padding:6px 12px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{padding-left:0;padding-right:0;height:auto;margin-top:-4px}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:6px;padding-left:20px}.select2-container--default .select2-selection--single .select2-selection__arrow{height:28px;right:3px}.select2-container--default .select2-selection--single .select2-selection__arrow b{margin-top:0}.select2-dropdown .select2-search__field,.select2-search--inline .select2-search__field{border:1px solid #d2d6de}.select2-dropdown .select2-search__field:focus,.select2-search--inline .select2-search__field:focus{outline:none}.select2-container--default.select2-container--focus .select2-selection--multiple,.select2-container--default .select2-search--dropdown .select2-search__field{border-color:#3c8dbc!important}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[aria-selected=true]:hover{color:#444}.select2-container--default .select2-selection--multiple{border:1px solid #d2d6de;border-radius:0}.select2-container--default .select2-selection--multiple:focus{border-color:#3c8dbc}.select2-container--default.select2-container--focus .select2-selection--multiple{border-color:#d2d6de}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#3c8dbc;border-color:#367fa9;padding:1px 10px;color:#fff}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{margin-right:5px;color:hsla(0,0%,100%,.7)}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#fff}.select2-container .select2-selection--single .select2-selection__rendered{padding-right:10px}.box .datepicker-inline,.box .datepicker-inline .datepicker-days,.box .datepicker-inline .datepicker-days>table,.box .datepicker-inline>table{width:100%}.box .datepicker-inline .datepicker-days>table td:hover,.box .datepicker-inline .datepicker-days td:hover,.box .datepicker-inline>table td:hover,.box .datepicker-inline td:hover{background-color:hsla(0,0%,100%,.3)}.box .datepicker-inline .datepicker-days>table td.day.new,.box .datepicker-inline .datepicker-days>table td.day.old,.box .datepicker-inline .datepicker-days td.day.new,.box .datepicker-inline .datepicker-days td.day.old,.box .datepicker-inline>table td.day.new,.box .datepicker-inline>table td.day.old,.box .datepicker-inline td.day.new,.box .datepicker-inline td.day.old{color:#777}.pad{padding:10px}.margin{margin:10px}.margin-bottom{margin-bottom:20px}.margin-bottom-none{margin-bottom:0}.margin-r-5{margin-right:5px}.inline{display:inline}.description-block{display:block;margin:10px 0;text-align:center}.description-block.margin-bottom{margin-bottom:25px}.description-block>.description-header{margin:0;padding:0;font-weight:600;font-size:16px}.description-block>.description-text{text-transform:uppercase}.alert-danger,.alert-error,.alert-info,.alert-success,.alert-warning,.bg-aqua,.bg-aqua-active,.bg-black,.bg-black-active,.bg-blue,.bg-blue-active,.bg-fuchsia,.bg-fuchsia-active,.bg-green,.bg-green-active,.bg-light-blue,.bg-light-blue-active,.bg-lime,.bg-lime-active,.bg-maroon,.bg-maroon-active,.bg-navy,.bg-navy-active,.bg-olive,.bg-olive-active,.bg-orange,.bg-orange-active,.bg-purple,.bg-purple-active,.bg-red,.bg-red-active,.bg-teal,.bg-teal-active,.bg-yellow,.bg-yellow-active,.callout.callout-danger,.callout.callout-info,.callout.callout-success,.callout.callout-warning,.label-danger,.label-info,.label-primary,.label-success,.label-warning,.modal-danger .modal-body,.modal-danger .modal-footer,.modal-danger .modal-header,.modal-info .modal-body,.modal-info .modal-footer,.modal-info .modal-header,.modal-primary .modal-body,.modal-primary .modal-footer,.modal-primary .modal-header,.modal-success .modal-body,.modal-success .modal-footer,.modal-success .modal-header,.modal-warning .modal-body,.modal-warning .modal-footer,.modal-warning .modal-header{color:#fff!important}.bg-gray{color:#000;background-color:#d2d6de!important}.bg-gray-light{background-color:#f7f7f7}.bg-black{background-color:#111!important}.alert-danger,.alert-error,.bg-red,.callout.callout-danger,.label-danger,.modal-danger .modal-body{background-color:#dd4b39!important}.alert-warning,.bg-yellow,.callout.callout-warning,.label-warning,.modal-warning .modal-body{background-color:#f39c12!important}.alert-info,.bg-aqua,.callout.callout-info,.label-info,.modal-info .modal-body{background-color:#00c0ef!important}.bg-blue{background-color:#0073b7!important}.bg-light-blue,.label-primary,.modal-primary .modal-body{background-color:#3c8dbc!important}.alert-success,.bg-green,.callout.callout-success,.label-success,.modal-success .modal-body{background-color:#00a65a!important}.bg-navy{background-color:#001f3f!important}.bg-teal{background-color:#39cccc!important}.bg-olive{background-color:#3d9970!important}.bg-lime{background-color:#01ff70!important}.bg-orange{background-color:#ff851b!important}.bg-fuchsia{background-color:#f012be!important}.bg-purple{background-color:#605ca8!important}.bg-maroon{background-color:#d81b60!important}.bg-gray-active{color:#000;background-color:#b5bbc8!important}.bg-black-active{background-color:#000!important}.bg-red-active,.modal-danger .modal-footer,.modal-danger .modal-header{background-color:#d33724!important}.bg-yellow-active,.modal-warning .modal-footer,.modal-warning .modal-header{background-color:#db8b0b!important}.bg-aqua-active,.modal-info .modal-footer,.modal-info .modal-header{background-color:#00a7d0!important}.bg-blue-active{background-color:#005384!important}.bg-light-blue-active,.modal-primary .modal-footer,.modal-primary .modal-header{background-color:#357ca5!important}.bg-green-active,.modal-success .modal-footer,.modal-success .modal-header{background-color:#008d4c!important}.bg-navy-active{background-color:#001a35!important}.bg-teal-active{background-color:#30bbbb!important}.bg-olive-active{background-color:#368763!important}.bg-lime-active{background-color:#00e765!important}.bg-orange-active{background-color:#ff7701!important}.bg-fuchsia-active{background-color:#db0ead!important}.bg-purple-active{background-color:#555299!important}.bg-maroon-active{background-color:#ca195a!important}[class^=bg-].disabled{opacity:.65;filter:alpha(opacity=65)}.text-red{color:#dd4b39!important}.text-yellow{color:#f39c12!important}.text-aqua{color:#00c0ef!important}.text-blue{color:#0073b7!important}.text-black{color:#111!important}.text-light-blue{color:#3c8dbc!important}.text-green{color:#00a65a!important}.text-gray{color:#d2d6de!important}.text-navy{color:#001f3f!important}.text-teal{color:#39cccc!important}.text-olive{color:#3d9970!important}.text-lime{color:#01ff70!important}.text-orange{color:#ff851b!important}.text-fuchsia{color:#f012be!important}.text-purple{color:#605ca8!important}.text-maroon{color:#d81b60!important}.link-muted{color:#7a869d}.link-muted:focus,.link-muted:hover{color:#606c84}.link-black{color:#666}.link-black:focus,.link-black:hover{color:#999}.hide{display:none!important}.no-border{border:0!important}.no-padding{padding:0!important}.no-margin{margin:0!important}.no-shadow{box-shadow:none!important}.chart-legend,.contacts-list,.list-unstyled,.mailbox-attachments,.users-list{list-style:none;margin:0;padding:0}.list-group-unbordered>.list-group-item{border-left:0;border-right:0;border-radius:0;padding-left:0;padding-right:0}.flat{border-radius:0!important}.text-bold,.text-bold.table td,.text-bold.table th{font-weight:700}.text-sm{font-size:12px}.jqstooltip{padding:5px!important;width:auto!important;height:auto!important}.bg-teal-gradient{background:#39cccc!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#39cccc),color-stop(1,#7adddd))!important;background:-ms-linear-gradient(bottom,#39cccc,#7adddd)!important;background:-moz-linear-gradient(center bottom,#39cccc 0,#7adddd 100%)!important;background:-o-linear-gradient(#7adddd,#39cccc)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#7adddd\",endColorstr=\"#39CCCC\",GradientType=0)!important;color:#fff}.bg-light-blue-gradient{background:#3c8dbc!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#3c8dbc),color-stop(1,#67a8ce))!important;background:-ms-linear-gradient(bottom,#3c8dbc,#67a8ce)!important;background:-moz-linear-gradient(center bottom,#3c8dbc 0,#67a8ce 100%)!important;background:-o-linear-gradient(#67a8ce,#3c8dbc)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#67a8ce\",endColorstr=\"#3c8dbc\",GradientType=0)!important;color:#fff}.bg-blue-gradient{background:#0073b7!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#0073b7),color-stop(1,#0089db))!important;background:-ms-linear-gradient(bottom,#0073b7,#0089db)!important;background:-moz-linear-gradient(center bottom,#0073b7 0,#0089db 100%)!important;background:-o-linear-gradient(#0089db,#0073b7)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#0089db\",endColorstr=\"#0073b7\",GradientType=0)!important;color:#fff}.bg-aqua-gradient{background:#00c0ef!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#00c0ef),color-stop(1,#14d1ff))!important;background:-ms-linear-gradient(bottom,#00c0ef,#14d1ff)!important;background:-moz-linear-gradient(center bottom,#00c0ef 0,#14d1ff 100%)!important;background:-o-linear-gradient(#14d1ff,#00c0ef)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#14d1ff\",endColorstr=\"#00c0ef\",GradientType=0)!important;color:#fff}.bg-yellow-gradient{background:#f39c12!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#f39c12),color-stop(1,#f7bc60))!important;background:-ms-linear-gradient(bottom,#f39c12,#f7bc60)!important;background:-moz-linear-gradient(center bottom,#f39c12 0,#f7bc60 100%)!important;background:-o-linear-gradient(#f7bc60,#f39c12)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#f7bc60\",endColorstr=\"#f39c12\",GradientType=0)!important;color:#fff}.bg-purple-gradient{background:#605ca8!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#605ca8),color-stop(1,#9491c4))!important;background:-ms-linear-gradient(bottom,#605ca8,#9491c4)!important;background:-moz-linear-gradient(center bottom,#605ca8 0,#9491c4 100%)!important;background:-o-linear-gradient(#9491c4,#605ca8)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#9491c4\",endColorstr=\"#605ca8\",GradientType=0)!important;color:#fff}.bg-green-gradient{background:#00a65a!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#00a65a),color-stop(1,#00ca6d))!important;background:-ms-linear-gradient(bottom,#00a65a,#00ca6d)!important;background:-moz-linear-gradient(center bottom,#00a65a 0,#00ca6d 100%)!important;background:-o-linear-gradient(#00ca6d,#00a65a)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#00ca6d\",endColorstr=\"#00a65a\",GradientType=0)!important;color:#fff}.bg-red-gradient{background:#dd4b39!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dd4b39),color-stop(1,#e47365))!important;background:-ms-linear-gradient(bottom,#dd4b39,#e47365)!important;background:-moz-linear-gradient(center bottom,#dd4b39 0,#e47365 100%)!important;background:-o-linear-gradient(#e47365,#dd4b39)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#e47365\",endColorstr=\"#dd4b39\",GradientType=0)!important;color:#fff}.bg-black-gradient{background:#111!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#111),color-stop(1,#2b2b2b))!important;background:-ms-linear-gradient(bottom,#111,#2b2b2b)!important;background:-moz-linear-gradient(center bottom,#111 0,#2b2b2b 100%)!important;background:-o-linear-gradient(#2b2b2b,#111)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#2b2b2b\",endColorstr=\"#111\",GradientType=0)!important;color:#fff}.bg-maroon-gradient{background:#d81b60!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#d81b60),color-stop(1,#e73f7c))!important;background:-ms-linear-gradient(bottom,#d81b60,#e73f7c)!important;background:-moz-linear-gradient(center bottom,#d81b60 0,#e73f7c 100%)!important;background:-o-linear-gradient(#e73f7c,#d81b60)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#e73f7c\",endColorstr=\"#D81B60\",GradientType=0)!important;color:#fff}.description-block .description-icon{font-size:16px}.no-pad-top{padding-top:0}.position-static{position:static!important}.list-header{font-size:15px;padding:10px 4px;font-weight:700;color:#666}.list-seperator{height:1px;background:#f4f4f4;margin:15px 0 9px}.list-link>a{padding:4px;color:#777}.list-link>a:hover{color:#222}.font-light{font-weight:300}.user-block:after,.user-block:before{content:\" \";display:table}.user-block:after{clear:both}.user-block img{width:40px;height:40px;float:left}.user-block .comment,.user-block .description,.user-block .username{display:block;margin-left:50px}.user-block .username{font-size:16px;font-weight:600}.user-block .description{color:#999;font-size:13px}.user-block.user-block-sm .comment,.user-block.user-block-sm .description,.user-block.user-block-sm .username{margin-left:40px}.user-block.user-block-sm .username{font-size:14px}.box-comments .box-comment img,.img-lg,.img-md,.img-sm,.user-block.user-block-sm img{float:left}.box-comments .box-comment img,.img-sm,.user-block.user-block-sm img{width:30px!important;height:30px!important}.img-sm+.img-push{margin-left:40px}.img-md{width:60px;height:60px}.img-md+.img-push{margin-left:70px}.img-lg{width:100px;height:100px}.img-lg+.img-push{margin-left:110px}.img-bordered{border:3px solid #d2d6de;padding:3px}.img-bordered-sm{border:2px solid #d2d6de;padding:2px}.attachment-block{border:1px solid #f4f4f4;padding:5px;margin-bottom:10px;background:#f7f7f7}.attachment-block .attachment-img{max-width:100px;max-height:100px;height:auto;float:left}.attachment-block .attachment-pushed{margin-left:110px}.attachment-block .attachment-heading{margin:0}.attachment-block .attachment-text{color:#555}.connectedSortable{min-height:100px}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sort-highlight{background:#f4f4f4;border:1px dashed #ddd;margin-bottom:10px}.full-opacity-hover{opacity:.65;filter:alpha(opacity=65)}.full-opacity-hover:hover{opacity:1;filter:alpha(opacity=100)}.chart{position:relative;overflow:hidden;width:100%}.chart canvas,.chart svg{width:100%!important}hr{border-top:1px solid #555}#red .slider-selection{background:#f56954}#blue .slider-selection{background:#3c8dbc}#green .slider-selection{background:#00a65a}#yellow .slider-selection{background:#f39c12}#aqua .slider-selection{background:#00c0ef}#purple .slider-selection{background:#932ab6}@media print{.content-header,.left-side,.main-header,.main-sidebar,.no-print{display:none!important}.content-wrapper,.main-footer,.right-side{margin-left:0!important;min-height:0!important;-webkit-transform:translate(0)!important;-ms-transform:translate(0)!important;-o-transform:translate(0)!important;transform:translate(0)!important}.fixed .content-wrapper,.fixed .right-side{padding-top:0!important}.invoice{width:100%;border:0;margin:0;padding:0}.invoice-col{float:left;width:33.3333333%}.table-responsive{overflow:auto}.table-responsive>.table tr td,.table-responsive>.table tr th{white-space:normal!important}}.skin-blue .main-header .navbar{background-color:#3c8dbc}.skin-blue .main-header .navbar .nav>li>a{color:#fff}.skin-blue .main-header .navbar .nav .open>a,.skin-blue .main-header .navbar .nav .open>a:focus,.skin-blue .main-header .navbar .nav .open>a:hover,.skin-blue .main-header .navbar .nav>.active>a,.skin-blue .main-header .navbar .nav>li>a:active,.skin-blue .main-header .navbar .nav>li>a:focus,.skin-blue .main-header .navbar .nav>li>a:hover,.skin-blue .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-blue .main-header .navbar .sidebar-toggle{color:#fff}.skin-blue .main-header .navbar .sidebar-toggle:hover{background-color:#367fa9}@media (max-width:767px){.skin-blue .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-blue .main-header .navbar .dropdown-menu li a{color:#fff}.skin-blue .main-header .navbar .dropdown-menu li a:hover{background:#367fa9}}.skin-blue .main-header .logo{background-color:#367fa9;color:#fff;border-bottom:0 solid transparent}.skin-blue .main-header .logo:hover{background-color:#357ca5}.skin-blue .main-header li.user-header{background-color:#3c8dbc}.skin-blue .content-header{background:transparent}.skin-blue .left-side,.skin-blue .main-sidebar,.skin-blue .wrapper{background-color:#222d32}.skin-blue .user-panel>.info,.skin-blue .user-panel>.info>a{color:#fff}.skin-blue .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-blue .sidebar-menu>li>a{border-left:3px solid transparent}.skin-blue .sidebar-menu>li.active>a,.skin-blue .sidebar-menu>li.menu-open>a,.skin-blue .sidebar-menu>li:hover>a{color:#fff;background:#1e282c}.skin-blue .sidebar-menu>li.active>a{border-left-color:#3c8dbc}.skin-blue .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-blue .sidebar a{color:#b8c7ce}.skin-blue .sidebar a:hover{text-decoration:none}.skin-blue .sidebar-menu .treeview-menu>li>a{color:#8aa4af}.skin-blue .sidebar-menu .treeview-menu>li.active>a,.skin-blue .sidebar-menu .treeview-menu>li>a:hover{color:#fff}.skin-blue .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-blue .sidebar-form .btn,.skin-blue .sidebar-form input[type=text]{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px}.skin-blue .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-blue .sidebar-form input[type=text]:focus,.skin-blue .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-blue .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-blue .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-blue-light .main-header .navbar{background-color:#3c8dbc}.skin-blue-light .main-header .navbar .nav>li>a{color:#fff}.skin-blue-light .main-header .navbar .nav .open>a,.skin-blue-light .main-header .navbar .nav .open>a:focus,.skin-blue-light .main-header .navbar .nav .open>a:hover,.skin-blue-light .main-header .navbar .nav>.active>a,.skin-blue-light .main-header .navbar .nav>li>a:active,.skin-blue-light .main-header .navbar .nav>li>a:focus,.skin-blue-light .main-header .navbar .nav>li>a:hover,.skin-blue-light .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-blue-light .main-header .navbar .sidebar-toggle{color:#fff}.skin-blue-light .main-header .navbar .sidebar-toggle:hover{background-color:#367fa9}@media (max-width:767px){.skin-blue-light .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-blue-light .main-header .navbar .dropdown-menu li a{color:#fff}.skin-blue-light .main-header .navbar .dropdown-menu li a:hover{background:#367fa9}}.skin-blue-light .main-header .logo{background-color:#3c8dbc;color:#fff;border-bottom:0 solid transparent}.skin-blue-light .main-header .logo:hover{background-color:#3b8ab8}.skin-blue-light .main-header li.user-header{background-color:#3c8dbc}.skin-blue-light .content-header{background:transparent}.skin-blue-light .left-side,.skin-blue-light .main-sidebar,.skin-blue-light .wrapper{background-color:#f9fafc}.skin-blue-light .main-sidebar{border-right:1px solid #d2d6de}.skin-blue-light .user-panel>.info,.skin-blue-light .user-panel>.info>a{color:#444}.skin-blue-light .sidebar-menu>li{-webkit-transition:border-left-color .3s ease;-o-transition:border-left-color .3s ease;transition:border-left-color .3s ease}.skin-blue-light .sidebar-menu>li.header{color:#848484;background:#f9fafc}.skin-blue-light .sidebar-menu>li>a{border-left:3px solid transparent;font-weight:600}.skin-blue-light .sidebar-menu>li.active>a,.skin-blue-light .sidebar-menu>li:hover>a{color:#000;background:#f4f4f5}.skin-blue-light .sidebar-menu>li.active{border-left-color:#3c8dbc}.skin-blue-light .sidebar-menu>li.active>a{font-weight:600}.skin-blue-light .sidebar-menu>li>.treeview-menu{background:#f4f4f5}.skin-blue-light .sidebar a{color:#444}.skin-blue-light .sidebar a:hover{text-decoration:none}.skin-blue-light .sidebar-menu .treeview-menu>li>a{color:#777}.skin-blue-light .sidebar-menu .treeview-menu>li.active>a,.skin-blue-light .sidebar-menu .treeview-menu>li>a:hover{color:#000}.skin-blue-light .sidebar-menu .treeview-menu>li.active>a{font-weight:600}.skin-blue-light .sidebar-form{border-radius:3px;border:1px solid #d2d6de;margin:10px}.skin-blue-light .sidebar-form .btn,.skin-blue-light .sidebar-form input[type=text]{box-shadow:none;background-color:#fff;border:1px solid transparent;height:35px}.skin-blue-light .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-blue-light .sidebar-form input[type=text]:focus,.skin-blue-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-blue-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-blue-light .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}@media (min-width:768px){.skin-blue-light.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{border-left:1px solid #d2d6de}}.skin-blue-light .main-footer{border-top-color:#d2d6de}.skin-blue.layout-top-nav .main-header>.logo{background-color:#3c8dbc;color:#fff;border-bottom:0 solid transparent}.skin-blue.layout-top-nav .main-header>.logo:hover{background-color:#3b8ab8}.skin-black .main-header{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.skin-black .main-header .navbar-toggle{color:#333}.skin-black .main-header .navbar-brand{color:#333;border-right:1px solid #eee}.skin-black .main-header .navbar{background-color:#fff}.skin-black .main-header .navbar .nav>li>a{color:#333}.skin-black .main-header .navbar .nav .open>a,.skin-black .main-header .navbar .nav .open>a:focus,.skin-black .main-header .navbar .nav .open>a:hover,.skin-black .main-header .navbar .nav>.active>a,.skin-black .main-header .navbar .nav>li>a:active,.skin-black .main-header .navbar .nav>li>a:focus,.skin-black .main-header .navbar .nav>li>a:hover{background:#fff;color:#999}.skin-black .main-header .navbar .sidebar-toggle{color:#333}.skin-black .main-header .navbar .sidebar-toggle:hover{color:#999;background:#fff}.skin-black .main-header .navbar>.sidebar-toggle{color:#333;border-right:1px solid #eee}.skin-black .main-header .navbar .navbar-nav>li>a{border-right:1px solid #eee}.skin-black .main-header .navbar .navbar-custom-menu .navbar-nav>li>a,.skin-black .main-header .navbar .navbar-right>li>a{border-left:1px solid #eee;border-right-width:0}.skin-black .main-header .logo{background-color:#fff;color:#333;border-bottom:0 solid transparent;border-right:1px solid #eee}.skin-black .main-header .logo:hover{background-color:#fcfcfc}@media (max-width:767px){.skin-black .main-header .logo{background-color:#222;color:#fff;border-bottom:0 solid transparent;border-right:none}.skin-black .main-header .logo:hover{background-color:#1f1f1f}}.skin-black .main-header li.user-header{background-color:#222}.skin-black .content-header{background:transparent;box-shadow:none}.skin-black .left-side,.skin-black .main-sidebar,.skin-black .wrapper{background-color:#222d32}.skin-black .user-panel>.info,.skin-black .user-panel>.info>a{color:#fff}.skin-black .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-black .sidebar-menu>li>a{border-left:3px solid transparent}.skin-black .sidebar-menu>li.active>a,.skin-black .sidebar-menu>li.menu-open>a,.skin-black .sidebar-menu>li:hover>a{color:#fff;background:#1e282c}.skin-black .sidebar-menu>li.active>a{border-left-color:#fff}.skin-black .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-black .sidebar a{color:#b8c7ce}.skin-black .sidebar a:hover{text-decoration:none}.skin-black .sidebar-menu .treeview-menu>li>a{color:#8aa4af}.skin-black .sidebar-menu .treeview-menu>li.active>a,.skin-black .sidebar-menu .treeview-menu>li>a:hover{color:#fff}.skin-black .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-black .sidebar-form .btn,.skin-black .sidebar-form input[type=text]{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px}.skin-black .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-black .sidebar-form input[type=text]:focus,.skin-black .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-black .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-black .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-black .pace .pace-progress{background:#222}.skin-black .pace .pace-activity{border-top-color:#222;border-left-color:#222}.skin-black-light .main-header{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.skin-black-light .main-header .navbar-toggle{color:#333}.skin-black-light .main-header .navbar-brand{color:#333;border-right:1px solid #d2d6de}.skin-black-light .main-header .navbar{background-color:#fff}.skin-black-light .main-header .navbar .nav>li>a{color:#333}.skin-black-light .main-header .navbar .nav .open>a,.skin-black-light .main-header .navbar .nav .open>a:focus,.skin-black-light .main-header .navbar .nav .open>a:hover,.skin-black-light .main-header .navbar .nav>.active>a,.skin-black-light .main-header .navbar .nav>li>a:active,.skin-black-light .main-header .navbar .nav>li>a:focus,.skin-black-light .main-header .navbar .nav>li>a:hover{background:#fff;color:#999}.skin-black-light .main-header .navbar .sidebar-toggle{color:#333}.skin-black-light .main-header .navbar .sidebar-toggle:hover{color:#999;background:#fff}.skin-black-light .main-header .navbar>.sidebar-toggle{color:#333;border-right:1px solid #d2d6de}.skin-black-light .main-header .navbar .navbar-nav>li>a{border-right:1px solid #d2d6de}.skin-black-light .main-header .navbar .navbar-custom-menu .navbar-nav>li>a,.skin-black-light .main-header .navbar .navbar-right>li>a{border-left:1px solid #d2d6de;border-right-width:0}.skin-black-light .main-header .logo{background-color:#fff;color:#333;border-bottom:0 solid transparent;border-right:1px solid #d2d6de}.skin-black-light .main-header .logo:hover{background-color:#fcfcfc}@media (max-width:767px){.skin-black-light .main-header .logo{background-color:#222;color:#fff;border-bottom:0 solid transparent;border-right:none}.skin-black-light .main-header .logo:hover{background-color:#1f1f1f}}.skin-black-light .main-header li.user-header{background-color:#222}.skin-black-light .content-header{background:transparent;box-shadow:none}.skin-black-light .left-side,.skin-black-light .main-sidebar,.skin-black-light .wrapper{background-color:#f9fafc}.skin-black-light .main-sidebar{border-right:1px solid #d2d6de}.skin-black-light .user-panel>.info,.skin-black-light .user-panel>.info>a{color:#444}.skin-black-light .sidebar-menu>li{-webkit-transition:border-left-color .3s ease;-o-transition:border-left-color .3s ease;transition:border-left-color .3s ease}.skin-black-light .sidebar-menu>li.header{color:#848484;background:#f9fafc}.skin-black-light .sidebar-menu>li>a{border-left:3px solid transparent;font-weight:600}.skin-black-light .sidebar-menu>li.active>a,.skin-black-light .sidebar-menu>li:hover>a{color:#000;background:#f4f4f5}.skin-black-light .sidebar-menu>li.active{border-left-color:#fff}.skin-black-light .sidebar-menu>li.active>a{font-weight:600}.skin-black-light .sidebar-menu>li>.treeview-menu{background:#f4f4f5}.skin-black-light .sidebar a{color:#444}.skin-black-light .sidebar a:hover{text-decoration:none}.skin-black-light .sidebar-menu .treeview-menu>li>a{color:#777}.skin-black-light .sidebar-menu .treeview-menu>li.active>a,.skin-black-light .sidebar-menu .treeview-menu>li>a:hover{color:#000}.skin-black-light .sidebar-menu .treeview-menu>li.active>a{font-weight:600}.skin-black-light .sidebar-form{border-radius:3px;border:1px solid #d2d6de;margin:10px}.skin-black-light .sidebar-form .btn,.skin-black-light .sidebar-form input[type=text]{box-shadow:none;background-color:#fff;border:1px solid transparent;height:35px}.skin-black-light .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-black-light .sidebar-form input[type=text]:focus,.skin-black-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-black-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-black-light .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}@media (min-width:768px){.skin-black-light.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{border-left:1px solid #d2d6de}}.skin-green .main-header .navbar{background-color:#00a65a}.skin-green .main-header .navbar .nav>li>a{color:#fff}.skin-green .main-header .navbar .nav .open>a,.skin-green .main-header .navbar .nav .open>a:focus,.skin-green .main-header .navbar .nav .open>a:hover,.skin-green .main-header .navbar .nav>.active>a,.skin-green .main-header .navbar .nav>li>a:active,.skin-green .main-header .navbar .nav>li>a:focus,.skin-green .main-header .navbar .nav>li>a:hover,.skin-green .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-green .main-header .navbar .sidebar-toggle{color:#fff}.skin-green .main-header .navbar .sidebar-toggle:hover{background-color:#008d4c}@media (max-width:767px){.skin-green .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-green .main-header .navbar .dropdown-menu li a{color:#fff}.skin-green .main-header .navbar .dropdown-menu li a:hover{background:#008d4c}}.skin-green .main-header .logo{background-color:#008d4c;color:#fff;border-bottom:0 solid transparent}.skin-green .main-header .logo:hover{background-color:#008749}.skin-green .main-header li.user-header{background-color:#00a65a}.skin-green .content-header{background:transparent}.skin-green .left-side,.skin-green .main-sidebar,.skin-green .wrapper{background-color:#222d32}.skin-green .user-panel>.info,.skin-green .user-panel>.info>a{color:#fff}.skin-green .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-green .sidebar-menu>li>a{border-left:3px solid transparent}.skin-green .sidebar-menu>li.active>a,.skin-green .sidebar-menu>li.menu-open>a,.skin-green .sidebar-menu>li:hover>a{color:#fff;background:#1e282c}.skin-green .sidebar-menu>li.active>a{border-left-color:#00a65a}.skin-green .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-green .sidebar a{color:#b8c7ce}.skin-green .sidebar a:hover{text-decoration:none}.skin-green .sidebar-menu .treeview-menu>li>a{color:#8aa4af}.skin-green .sidebar-menu .treeview-menu>li.active>a,.skin-green .sidebar-menu .treeview-menu>li>a:hover{color:#fff}.skin-green .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-green .sidebar-form .btn,.skin-green .sidebar-form input[type=text]{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px}.skin-green .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-green .sidebar-form input[type=text]:focus,.skin-green .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-green .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-green .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-green-light .main-header .navbar{background-color:#00a65a}.skin-green-light .main-header .navbar .nav>li>a{color:#fff}.skin-green-light .main-header .navbar .nav .open>a,.skin-green-light .main-header .navbar .nav .open>a:focus,.skin-green-light .main-header .navbar .nav .open>a:hover,.skin-green-light .main-header .navbar .nav>.active>a,.skin-green-light .main-header .navbar .nav>li>a:active,.skin-green-light .main-header .navbar .nav>li>a:focus,.skin-green-light .main-header .navbar .nav>li>a:hover,.skin-green-light .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-green-light .main-header .navbar .sidebar-toggle{color:#fff}.skin-green-light .main-header .navbar .sidebar-toggle:hover{background-color:#008d4c}@media (max-width:767px){.skin-green-light .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-green-light .main-header .navbar .dropdown-menu li a{color:#fff}.skin-green-light .main-header .navbar .dropdown-menu li a:hover{background:#008d4c}}.skin-green-light .main-header .logo{background-color:#00a65a;color:#fff;border-bottom:0 solid transparent}.skin-green-light .main-header .logo:hover{background-color:#00a157}.skin-green-light .main-header li.user-header{background-color:#00a65a}.skin-green-light .content-header{background:transparent}.skin-green-light .left-side,.skin-green-light .main-sidebar,.skin-green-light .wrapper{background-color:#f9fafc}.skin-green-light .main-sidebar{border-right:1px solid #d2d6de}.skin-green-light .user-panel>.info,.skin-green-light .user-panel>.info>a{color:#444}.skin-green-light .sidebar-menu>li{-webkit-transition:border-left-color .3s ease;-o-transition:border-left-color .3s ease;transition:border-left-color .3s ease}.skin-green-light .sidebar-menu>li.header{color:#848484;background:#f9fafc}.skin-green-light .sidebar-menu>li>a{border-left:3px solid transparent;font-weight:600}.skin-green-light .sidebar-menu>li.active>a,.skin-green-light .sidebar-menu>li:hover>a{color:#000;background:#f4f4f5}.skin-green-light .sidebar-menu>li.active{border-left-color:#00a65a}.skin-green-light .sidebar-menu>li.active>a{font-weight:600}.skin-green-light .sidebar-menu>li>.treeview-menu{background:#f4f4f5}.skin-green-light .sidebar a{color:#444}.skin-green-light .sidebar a:hover{text-decoration:none}.skin-green-light .sidebar-menu .treeview-menu>li>a{color:#777}.skin-green-light .sidebar-menu .treeview-menu>li.active>a,.skin-green-light .sidebar-menu .treeview-menu>li>a:hover{color:#000}.skin-green-light .sidebar-menu .treeview-menu>li.active>a{font-weight:600}.skin-green-light .sidebar-form{border-radius:3px;border:1px solid #d2d6de;margin:10px}.skin-green-light .sidebar-form .btn,.skin-green-light .sidebar-form input[type=text]{box-shadow:none;background-color:#fff;border:1px solid transparent;height:35px}.skin-green-light .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-green-light .sidebar-form input[type=text]:focus,.skin-green-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-green-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-green-light .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}@media (min-width:768px){.skin-green-light.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{border-left:1px solid #d2d6de}}.skin-red .main-header .navbar{background-color:#dd4b39}.skin-red .main-header .navbar .nav>li>a{color:#fff}.skin-red .main-header .navbar .nav .open>a,.skin-red .main-header .navbar .nav .open>a:focus,.skin-red .main-header .navbar .nav .open>a:hover,.skin-red .main-header .navbar .nav>.active>a,.skin-red .main-header .navbar .nav>li>a:active,.skin-red .main-header .navbar .nav>li>a:focus,.skin-red .main-header .navbar .nav>li>a:hover,.skin-red .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-red .main-header .navbar .sidebar-toggle{color:#fff}.skin-red .main-header .navbar .sidebar-toggle:hover{background-color:#d73925}@media (max-width:767px){.skin-red .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-red .main-header .navbar .dropdown-menu li a{color:#fff}.skin-red .main-header .navbar .dropdown-menu li a:hover{background:#d73925}}.skin-red .main-header .logo{background-color:#d73925;color:#fff;border-bottom:0 solid transparent}.skin-red .main-header .logo:hover{background-color:#d33724}.skin-red .main-header li.user-header{background-color:#dd4b39}.skin-red .content-header{background:transparent}.skin-red .left-side,.skin-red .main-sidebar,.skin-red .wrapper{background-color:#222d32}.skin-red .user-panel>.info,.skin-red .user-panel>.info>a{color:#fff}.skin-red .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-red .sidebar-menu>li>a{border-left:3px solid transparent}.skin-red .sidebar-menu>li.active>a,.skin-red .sidebar-menu>li.menu-open>a,.skin-red .sidebar-menu>li:hover>a{color:#fff;background:#1e282c}.skin-red .sidebar-menu>li.active>a{border-left-color:#dd4b39}.skin-red .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-red .sidebar a{color:#b8c7ce}.skin-red .sidebar a:hover{text-decoration:none}.skin-red .sidebar-menu .treeview-menu>li>a{color:#8aa4af}.skin-red .sidebar-menu .treeview-menu>li.active>a,.skin-red .sidebar-menu .treeview-menu>li>a:hover{color:#fff}.skin-red .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-red .sidebar-form .btn,.skin-red .sidebar-form input[type=text]{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px}.skin-red .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-red .sidebar-form input[type=text]:focus,.skin-red .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-red .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-red .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-red-light .main-header .navbar{background-color:#dd4b39}.skin-red-light .main-header .navbar .nav>li>a{color:#fff}.skin-red-light .main-header .navbar .nav .open>a,.skin-red-light .main-header .navbar .nav .open>a:focus,.skin-red-light .main-header .navbar .nav .open>a:hover,.skin-red-light .main-header .navbar .nav>.active>a,.skin-red-light .main-header .navbar .nav>li>a:active,.skin-red-light .main-header .navbar .nav>li>a:focus,.skin-red-light .main-header .navbar .nav>li>a:hover,.skin-red-light .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-red-light .main-header .navbar .sidebar-toggle{color:#fff}.skin-red-light .main-header .navbar .sidebar-toggle:hover{background-color:#d73925}@media (max-width:767px){.skin-red-light .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-red-light .main-header .navbar .dropdown-menu li a{color:#fff}.skin-red-light .main-header .navbar .dropdown-menu li a:hover{background:#d73925}}.skin-red-light .main-header .logo{background-color:#dd4b39;color:#fff;border-bottom:0 solid transparent}.skin-red-light .main-header .logo:hover{background-color:#dc4735}.skin-red-light .main-header li.user-header{background-color:#dd4b39}.skin-red-light .content-header{background:transparent}.skin-red-light .left-side,.skin-red-light .main-sidebar,.skin-red-light .wrapper{background-color:#f9fafc}.skin-red-light .main-sidebar{border-right:1px solid #d2d6de}.skin-red-light .user-panel>.info,.skin-red-light .user-panel>.info>a{color:#444}.skin-red-light .sidebar-menu>li{-webkit-transition:border-left-color .3s ease;-o-transition:border-left-color .3s ease;transition:border-left-color .3s ease}.skin-red-light .sidebar-menu>li.header{color:#848484;background:#f9fafc}.skin-red-light .sidebar-menu>li>a{border-left:3px solid transparent;font-weight:600}.skin-red-light .sidebar-menu>li.active>a,.skin-red-light .sidebar-menu>li:hover>a{color:#000;background:#f4f4f5}.skin-red-light .sidebar-menu>li.active{border-left-color:#dd4b39}.skin-red-light .sidebar-menu>li.active>a{font-weight:600}.skin-red-light .sidebar-menu>li>.treeview-menu{background:#f4f4f5}.skin-red-light .sidebar a{color:#444}.skin-red-light .sidebar a:hover{text-decoration:none}.skin-red-light .sidebar-menu .treeview-menu>li>a{color:#777}.skin-red-light .sidebar-menu .treeview-menu>li.active>a,.skin-red-light .sidebar-menu .treeview-menu>li>a:hover{color:#000}.skin-red-light .sidebar-menu .treeview-menu>li.active>a{font-weight:600}.skin-red-light .sidebar-form{border-radius:3px;border:1px solid #d2d6de;margin:10px}.skin-red-light .sidebar-form .btn,.skin-red-light .sidebar-form input[type=text]{box-shadow:none;background-color:#fff;border:1px solid transparent;height:35px}.skin-red-light .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-red-light .sidebar-form input[type=text]:focus,.skin-red-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-red-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-red-light .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}@media (min-width:768px){.skin-red-light.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{border-left:1px solid #d2d6de}}.skin-yellow .main-header .navbar{background-color:#f39c12}.skin-yellow .main-header .navbar .nav>li>a{color:#fff}.skin-yellow .main-header .navbar .nav .open>a,.skin-yellow .main-header .navbar .nav .open>a:focus,.skin-yellow .main-header .navbar .nav .open>a:hover,.skin-yellow .main-header .navbar .nav>.active>a,.skin-yellow .main-header .navbar .nav>li>a:active,.skin-yellow .main-header .navbar .nav>li>a:focus,.skin-yellow .main-header .navbar .nav>li>a:hover,.skin-yellow .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-yellow .main-header .navbar .sidebar-toggle{color:#fff}.skin-yellow .main-header .navbar .sidebar-toggle:hover{background-color:#e08e0b}@media (max-width:767px){.skin-yellow .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-yellow .main-header .navbar .dropdown-menu li a{color:#fff}.skin-yellow .main-header .navbar .dropdown-menu li a:hover{background:#e08e0b}}.skin-yellow .main-header .logo{background-color:#e08e0b;color:#fff;border-bottom:0 solid transparent}.skin-yellow .main-header .logo:hover{background-color:#db8b0b}.skin-yellow .main-header li.user-header{background-color:#f39c12}.skin-yellow .content-header{background:transparent}.skin-yellow .left-side,.skin-yellow .main-sidebar,.skin-yellow .wrapper{background-color:#222d32}.skin-yellow .user-panel>.info,.skin-yellow .user-panel>.info>a{color:#fff}.skin-yellow .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-yellow .sidebar-menu>li>a{border-left:3px solid transparent}.skin-yellow .sidebar-menu>li.active>a,.skin-yellow .sidebar-menu>li.menu-open>a,.skin-yellow .sidebar-menu>li:hover>a{color:#fff;background:#1e282c}.skin-yellow .sidebar-menu>li.active>a{border-left-color:#f39c12}.skin-yellow .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-yellow .sidebar a{color:#b8c7ce}.skin-yellow .sidebar a:hover{text-decoration:none}.skin-yellow .sidebar-menu .treeview-menu>li>a{color:#8aa4af}.skin-yellow .sidebar-menu .treeview-menu>li.active>a,.skin-yellow .sidebar-menu .treeview-menu>li>a:hover{color:#fff}.skin-yellow .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-yellow .sidebar-form .btn,.skin-yellow .sidebar-form input[type=text]{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px}.skin-yellow .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-yellow .sidebar-form input[type=text]:focus,.skin-yellow .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-yellow .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-yellow .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-yellow-light .main-header .navbar{background-color:#f39c12}.skin-yellow-light .main-header .navbar .nav>li>a{color:#fff}.skin-yellow-light .main-header .navbar .nav .open>a,.skin-yellow-light .main-header .navbar .nav .open>a:focus,.skin-yellow-light .main-header .navbar .nav .open>a:hover,.skin-yellow-light .main-header .navbar .nav>.active>a,.skin-yellow-light .main-header .navbar .nav>li>a:active,.skin-yellow-light .main-header .navbar .nav>li>a:focus,.skin-yellow-light .main-header .navbar .nav>li>a:hover,.skin-yellow-light .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-yellow-light .main-header .navbar .sidebar-toggle{color:#fff}.skin-yellow-light .main-header .navbar .sidebar-toggle:hover{background-color:#e08e0b}@media (max-width:767px){.skin-yellow-light .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-yellow-light .main-header .navbar .dropdown-menu li a{color:#fff}.skin-yellow-light .main-header .navbar .dropdown-menu li a:hover{background:#e08e0b}}.skin-yellow-light .main-header .logo{background-color:#f39c12;color:#fff;border-bottom:0 solid transparent}.skin-yellow-light .main-header .logo:hover{background-color:#f39a0d}.skin-yellow-light .main-header li.user-header{background-color:#f39c12}.skin-yellow-light .content-header{background:transparent}.skin-yellow-light .left-side,.skin-yellow-light .main-sidebar,.skin-yellow-light .wrapper{background-color:#f9fafc}.skin-yellow-light .main-sidebar{border-right:1px solid #d2d6de}.skin-yellow-light .user-panel>.info,.skin-yellow-light .user-panel>.info>a{color:#444}.skin-yellow-light .sidebar-menu>li{-webkit-transition:border-left-color .3s ease;-o-transition:border-left-color .3s ease;transition:border-left-color .3s ease}.skin-yellow-light .sidebar-menu>li.header{color:#848484;background:#f9fafc}.skin-yellow-light .sidebar-menu>li>a{border-left:3px solid transparent;font-weight:600}.skin-yellow-light .sidebar-menu>li.active>a,.skin-yellow-light .sidebar-menu>li:hover>a{color:#000;background:#f4f4f5}.skin-yellow-light .sidebar-menu>li.active{border-left-color:#f39c12}.skin-yellow-light .sidebar-menu>li.active>a{font-weight:600}.skin-yellow-light .sidebar-menu>li>.treeview-menu{background:#f4f4f5}.skin-yellow-light .sidebar a{color:#444}.skin-yellow-light .sidebar a:hover{text-decoration:none}.skin-yellow-light .sidebar-menu .treeview-menu>li>a{color:#777}.skin-yellow-light .sidebar-menu .treeview-menu>li.active>a,.skin-yellow-light .sidebar-menu .treeview-menu>li>a:hover{color:#000}.skin-yellow-light .sidebar-menu .treeview-menu>li.active>a{font-weight:600}.skin-yellow-light .sidebar-form{border-radius:3px;border:1px solid #d2d6de;margin:10px}.skin-yellow-light .sidebar-form .btn,.skin-yellow-light .sidebar-form input[type=text]{box-shadow:none;background-color:#fff;border:1px solid transparent;height:35px}.skin-yellow-light .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-yellow-light .sidebar-form input[type=text]:focus,.skin-yellow-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-yellow-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-yellow-light .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}@media (min-width:768px){.skin-yellow-light.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{border-left:1px solid #d2d6de}}.skin-purple .main-header .navbar{background-color:#605ca8}.skin-purple .main-header .navbar .nav>li>a{color:#fff}.skin-purple .main-header .navbar .nav .open>a,.skin-purple .main-header .navbar .nav .open>a:focus,.skin-purple .main-header .navbar .nav .open>a:hover,.skin-purple .main-header .navbar .nav>.active>a,.skin-purple .main-header .navbar .nav>li>a:active,.skin-purple .main-header .navbar .nav>li>a:focus,.skin-purple .main-header .navbar .nav>li>a:hover,.skin-purple .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-purple .main-header .navbar .sidebar-toggle{color:#fff}.skin-purple .main-header .navbar .sidebar-toggle:hover{background-color:#555299}@media (max-width:767px){.skin-purple .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-purple .main-header .navbar .dropdown-menu li a{color:#fff}.skin-purple .main-header .navbar .dropdown-menu li a:hover{background:#555299}}.skin-purple .main-header .logo{background-color:#555299;color:#fff;border-bottom:0 solid transparent}.skin-purple .main-header .logo:hover{background-color:#545096}.skin-purple .main-header li.user-header{background-color:#605ca8}.skin-purple .content-header{background:transparent}.skin-purple .left-side,.skin-purple .main-sidebar,.skin-purple .wrapper{background-color:#222d32}.skin-purple .user-panel>.info,.skin-purple .user-panel>.info>a{color:#fff}.skin-purple .sidebar-menu>li.header{color:#4b646f;background:#1a2226}.skin-purple .sidebar-menu>li>a{border-left:3px solid transparent}.skin-purple .sidebar-menu>li.active>a,.skin-purple .sidebar-menu>li.menu-open>a,.skin-purple .sidebar-menu>li:hover>a{color:#fff;background:#1e282c}.skin-purple .sidebar-menu>li.active>a{border-left-color:#605ca8}.skin-purple .sidebar-menu>li>.treeview-menu{margin:0 1px;background:#2c3b41}.skin-purple .sidebar a{color:#b8c7ce}.skin-purple .sidebar a:hover{text-decoration:none}.skin-purple .sidebar-menu .treeview-menu>li>a{color:#8aa4af}.skin-purple .sidebar-menu .treeview-menu>li.active>a,.skin-purple .sidebar-menu .treeview-menu>li>a:hover{color:#fff}.skin-purple .sidebar-form{border-radius:3px;border:1px solid #374850;margin:10px}.skin-purple .sidebar-form .btn,.skin-purple .sidebar-form input[type=text]{box-shadow:none;background-color:#374850;border:1px solid transparent;height:35px}.skin-purple .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-purple .sidebar-form input[type=text]:focus,.skin-purple .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-purple .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-purple .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}.skin-purple-light .main-header .navbar{background-color:#605ca8}.skin-purple-light .main-header .navbar .nav>li>a{color:#fff}.skin-purple-light .main-header .navbar .nav .open>a,.skin-purple-light .main-header .navbar .nav .open>a:focus,.skin-purple-light .main-header .navbar .nav .open>a:hover,.skin-purple-light .main-header .navbar .nav>.active>a,.skin-purple-light .main-header .navbar .nav>li>a:active,.skin-purple-light .main-header .navbar .nav>li>a:focus,.skin-purple-light .main-header .navbar .nav>li>a:hover,.skin-purple-light .main-header .navbar .sidebar-toggle:hover{background:rgba(0,0,0,.1);color:#f6f6f6}.skin-purple-light .main-header .navbar .sidebar-toggle{color:#fff}.skin-purple-light .main-header .navbar .sidebar-toggle:hover{background-color:#555299}@media (max-width:767px){.skin-purple-light .main-header .navbar .dropdown-menu li.divider{background-color:hsla(0,0%,100%,.1)}.skin-purple-light .main-header .navbar .dropdown-menu li a{color:#fff}.skin-purple-light .main-header .navbar .dropdown-menu li a:hover{background:#555299}}.skin-purple-light .main-header .logo{background-color:#605ca8;color:#fff;border-bottom:0 solid transparent}.skin-purple-light .main-header .logo:hover{background-color:#5d59a6}.skin-purple-light .main-header li.user-header{background-color:#605ca8}.skin-purple-light .content-header{background:transparent}.skin-purple-light .left-side,.skin-purple-light .main-sidebar,.skin-purple-light .wrapper{background-color:#f9fafc}.skin-purple-light .main-sidebar{border-right:1px solid #d2d6de}.skin-purple-light .user-panel>.info,.skin-purple-light .user-panel>.info>a{color:#444}.skin-purple-light .sidebar-menu>li{-webkit-transition:border-left-color .3s ease;-o-transition:border-left-color .3s ease;transition:border-left-color .3s ease}.skin-purple-light .sidebar-menu>li.header{color:#848484;background:#f9fafc}.skin-purple-light .sidebar-menu>li>a{border-left:3px solid transparent;font-weight:600}.skin-purple-light .sidebar-menu>li.active>a,.skin-purple-light .sidebar-menu>li:hover>a{color:#000;background:#f4f4f5}.skin-purple-light .sidebar-menu>li.active{border-left-color:#605ca8}.skin-purple-light .sidebar-menu>li.active>a{font-weight:600}.skin-purple-light .sidebar-menu>li>.treeview-menu{background:#f4f4f5}.skin-purple-light .sidebar a{color:#444}.skin-purple-light .sidebar a:hover{text-decoration:none}.skin-purple-light .sidebar-menu .treeview-menu>li>a{color:#777}.skin-purple-light .sidebar-menu .treeview-menu>li.active>a,.skin-purple-light .sidebar-menu .treeview-menu>li>a:hover{color:#000}.skin-purple-light .sidebar-menu .treeview-menu>li.active>a{font-weight:600}.skin-purple-light .sidebar-form{border-radius:3px;border:1px solid #d2d6de;margin:10px}.skin-purple-light .sidebar-form .btn,.skin-purple-light .sidebar-form input[type=text]{box-shadow:none;background-color:#fff;border:1px solid transparent;height:35px}.skin-purple-light .sidebar-form input[type=text]{color:#666;border-top-left-radius:2px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:2px}.skin-purple-light .sidebar-form input[type=text]:focus,.skin-purple-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{background-color:#fff;color:#666}.skin-purple-light .sidebar-form input[type=text]:focus+.input-group-btn .btn{border-left-color:#fff}.skin-purple-light .sidebar-form .btn{color:#999;border-top-left-radius:0;border-top-right-radius:2px;border-bottom-right-radius:2px;border-bottom-left-radius:0}@media (min-width:768px){.skin-purple-light.sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu{border-left:1px solid #d2d6de}}.sidebar-menu .treeview-menu>li>a>.fab,.sidebar-menu .treeview-menu>li>a>.fal,.sidebar-menu .treeview-menu>li>a>.far,.sidebar-menu .treeview-menu>li>a>.fas,.sidebar-menu>li>a>.fab,.sidebar-menu>li>a>.fal,.sidebar-menu>li>a>.far,.sidebar-menu>li>a>.fas{width:20px}.main-header .sidebar-toggle{font-family:Font Awesome\\ 5 Free;font-weight:900}.login-page form label{padding-left:5px}.control-label.required:after{content:\" *\";font-size:110%}.timeline>li>.fab,.timeline>li>.fal,.timeline>li>.far,.timeline>li>.fas{width:30px;height:30px;font-size:15px;line-height:30px;position:absolute;color:#666;background:#d2d6de;border-radius:50%;text-align:center;left:18px;top:0}@media (min-width:768px){body.login-page .login-logo{padding-top:45px;margin-bottom:55px}}body.login-page .login-box-body{padding:20px;box-shadow:0 29px 147.5px 102.5px rgba(0,0,0,.05),0 29px 95px 0 rgba(0,0,0,.16)}body.login-page label{font-weight:400}body.login-page button.btn.btn-flat,body.login-page input[type=password],body.login-page input[type=text]{border-radius:3px}.icheckbox_square-blue,.iradio_square-blue{display:inline-block;*display:inline;vertical-align:middle;margin:0;padding:0;width:22px;height:22px;background:url(/bundles/adminlte/images/blue.png?47dfe954) no-repeat;border:none;cursor:pointer}.icheckbox_square-blue{background-position:0 0}.icheckbox_square-blue.hover{background-position:-24px 0}.icheckbox_square-blue.checked{background-position:-48px 0}.icheckbox_square-blue.disabled{background-position:-72px 0;cursor:default}.icheckbox_square-blue.checked.disabled{background-position:-96px 0}.iradio_square-blue{background-position:-120px 0}.iradio_square-blue.hover{background-position:-144px 0}.iradio_square-blue.checked{background-position:-168px 0}.iradio_square-blue.disabled{background-position:-192px 0;cursor:default}.iradio_square-blue.checked.disabled{background-position:-216px 0}@media (-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.icheckbox_square-blue,.iradio_square-blue{background-image:url(/bundles/adminlte/images/blue@2x.png?eb5592d0);-webkit-background-size:240px 24px;background-size:240px 24px}}"
  },
  {
    "path": "Resources/public/adminlte.js",
    "content": "/*! For license information please see adminlte.js.LICENSE.txt */\n(()=>{var e={9261:(e,t,n)=>{\"use strict\";e.exports=n.p+\"images/default_avatar.png?0f50fed9\"},3752:(e,t,n)=>{var i=n(9755);if(void 0===i)throw new Error(\"AdminLTE requires jQuery\");!function(e){\"use strict\";function t(t,n){if(this.element=t,this.options=n,this.$overlay=e(n.overlayTemplate),\"\"===n.source)throw new Error(\"Source url was not defined. Please specify a url in your BoxRefresh source option.\");this._setUpListeners(),this.load()}var n=\"lte.boxrefresh\",i={source:\"\",params:{},trigger:\".refresh-btn\",content:\".box-body\",loadInContent:!0,responseType:\"\",overlayTemplate:'<div class=\"overlay\"><div class=\"fa fa-refresh fa-spin\"></div></div>',onLoadStart:function(){},onLoadDone:function(e){return e}};function s(s){return this.each((function(){var a=e(this),r=a.data(n);if(!r){var o=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,r=new t(a,o))}if(\"string\"==typeof r){if(void 0===r[s])throw new Error(\"No method named \"+s);r[s]()}}))}t.prototype.load=function(){this._addOverlay(),this.options.onLoadStart.call(e(this)),e.get(this.options.source,this.options.params,function(t){this.options.loadInContent&&e(this.element).find(this.options.content).html(t),this.options.onLoadDone.call(e(this),t),this._removeOverlay()}.bind(this),\"\"!==this.options.responseType&&this.options.responseType)},t.prototype._setUpListeners=function(){e(this.element).on(\"click\",this.options.trigger,function(e){e&&e.preventDefault(),this.load()}.bind(this))},t.prototype._addOverlay=function(){e(this.element).append(this.$overlay)},t.prototype._removeOverlay=function(){e(this.$overlay).remove()};var a=e.fn.boxRefresh;e.fn.boxRefresh=s,e.fn.boxRefresh.Constructor=t,e.fn.boxRefresh.noConflict=function(){return e.fn.boxRefresh=a,this},e(window).on(\"load\",(function(){e('[data-widget=\"box-refresh\"]').each((function(){s.call(e(this))}))}))}(i),function(e){\"use strict\";function t(e,t){this.element=e,this.options=t,this._setUpListeners()}var n=\"lte.boxwidget\",i={animationSpeed:500,collapseTrigger:'[data-widget=\"collapse\"]',removeTrigger:'[data-widget=\"remove\"]',collapseIcon:\"fa-minus\",expandIcon:\"fa-plus\",removeIcon:\"fa-times\"},s=\".box-header\",a=\".box-body\",r=\".box-footer\",o=\".box-tools\",d=\"collapsed-box\";function l(s){return this.each((function(){var a=e(this),r=a.data(n);if(!r){var o=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,r=new t(a,o))}if(\"string\"==typeof s){if(void 0===r[s])throw new Error(\"No method named \"+s);r[s]()}}))}t.prototype.toggle=function(){e(this.element).is(\".collapsed-box\")?this.expand():this.collapse()},t.prototype.expand=function(){var t=e.Event(\"expanded.boxwidget\"),n=e.Event(\"expanding.boxwidget\"),i=this.options.collapseIcon,l=this.options.expandIcon;e(this.element).removeClass(d),e(this.element).children(s+\", \"+a+\", \"+r).children(o).find(\".\"+l).removeClass(l).addClass(i),e(this.element).children(a+\", \"+r).slideDown(this.options.animationSpeed,function(){e(this.element).trigger(t)}.bind(this)).trigger(n)},t.prototype.collapse=function(){var t=e.Event(\"collapsed.boxwidget\"),n=e.Event(\"collapsing.boxwidget\"),i=this.options.collapseIcon,l=this.options.expandIcon;e(this.element).children(s+\", \"+a+\", \"+r).children(o).find(\".\"+i).removeClass(i).addClass(l),e(this.element).children(a+\", \"+r).slideUp(this.options.animationSpeed,function(){e(this.element).addClass(d),e(this.element).trigger(t)}.bind(this)).trigger(n)},t.prototype.remove=function(){var t=e.Event(\"removed.boxwidget\"),n=e.Event(\"removing.boxwidget\");e(this.element).slideUp(this.options.animationSpeed,function(){e(this.element).trigger(t),e(this.element).remove()}.bind(this)).trigger(n)},t.prototype._setUpListeners=function(){var t=this;e(this.element).on(\"click\",this.options.collapseTrigger,(function(n){return n&&n.preventDefault(),t.toggle(e(this)),!1})),e(this.element).on(\"click\",this.options.removeTrigger,(function(n){return n&&n.preventDefault(),t.remove(e(this)),!1}))};var u=e.fn.boxWidget;e.fn.boxWidget=l,e.fn.boxWidget.Constructor=t,e.fn.boxWidget.noConflict=function(){return e.fn.boxWidget=u,this},e(window).on(\"load\",(function(){e(\".box\").each((function(){l.call(e(this))}))}))}(i),function(e){\"use strict\";function t(e,t){this.element=e,this.options=t,this.hasBindedResize=!1,this.init()}var n=\"lte.controlsidebar\",i={controlsidebarSlide:!0},s=\".control-sidebar\",a='[data-toggle=\"control-sidebar\"]',r=\".control-sidebar-open\",o=\"control-sidebar-open\",d=\"control-sidebar-hold-transition\";function l(s){return this.each((function(){var a=e(this),r=a.data(n);if(!r){var o=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,r=new t(a,o))}\"string\"==typeof s&&r.toggle()}))}t.prototype.init=function(){e(this.element).is(a)||e(this).on(\"click\",this.toggle),this.fix(),e(window).resize(function(){this.fix()}.bind(this))},t.prototype.toggle=function(t){t&&t.preventDefault(),this.fix(),e(s).is(r)||e(\"body\").is(r)?this.collapse():this.expand()},t.prototype.expand=function(){e(s).show(),this.options.controlsidebarSlide?e(s).addClass(o):e(\"body\").addClass(d).addClass(o).delay(50).queue((function(){e(\"body\").removeClass(d),e(this).dequeue()})),e(this.element).trigger(e.Event(\"expanded.controlsidebar\"))},t.prototype.collapse=function(){this.options.controlsidebarSlide?e(s).removeClass(o):e(\"body\").addClass(d).removeClass(o).delay(50).queue((function(){e(\"body\").removeClass(d),e(this).dequeue()})),e(s).fadeOut(),e(this.element).trigger(e.Event(\"collapsed.controlsidebar\"))},t.prototype.fix=function(){e(\"body\").is(\".layout-boxed\")&&this._fixForBoxed(e(\".control-sidebar-bg\"))},t.prototype._fixForBoxed=function(t){t.css({position:\"absolute\",height:e(\".wrapper\").height()})};var u=e.fn.controlSidebar;e.fn.controlSidebar=l,e.fn.controlSidebar.Constructor=t,e.fn.controlSidebar.noConflict=function(){return e.fn.controlSidebar=u,this},e(document).on(\"click\",a,(function(t){t&&t.preventDefault(),l.call(e(this),\"toggle\")}))}(i),function(e){\"use strict\";function t(e){this.element=e}var n=\"lte.directchat\";function i(i){return this.each((function(){var s=e(this),a=s.data(n);a||s.data(n,a=new t(s)),\"string\"==typeof i&&a.toggle(s)}))}t.prototype.toggle=function(e){e.parents(\".direct-chat\").first().toggleClass(\"direct-chat-contacts-open\")};var s=e.fn.directChat;e.fn.directChat=i,e.fn.directChat.Constructor=t,e.fn.directChat.noConflict=function(){return e.fn.directChat=s,this},e(document).on(\"click\",'[data-widget=\"chat-pane-toggle\"]',(function(t){t&&t.preventDefault(),i.call(e(this),\"toggle\")}))}(i),function(e){\"use strict\";function t(e){this.options=e,this.init()}var n=\"lte.pushmenu\",i={collapseScreenSize:767,expandOnHover:!1,expandTransitionDelay:200},s='[data-toggle=\"push-menu\"]',a=\".sidebar-mini\",r=\"sidebar-collapse\",o=\"sidebar-open\",d=\"sidebar-expanded-on-hover\",l=\"expanded.pushMenu\",u=\"collapsed.pushMenu\";function c(s){return this.each((function(){var a=e(this),r=a.data(n);if(!r){var o=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,r=new t(o))}\"toggle\"===s&&r.toggle()}))}t.prototype.init=function(){(this.options.expandOnHover||e(\"body\").is(a+\".fixed\"))&&(this.expandOnHover(),e(\"body\").addClass(\"sidebar-mini-expand-feature\")),e(\".content-wrapper\").click(function(){e(window).width()<=this.options.collapseScreenSize&&e(\"body\").hasClass(o)&&this.close()}.bind(this)),e(\".sidebar-form .form-control\").click((function(e){e.stopPropagation()}))},t.prototype.toggle=function(){var t=e(window).width(),n=!e(\"body\").hasClass(r);t<=this.options.collapseScreenSize&&(n=e(\"body\").hasClass(o)),n?this.close():this.open()},t.prototype.open=function(){e(window).width()>this.options.collapseScreenSize?e(\"body\").removeClass(r).trigger(e.Event(l)):e(\"body\").addClass(o).trigger(e.Event(l))},t.prototype.close=function(){e(window).width()>this.options.collapseScreenSize?e(\"body\").addClass(r).trigger(e.Event(u)):e(\"body\").removeClass(o+\" \"+r).trigger(e.Event(u))},t.prototype.expandOnHover=function(){e(\".main-sidebar\").hover(function(){e(\"body\").is(a+\".sidebar-collapse\")&&e(window).width()>this.options.collapseScreenSize&&this.expand()}.bind(this),function(){e(\"body\").is(\".sidebar-expanded-on-hover\")&&this.collapse()}.bind(this))},t.prototype.expand=function(){setTimeout((function(){e(\"body\").removeClass(r).addClass(d)}),this.options.expandTransitionDelay)},t.prototype.collapse=function(){setTimeout((function(){e(\"body\").removeClass(d).addClass(r)}),this.options.expandTransitionDelay)};var h=e.fn.pushMenu;e.fn.pushMenu=c,e.fn.pushMenu.Constructor=t,e.fn.pushMenu.noConflict=function(){return e.fn.pushMenu=h,this},e(document).on(\"click\",s,(function(t){t.preventDefault(),c.call(e(this),\"toggle\")})),e(window).on(\"load\",(function(){c.call(e(s))}))}(i),function(e){\"use strict\";function t(e,t){this.element=e,this.options=t,this._setUpListeners()}var n=\"lte.todolist\",i={onCheck:function(e){return e},onUnCheck:function(e){return e}},s={data:'[data-widget=\"todo-list\"]'};function a(s){return this.each((function(){var a=e(this),r=a.data(n);if(!r){var o=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,r=new t(a,o))}if(\"string\"==typeof r){if(void 0===r[s])throw new Error(\"No method named \"+s);r[s]()}}))}t.prototype.toggle=function(e){e.parents(s.li).first().toggleClass(\"done\"),e.prop(\"checked\")?this.check(e):this.unCheck(e)},t.prototype.check=function(e){this.options.onCheck.call(e)},t.prototype.unCheck=function(e){this.options.onUnCheck.call(e)},t.prototype._setUpListeners=function(){var t=this;e(this.element).on(\"change ifChanged\",\"input:checkbox\",(function(){t.toggle(e(this))}))};var r=e.fn.todoList;e.fn.todoList=a,e.fn.todoList.Constructor=t,e.fn.todoList.noConflict=function(){return e.fn.todoList=r,this},e(window).on(\"load\",(function(){e(s.data).each((function(){a.call(e(this))}))}))}(i),function(e){\"use strict\";function t(t,n){this.element=t,this.options=n,e(this.element).addClass(d),e(s+r,this.element).addClass(o),this._setUpListeners()}var n=\"lte.tree\",i={animationSpeed:500,accordion:!0,followLink:!1,trigger:\".treeview a\"},s=\".treeview\",a=\".treeview-menu\",r=\".active\",o=\"menu-open\",d=\"tree\";function l(s){return this.each((function(){var a=e(this);if(!a.data(n)){var r=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,new t(a,r))}}))}t.prototype.toggle=function(e,t){var n=e.next(a),i=e.parent(),r=i.hasClass(o);i.is(s)&&(this.options.followLink&&\"#\"!==e.attr(\"href\")||t.preventDefault(),r?this.collapse(n,i):this.expand(n,i))},t.prototype.expand=function(t,n){var i=e.Event(\"expanded.tree\");if(this.options.accordion){var s=n.siblings(\".menu-open, .active\"),r=s.children(a);this.collapse(r,s)}n.addClass(o),t.stop().slideDown(this.options.animationSpeed,function(){e(this.element).trigger(i),n.height(\"auto\")}.bind(this))},t.prototype.collapse=function(t,n){var i=e.Event(\"collapsed.tree\");n.removeClass(o),t.stop().slideUp(this.options.animationSpeed,function(){e(this.element).trigger(i),n.find(s).removeClass(o).find(a).hide()}.bind(this))},t.prototype._setUpListeners=function(){var t=this;e(this.element).on(\"click\",this.options.trigger,(function(n){t.toggle(e(this),n)}))};var u=e.fn.tree;e.fn.tree=l,e.fn.tree.Constructor=t,e.fn.tree.noConflict=function(){return e.fn.tree=u,this},e(window).on(\"load\",(function(){e('[data-widget=\"tree\"]').each((function(){l.call(e(this))}))}))}(i),function(e){\"use strict\";function t(e){this.options=e,this.bindedResize=!1,this.activate()}var n=\"lte.layout\",i={slimscroll:!0,resetHeight:!0},s=\".wrapper\",a=\".content-wrapper\",r=\".main-header\",o=\".sidebar\",d=\".sidebar-menu\",l=\"fixed\";function u(s){return this.each((function(){var a=e(this),r=a.data(n);if(!r){var o=e.extend({},i,a.data(),\"object\"==typeof s&&s);a.data(n,r=new t(o))}if(\"string\"==typeof s){if(void 0===r[s])throw new Error(\"No method named \"+s);r[s]()}}))}t.prototype.activate=function(){this.fix(),this.fixSidebar(),e(\"body\").removeClass(\"hold-transition\"),this.options.resetHeight&&e(\"body, html, \"+s).css({height:\"auto\",\"min-height\":\"100%\"}),this.bindedResize||(e(window).resize(function(){this.fix(),this.fixSidebar(),e(\".main-header .logo, \"+o).one(\"webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend\",function(){this.fix(),this.fixSidebar()}.bind(this))}.bind(this)),this.bindedResize=!0),e(d).on(\"expanded.tree\",function(){this.fix(),this.fixSidebar()}.bind(this)),e(d).on(\"collapsed.tree\",function(){this.fix(),this.fixSidebar()}.bind(this))},t.prototype.fix=function(){e(\".layout-boxed > \"+s).css(\"overflow\",\"hidden\");var t=e(\".main-footer\").outerHeight()||0,n=e(r).outerHeight()||0,i=n+t,d=e(window).height(),u=e(o).outerHeight()||0;if(e(\"body\").hasClass(l))e(a).css(\"min-height\",d-t);else{var c;c=u+n<=d?(e(a).css(\"min-height\",d-i),d-i):(e(a).css(\"min-height\",u),u);var h=e(\".control-sidebar\");void 0!==h&&h.height()>c&&e(a).css(\"min-height\",h.height())}},t.prototype.fixSidebar=function(){e(\"body\").hasClass(l)?this.options.slimscroll&&void 0!==e.fn.slimScroll&&0===e(\".main-sidebar\").find(\"slimScrollDiv\").length&&e(o).slimScroll({height:e(window).height()-e(r).height()+\"px\"}):void 0!==e.fn.slimScroll&&e(o).slimScroll({destroy:!0}).height(\"auto\")};var c=e.fn.layout;e.fn.layout=u,e.fn.layout.Constuctor=t,e.fn.layout.noConflict=function(){return e.fn.layout=c,this},e(window).on(\"load\",(function(){u.call(e(\"body\"))}))}(i)},3002:(e,t,n)=>{var i=n(9755);if(void 0===i)throw new Error(\"Bootstrap's JavaScript requires jQuery\");!function(e){\"use strict\";var t=e.fn.jquery.split(\" \")[0].split(\".\");if(t[0]<2&&t[1]<9||1==t[0]&&9==t[1]&&t[2]<1||t[0]>3)throw new Error(\"Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4\")}(i),function(e){\"use strict\";e.fn.emulateTransitionEnd=function(t){var n=!1,i=this;e(this).one(\"bsTransitionEnd\",(function(){n=!0}));return setTimeout((function(){n||e(i).trigger(e.support.transition.end)}),t),this},e((function(){e.support.transition=function(){var e=document.createElement(\"bootstrap\"),t={WebkitTransition:\"webkitTransitionEnd\",MozTransition:\"transitionend\",OTransition:\"oTransitionEnd otransitionend\",transition:\"transitionend\"};for(var n in t)if(void 0!==e.style[n])return{end:t[n]};return!1}(),e.support.transition&&(e.event.special.bsTransitionEnd={bindType:e.support.transition.end,delegateType:e.support.transition.end,handle:function(t){if(e(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})}))}(i),function(e){\"use strict\";var t='[data-dismiss=\"alert\"]',n=function(n){e(n).on(\"click\",t,this.close)};n.VERSION=\"3.4.1\",n.TRANSITION_DURATION=150,n.prototype.close=function(t){var i=e(this),s=i.attr(\"data-target\");s||(s=(s=i.attr(\"href\"))&&s.replace(/.*(?=#[^\\s]*$)/,\"\")),s=\"#\"===s?[]:s;var a=e(document).find(s);function r(){a.detach().trigger(\"closed.bs.alert\").remove()}t&&t.preventDefault(),a.length||(a=i.closest(\".alert\")),a.trigger(t=e.Event(\"close.bs.alert\")),t.isDefaultPrevented()||(a.removeClass(\"in\"),e.support.transition&&a.hasClass(\"fade\")?a.one(\"bsTransitionEnd\",r).emulateTransitionEnd(n.TRANSITION_DURATION):r())};var i=e.fn.alert;e.fn.alert=function(t){return this.each((function(){var i=e(this),s=i.data(\"bs.alert\");s||i.data(\"bs.alert\",s=new n(this)),\"string\"==typeof t&&s[t].call(i)}))},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=i,this},e(document).on(\"click.bs.alert.data-api\",t,n.prototype.close)}(i),function(e){\"use strict\";var t=function(n,i){this.$element=e(n),this.options=e.extend({},t.DEFAULTS,i),this.isLoading=!1};function n(n){return this.each((function(){var i=e(this),s=i.data(\"bs.button\"),a=\"object\"==typeof n&&n;s||i.data(\"bs.button\",s=new t(this,a)),\"toggle\"==n?s.toggle():n&&s.setState(n)}))}t.VERSION=\"3.4.1\",t.DEFAULTS={loadingText:\"loading...\"},t.prototype.setState=function(t){var n=\"disabled\",i=this.$element,s=i.is(\"input\")?\"val\":\"html\",a=i.data();t+=\"Text\",null==a.resetText&&i.data(\"resetText\",i[s]()),setTimeout(e.proxy((function(){i[s](null==a[t]?this.options[t]:a[t]),\"loadingText\"==t?(this.isLoading=!0,i.addClass(n).attr(n,n).prop(n,!0)):this.isLoading&&(this.isLoading=!1,i.removeClass(n).removeAttr(n).prop(n,!1))}),this),0)},t.prototype.toggle=function(){var e=!0,t=this.$element.closest('[data-toggle=\"buttons\"]');if(t.length){var n=this.$element.find(\"input\");\"radio\"==n.prop(\"type\")?(n.prop(\"checked\")&&(e=!1),t.find(\".active\").removeClass(\"active\"),this.$element.addClass(\"active\")):\"checkbox\"==n.prop(\"type\")&&(n.prop(\"checked\")!==this.$element.hasClass(\"active\")&&(e=!1),this.$element.toggleClass(\"active\")),n.prop(\"checked\",this.$element.hasClass(\"active\")),e&&n.trigger(\"change\")}else this.$element.attr(\"aria-pressed\",!this.$element.hasClass(\"active\")),this.$element.toggleClass(\"active\")};var i=e.fn.button;e.fn.button=n,e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=i,this},e(document).on(\"click.bs.button.data-api\",'[data-toggle^=\"button\"]',(function(t){var i=e(t.target).closest(\".btn\");n.call(i,\"toggle\"),e(t.target).is('input[type=\"radio\"], input[type=\"checkbox\"]')||(t.preventDefault(),i.is(\"input,button\")?i.trigger(\"focus\"):i.find(\"input:visible,button:visible\").first().trigger(\"focus\"))})).on(\"focus.bs.button.data-api blur.bs.button.data-api\",'[data-toggle^=\"button\"]',(function(t){e(t.target).closest(\".btn\").toggleClass(\"focus\",/^focus(in)?$/.test(t.type))}))}(i),function(e){\"use strict\";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(\".carousel-indicators\"),this.options=n,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on(\"keydown.bs.carousel\",e.proxy(this.keydown,this)),\"hover\"==this.options.pause&&!(\"ontouchstart\"in document.documentElement)&&this.$element.on(\"mouseenter.bs.carousel\",e.proxy(this.pause,this)).on(\"mouseleave.bs.carousel\",e.proxy(this.cycle,this))};function n(n){return this.each((function(){var i=e(this),s=i.data(\"bs.carousel\"),a=e.extend({},t.DEFAULTS,i.data(),\"object\"==typeof n&&n),r=\"string\"==typeof n?n:a.slide;s||i.data(\"bs.carousel\",s=new t(this,a)),\"number\"==typeof n?s.to(n):r?s[r]():a.interval&&s.pause().cycle()}))}t.VERSION=\"3.4.1\",t.TRANSITION_DURATION=600,t.DEFAULTS={interval:5e3,pause:\"hover\",wrap:!0,keyboard:!0},t.prototype.keydown=function(e){if(!/input|textarea/i.test(e.target.tagName)){switch(e.which){case 37:this.prev();break;case 39:this.next();break;default:return}e.preventDefault()}},t.prototype.cycle=function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},t.prototype.getItemIndex=function(e){return this.$items=e.parent().children(\".item\"),this.$items.index(e||this.$active)},t.prototype.getItemForDirection=function(e,t){var n=this.getItemIndex(t);if((\"prev\"==e&&0===n||\"next\"==e&&n==this.$items.length-1)&&!this.options.wrap)return t;var i=(n+(\"prev\"==e?-1:1))%this.$items.length;return this.$items.eq(i)},t.prototype.to=function(e){var t=this,n=this.getItemIndex(this.$active=this.$element.find(\".item.active\"));if(!(e>this.$items.length-1||e<0))return this.sliding?this.$element.one(\"slid.bs.carousel\",(function(){t.to(e)})):n==e?this.pause().cycle():this.slide(e>n?\"next\":\"prev\",this.$items.eq(e))},t.prototype.pause=function(t){return t||(this.paused=!0),this.$element.find(\".next, .prev\").length&&e.support.transition&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},t.prototype.next=function(){if(!this.sliding)return this.slide(\"next\")},t.prototype.prev=function(){if(!this.sliding)return this.slide(\"prev\")},t.prototype.slide=function(n,i){var s=this.$element.find(\".item.active\"),a=i||this.getItemForDirection(n,s),r=this.interval,o=\"next\"==n?\"left\":\"right\",d=this;if(a.hasClass(\"active\"))return this.sliding=!1;var l=a[0],u=e.Event(\"slide.bs.carousel\",{relatedTarget:l,direction:o});if(this.$element.trigger(u),!u.isDefaultPrevented()){if(this.sliding=!0,r&&this.pause(),this.$indicators.length){this.$indicators.find(\".active\").removeClass(\"active\");var c=e(this.$indicators.children()[this.getItemIndex(a)]);c&&c.addClass(\"active\")}var h=e.Event(\"slid.bs.carousel\",{relatedTarget:l,direction:o});return e.support.transition&&this.$element.hasClass(\"slide\")?(a.addClass(n),\"object\"==typeof a&&a.length&&a[0].offsetWidth,s.addClass(o),a.addClass(o),s.one(\"bsTransitionEnd\",(function(){a.removeClass([n,o].join(\" \")).addClass(\"active\"),s.removeClass([\"active\",o].join(\" \")),d.sliding=!1,setTimeout((function(){d.$element.trigger(h)}),0)})).emulateTransitionEnd(t.TRANSITION_DURATION)):(s.removeClass(\"active\"),a.addClass(\"active\"),this.sliding=!1,this.$element.trigger(h)),r&&this.cycle(),this}};var i=e.fn.carousel;e.fn.carousel=n,e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=i,this};var s=function(t){var i=e(this),s=i.attr(\"href\");s&&(s=s.replace(/.*(?=#[^\\s]+$)/,\"\"));var a=i.attr(\"data-target\")||s,r=e(document).find(a);if(r.hasClass(\"carousel\")){var o=e.extend({},r.data(),i.data()),d=i.attr(\"data-slide-to\");d&&(o.interval=!1),n.call(r,o),d&&r.data(\"bs.carousel\").to(d),t.preventDefault()}};e(document).on(\"click.bs.carousel.data-api\",\"[data-slide]\",s).on(\"click.bs.carousel.data-api\",\"[data-slide-to]\",s),e(window).on(\"load\",(function(){e('[data-ride=\"carousel\"]').each((function(){var t=e(this);n.call(t,t.data())}))}))}(i),function(e){\"use strict\";var t=function(n,i){this.$element=e(n),this.options=e.extend({},t.DEFAULTS,i),this.$trigger=e('[data-toggle=\"collapse\"][href=\"#'+n.id+'\"],[data-toggle=\"collapse\"][data-target=\"#'+n.id+'\"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};function n(t){var n,i=t.attr(\"data-target\")||(n=t.attr(\"href\"))&&n.replace(/.*(?=#[^\\s]+$)/,\"\");return e(document).find(i)}function i(n){return this.each((function(){var i=e(this),s=i.data(\"bs.collapse\"),a=e.extend({},t.DEFAULTS,i.data(),\"object\"==typeof n&&n);!s&&a.toggle&&/show|hide/.test(n)&&(a.toggle=!1),s||i.data(\"bs.collapse\",s=new t(this,a)),\"string\"==typeof n&&s[n]()}))}t.VERSION=\"3.4.1\",t.TRANSITION_DURATION=350,t.DEFAULTS={toggle:!0},t.prototype.dimension=function(){return this.$element.hasClass(\"width\")?\"width\":\"height\"},t.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass(\"in\")){var n,s=this.$parent&&this.$parent.children(\".panel\").children(\".in, .collapsing\");if(!(s&&s.length&&(n=s.data(\"bs.collapse\"))&&n.transitioning)){var a=e.Event(\"show.bs.collapse\");if(this.$element.trigger(a),!a.isDefaultPrevented()){s&&s.length&&(i.call(s,\"hide\"),n||s.data(\"bs.collapse\",null));var r=this.dimension();this.$element.removeClass(\"collapse\").addClass(\"collapsing\")[r](0).attr(\"aria-expanded\",!0),this.$trigger.removeClass(\"collapsed\").attr(\"aria-expanded\",!0),this.transitioning=1;var o=function(){this.$element.removeClass(\"collapsing\").addClass(\"collapse in\")[r](\"\"),this.transitioning=0,this.$element.trigger(\"shown.bs.collapse\")};if(!e.support.transition)return o.call(this);var d=e.camelCase([\"scroll\",r].join(\"-\"));this.$element.one(\"bsTransitionEnd\",e.proxy(o,this)).emulateTransitionEnd(t.TRANSITION_DURATION)[r](this.$element[0][d])}}}},t.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass(\"in\")){var n=e.Event(\"hide.bs.collapse\");if(this.$element.trigger(n),!n.isDefaultPrevented()){var i=this.dimension();this.$element[i](this.$element[i]())[0].offsetHeight,this.$element.addClass(\"collapsing\").removeClass(\"collapse in\").attr(\"aria-expanded\",!1),this.$trigger.addClass(\"collapsed\").attr(\"aria-expanded\",!1),this.transitioning=1;var s=function(){this.transitioning=0,this.$element.removeClass(\"collapsing\").addClass(\"collapse\").trigger(\"hidden.bs.collapse\")};if(!e.support.transition)return s.call(this);this.$element[i](0).one(\"bsTransitionEnd\",e.proxy(s,this)).emulateTransitionEnd(t.TRANSITION_DURATION)}}},t.prototype.toggle=function(){this[this.$element.hasClass(\"in\")?\"hide\":\"show\"]()},t.prototype.getParent=function(){return e(document).find(this.options.parent).find('[data-toggle=\"collapse\"][data-parent=\"'+this.options.parent+'\"]').each(e.proxy((function(t,i){var s=e(i);this.addAriaAndCollapsedClass(n(s),s)}),this)).end()},t.prototype.addAriaAndCollapsedClass=function(e,t){var n=e.hasClass(\"in\");e.attr(\"aria-expanded\",n),t.toggleClass(\"collapsed\",!n).attr(\"aria-expanded\",n)};var s=e.fn.collapse;e.fn.collapse=i,e.fn.collapse.Constructor=t,e.fn.collapse.noConflict=function(){return e.fn.collapse=s,this},e(document).on(\"click.bs.collapse.data-api\",'[data-toggle=\"collapse\"]',(function(t){var s=e(this);s.attr(\"data-target\")||t.preventDefault();var a=n(s),r=a.data(\"bs.collapse\")?\"toggle\":s.data();i.call(a,r)}))}(i),function(e){\"use strict\";var t='[data-toggle=\"dropdown\"]',n=function(t){e(t).on(\"click.bs.dropdown\",this.toggle)};function i(t){var n=t.attr(\"data-target\");n||(n=(n=t.attr(\"href\"))&&/#[A-Za-z]/.test(n)&&n.replace(/.*(?=#[^\\s]*$)/,\"\"));var i=\"#\"!==n?e(document).find(n):null;return i&&i.length?i:t.parent()}function s(n){n&&3===n.which||(e(\".dropdown-backdrop\").remove(),e(t).each((function(){var t=e(this),s=i(t),a={relatedTarget:this};s.hasClass(\"open\")&&(n&&\"click\"==n.type&&/input|textarea/i.test(n.target.tagName)&&e.contains(s[0],n.target)||(s.trigger(n=e.Event(\"hide.bs.dropdown\",a)),n.isDefaultPrevented()||(t.attr(\"aria-expanded\",\"false\"),s.removeClass(\"open\").trigger(e.Event(\"hidden.bs.dropdown\",a)))))})))}n.VERSION=\"3.4.1\",n.prototype.toggle=function(t){var n=e(this);if(!n.is(\".disabled, :disabled\")){var a=i(n),r=a.hasClass(\"open\");if(s(),!r){\"ontouchstart\"in document.documentElement&&!a.closest(\".navbar-nav\").length&&e(document.createElement(\"div\")).addClass(\"dropdown-backdrop\").insertAfter(e(this)).on(\"click\",s);var o={relatedTarget:this};if(a.trigger(t=e.Event(\"show.bs.dropdown\",o)),t.isDefaultPrevented())return;n.trigger(\"focus\").attr(\"aria-expanded\",\"true\"),a.toggleClass(\"open\").trigger(e.Event(\"shown.bs.dropdown\",o))}return!1}},n.prototype.keydown=function(n){if(/(38|40|27|32)/.test(n.which)&&!/input|textarea/i.test(n.target.tagName)){var s=e(this);if(n.preventDefault(),n.stopPropagation(),!s.is(\".disabled, :disabled\")){var a=i(s),r=a.hasClass(\"open\");if(!r&&27!=n.which||r&&27==n.which)return 27==n.which&&a.find(t).trigger(\"focus\"),s.trigger(\"click\");var o=a.find(\".dropdown-menu li:not(.disabled):visible a\");if(o.length){var d=o.index(n.target);38==n.which&&d>0&&d--,40==n.which&&d<o.length-1&&d++,~d||(d=0),o.eq(d).trigger(\"focus\")}}}};var a=e.fn.dropdown;e.fn.dropdown=function(t){return this.each((function(){var i=e(this),s=i.data(\"bs.dropdown\");s||i.data(\"bs.dropdown\",s=new n(this)),\"string\"==typeof t&&s[t].call(i)}))},e.fn.dropdown.Constructor=n,e.fn.dropdown.noConflict=function(){return e.fn.dropdown=a,this},e(document).on(\"click.bs.dropdown.data-api\",s).on(\"click.bs.dropdown.data-api\",\".dropdown form\",(function(e){e.stopPropagation()})).on(\"click.bs.dropdown.data-api\",t,n.prototype.toggle).on(\"keydown.bs.dropdown.data-api\",t,n.prototype.keydown).on(\"keydown.bs.dropdown.data-api\",\".dropdown-menu\",n.prototype.keydown)}(i),function(e){\"use strict\";var t=function(t,n){this.options=n,this.$body=e(document.body),this.$element=e(t),this.$dialog=this.$element.find(\".modal-dialog\"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.fixedContent=\".navbar-fixed-top, .navbar-fixed-bottom\",this.options.remote&&this.$element.find(\".modal-content\").load(this.options.remote,e.proxy((function(){this.$element.trigger(\"loaded.bs.modal\")}),this))};function n(n,i){return this.each((function(){var s=e(this),a=s.data(\"bs.modal\"),r=e.extend({},t.DEFAULTS,s.data(),\"object\"==typeof n&&n);a||s.data(\"bs.modal\",a=new t(this,r)),\"string\"==typeof n?a[n](i):r.show&&a.show(i)}))}t.VERSION=\"3.4.1\",t.TRANSITION_DURATION=300,t.BACKDROP_TRANSITION_DURATION=150,t.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},t.prototype.toggle=function(e){return this.isShown?this.hide():this.show(e)},t.prototype.show=function(n){var i=this,s=e.Event(\"show.bs.modal\",{relatedTarget:n});this.$element.trigger(s),this.isShown||s.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass(\"modal-open\"),this.escape(),this.resize(),this.$element.on(\"click.dismiss.bs.modal\",'[data-dismiss=\"modal\"]',e.proxy(this.hide,this)),this.$dialog.on(\"mousedown.dismiss.bs.modal\",(function(){i.$element.one(\"mouseup.dismiss.bs.modal\",(function(t){e(t.target).is(i.$element)&&(i.ignoreBackdropClick=!0)}))})),this.backdrop((function(){var s=e.support.transition&&i.$element.hasClass(\"fade\");i.$element.parent().length||i.$element.appendTo(i.$body),i.$element.show().scrollTop(0),i.adjustDialog(),s&&i.$element[0].offsetWidth,i.$element.addClass(\"in\"),i.enforceFocus();var a=e.Event(\"shown.bs.modal\",{relatedTarget:n});s?i.$dialog.one(\"bsTransitionEnd\",(function(){i.$element.trigger(\"focus\").trigger(a)})).emulateTransitionEnd(t.TRANSITION_DURATION):i.$element.trigger(\"focus\").trigger(a)})))},t.prototype.hide=function(n){n&&n.preventDefault(),n=e.Event(\"hide.bs.modal\"),this.$element.trigger(n),this.isShown&&!n.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),e(document).off(\"focusin.bs.modal\"),this.$element.removeClass(\"in\").off(\"click.dismiss.bs.modal\").off(\"mouseup.dismiss.bs.modal\"),this.$dialog.off(\"mousedown.dismiss.bs.modal\"),e.support.transition&&this.$element.hasClass(\"fade\")?this.$element.one(\"bsTransitionEnd\",e.proxy(this.hideModal,this)).emulateTransitionEnd(t.TRANSITION_DURATION):this.hideModal())},t.prototype.enforceFocus=function(){e(document).off(\"focusin.bs.modal\").on(\"focusin.bs.modal\",e.proxy((function(e){document===e.target||this.$element[0]===e.target||this.$element.has(e.target).length||this.$element.trigger(\"focus\")}),this))},t.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on(\"keydown.dismiss.bs.modal\",e.proxy((function(e){27==e.which&&this.hide()}),this)):this.isShown||this.$element.off(\"keydown.dismiss.bs.modal\")},t.prototype.resize=function(){this.isShown?e(window).on(\"resize.bs.modal\",e.proxy(this.handleUpdate,this)):e(window).off(\"resize.bs.modal\")},t.prototype.hideModal=function(){var e=this;this.$element.hide(),this.backdrop((function(){e.$body.removeClass(\"modal-open\"),e.resetAdjustments(),e.resetScrollbar(),e.$element.trigger(\"hidden.bs.modal\")}))},t.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},t.prototype.backdrop=function(n){var i=this,s=this.$element.hasClass(\"fade\")?\"fade\":\"\";if(this.isShown&&this.options.backdrop){var a=e.support.transition&&s;if(this.$backdrop=e(document.createElement(\"div\")).addClass(\"modal-backdrop \"+s).appendTo(this.$body),this.$element.on(\"click.dismiss.bs.modal\",e.proxy((function(e){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:e.target===e.currentTarget&&(\"static\"==this.options.backdrop?this.$element[0].focus():this.hide())}),this)),a&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass(\"in\"),!n)return;a?this.$backdrop.one(\"bsTransitionEnd\",n).emulateTransitionEnd(t.BACKDROP_TRANSITION_DURATION):n()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass(\"in\");var r=function(){i.removeBackdrop(),n&&n()};e.support.transition&&this.$element.hasClass(\"fade\")?this.$backdrop.one(\"bsTransitionEnd\",r).emulateTransitionEnd(t.BACKDROP_TRANSITION_DURATION):r()}else n&&n()},t.prototype.handleUpdate=function(){this.adjustDialog()},t.prototype.adjustDialog=function(){var e=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&e?this.scrollbarWidth:\"\",paddingRight:this.bodyIsOverflowing&&!e?this.scrollbarWidth:\"\"})},t.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:\"\",paddingRight:\"\"})},t.prototype.checkScrollbar=function(){var e=window.innerWidth;if(!e){var t=document.documentElement.getBoundingClientRect();e=t.right-Math.abs(t.left)}this.bodyIsOverflowing=document.body.clientWidth<e,this.scrollbarWidth=this.measureScrollbar()},t.prototype.setScrollbar=function(){var t=parseInt(this.$body.css(\"padding-right\")||0,10);this.originalBodyPad=document.body.style.paddingRight||\"\";var n=this.scrollbarWidth;this.bodyIsOverflowing&&(this.$body.css(\"padding-right\",t+n),e(this.fixedContent).each((function(t,i){var s=i.style.paddingRight,a=e(i).css(\"padding-right\");e(i).data(\"padding-right\",s).css(\"padding-right\",parseFloat(a)+n+\"px\")})))},t.prototype.resetScrollbar=function(){this.$body.css(\"padding-right\",this.originalBodyPad),e(this.fixedContent).each((function(t,n){var i=e(n).data(\"padding-right\");e(n).removeData(\"padding-right\"),n.style.paddingRight=i||\"\"}))},t.prototype.measureScrollbar=function(){var e=document.createElement(\"div\");e.className=\"modal-scrollbar-measure\",this.$body.append(e);var t=e.offsetWidth-e.clientWidth;return this.$body[0].removeChild(e),t};var i=e.fn.modal;e.fn.modal=n,e.fn.modal.Constructor=t,e.fn.modal.noConflict=function(){return e.fn.modal=i,this},e(document).on(\"click.bs.modal.data-api\",'[data-toggle=\"modal\"]',(function(t){var i=e(this),s=i.attr(\"href\"),a=i.attr(\"data-target\")||s&&s.replace(/.*(?=#[^\\s]+$)/,\"\"),r=e(document).find(a),o=r.data(\"bs.modal\")?\"toggle\":e.extend({remote:!/#/.test(s)&&s},r.data(),i.data());i.is(\"a\")&&t.preventDefault(),r.one(\"show.bs.modal\",(function(e){e.isDefaultPrevented()||r.one(\"hidden.bs.modal\",(function(){i.is(\":visible\")&&i.trigger(\"focus\")}))})),n.call(r,o,this)}))}(i),function(e){\"use strict\";var t=[\"sanitize\",\"whiteList\",\"sanitizeFn\"],n=[\"background\",\"cite\",\"href\",\"itemtype\",\"longdesc\",\"poster\",\"src\",\"xlink:href\"],i={\"*\":[\"class\",\"dir\",\"id\",\"lang\",\"role\",/^aria-[\\w-]*$/i],a:[\"target\",\"href\",\"title\",\"rel\"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:[\"src\",\"alt\",\"title\",\"width\",\"height\"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},s=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,a=/^data:(?:image\\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\\/(?:mpeg|mp4|ogg|webm)|audio\\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function r(t,i){var r=t.nodeName.toLowerCase();if(-1!==e.inArray(r,i))return-1===e.inArray(r,n)||Boolean(t.nodeValue.match(s)||t.nodeValue.match(a));for(var o=e(i).filter((function(e,t){return t instanceof RegExp})),d=0,l=o.length;d<l;d++)if(r.match(o[d]))return!0;return!1}function o(t,n,i){if(0===t.length)return t;if(i&&\"function\"==typeof i)return i(t);if(!document.implementation||!document.implementation.createHTMLDocument)return t;var s=document.implementation.createHTMLDocument(\"sanitization\");s.body.innerHTML=t;for(var a=e.map(n,(function(e,t){return t})),o=e(s.body).find(\"*\"),d=0,l=o.length;d<l;d++){var u=o[d],c=u.nodeName.toLowerCase();if(-1!==e.inArray(c,a))for(var h=e.map(u.attributes,(function(e){return e})),m=[].concat(n[\"*\"]||[],n[c]||[]),_=0,p=h.length;_<p;_++)r(h[_],m)||u.removeAttribute(h[_].nodeName);else u.parentNode.removeChild(u)}return s.body.innerHTML}var d=function(e,t){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init(\"tooltip\",e,t)};d.VERSION=\"3.4.1\",d.TRANSITION_DURATION=150,d.DEFAULTS={animation:!0,placement:\"top\",selector:!1,template:'<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',trigger:\"hover focus\",title:\"\",delay:0,html:!1,container:!1,viewport:{selector:\"body\",padding:0},sanitize:!0,sanitizeFn:null,whiteList:i},d.prototype.init=function(t,n,i){if(this.enabled=!0,this.type=t,this.$element=e(n),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&e(document).find(e.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error(\"`selector` option must be specified when initializing \"+this.type+\" on the window.document object!\");for(var s=this.options.trigger.split(\" \"),a=s.length;a--;){var r=s[a];if(\"click\"==r)this.$element.on(\"click.\"+this.type,this.options.selector,e.proxy(this.toggle,this));else if(\"manual\"!=r){var o=\"hover\"==r?\"mouseenter\":\"focusin\",d=\"hover\"==r?\"mouseleave\":\"focusout\";this.$element.on(o+\".\"+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(d+\".\"+this.type,this.options.selector,e.proxy(this.leave,this))}}this.options.selector?this._options=e.extend({},this.options,{trigger:\"manual\",selector:\"\"}):this.fixTitle()},d.prototype.getDefaults=function(){return d.DEFAULTS},d.prototype.getOptions=function(n){var i=this.$element.data();for(var s in i)i.hasOwnProperty(s)&&-1!==e.inArray(s,t)&&delete i[s];return(n=e.extend({},this.getDefaults(),i,n)).delay&&\"number\"==typeof n.delay&&(n.delay={show:n.delay,hide:n.delay}),n.sanitize&&(n.template=o(n.template,n.whiteList,n.sanitizeFn)),n},d.prototype.getDelegateOptions=function(){var t={},n=this.getDefaults();return this._options&&e.each(this._options,(function(e,i){n[e]!=i&&(t[e]=i)})),t},d.prototype.enter=function(t){var n=t instanceof this.constructor?t:e(t.currentTarget).data(\"bs.\"+this.type);if(n||(n=new this.constructor(t.currentTarget,this.getDelegateOptions()),e(t.currentTarget).data(\"bs.\"+this.type,n)),t instanceof e.Event&&(n.inState[\"focusin\"==t.type?\"focus\":\"hover\"]=!0),n.tip().hasClass(\"in\")||\"in\"==n.hoverState)n.hoverState=\"in\";else{if(clearTimeout(n.timeout),n.hoverState=\"in\",!n.options.delay||!n.options.delay.show)return n.show();n.timeout=setTimeout((function(){\"in\"==n.hoverState&&n.show()}),n.options.delay.show)}},d.prototype.isInStateTrue=function(){for(var e in this.inState)if(this.inState[e])return!0;return!1},d.prototype.leave=function(t){var n=t instanceof this.constructor?t:e(t.currentTarget).data(\"bs.\"+this.type);if(n||(n=new this.constructor(t.currentTarget,this.getDelegateOptions()),e(t.currentTarget).data(\"bs.\"+this.type,n)),t instanceof e.Event&&(n.inState[\"focusout\"==t.type?\"focus\":\"hover\"]=!1),!n.isInStateTrue()){if(clearTimeout(n.timeout),n.hoverState=\"out\",!n.options.delay||!n.options.delay.hide)return n.hide();n.timeout=setTimeout((function(){\"out\"==n.hoverState&&n.hide()}),n.options.delay.hide)}},d.prototype.show=function(){var t=e.Event(\"show.bs.\"+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var n=e.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!n)return;var i=this,s=this.tip(),a=this.getUID(this.type);this.setContent(),s.attr(\"id\",a),this.$element.attr(\"aria-describedby\",a),this.options.animation&&s.addClass(\"fade\");var r=\"function\"==typeof this.options.placement?this.options.placement.call(this,s[0],this.$element[0]):this.options.placement,o=/\\s?auto?\\s?/i,l=o.test(r);l&&(r=r.replace(o,\"\")||\"top\"),s.detach().css({top:0,left:0,display:\"block\"}).addClass(r).data(\"bs.\"+this.type,this),this.options.container?s.appendTo(e(document).find(this.options.container)):s.insertAfter(this.$element),this.$element.trigger(\"inserted.bs.\"+this.type);var u=this.getPosition(),c=s[0].offsetWidth,h=s[0].offsetHeight;if(l){var m=r,_=this.getPosition(this.$viewport);r=\"bottom\"==r&&u.bottom+h>_.bottom?\"top\":\"top\"==r&&u.top-h<_.top?\"bottom\":\"right\"==r&&u.right+c>_.width?\"left\":\"left\"==r&&u.left-c<_.left?\"right\":r,s.removeClass(m).addClass(r)}var p=this.getCalculatedOffset(r,u,c,h);this.applyPlacement(p,r);var f=function(){var e=i.hoverState;i.$element.trigger(\"shown.bs.\"+i.type),i.hoverState=null,\"out\"==e&&i.leave(i)};e.support.transition&&this.$tip.hasClass(\"fade\")?s.one(\"bsTransitionEnd\",f).emulateTransitionEnd(d.TRANSITION_DURATION):f()}},d.prototype.applyPlacement=function(t,n){var i=this.tip(),s=i[0].offsetWidth,a=i[0].offsetHeight,r=parseInt(i.css(\"margin-top\"),10),o=parseInt(i.css(\"margin-left\"),10);isNaN(r)&&(r=0),isNaN(o)&&(o=0),t.top+=r,t.left+=o,e.offset.setOffset(i[0],e.extend({using:function(e){i.css({top:Math.round(e.top),left:Math.round(e.left)})}},t),0),i.addClass(\"in\");var d=i[0].offsetWidth,l=i[0].offsetHeight;\"top\"==n&&l!=a&&(t.top=t.top+a-l);var u=this.getViewportAdjustedDelta(n,t,d,l);u.left?t.left+=u.left:t.top+=u.top;var c=/top|bottom/.test(n),h=c?2*u.left-s+d:2*u.top-a+l,m=c?\"offsetWidth\":\"offsetHeight\";i.offset(t),this.replaceArrow(h,i[0][m],c)},d.prototype.replaceArrow=function(e,t,n){this.arrow().css(n?\"left\":\"top\",50*(1-e/t)+\"%\").css(n?\"top\":\"left\",\"\")},d.prototype.setContent=function(){var e=this.tip(),t=this.getTitle();this.options.html?(this.options.sanitize&&(t=o(t,this.options.whiteList,this.options.sanitizeFn)),e.find(\".tooltip-inner\").html(t)):e.find(\".tooltip-inner\").text(t),e.removeClass(\"fade in top bottom left right\")},d.prototype.hide=function(t){var n=this,i=e(this.$tip),s=e.Event(\"hide.bs.\"+this.type);function a(){\"in\"!=n.hoverState&&i.detach(),n.$element&&n.$element.removeAttr(\"aria-describedby\").trigger(\"hidden.bs.\"+n.type),t&&t()}if(this.$element.trigger(s),!s.isDefaultPrevented())return i.removeClass(\"in\"),e.support.transition&&i.hasClass(\"fade\")?i.one(\"bsTransitionEnd\",a).emulateTransitionEnd(d.TRANSITION_DURATION):a(),this.hoverState=null,this},d.prototype.fixTitle=function(){var e=this.$element;(e.attr(\"title\")||\"string\"!=typeof e.attr(\"data-original-title\"))&&e.attr(\"data-original-title\",e.attr(\"title\")||\"\").attr(\"title\",\"\")},d.prototype.hasContent=function(){return this.getTitle()},d.prototype.getPosition=function(t){var n=(t=t||this.$element)[0],i=\"BODY\"==n.tagName,s=n.getBoundingClientRect();null==s.width&&(s=e.extend({},s,{width:s.right-s.left,height:s.bottom-s.top}));var a=window.SVGElement&&n instanceof window.SVGElement,r=i?{top:0,left:0}:a?null:t.offset(),o={scroll:i?document.documentElement.scrollTop||document.body.scrollTop:t.scrollTop()},d=i?{width:e(window).width(),height:e(window).height()}:null;return e.extend({},s,o,d,r)},d.prototype.getCalculatedOffset=function(e,t,n,i){return\"bottom\"==e?{top:t.top+t.height,left:t.left+t.width/2-n/2}:\"top\"==e?{top:t.top-i,left:t.left+t.width/2-n/2}:\"left\"==e?{top:t.top+t.height/2-i/2,left:t.left-n}:{top:t.top+t.height/2-i/2,left:t.left+t.width}},d.prototype.getViewportAdjustedDelta=function(e,t,n,i){var s={top:0,left:0};if(!this.$viewport)return s;var a=this.options.viewport&&this.options.viewport.padding||0,r=this.getPosition(this.$viewport);if(/right|left/.test(e)){var o=t.top-a-r.scroll,d=t.top+a-r.scroll+i;o<r.top?s.top=r.top-o:d>r.top+r.height&&(s.top=r.top+r.height-d)}else{var l=t.left-a,u=t.left+a+n;l<r.left?s.left=r.left-l:u>r.right&&(s.left=r.left+r.width-u)}return s},d.prototype.getTitle=function(){var e=this.$element,t=this.options;return e.attr(\"data-original-title\")||(\"function\"==typeof t.title?t.title.call(e[0]):t.title)},d.prototype.getUID=function(e){do{e+=~~(1e6*Math.random())}while(document.getElementById(e));return e},d.prototype.tip=function(){if(!this.$tip&&(this.$tip=e(this.options.template),1!=this.$tip.length))throw new Error(this.type+\" `template` option must consist of exactly 1 top-level element!\");return this.$tip},d.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(\".tooltip-arrow\")},d.prototype.enable=function(){this.enabled=!0},d.prototype.disable=function(){this.enabled=!1},d.prototype.toggleEnabled=function(){this.enabled=!this.enabled},d.prototype.toggle=function(t){var n=this;t&&((n=e(t.currentTarget).data(\"bs.\"+this.type))||(n=new this.constructor(t.currentTarget,this.getDelegateOptions()),e(t.currentTarget).data(\"bs.\"+this.type,n))),t?(n.inState.click=!n.inState.click,n.isInStateTrue()?n.enter(n):n.leave(n)):n.tip().hasClass(\"in\")?n.leave(n):n.enter(n)},d.prototype.destroy=function(){var e=this;clearTimeout(this.timeout),this.hide((function(){e.$element.off(\".\"+e.type).removeData(\"bs.\"+e.type),e.$tip&&e.$tip.detach(),e.$tip=null,e.$arrow=null,e.$viewport=null,e.$element=null}))},d.prototype.sanitizeHtml=function(e){return o(e,this.options.whiteList,this.options.sanitizeFn)};var l=e.fn.tooltip;e.fn.tooltip=function(t){return this.each((function(){var n=e(this),i=n.data(\"bs.tooltip\"),s=\"object\"==typeof t&&t;!i&&/destroy|hide/.test(t)||(i||n.data(\"bs.tooltip\",i=new d(this,s)),\"string\"==typeof t&&i[t]())}))},e.fn.tooltip.Constructor=d,e.fn.tooltip.noConflict=function(){return e.fn.tooltip=l,this}}(i),function(e){\"use strict\";var t=function(e,t){this.init(\"popover\",e,t)};if(!e.fn.tooltip)throw new Error(\"Popover requires tooltip.js\");t.VERSION=\"3.4.1\",t.DEFAULTS=e.extend({},e.fn.tooltip.Constructor.DEFAULTS,{placement:\"right\",trigger:\"click\",content:\"\",template:'<div class=\"popover\" role=\"tooltip\"><div class=\"arrow\"></div><h3 class=\"popover-title\"></h3><div class=\"popover-content\"></div></div>'}),(t.prototype=e.extend({},e.fn.tooltip.Constructor.prototype)).constructor=t,t.prototype.getDefaults=function(){return t.DEFAULTS},t.prototype.setContent=function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();if(this.options.html){var i=typeof n;this.options.sanitize&&(t=this.sanitizeHtml(t),\"string\"===i&&(n=this.sanitizeHtml(n))),e.find(\".popover-title\").html(t),e.find(\".popover-content\").children().detach().end()[\"string\"===i?\"html\":\"append\"](n)}else e.find(\".popover-title\").text(t),e.find(\".popover-content\").children().detach().end().text(n);e.removeClass(\"fade top bottom left right in\"),e.find(\".popover-title\").html()||e.find(\".popover-title\").hide()},t.prototype.hasContent=function(){return this.getTitle()||this.getContent()},t.prototype.getContent=function(){var e=this.$element,t=this.options;return e.attr(\"data-content\")||(\"function\"==typeof t.content?t.content.call(e[0]):t.content)},t.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(\".arrow\")};var n=e.fn.popover;e.fn.popover=function(n){return this.each((function(){var i=e(this),s=i.data(\"bs.popover\"),a=\"object\"==typeof n&&n;!s&&/destroy|hide/.test(n)||(s||i.data(\"bs.popover\",s=new t(this,a)),\"string\"==typeof n&&s[n]())}))},e.fn.popover.Constructor=t,e.fn.popover.noConflict=function(){return e.fn.popover=n,this}}(i),function(e){\"use strict\";function t(n,i){this.$body=e(document.body),this.$scrollElement=e(n).is(document.body)?e(window):e(n),this.options=e.extend({},t.DEFAULTS,i),this.selector=(this.options.target||\"\")+\" .nav li > a\",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on(\"scroll.bs.scrollspy\",e.proxy(this.process,this)),this.refresh(),this.process()}function n(n){return this.each((function(){var i=e(this),s=i.data(\"bs.scrollspy\"),a=\"object\"==typeof n&&n;s||i.data(\"bs.scrollspy\",s=new t(this,a)),\"string\"==typeof n&&s[n]()}))}t.VERSION=\"3.4.1\",t.DEFAULTS={offset:10},t.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},t.prototype.refresh=function(){var t=this,n=\"offset\",i=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),e.isWindow(this.$scrollElement[0])||(n=\"position\",i=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map((function(){var t=e(this),s=t.data(\"target\")||t.attr(\"href\"),a=/^#./.test(s)&&e(s);return a&&a.length&&a.is(\":visible\")&&[[a[n]().top+i,s]]||null})).sort((function(e,t){return e[0]-t[0]})).each((function(){t.offsets.push(this[0]),t.targets.push(this[1])}))},t.prototype.process=function(){var e,t=this.$scrollElement.scrollTop()+this.options.offset,n=this.getScrollHeight(),i=this.options.offset+n-this.$scrollElement.height(),s=this.offsets,a=this.targets,r=this.activeTarget;if(this.scrollHeight!=n&&this.refresh(),t>=i)return r!=(e=a[a.length-1])&&this.activate(e);if(r&&t<s[0])return this.activeTarget=null,this.clear();for(e=s.length;e--;)r!=a[e]&&t>=s[e]&&(void 0===s[e+1]||t<s[e+1])&&this.activate(a[e])},t.prototype.activate=function(t){this.activeTarget=t,this.clear();var n=this.selector+'[data-target=\"'+t+'\"],'+this.selector+'[href=\"'+t+'\"]',i=e(n).parents(\"li\").addClass(\"active\");i.parent(\".dropdown-menu\").length&&(i=i.closest(\"li.dropdown\").addClass(\"active\")),i.trigger(\"activate.bs.scrollspy\")},t.prototype.clear=function(){e(this.selector).parentsUntil(this.options.target,\".active\").removeClass(\"active\")};var i=e.fn.scrollspy;e.fn.scrollspy=n,e.fn.scrollspy.Constructor=t,e.fn.scrollspy.noConflict=function(){return e.fn.scrollspy=i,this},e(window).on(\"load.bs.scrollspy.data-api\",(function(){e('[data-spy=\"scroll\"]').each((function(){var t=e(this);n.call(t,t.data())}))}))}(i),function(e){\"use strict\";var t=function(t){this.element=e(t)};function n(n){return this.each((function(){var i=e(this),s=i.data(\"bs.tab\");s||i.data(\"bs.tab\",s=new t(this)),\"string\"==typeof n&&s[n]()}))}t.VERSION=\"3.4.1\",t.TRANSITION_DURATION=150,t.prototype.show=function(){var t=this.element,n=t.closest(\"ul:not(.dropdown-menu)\"),i=t.data(\"target\");if(i||(i=(i=t.attr(\"href\"))&&i.replace(/.*(?=#[^\\s]*$)/,\"\")),!t.parent(\"li\").hasClass(\"active\")){var s=n.find(\".active:last a\"),a=e.Event(\"hide.bs.tab\",{relatedTarget:t[0]}),r=e.Event(\"show.bs.tab\",{relatedTarget:s[0]});if(s.trigger(a),t.trigger(r),!r.isDefaultPrevented()&&!a.isDefaultPrevented()){var o=e(document).find(i);this.activate(t.closest(\"li\"),n),this.activate(o,o.parent(),(function(){s.trigger({type:\"hidden.bs.tab\",relatedTarget:t[0]}),t.trigger({type:\"shown.bs.tab\",relatedTarget:s[0]})}))}}},t.prototype.activate=function(n,i,s){var a=i.find(\"> .active\"),r=s&&e.support.transition&&(a.length&&a.hasClass(\"fade\")||!!i.find(\"> .fade\").length);function o(){a.removeClass(\"active\").find(\"> .dropdown-menu > .active\").removeClass(\"active\").end().find('[data-toggle=\"tab\"]').attr(\"aria-expanded\",!1),n.addClass(\"active\").find('[data-toggle=\"tab\"]').attr(\"aria-expanded\",!0),r?(n[0].offsetWidth,n.addClass(\"in\")):n.removeClass(\"fade\"),n.parent(\".dropdown-menu\").length&&n.closest(\"li.dropdown\").addClass(\"active\").end().find('[data-toggle=\"tab\"]').attr(\"aria-expanded\",!0),s&&s()}a.length&&r?a.one(\"bsTransitionEnd\",o).emulateTransitionEnd(t.TRANSITION_DURATION):o(),a.removeClass(\"in\")};var i=e.fn.tab;e.fn.tab=n,e.fn.tab.Constructor=t,e.fn.tab.noConflict=function(){return e.fn.tab=i,this};var s=function(t){t.preventDefault(),n.call(e(this),\"show\")};e(document).on(\"click.bs.tab.data-api\",'[data-toggle=\"tab\"]',s).on(\"click.bs.tab.data-api\",'[data-toggle=\"pill\"]',s)}(i),function(e){\"use strict\";var t=function(n,i){this.options=e.extend({},t.DEFAULTS,i);var s=this.options.target===t.DEFAULTS.target?e(this.options.target):e(document).find(this.options.target);this.$target=s.on(\"scroll.bs.affix.data-api\",e.proxy(this.checkPosition,this)).on(\"click.bs.affix.data-api\",e.proxy(this.checkPositionWithEventLoop,this)),this.$element=e(n),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function n(n){return this.each((function(){var i=e(this),s=i.data(\"bs.affix\"),a=\"object\"==typeof n&&n;s||i.data(\"bs.affix\",s=new t(this,a)),\"string\"==typeof n&&s[n]()}))}t.VERSION=\"3.4.1\",t.RESET=\"affix affix-top affix-bottom\",t.DEFAULTS={offset:0,target:window},t.prototype.getState=function(e,t,n,i){var s=this.$target.scrollTop(),a=this.$element.offset(),r=this.$target.height();if(null!=n&&\"top\"==this.affixed)return s<n&&\"top\";if(\"bottom\"==this.affixed)return null!=n?!(s+this.unpin<=a.top)&&\"bottom\":!(s+r<=e-i)&&\"bottom\";var o=null==this.affixed,d=o?s:a.top;return null!=n&&s<=n?\"top\":null!=i&&d+(o?r:t)>=e-i&&\"bottom\"},t.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(t.RESET).addClass(\"affix\");var e=this.$target.scrollTop(),n=this.$element.offset();return this.pinnedOffset=n.top-e},t.prototype.checkPositionWithEventLoop=function(){setTimeout(e.proxy(this.checkPosition,this),1)},t.prototype.checkPosition=function(){if(this.$element.is(\":visible\")){var n=this.$element.height(),i=this.options.offset,s=i.top,a=i.bottom,r=Math.max(e(document).height(),e(document.body).height());\"object\"!=typeof i&&(a=s=i),\"function\"==typeof s&&(s=i.top(this.$element)),\"function\"==typeof a&&(a=i.bottom(this.$element));var o=this.getState(r,n,s,a);if(this.affixed!=o){null!=this.unpin&&this.$element.css(\"top\",\"\");var d=\"affix\"+(o?\"-\"+o:\"\"),l=e.Event(d+\".bs.affix\");if(this.$element.trigger(l),l.isDefaultPrevented())return;this.affixed=o,this.unpin=\"bottom\"==o?this.getPinnedOffset():null,this.$element.removeClass(t.RESET).addClass(d).trigger(d.replace(\"affix\",\"affixed\")+\".bs.affix\")}\"bottom\"==o&&this.$element.offset({top:r-n-a})}};var i=e.fn.affix;e.fn.affix=n,e.fn.affix.Constructor=t,e.fn.affix.noConflict=function(){return e.fn.affix=i,this},e(window).on(\"load\",(function(){e('[data-spy=\"affix\"]').each((function(){var t=e(this),i=t.data();i.offset=i.offset||{},null!=i.offsetBottom&&(i.offset.bottom=i.offsetBottom),null!=i.offsetTop&&(i.offset.top=i.offsetTop),n.call(t,i)}))}))}(i)},300:function(e,t,n){var i,s;void 0===this&&void 0!==window&&window,i=[n(9755)],void 0===(s=function(e){!function(e){\"use strict\";var t=[\"sanitize\",\"whiteList\",\"sanitizeFn\"],n=[\"background\",\"cite\",\"href\",\"itemtype\",\"longdesc\",\"poster\",\"src\",\"xlink:href\"],i={\"*\":[\"class\",\"dir\",\"id\",\"lang\",\"role\",\"tabindex\",\"style\",/^aria-[\\w-]*$/i],a:[\"target\",\"href\",\"title\",\"rel\"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:[\"src\",\"alt\",\"title\",\"width\",\"height\"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},s=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,a=/^data:(?:image\\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\\/(?:mpeg|mp4|ogg|webm)|audio\\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function r(t,i){var r=t.nodeName.toLowerCase();if(-1!==e.inArray(r,i))return-1===e.inArray(r,n)||Boolean(t.nodeValue.match(s)||t.nodeValue.match(a));for(var o=e(i).filter((function(e,t){return t instanceof RegExp})),d=0,l=o.length;d<l;d++)if(r.match(o[d]))return!0;return!1}function o(e,t,n){if(n&&\"function\"==typeof n)return n(e);for(var i=Object.keys(t),s=0,a=e.length;s<a;s++)for(var o=e[s].querySelectorAll(\"*\"),d=0,l=o.length;d<l;d++){var u=o[d],c=u.nodeName.toLowerCase();if(-1!==i.indexOf(c))for(var h=[].slice.call(u.attributes),m=[].concat(t[\"*\"]||[],t[c]||[]),_=0,p=h.length;_<p;_++){var f=h[_];r(f,m)||u.removeAttribute(f.nodeName)}else u.parentNode.removeChild(u)}}\"classList\"in document.createElement(\"_\")||function(t){if(\"Element\"in t){var n=\"classList\",i=\"prototype\",s=t.Element[i],a=Object,r=function(){var t=e(this);return{add:function(e){return e=Array.prototype.slice.call(arguments).join(\" \"),t.addClass(e)},remove:function(e){return e=Array.prototype.slice.call(arguments).join(\" \"),t.removeClass(e)},toggle:function(e,n){return t.toggleClass(e,n)},contains:function(e){return t.hasClass(e)}}};if(a.defineProperty){var o={get:r,enumerable:!0,configurable:!0};try{a.defineProperty(s,n,o)}catch(e){void 0!==e.number&&-2146823252!==e.number||(o.enumerable=!1,a.defineProperty(s,n,o))}}else a[i].__defineGetter__&&s.__defineGetter__(n,r)}}(window);var d,l,u,c=document.createElement(\"_\");if(c.classList.add(\"c1\",\"c2\"),!c.classList.contains(\"c2\")){var h=DOMTokenList.prototype.add,m=DOMTokenList.prototype.remove;DOMTokenList.prototype.add=function(){Array.prototype.forEach.call(arguments,h.bind(this))},DOMTokenList.prototype.remove=function(){Array.prototype.forEach.call(arguments,m.bind(this))}}if(c.classList.toggle(\"c3\",!1),c.classList.contains(\"c3\")){var _=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(e,t){return 1 in arguments&&!this.contains(e)==!t?t:_.call(this,e)}}function p(e,t){return e.length===t.length&&e.every((function(e,n){return e===t[n]}))}function f(e,t){var n,i=e.selectedOptions,s=[];if(t){for(var a=0,r=i.length;a<r;a++)(n=i[a]).disabled||\"OPTGROUP\"===n.parentNode.tagName&&n.parentNode.disabled||s.push(n);return s}return i}function y(e,t){for(var n,i=[],s=t||e.selectedOptions,a=0,r=s.length;a<r;a++)(n=s[a]).disabled||\"OPTGROUP\"===n.parentNode.tagName&&n.parentNode.disabled||i.push(n.value);return e.multiple?i:i.length?i[0]:null}c=null,String.prototype.startsWith||(d=function(){try{var e={},t=Object.defineProperty,n=t(e,e,e)&&t}catch(e){}return n}(),l={}.toString,u=function(e){if(null==this)throw new TypeError;var t=String(this);if(e&&\"[object RegExp]\"==l.call(e))throw new TypeError;var n=t.length,i=String(e),s=i.length,a=arguments.length>1?arguments[1]:void 0,r=a?Number(a):0;r!=r&&(r=0);var o=Math.min(Math.max(r,0),n);if(s+o>n)return!1;for(var d=-1;++d<s;)if(t.charCodeAt(o+d)!=i.charCodeAt(d))return!1;return!0},d?d(String.prototype,\"startsWith\",{value:u,configurable:!0,writable:!0}):String.prototype.startsWith=u),Object.keys||(Object.keys=function(e,t,n){for(t in n=[],e)n.hasOwnProperty.call(e,t)&&n.push(t);return n}),HTMLSelectElement&&!HTMLSelectElement.prototype.hasOwnProperty(\"selectedOptions\")&&Object.defineProperty(HTMLSelectElement.prototype,\"selectedOptions\",{get:function(){return this.querySelectorAll(\":checked\")}});var g={useDefault:!1,_set:e.valHooks.select.set};e.valHooks.select.set=function(t,n){return n&&!g.useDefault&&e(t).data(\"selected\",!0),g._set.apply(this,arguments)};var M=null,v=function(){try{return new Event(\"change\"),!0}catch(e){return!1}}();function L(e,t,n,i){for(var s=[\"display\",\"subtext\",\"tokens\"],a=!1,r=0;r<s.length;r++){var o=s[r],d=e[o];if(d&&(d=d.toString(),\"display\"===o&&(d=d.replace(/<[^>]+>/g,\"\")),i&&(d=T(d)),d=d.toUpperCase(),a=\"contains\"===n?d.indexOf(t)>=0:d.startsWith(t)))break}return a}function Y(e){return parseInt(e,10)||0}e.fn.triggerNative=function(e){var t,n=this[0];n.dispatchEvent?(v?t=new Event(e,{bubbles:!0}):(t=document.createEvent(\"Event\")).initEvent(e,!0,!1),n.dispatchEvent(t)):n.fireEvent?((t=document.createEventObject()).eventType=e,n.fireEvent(\"on\"+e,t)):this.trigger(e)};var k={À:\"A\",Á:\"A\",Â:\"A\",Ã:\"A\",Ä:\"A\",Å:\"A\",à:\"a\",á:\"a\",â:\"a\",ã:\"a\",ä:\"a\",å:\"a\",Ç:\"C\",ç:\"c\",Ð:\"D\",ð:\"d\",È:\"E\",É:\"E\",Ê:\"E\",Ë:\"E\",è:\"e\",é:\"e\",ê:\"e\",ë:\"e\",Ì:\"I\",Í:\"I\",Î:\"I\",Ï:\"I\",ì:\"i\",í:\"i\",î:\"i\",ï:\"i\",Ñ:\"N\",ñ:\"n\",Ò:\"O\",Ó:\"O\",Ô:\"O\",Õ:\"O\",Ö:\"O\",Ø:\"O\",ò:\"o\",ó:\"o\",ô:\"o\",õ:\"o\",ö:\"o\",ø:\"o\",Ù:\"U\",Ú:\"U\",Û:\"U\",Ü:\"U\",ù:\"u\",ú:\"u\",û:\"u\",ü:\"u\",Ý:\"Y\",ý:\"y\",ÿ:\"y\",Æ:\"Ae\",æ:\"ae\",Þ:\"Th\",þ:\"th\",ß:\"ss\",Ā:\"A\",Ă:\"A\",Ą:\"A\",ā:\"a\",ă:\"a\",ą:\"a\",Ć:\"C\",Ĉ:\"C\",Ċ:\"C\",Č:\"C\",ć:\"c\",ĉ:\"c\",ċ:\"c\",č:\"c\",Ď:\"D\",Đ:\"D\",ď:\"d\",đ:\"d\",Ē:\"E\",Ĕ:\"E\",Ė:\"E\",Ę:\"E\",Ě:\"E\",ē:\"e\",ĕ:\"e\",ė:\"e\",ę:\"e\",ě:\"e\",Ĝ:\"G\",Ğ:\"G\",Ġ:\"G\",Ģ:\"G\",ĝ:\"g\",ğ:\"g\",ġ:\"g\",ģ:\"g\",Ĥ:\"H\",Ħ:\"H\",ĥ:\"h\",ħ:\"h\",Ĩ:\"I\",Ī:\"I\",Ĭ:\"I\",Į:\"I\",İ:\"I\",ĩ:\"i\",ī:\"i\",ĭ:\"i\",į:\"i\",ı:\"i\",Ĵ:\"J\",ĵ:\"j\",Ķ:\"K\",ķ:\"k\",ĸ:\"k\",Ĺ:\"L\",Ļ:\"L\",Ľ:\"L\",Ŀ:\"L\",Ł:\"L\",ĺ:\"l\",ļ:\"l\",ľ:\"l\",ŀ:\"l\",ł:\"l\",Ń:\"N\",Ņ:\"N\",Ň:\"N\",Ŋ:\"N\",ń:\"n\",ņ:\"n\",ň:\"n\",ŋ:\"n\",Ō:\"O\",Ŏ:\"O\",Ő:\"O\",ō:\"o\",ŏ:\"o\",ő:\"o\",Ŕ:\"R\",Ŗ:\"R\",Ř:\"R\",ŕ:\"r\",ŗ:\"r\",ř:\"r\",Ś:\"S\",Ŝ:\"S\",Ş:\"S\",Š:\"S\",ś:\"s\",ŝ:\"s\",ş:\"s\",š:\"s\",Ţ:\"T\",Ť:\"T\",Ŧ:\"T\",ţ:\"t\",ť:\"t\",ŧ:\"t\",Ũ:\"U\",Ū:\"U\",Ŭ:\"U\",Ů:\"U\",Ű:\"U\",Ų:\"U\",ũ:\"u\",ū:\"u\",ŭ:\"u\",ů:\"u\",ű:\"u\",ų:\"u\",Ŵ:\"W\",ŵ:\"w\",Ŷ:\"Y\",ŷ:\"y\",Ÿ:\"Y\",Ź:\"Z\",Ż:\"Z\",Ž:\"Z\",ź:\"z\",ż:\"z\",ž:\"z\",Ĳ:\"IJ\",ĳ:\"ij\",Œ:\"Oe\",œ:\"oe\",ŉ:\"'n\",ſ:\"s\"},b=/[\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\xff\\u0100-\\u017f]/g,w=RegExp(\"[\\\\u0300-\\\\u036f\\\\ufe20-\\\\ufe2f\\\\u20d0-\\\\u20ff\\\\u1ab0-\\\\u1aff\\\\u1dc0-\\\\u1dff]\",\"g\");function D(e){return k[e]}function T(e){return(e=e.toString())&&e.replace(b,D).replace(w,\"\")}var x,S,H,j,C,E=(x={\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\",'\"':\"&quot;\",\"'\":\"&#x27;\",\"`\":\"&#x60;\"},S=function(e){return x[e]},H=\"(?:\"+Object.keys(x).join(\"|\")+\")\",j=RegExp(H),C=RegExp(H,\"g\"),function(e){return e=null==e?\"\":\"\"+e,j.test(e)?e.replace(C,S):e}),O={32:\" \",48:\"0\",49:\"1\",50:\"2\",51:\"3\",52:\"4\",53:\"5\",54:\"6\",55:\"7\",56:\"8\",57:\"9\",59:\";\",65:\"A\",66:\"B\",67:\"C\",68:\"D\",69:\"E\",70:\"F\",71:\"G\",72:\"H\",73:\"I\",74:\"J\",75:\"K\",76:\"L\",77:\"M\",78:\"N\",79:\"O\",80:\"P\",81:\"Q\",82:\"R\",83:\"S\",84:\"T\",85:\"U\",86:\"V\",87:\"W\",88:\"X\",89:\"Y\",90:\"Z\",96:\"0\",97:\"1\",98:\"2\",99:\"3\",100:\"4\",101:\"5\",102:\"6\",103:\"7\",104:\"8\",105:\"9\"},P={ESCAPE:27,ENTER:13,SPACE:32,TAB:9,ARROW_UP:38,ARROW_DOWN:40},A={success:!1,major:\"3\"};try{A.full=(e.fn.dropdown.Constructor.VERSION||\"\").split(\" \")[0].split(\".\"),A.major=A.full[0],A.success=!0}catch(e){}var I=0,W=\".bs.select\",N={DISABLED:\"disabled\",DIVIDER:\"divider\",SHOW:\"open\",DROPUP:\"dropup\",MENU:\"dropdown-menu\",MENURIGHT:\"dropdown-menu-right\",MENULEFT:\"dropdown-menu-left\",BUTTONCLASS:\"btn-default\",POPOVERHEADER:\"popover-title\",ICONBASE:\"glyphicon\",TICKICON:\"glyphicon-ok\"},$={MENU:\".\"+N.MENU},z={div:document.createElement(\"div\"),span:document.createElement(\"span\"),i:document.createElement(\"i\"),subtext:document.createElement(\"small\"),a:document.createElement(\"a\"),li:document.createElement(\"li\"),whitespace:document.createTextNode(\" \"),fragment:document.createDocumentFragment()};z.noResults=z.li.cloneNode(!1),z.noResults.className=\"no-results\",z.a.setAttribute(\"role\",\"option\"),z.a.className=\"dropdown-item\",z.subtext.className=\"text-muted\",z.text=z.span.cloneNode(!1),z.text.className=\"text\",z.checkMark=z.span.cloneNode(!1);var F=new RegExp(P.ARROW_UP+\"|\"+P.ARROW_DOWN),R=new RegExp(\"^\"+P.TAB+\"$|\"+P.ESCAPE),U={li:function(e,t,n){var i=z.li.cloneNode(!1);return e&&(1===e.nodeType||11===e.nodeType?i.appendChild(e):i.innerHTML=e),void 0!==t&&\"\"!==t&&(i.className=t),null!=n&&i.classList.add(\"optgroup-\"+n),i},a:function(e,t,n){var i=z.a.cloneNode(!0);return e&&(11===e.nodeType?i.appendChild(e):i.insertAdjacentHTML(\"beforeend\",e)),void 0!==t&&\"\"!==t&&i.classList.add.apply(i.classList,t.split(/\\s+/)),n&&i.setAttribute(\"style\",n),i},text:function(e,t){var n,i,s=z.text.cloneNode(!1);if(e.content)s.innerHTML=e.content;else{if(s.textContent=e.text,e.icon){var a=z.whitespace.cloneNode(!1);(i=(!0===t?z.i:z.span).cloneNode(!1)).className=this.options.iconBase+\" \"+e.icon,z.fragment.appendChild(i),z.fragment.appendChild(a)}e.subtext&&((n=z.subtext.cloneNode(!1)).textContent=e.subtext,s.appendChild(n))}if(!0===t)for(;s.childNodes.length>0;)z.fragment.appendChild(s.childNodes[0]);else z.fragment.appendChild(s);return z.fragment},label:function(e){var t,n,i=z.text.cloneNode(!1);if(i.innerHTML=e.display,e.icon){var s=z.whitespace.cloneNode(!1);(n=z.span.cloneNode(!1)).className=this.options.iconBase+\" \"+e.icon,z.fragment.appendChild(n),z.fragment.appendChild(s)}return e.subtext&&((t=z.subtext.cloneNode(!1)).textContent=e.subtext,i.appendChild(t)),z.fragment.appendChild(i),z.fragment}};function B(e,t){e.length||(z.noResults.innerHTML=this.options.noneResultsText.replace(\"{0}\",'\"'+E(t)+'\"'),this.$menuInner[0].firstChild.appendChild(z.noResults))}var J=function(t,n){var i=this;g.useDefault||(e.valHooks.select.set=g._set,g.useDefault=!0),this.$element=e(t),this.$newElement=null,this.$button=null,this.$menu=null,this.options=n,this.selectpicker={main:{},search:{},current:{},view:{},isSearching:!1,keydown:{keyHistory:\"\",resetKeyHistory:{start:function(){return setTimeout((function(){i.selectpicker.keydown.keyHistory=\"\"}),800)}}}},this.sizeInfo={},null===this.options.title&&(this.options.title=this.$element.attr(\"title\"));var s=this.options.windowPadding;\"number\"==typeof s&&(this.options.windowPadding=[s,s,s,s]),this.val=J.prototype.val,this.render=J.prototype.render,this.refresh=J.prototype.refresh,this.setStyle=J.prototype.setStyle,this.selectAll=J.prototype.selectAll,this.deselectAll=J.prototype.deselectAll,this.destroy=J.prototype.destroy,this.remove=J.prototype.remove,this.show=J.prototype.show,this.hide=J.prototype.hide,this.init()};function q(n){var i,s=arguments,a=n;if([].shift.apply(s),!A.success){try{A.full=(e.fn.dropdown.Constructor.VERSION||\"\").split(\" \")[0].split(\".\")}catch(e){J.BootstrapVersion?A.full=J.BootstrapVersion.split(\" \")[0].split(\".\"):(A.full=[A.major,\"0\",\"0\"],console.warn(\"There was an issue retrieving Bootstrap's version. Ensure Bootstrap is being loaded before bootstrap-select and there is no namespace collision. If loading Bootstrap asynchronously, the version may need to be manually specified via $.fn.selectpicker.Constructor.BootstrapVersion.\",e))}A.major=A.full[0],A.success=!0}if(\"4\"===A.major){var r=[];J.DEFAULTS.style===N.BUTTONCLASS&&r.push({name:\"style\",className:\"BUTTONCLASS\"}),J.DEFAULTS.iconBase===N.ICONBASE&&r.push({name:\"iconBase\",className:\"ICONBASE\"}),J.DEFAULTS.tickIcon===N.TICKICON&&r.push({name:\"tickIcon\",className:\"TICKICON\"}),N.DIVIDER=\"dropdown-divider\",N.SHOW=\"show\",N.BUTTONCLASS=\"btn-light\",N.POPOVERHEADER=\"popover-header\",N.ICONBASE=\"\",N.TICKICON=\"bs-ok-default\";for(var o=0;o<r.length;o++)n=r[o],J.DEFAULTS[n.name]=N[n.className]}var d=this.each((function(){var n=e(this);if(n.is(\"select\")){var r=n.data(\"selectpicker\"),o=\"object\"==typeof a&&a;if(r){if(o)for(var d in o)Object.prototype.hasOwnProperty.call(o,d)&&(r.options[d]=o[d])}else{var l=n.data();for(var u in l)Object.prototype.hasOwnProperty.call(l,u)&&-1!==e.inArray(u,t)&&delete l[u];var c=e.extend({},J.DEFAULTS,e.fn.selectpicker.defaults||{},l,o);c.template=e.extend({},J.DEFAULTS.template,e.fn.selectpicker.defaults?e.fn.selectpicker.defaults.template:{},l.template,o.template),n.data(\"selectpicker\",r=new J(this,c))}\"string\"==typeof a&&(i=r[a]instanceof Function?r[a].apply(r,s):r.options[a])}}));return void 0!==i?i:d}J.VERSION=\"1.13.18\",J.DEFAULTS={noneSelectedText:\"Nothing selected\",noneResultsText:\"No results matched {0}\",countSelectedText:function(e,t){return 1==e?\"{0} item selected\":\"{0} items selected\"},maxOptionsText:function(e,t){return[1==e?\"Limit reached ({n} item max)\":\"Limit reached ({n} items max)\",1==t?\"Group limit reached ({n} item max)\":\"Group limit reached ({n} items max)\"]},selectAllText:\"Select All\",deselectAllText:\"Deselect All\",doneButton:!1,doneButtonText:\"Close\",multipleSeparator:\", \",styleBase:\"btn\",style:N.BUTTONCLASS,size:\"auto\",title:null,selectedTextFormat:\"values\",width:!1,container:!1,hideDisabled:!1,showSubtext:!1,showIcon:!0,showContent:!0,dropupAuto:!0,header:!1,liveSearch:!1,liveSearchPlaceholder:null,liveSearchNormalize:!1,liveSearchStyle:\"contains\",actionsBox:!1,iconBase:N.ICONBASE,tickIcon:N.TICKICON,showTick:!1,template:{caret:'<span class=\"caret\"></span>'},maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1,windowPadding:0,virtualScroll:600,display:!1,sanitize:!0,sanitizeFn:null,whiteList:i},J.prototype={constructor:J,init:function(){var e=this,t=this.$element.attr(\"id\"),n=this.$element[0],i=n.form;I++,this.selectId=\"bs-select-\"+I,n.classList.add(\"bs-select-hidden\"),this.multiple=this.$element.prop(\"multiple\"),this.autofocus=this.$element.prop(\"autofocus\"),n.classList.contains(\"show-tick\")&&(this.options.showTick=!0),this.$newElement=this.createDropdown(),this.buildData(),this.$element.after(this.$newElement).prependTo(this.$newElement),i&&null===n.form&&(i.id||(i.id=\"form-\"+this.selectId),n.setAttribute(\"form\",i.id)),this.$button=this.$newElement.children(\"button\"),this.$menu=this.$newElement.children($.MENU),this.$menuInner=this.$menu.children(\".inner\"),this.$searchbox=this.$menu.find(\"input\"),n.classList.remove(\"bs-select-hidden\"),!0===this.options.dropdownAlignRight&&this.$menu[0].classList.add(N.MENURIGHT),void 0!==t&&this.$button.attr(\"data-id\",t),this.checkDisabled(),this.clickListener(),this.options.liveSearch?(this.liveSearchListener(),this.focusedParent=this.$searchbox[0]):this.focusedParent=this.$menuInner[0],this.setStyle(),this.render(),this.setWidth(),this.options.container?this.selectPosition():this.$element.on(\"hide\"+W,(function(){if(e.isVirtual()){var t=e.$menuInner[0],n=t.firstChild.cloneNode(!1);t.replaceChild(n,t.firstChild),t.scrollTop=0}})),this.$menu.data(\"this\",this),this.$newElement.data(\"this\",this),this.options.mobile&&this.mobile(),this.$newElement.on({\"hide.bs.dropdown\":function(t){e.$element.trigger(\"hide\"+W,t)},\"hidden.bs.dropdown\":function(t){e.$element.trigger(\"hidden\"+W,t)},\"show.bs.dropdown\":function(t){e.$element.trigger(\"show\"+W,t)},\"shown.bs.dropdown\":function(t){e.$element.trigger(\"shown\"+W,t)}}),n.hasAttribute(\"required\")&&this.$element.on(\"invalid\"+W,(function(){e.$button[0].classList.add(\"bs-invalid\"),e.$element.on(\"shown\"+W+\".invalid\",(function(){e.$element.val(e.$element.val()).off(\"shown\"+W+\".invalid\")})).on(\"rendered\"+W,(function(){this.validity.valid&&e.$button[0].classList.remove(\"bs-invalid\"),e.$element.off(\"rendered\"+W)})),e.$button.on(\"blur\"+W,(function(){e.$element.trigger(\"focus\").trigger(\"blur\"),e.$button.off(\"blur\"+W)}))})),setTimeout((function(){e.buildList(),e.$element.trigger(\"loaded\"+W)}))},createDropdown:function(){var t=this.multiple||this.options.showTick?\" show-tick\":\"\",n=this.multiple?' aria-multiselectable=\"true\"':\"\",i=\"\",s=this.autofocus?\" autofocus\":\"\";A.major<4&&this.$element.parent().hasClass(\"input-group\")&&(i=\" input-group-btn\");var a,r=\"\",o=\"\",d=\"\",l=\"\";return this.options.header&&(r='<div class=\"'+N.POPOVERHEADER+'\"><button type=\"button\" class=\"close\" aria-hidden=\"true\">&times;</button>'+this.options.header+\"</div>\"),this.options.liveSearch&&(o='<div class=\"bs-searchbox\"><input type=\"search\" class=\"form-control\" autocomplete=\"off\"'+(null===this.options.liveSearchPlaceholder?\"\":' placeholder=\"'+E(this.options.liveSearchPlaceholder)+'\"')+' role=\"combobox\" aria-label=\"Search\" aria-controls=\"'+this.selectId+'\" aria-autocomplete=\"list\"></div>'),this.multiple&&this.options.actionsBox&&(d='<div class=\"bs-actionsbox\"><div class=\"btn-group btn-group-sm btn-block\"><button type=\"button\" class=\"actions-btn bs-select-all btn '+N.BUTTONCLASS+'\">'+this.options.selectAllText+'</button><button type=\"button\" class=\"actions-btn bs-deselect-all btn '+N.BUTTONCLASS+'\">'+this.options.deselectAllText+\"</button></div></div>\"),this.multiple&&this.options.doneButton&&(l='<div class=\"bs-donebutton\"><div class=\"btn-group btn-block\"><button type=\"button\" class=\"btn btn-sm '+N.BUTTONCLASS+'\">'+this.options.doneButtonText+\"</button></div></div>\"),a='<div class=\"dropdown bootstrap-select'+t+i+'\"><button type=\"button\" tabindex=\"-1\" class=\"'+this.options.styleBase+' dropdown-toggle\" '+(\"static\"===this.options.display?'data-display=\"static\"':\"\")+'data-toggle=\"dropdown\"'+s+' role=\"combobox\" aria-owns=\"'+this.selectId+'\" aria-haspopup=\"listbox\" aria-expanded=\"false\"><div class=\"filter-option\"><div class=\"filter-option-inner\"><div class=\"filter-option-inner-inner\"></div></div> </div>'+(\"4\"===A.major?\"\":'<span class=\"bs-caret\">'+this.options.template.caret+\"</span>\")+'</button><div class=\"'+N.MENU+\" \"+(\"4\"===A.major?\"\":N.SHOW)+'\">'+r+o+d+'<div class=\"inner '+N.SHOW+'\" role=\"listbox\" id=\"'+this.selectId+'\" tabindex=\"-1\" '+n+'><ul class=\"'+N.MENU+\" inner \"+(\"4\"===A.major?N.SHOW:\"\")+'\" role=\"presentation\"></ul></div>'+l+\"</div></div>\",e(a)},setPositionData:function(){this.selectpicker.view.canHighlight=[],this.selectpicker.view.size=0,this.selectpicker.view.firstHighlightIndex=!1;for(var e=0;e<this.selectpicker.current.data.length;e++){var t=this.selectpicker.current.data[e],n=!0;\"divider\"===t.type?(n=!1,t.height=this.sizeInfo.dividerHeight):\"optgroup-label\"===t.type?(n=!1,t.height=this.sizeInfo.dropdownHeaderHeight):t.height=this.sizeInfo.liHeight,t.disabled&&(n=!1),this.selectpicker.view.canHighlight.push(n),n&&(this.selectpicker.view.size++,t.posinset=this.selectpicker.view.size,!1===this.selectpicker.view.firstHighlightIndex&&(this.selectpicker.view.firstHighlightIndex=e)),t.position=(0===e?0:this.selectpicker.current.data[e-1].position)+t.height}},isVirtual:function(){return!1!==this.options.virtualScroll&&this.selectpicker.main.elements.length>=this.options.virtualScroll||!0===this.options.virtualScroll},createView:function(t,n,i){var s,a,r=this,d=0,l=[];if(this.selectpicker.isSearching=t,this.selectpicker.current=t?this.selectpicker.search:this.selectpicker.main,this.setPositionData(),n)if(i)d=this.$menuInner[0].scrollTop;else if(!r.multiple){var u=r.$element[0],c=(u.options[u.selectedIndex]||{}).liIndex;if(\"number\"==typeof c&&!1!==r.options.size){var h=r.selectpicker.main.data[c],m=h&&h.position;m&&(d=m-(r.sizeInfo.menuInnerHeight+r.sizeInfo.liHeight)/2)}}function _(e,n){var i,d,u,c,h,m,_,f,y=r.selectpicker.current.elements.length,g=[],M=!0,v=r.isVirtual();r.selectpicker.view.scrollTop=e,i=Math.ceil(r.sizeInfo.menuInnerHeight/r.sizeInfo.liHeight*1.5),d=Math.round(y/i)||1;for(var L=0;L<d;L++){var Y=(L+1)*i;if(L===d-1&&(Y=y),g[L]=[L*i+(L?1:0),Y],!y)break;void 0===h&&e-1<=r.selectpicker.current.data[Y-1].position-r.sizeInfo.menuInnerHeight&&(h=L)}if(void 0===h&&(h=0),m=[r.selectpicker.view.position0,r.selectpicker.view.position1],u=Math.max(0,h-1),c=Math.min(d-1,h+1),r.selectpicker.view.position0=!1===v?0:Math.max(0,g[u][0])||0,r.selectpicker.view.position1=!1===v?y:Math.min(y,g[c][1])||0,_=m[0]!==r.selectpicker.view.position0||m[1]!==r.selectpicker.view.position1,void 0!==r.activeIndex&&(a=r.selectpicker.main.elements[r.prevActiveIndex],l=r.selectpicker.main.elements[r.activeIndex],s=r.selectpicker.main.elements[r.selectedIndex],n&&(r.activeIndex!==r.selectedIndex&&r.defocusItem(l),r.activeIndex=void 0),r.activeIndex&&r.activeIndex!==r.selectedIndex&&r.defocusItem(s)),void 0!==r.prevActiveIndex&&r.prevActiveIndex!==r.activeIndex&&r.prevActiveIndex!==r.selectedIndex&&r.defocusItem(a),(n||_)&&(f=r.selectpicker.view.visibleElements?r.selectpicker.view.visibleElements.slice():[],r.selectpicker.view.visibleElements=!1===v?r.selectpicker.current.elements:r.selectpicker.current.elements.slice(r.selectpicker.view.position0,r.selectpicker.view.position1),r.setOptionStatus(),(t||!1===v&&n)&&(M=!p(f,r.selectpicker.view.visibleElements)),(n||!0===v)&&M)){var k,b,w=r.$menuInner[0],D=document.createDocumentFragment(),T=w.firstChild.cloneNode(!1),x=r.selectpicker.view.visibleElements,S=[];w.replaceChild(T,w.firstChild),L=0;for(var H=x.length;L<H;L++){var j,C,E=x[L];r.options.sanitize&&(j=E.lastChild)&&(C=r.selectpicker.current.data[L+r.selectpicker.view.position0])&&C.content&&!C.sanitized&&(S.push(j),C.sanitized=!0),D.appendChild(E)}if(r.options.sanitize&&S.length&&o(S,r.options.whiteList,r.options.sanitizeFn),!0===v?(k=0===r.selectpicker.view.position0?0:r.selectpicker.current.data[r.selectpicker.view.position0-1].position,b=r.selectpicker.view.position1>y-1?0:r.selectpicker.current.data[y-1].position-r.selectpicker.current.data[r.selectpicker.view.position1-1].position,w.firstChild.style.marginTop=k+\"px\",w.firstChild.style.marginBottom=b+\"px\"):(w.firstChild.style.marginTop=0,w.firstChild.style.marginBottom=0),w.firstChild.appendChild(D),!0===v&&r.sizeInfo.hasScrollBar){var O=w.firstChild.offsetWidth;if(n&&O<r.sizeInfo.menuInnerInnerWidth&&r.sizeInfo.totalMenuWidth>r.sizeInfo.selectWidth)w.firstChild.style.minWidth=r.sizeInfo.menuInnerInnerWidth+\"px\";else if(O>r.sizeInfo.menuInnerInnerWidth){r.$menu[0].style.minWidth=0;var P=w.firstChild.offsetWidth;P>r.sizeInfo.menuInnerInnerWidth&&(r.sizeInfo.menuInnerInnerWidth=P,w.firstChild.style.minWidth=r.sizeInfo.menuInnerInnerWidth+\"px\"),r.$menu[0].style.minWidth=\"\"}}}if(r.prevActiveIndex=r.activeIndex,r.options.liveSearch){if(t&&n){var A,I=0;r.selectpicker.view.canHighlight[I]||(I=1+r.selectpicker.view.canHighlight.slice(1).indexOf(!0)),A=r.selectpicker.view.visibleElements[I],r.defocusItem(r.selectpicker.view.currentActive),r.activeIndex=(r.selectpicker.current.data[I]||{}).index,r.focusItem(A)}}else r.$menuInner.trigger(\"focus\")}_(d,!0),this.$menuInner.off(\"scroll.createView\").on(\"scroll.createView\",(function(e,t){r.noScroll||_(this.scrollTop,t),r.noScroll=!1})),e(window).off(\"resize\"+W+\".\"+this.selectId+\".createView\").on(\"resize\"+W+\".\"+this.selectId+\".createView\",(function(){r.$newElement.hasClass(N.SHOW)&&_(r.$menuInner[0].scrollTop)}))},focusItem:function(e,t,n){if(e){t=t||this.selectpicker.main.data[this.activeIndex];var i=e.firstChild;i&&(i.setAttribute(\"aria-setsize\",this.selectpicker.view.size),i.setAttribute(\"aria-posinset\",t.posinset),!0!==n&&(this.focusedParent.setAttribute(\"aria-activedescendant\",i.id),e.classList.add(\"active\"),i.classList.add(\"active\")))}},defocusItem:function(e){e&&(e.classList.remove(\"active\"),e.firstChild&&e.firstChild.classList.remove(\"active\"))},setPlaceholder:function(){var e=this,t=!1;if(this.options.title&&!this.multiple){this.selectpicker.view.titleOption||(this.selectpicker.view.titleOption=document.createElement(\"option\")),t=!0;var n=this.$element[0],i=!1,s=!this.selectpicker.view.titleOption.parentNode,a=n.selectedIndex,r=n.options[a],o=window.performance&&window.performance.getEntriesByType(\"navigation\"),d=o&&o.length?\"back_forward\"!==o[0].type:2!==window.performance.navigation.type;s&&(this.selectpicker.view.titleOption.className=\"bs-title-option\",this.selectpicker.view.titleOption.value=\"\",i=!r||0===a&&!1===r.defaultSelected&&void 0===this.$element.data(\"selected\")),(s||0!==this.selectpicker.view.titleOption.index)&&n.insertBefore(this.selectpicker.view.titleOption,n.firstChild),i&&d?n.selectedIndex=0:\"complete\"!==document.readyState&&window.addEventListener(\"pageshow\",(function(){e.selectpicker.view.displayedValue!==n.value&&e.render()}))}return t},buildData:function(){var e=':not([hidden]):not([data-hidden=\"true\"])',t=[],n=0,i=this.setPlaceholder()?1:0;this.options.hideDisabled&&(e+=\":not(:disabled)\");var s=this.$element[0].querySelectorAll(\"select > *\"+e);function a(e){var n=t[t.length-1];n&&\"divider\"===n.type&&(n.optID||e.optID)||((e=e||{}).type=\"divider\",t.push(e))}function r(e,n){if((n=n||{}).divider=\"true\"===e.getAttribute(\"data-divider\"),n.divider)a({optID:n.optID});else{var i=t.length,s=e.style.cssText,r=s?E(s):\"\",o=(e.className||\"\")+(n.optgroupClass||\"\");n.optID&&(o=\"opt \"+o),n.optionClass=o.trim(),n.inlineStyle=r,n.text=e.textContent,n.content=e.getAttribute(\"data-content\"),n.tokens=e.getAttribute(\"data-tokens\"),n.subtext=e.getAttribute(\"data-subtext\"),n.icon=e.getAttribute(\"data-icon\"),e.liIndex=i,n.display=n.content||n.text,n.type=\"option\",n.index=i,n.option=e,n.selected=!!e.selected,n.disabled=n.disabled||!!e.disabled,t.push(n)}}function o(s,o){var d=o[s],l=!(s-1<i)&&o[s-1],u=o[s+1],c=d.querySelectorAll(\"option\"+e);if(c.length){var h,m,_={display:E(d.label),subtext:d.getAttribute(\"data-subtext\"),icon:d.getAttribute(\"data-icon\"),type:\"optgroup-label\",optgroupClass:\" \"+(d.className||\"\")};n++,l&&a({optID:n}),_.optID=n,t.push(_);for(var p=0,f=c.length;p<f;p++){var y=c[p];0===p&&(m=(h=t.length-1)+f),r(y,{headerIndex:h,lastIndex:m,optID:_.optID,optgroupClass:_.optgroupClass,disabled:d.disabled})}u&&a({optID:n})}}for(var d=s.length,l=i;l<d;l++){var u=s[l];\"OPTGROUP\"!==u.tagName?r(u,{}):o(l,s)}this.selectpicker.main.data=this.selectpicker.current.data=t},buildList:function(){var e=this,t=this.selectpicker.main.data,n=[],i=0;function s(t){var s,a=0;switch(t.type){case\"divider\":s=U.li(!1,N.DIVIDER,t.optID?t.optID+\"div\":void 0);break;case\"option\":(s=U.li(U.a(U.text.call(e,t),t.optionClass,t.inlineStyle),\"\",t.optID)).firstChild&&(s.firstChild.id=e.selectId+\"-\"+t.index);break;case\"optgroup-label\":s=U.li(U.label.call(e,t),\"dropdown-header\"+t.optgroupClass,t.optID)}t.element=s,n.push(s),t.display&&(a+=t.display.length),t.subtext&&(a+=t.subtext.length),t.icon&&(a+=1),a>i&&(i=a,e.selectpicker.view.widestOption=n[n.length-1])}!e.options.showTick&&!e.multiple||z.checkMark.parentNode||(z.checkMark.className=this.options.iconBase+\" \"+e.options.tickIcon+\" check-mark\",z.a.appendChild(z.checkMark));for(var a=t.length,r=0;r<a;r++)s(t[r]);this.selectpicker.main.elements=this.selectpicker.current.elements=n},findLis:function(){return this.$menuInner.find(\".inner > li\")},render:function(){var e,t,n=this,i=this.$element[0],s=this.setPlaceholder()&&0===i.selectedIndex,a=f(i,this.options.hideDisabled),r=a.length,d=this.$button[0],l=d.querySelector(\".filter-option-inner-inner\"),u=document.createTextNode(this.options.multipleSeparator),c=z.fragment.cloneNode(!1),h=!1;if(d.classList.toggle(\"bs-placeholder\",n.multiple?!r:!y(i,a)),n.multiple||1!==a.length||(n.selectpicker.view.displayedValue=y(i,a)),\"static\"===this.options.selectedTextFormat)c=U.text.call(this,{text:this.options.title},!0);else if((e=this.multiple&&-1!==this.options.selectedTextFormat.indexOf(\"count\")&&r>1)&&(e=(t=this.options.selectedTextFormat.split(\">\")).length>1&&r>t[1]||1===t.length&&r>=2),!1===e){if(!s){for(var m=0;m<r&&m<50;m++){var _=a[m],p=this.selectpicker.main.data[_.liIndex],g={};this.multiple&&m>0&&c.appendChild(u.cloneNode(!1)),_.title?g.text=_.title:p&&(p.content&&n.options.showContent?(g.content=p.content.toString(),h=!0):(n.options.showIcon&&(g.icon=p.icon),n.options.showSubtext&&!n.multiple&&p.subtext&&(g.subtext=\" \"+p.subtext),g.text=_.textContent.trim())),c.appendChild(U.text.call(this,g,!0))}r>49&&c.appendChild(document.createTextNode(\"...\"))}}else{var M=':not([hidden]):not([data-hidden=\"true\"]):not([data-divider=\"true\"])';this.options.hideDisabled&&(M+=\":not(:disabled)\");var v=this.$element[0].querySelectorAll(\"select > option\"+M+\", optgroup\"+M+\" option\"+M).length,L=\"function\"==typeof this.options.countSelectedText?this.options.countSelectedText(r,v):this.options.countSelectedText;c=U.text.call(this,{text:L.replace(\"{0}\",r.toString()).replace(\"{1}\",v.toString())},!0)}if(null==this.options.title&&(this.options.title=this.$element.attr(\"title\")),c.childNodes.length||(c=U.text.call(this,{text:void 0!==this.options.title?this.options.title:this.options.noneSelectedText},!0)),d.title=c.textContent.replace(/<[^>]*>?/g,\"\").trim(),this.options.sanitize&&h&&o([c],n.options.whiteList,n.options.sanitizeFn),l.innerHTML=\"\",l.appendChild(c),A.major<4&&this.$newElement[0].classList.contains(\"bs3-has-addon\")){var Y=d.querySelector(\".filter-expand\"),k=l.cloneNode(!0);k.className=\"filter-expand\",Y?d.replaceChild(k,Y):d.appendChild(k)}this.$element.trigger(\"rendered\"+W)},setStyle:function(e,t){var n,i=this.$button[0],s=this.$newElement[0],a=this.options.style.trim();this.$element.attr(\"class\")&&this.$newElement.addClass(this.$element.attr(\"class\").replace(/selectpicker|mobile-device|bs-select-hidden|validate\\[.*\\]/gi,\"\")),A.major<4&&(s.classList.add(\"bs3\"),s.parentNode.classList&&s.parentNode.classList.contains(\"input-group\")&&(s.previousElementSibling||s.nextElementSibling)&&(s.previousElementSibling||s.nextElementSibling).classList.contains(\"input-group-addon\")&&s.classList.add(\"bs3-has-addon\")),n=e?e.trim():a,\"add\"==t?n&&i.classList.add.apply(i.classList,n.split(\" \")):\"remove\"==t?n&&i.classList.remove.apply(i.classList,n.split(\" \")):(a&&i.classList.remove.apply(i.classList,a.split(\" \")),n&&i.classList.add.apply(i.classList,n.split(\" \")))},liHeight:function(t){if(t||!1!==this.options.size&&!Object.keys(this.sizeInfo).length){var n,i=z.div.cloneNode(!1),s=z.div.cloneNode(!1),a=z.div.cloneNode(!1),r=document.createElement(\"ul\"),o=z.li.cloneNode(!1),d=z.li.cloneNode(!1),l=z.a.cloneNode(!1),u=z.span.cloneNode(!1),c=this.options.header&&this.$menu.find(\".\"+N.POPOVERHEADER).length>0?this.$menu.find(\".\"+N.POPOVERHEADER)[0].cloneNode(!0):null,h=this.options.liveSearch?z.div.cloneNode(!1):null,m=this.options.actionsBox&&this.multiple&&this.$menu.find(\".bs-actionsbox\").length>0?this.$menu.find(\".bs-actionsbox\")[0].cloneNode(!0):null,_=this.options.doneButton&&this.multiple&&this.$menu.find(\".bs-donebutton\").length>0?this.$menu.find(\".bs-donebutton\")[0].cloneNode(!0):null,p=this.$element.find(\"option\")[0];if(this.sizeInfo.selectWidth=this.$newElement[0].offsetWidth,u.className=\"text\",l.className=\"dropdown-item \"+(p?p.className:\"\"),i.className=this.$menu[0].parentNode.className+\" \"+N.SHOW,i.style.width=0,\"auto\"===this.options.width&&(s.style.minWidth=0),s.className=N.MENU+\" \"+N.SHOW,a.className=\"inner \"+N.SHOW,r.className=N.MENU+\" inner \"+(\"4\"===A.major?N.SHOW:\"\"),o.className=N.DIVIDER,d.className=\"dropdown-header\",u.appendChild(document.createTextNode(\"​\")),this.selectpicker.current.data.length)for(var f=0;f<this.selectpicker.current.data.length;f++){var y=this.selectpicker.current.data[f];if(\"option\"===y.type){n=y.element;break}}else n=z.li.cloneNode(!1),l.appendChild(u),n.appendChild(l);if(d.appendChild(u.cloneNode(!0)),this.selectpicker.view.widestOption&&r.appendChild(this.selectpicker.view.widestOption.cloneNode(!0)),r.appendChild(n),r.appendChild(o),r.appendChild(d),c&&s.appendChild(c),h){var g=document.createElement(\"input\");h.className=\"bs-searchbox\",g.className=\"form-control\",h.appendChild(g),s.appendChild(h)}m&&s.appendChild(m),a.appendChild(r),s.appendChild(a),_&&s.appendChild(_),i.appendChild(s),document.body.appendChild(i);var M,v=n.offsetHeight,L=d?d.offsetHeight:0,k=c?c.offsetHeight:0,b=h?h.offsetHeight:0,w=m?m.offsetHeight:0,D=_?_.offsetHeight:0,T=e(o).outerHeight(!0),x=!!window.getComputedStyle&&window.getComputedStyle(s),S=s.offsetWidth,H=x?null:e(s),j={vert:Y(x?x.paddingTop:H.css(\"paddingTop\"))+Y(x?x.paddingBottom:H.css(\"paddingBottom\"))+Y(x?x.borderTopWidth:H.css(\"borderTopWidth\"))+Y(x?x.borderBottomWidth:H.css(\"borderBottomWidth\")),horiz:Y(x?x.paddingLeft:H.css(\"paddingLeft\"))+Y(x?x.paddingRight:H.css(\"paddingRight\"))+Y(x?x.borderLeftWidth:H.css(\"borderLeftWidth\"))+Y(x?x.borderRightWidth:H.css(\"borderRightWidth\"))},C={vert:j.vert+Y(x?x.marginTop:H.css(\"marginTop\"))+Y(x?x.marginBottom:H.css(\"marginBottom\"))+2,horiz:j.horiz+Y(x?x.marginLeft:H.css(\"marginLeft\"))+Y(x?x.marginRight:H.css(\"marginRight\"))+2};a.style.overflowY=\"scroll\",M=s.offsetWidth-S,document.body.removeChild(i),this.sizeInfo.liHeight=v,this.sizeInfo.dropdownHeaderHeight=L,this.sizeInfo.headerHeight=k,this.sizeInfo.searchHeight=b,this.sizeInfo.actionsHeight=w,this.sizeInfo.doneButtonHeight=D,this.sizeInfo.dividerHeight=T,this.sizeInfo.menuPadding=j,this.sizeInfo.menuExtras=C,this.sizeInfo.menuWidth=S,this.sizeInfo.menuInnerInnerWidth=S-j.horiz,this.sizeInfo.totalMenuWidth=this.sizeInfo.menuWidth,this.sizeInfo.scrollBarWidth=M,this.sizeInfo.selectHeight=this.$newElement[0].offsetHeight,this.setPositionData()}},getSelectPosition:function(){var t,n=this,i=e(window),s=n.$newElement.offset(),a=e(n.options.container);n.options.container&&a.length&&!a.is(\"body\")?((t=a.offset()).top+=parseInt(a.css(\"borderTopWidth\")),t.left+=parseInt(a.css(\"borderLeftWidth\"))):t={top:0,left:0};var r=n.options.windowPadding;this.sizeInfo.selectOffsetTop=s.top-t.top-i.scrollTop(),this.sizeInfo.selectOffsetBot=i.height()-this.sizeInfo.selectOffsetTop-this.sizeInfo.selectHeight-t.top-r[2],this.sizeInfo.selectOffsetLeft=s.left-t.left-i.scrollLeft(),this.sizeInfo.selectOffsetRight=i.width()-this.sizeInfo.selectOffsetLeft-this.sizeInfo.selectWidth-t.left-r[1],this.sizeInfo.selectOffsetTop-=r[0],this.sizeInfo.selectOffsetLeft-=r[3]},setMenuSize:function(e){this.getSelectPosition();var t,n,i,s,a,r,o,d,l=this.sizeInfo.selectWidth,u=this.sizeInfo.liHeight,c=this.sizeInfo.headerHeight,h=this.sizeInfo.searchHeight,m=this.sizeInfo.actionsHeight,_=this.sizeInfo.doneButtonHeight,p=this.sizeInfo.dividerHeight,f=this.sizeInfo.menuPadding,y=0;if(this.options.dropupAuto&&(o=u*this.selectpicker.current.elements.length+f.vert,d=this.sizeInfo.selectOffsetTop-this.sizeInfo.selectOffsetBot>this.sizeInfo.menuExtras.vert&&o+this.sizeInfo.menuExtras.vert+50>this.sizeInfo.selectOffsetBot,!0===this.selectpicker.isSearching&&(d=this.selectpicker.dropup),this.$newElement.toggleClass(N.DROPUP,d),this.selectpicker.dropup=d),\"auto\"===this.options.size)s=this.selectpicker.current.elements.length>3?3*this.sizeInfo.liHeight+this.sizeInfo.menuExtras.vert-2:0,n=this.sizeInfo.selectOffsetBot-this.sizeInfo.menuExtras.vert,i=s+c+h+m+_,r=Math.max(s-f.vert,0),this.$newElement.hasClass(N.DROPUP)&&(n=this.sizeInfo.selectOffsetTop-this.sizeInfo.menuExtras.vert),a=n,t=n-c-h-m-_-f.vert;else if(this.options.size&&\"auto\"!=this.options.size&&this.selectpicker.current.elements.length>this.options.size){for(var g=0;g<this.options.size;g++)\"divider\"===this.selectpicker.current.data[g].type&&y++;t=(n=u*this.options.size+y*p+f.vert)-f.vert,a=n+c+h+m+_,i=r=\"\"}this.$menu.css({\"max-height\":a+\"px\",overflow:\"hidden\",\"min-height\":i+\"px\"}),this.$menuInner.css({\"max-height\":t+\"px\",\"overflow-y\":\"auto\",\"min-height\":r+\"px\"}),this.sizeInfo.menuInnerHeight=Math.max(t,1),this.selectpicker.current.data.length&&this.selectpicker.current.data[this.selectpicker.current.data.length-1].position>this.sizeInfo.menuInnerHeight&&(this.sizeInfo.hasScrollBar=!0,this.sizeInfo.totalMenuWidth=this.sizeInfo.menuWidth+this.sizeInfo.scrollBarWidth),\"auto\"===this.options.dropdownAlignRight&&this.$menu.toggleClass(N.MENURIGHT,this.sizeInfo.selectOffsetLeft>this.sizeInfo.selectOffsetRight&&this.sizeInfo.selectOffsetRight<this.sizeInfo.totalMenuWidth-l),this.dropdown&&this.dropdown._popper&&this.dropdown._popper.update()},setSize:function(t){if(this.liHeight(t),this.options.header&&this.$menu.css(\"padding-top\",0),!1!==this.options.size){var n=this,i=e(window);this.setMenuSize(),this.options.liveSearch&&this.$searchbox.off(\"input.setMenuSize propertychange.setMenuSize\").on(\"input.setMenuSize propertychange.setMenuSize\",(function(){return n.setMenuSize()})),\"auto\"===this.options.size?i.off(\"resize\"+W+\".\"+this.selectId+\".setMenuSize scroll\"+W+\".\"+this.selectId+\".setMenuSize\").on(\"resize\"+W+\".\"+this.selectId+\".setMenuSize scroll\"+W+\".\"+this.selectId+\".setMenuSize\",(function(){return n.setMenuSize()})):this.options.size&&\"auto\"!=this.options.size&&this.selectpicker.current.elements.length>this.options.size&&i.off(\"resize\"+W+\".\"+this.selectId+\".setMenuSize scroll\"+W+\".\"+this.selectId+\".setMenuSize\")}this.createView(!1,!0,t)},setWidth:function(){var e=this;\"auto\"===this.options.width?requestAnimationFrame((function(){e.$menu.css(\"min-width\",\"0\"),e.$element.on(\"loaded\"+W,(function(){e.liHeight(),e.setMenuSize();var t=e.$newElement.clone().appendTo(\"body\"),n=t.css(\"width\",\"auto\").children(\"button\").outerWidth();t.remove(),e.sizeInfo.selectWidth=Math.max(e.sizeInfo.totalMenuWidth,n),e.$newElement.css(\"width\",e.sizeInfo.selectWidth+\"px\")}))})):\"fit\"===this.options.width?(this.$menu.css(\"min-width\",\"\"),this.$newElement.css(\"width\",\"\").addClass(\"fit-width\")):this.options.width?(this.$menu.css(\"min-width\",\"\"),this.$newElement.css(\"width\",this.options.width)):(this.$menu.css(\"min-width\",\"\"),this.$newElement.css(\"width\",\"\")),this.$newElement.hasClass(\"fit-width\")&&\"fit\"!==this.options.width&&this.$newElement[0].classList.remove(\"fit-width\")},selectPosition:function(){this.$bsContainer=e('<div class=\"bs-container\" />');var t,n,i,s=this,a=e(this.options.container),r=function(r){var o={},d=s.options.display||!!e.fn.dropdown.Constructor.Default&&e.fn.dropdown.Constructor.Default.display;s.$bsContainer.addClass(r.attr(\"class\").replace(/form-control|fit-width/gi,\"\")).toggleClass(N.DROPUP,r.hasClass(N.DROPUP)),t=r.offset(),a.is(\"body\")?n={top:0,left:0}:((n=a.offset()).top+=parseInt(a.css(\"borderTopWidth\"))-a.scrollTop(),n.left+=parseInt(a.css(\"borderLeftWidth\"))-a.scrollLeft()),i=r.hasClass(N.DROPUP)?0:r[0].offsetHeight,(A.major<4||\"static\"===d)&&(o.top=t.top-n.top+i,o.left=t.left-n.left),o.width=r[0].offsetWidth,s.$bsContainer.css(o)};this.$button.on(\"click.bs.dropdown.data-api\",(function(){s.isDisabled()||(r(s.$newElement),s.$bsContainer.appendTo(s.options.container).toggleClass(N.SHOW,!s.$button.hasClass(N.SHOW)).append(s.$menu))})),e(window).off(\"resize\"+W+\".\"+this.selectId+\" scroll\"+W+\".\"+this.selectId).on(\"resize\"+W+\".\"+this.selectId+\" scroll\"+W+\".\"+this.selectId,(function(){s.$newElement.hasClass(N.SHOW)&&r(s.$newElement)})),this.$element.on(\"hide\"+W,(function(){s.$menu.data(\"height\",s.$menu.height()),s.$bsContainer.detach()}))},setOptionStatus:function(e){var t=this;if(t.noScroll=!1,t.selectpicker.view.visibleElements&&t.selectpicker.view.visibleElements.length)for(var n=0;n<t.selectpicker.view.visibleElements.length;n++){var i=t.selectpicker.current.data[n+t.selectpicker.view.position0],s=i.option;s&&(!0!==e&&t.setDisabled(i.index,i.disabled),t.setSelected(i.index,s.selected))}},setSelected:function(e,t){var n,i,s=this.selectpicker.main.elements[e],a=this.selectpicker.main.data[e],r=void 0!==this.activeIndex,o=this.activeIndex===e||t&&!this.multiple&&!r;a.selected=t,i=s.firstChild,t&&(this.selectedIndex=e),s.classList.toggle(\"selected\",t),o?(this.focusItem(s,a),this.selectpicker.view.currentActive=s,this.activeIndex=e):this.defocusItem(s),i&&(i.classList.toggle(\"selected\",t),t?i.setAttribute(\"aria-selected\",!0):this.multiple?i.setAttribute(\"aria-selected\",!1):i.removeAttribute(\"aria-selected\")),o||r||!t||void 0===this.prevActiveIndex||(n=this.selectpicker.main.elements[this.prevActiveIndex],this.defocusItem(n))},setDisabled:function(e,t){var n,i=this.selectpicker.main.elements[e];this.selectpicker.main.data[e].disabled=t,n=i.firstChild,i.classList.toggle(N.DISABLED,t),n&&(\"4\"===A.major&&n.classList.toggle(N.DISABLED,t),t?(n.setAttribute(\"aria-disabled\",t),n.setAttribute(\"tabindex\",-1)):(n.removeAttribute(\"aria-disabled\"),n.setAttribute(\"tabindex\",0)))},isDisabled:function(){return this.$element[0].disabled},checkDisabled:function(){this.isDisabled()?(this.$newElement[0].classList.add(N.DISABLED),this.$button.addClass(N.DISABLED).attr(\"aria-disabled\",!0)):this.$button[0].classList.contains(N.DISABLED)&&(this.$newElement[0].classList.remove(N.DISABLED),this.$button.removeClass(N.DISABLED).attr(\"aria-disabled\",!1))},clickListener:function(){var t=this,n=e(document);function i(){t.options.liveSearch?t.$searchbox.trigger(\"focus\"):t.$menuInner.trigger(\"focus\")}function s(){t.dropdown&&t.dropdown._popper&&t.dropdown._popper.state.isCreated?i():requestAnimationFrame(s)}n.data(\"spaceSelect\",!1),this.$button.on(\"keyup\",(function(e){/(32)/.test(e.keyCode.toString(10))&&n.data(\"spaceSelect\")&&(e.preventDefault(),n.data(\"spaceSelect\",!1))})),this.$newElement.on(\"show.bs.dropdown\",(function(){A.major>3&&!t.dropdown&&(t.dropdown=t.$button.data(\"bs.dropdown\"),t.dropdown._menu=t.$menu[0])})),this.$button.on(\"click.bs.dropdown.data-api\",(function(){t.$newElement.hasClass(N.SHOW)||t.setSize()})),this.$element.on(\"shown\"+W,(function(){t.$menuInner[0].scrollTop!==t.selectpicker.view.scrollTop&&(t.$menuInner[0].scrollTop=t.selectpicker.view.scrollTop),A.major>3?requestAnimationFrame(s):i()})),this.$menuInner.on(\"mouseenter\",\"li a\",(function(e){var n=this.parentElement,i=t.isVirtual()?t.selectpicker.view.position0:0,s=Array.prototype.indexOf.call(n.parentElement.children,n),a=t.selectpicker.current.data[s+i];t.focusItem(n,a,!0)})),this.$menuInner.on(\"click\",\"li a\",(function(n,i){var s=e(this),a=t.$element[0],r=t.isVirtual()?t.selectpicker.view.position0:0,o=t.selectpicker.current.data[s.parent().index()+r],d=o.index,l=y(a),u=a.selectedIndex,c=a.options[u],h=!0;if(t.multiple&&1!==t.options.maxOptions&&n.stopPropagation(),n.preventDefault(),!t.isDisabled()&&!s.parent().hasClass(N.DISABLED)){var m=o.option,_=e(m),p=m.selected,g=_.parent(\"optgroup\"),v=g.find(\"option\"),L=t.options.maxOptions,Y=g.data(\"maxOptions\")||!1;if(d===t.activeIndex&&(i=!0),i||(t.prevActiveIndex=t.activeIndex,t.activeIndex=void 0),t.multiple){if(m.selected=!p,t.setSelected(d,!p),t.focusedParent.focus(),!1!==L||!1!==Y){var k=L<f(a).length,b=Y<g.find(\"option:selected\").length;if(L&&k||Y&&b)if(L&&1==L)a.selectedIndex=-1,m.selected=!0,t.setOptionStatus(!0);else if(Y&&1==Y){for(var w=0;w<v.length;w++){var D=v[w];D.selected=!1,t.setSelected(D.liIndex,!1)}m.selected=!0,t.setSelected(d,!0)}else{var T=\"string\"==typeof t.options.maxOptionsText?[t.options.maxOptionsText,t.options.maxOptionsText]:t.options.maxOptionsText,x=\"function\"==typeof T?T(L,Y):T,S=x[0].replace(\"{n}\",L),H=x[1].replace(\"{n}\",Y),j=e('<div class=\"notify\"></div>');x[2]&&(S=S.replace(\"{var}\",x[2][L>1?0:1]),H=H.replace(\"{var}\",x[2][Y>1?0:1])),m.selected=!1,t.$menu.append(j),L&&k&&(j.append(e(\"<div>\"+S+\"</div>\")),h=!1,t.$element.trigger(\"maxReached\"+W)),Y&&b&&(j.append(e(\"<div>\"+H+\"</div>\")),h=!1,t.$element.trigger(\"maxReachedGrp\"+W)),setTimeout((function(){t.setSelected(d,!1)}),10),j[0].classList.add(\"fadeOut\"),setTimeout((function(){j.remove()}),1050)}}}else c&&(c.selected=!1),m.selected=!0,t.setSelected(d,!0);!t.multiple||t.multiple&&1===t.options.maxOptions?t.$button.trigger(\"focus\"):t.options.liveSearch&&t.$searchbox.trigger(\"focus\"),h&&(t.multiple||u!==a.selectedIndex)&&(M=[m.index,_.prop(\"selected\"),l],t.$element.triggerNative(\"change\"))}})),this.$menu.on(\"click\",\"li.\"+N.DISABLED+\" a, .\"+N.POPOVERHEADER+\", .\"+N.POPOVERHEADER+\" :not(.close)\",(function(n){n.currentTarget==this&&(n.preventDefault(),n.stopPropagation(),t.options.liveSearch&&!e(n.target).hasClass(\"close\")?t.$searchbox.trigger(\"focus\"):t.$button.trigger(\"focus\"))})),this.$menuInner.on(\"click\",\".divider, .dropdown-header\",(function(e){e.preventDefault(),e.stopPropagation(),t.options.liveSearch?t.$searchbox.trigger(\"focus\"):t.$button.trigger(\"focus\")})),this.$menu.on(\"click\",\".\"+N.POPOVERHEADER+\" .close\",(function(){t.$button.trigger(\"click\")})),this.$searchbox.on(\"click\",(function(e){e.stopPropagation()})),this.$menu.on(\"click\",\".actions-btn\",(function(n){t.options.liveSearch?t.$searchbox.trigger(\"focus\"):t.$button.trigger(\"focus\"),n.preventDefault(),n.stopPropagation(),e(this).hasClass(\"bs-select-all\")?t.selectAll():t.deselectAll()})),this.$button.on(\"focus\"+W,(function(e){var n=t.$element[0].getAttribute(\"tabindex\");void 0!==n&&e.originalEvent&&e.originalEvent.isTrusted&&(this.setAttribute(\"tabindex\",n),t.$element[0].setAttribute(\"tabindex\",-1),t.selectpicker.view.tabindex=n)})).on(\"blur\"+W,(function(e){void 0!==t.selectpicker.view.tabindex&&e.originalEvent&&e.originalEvent.isTrusted&&(t.$element[0].setAttribute(\"tabindex\",t.selectpicker.view.tabindex),this.setAttribute(\"tabindex\",-1),t.selectpicker.view.tabindex=void 0)})),this.$element.on(\"change\"+W,(function(){t.render(),t.$element.trigger(\"changed\"+W,M),M=null})).on(\"focus\"+W,(function(){t.options.mobile||t.$button[0].focus()}))},liveSearchListener:function(){var e=this;this.$button.on(\"click.bs.dropdown.data-api\",(function(){e.$searchbox.val()&&(e.$searchbox.val(\"\"),e.selectpicker.search.previousValue=void 0)})),this.$searchbox.on(\"click.bs.dropdown.data-api focus.bs.dropdown.data-api touchend.bs.dropdown.data-api\",(function(e){e.stopPropagation()})),this.$searchbox.on(\"input propertychange\",(function(){var t=e.$searchbox[0].value;if(e.selectpicker.search.elements=[],e.selectpicker.search.data=[],t){var n=[],i=t.toUpperCase(),s={},a=[],r=e._searchStyle(),o=e.options.liveSearchNormalize;o&&(i=T(i));for(var d=0;d<e.selectpicker.main.data.length;d++){var l=e.selectpicker.main.data[d];s[d]||(s[d]=L(l,i,r,o)),s[d]&&void 0!==l.headerIndex&&-1===a.indexOf(l.headerIndex)&&(l.headerIndex>0&&(s[l.headerIndex-1]=!0,a.push(l.headerIndex-1)),s[l.headerIndex]=!0,a.push(l.headerIndex),s[l.lastIndex+1]=!0),s[d]&&\"optgroup-label\"!==l.type&&a.push(d)}d=0;for(var u=a.length;d<u;d++){var c=a[d],h=a[d-1],m=(l=e.selectpicker.main.data[c],e.selectpicker.main.data[h]);(\"divider\"!==l.type||\"divider\"===l.type&&m&&\"divider\"!==m.type&&u-1!==d)&&(e.selectpicker.search.data.push(l),n.push(e.selectpicker.main.elements[c]))}e.activeIndex=void 0,e.noScroll=!0,e.$menuInner.scrollTop(0),e.selectpicker.search.elements=n,e.createView(!0),B.call(e,n,t)}else e.selectpicker.search.previousValue&&(e.$menuInner.scrollTop(0),e.createView(!1));e.selectpicker.search.previousValue=t}))},_searchStyle:function(){return this.options.liveSearchStyle||\"contains\"},val:function(e){var t=this.$element[0];if(void 0!==e){var n=y(t);if(M=[null,null,n],this.$element.val(e).trigger(\"changed\"+W,M),this.$newElement.hasClass(N.SHOW))if(this.multiple)this.setOptionStatus(!0);else{var i=(t.options[t.selectedIndex]||{}).liIndex;\"number\"==typeof i&&(this.setSelected(this.selectedIndex,!1),this.setSelected(i,!0))}return this.render(),M=null,this.$element}return this.$element.val()},changeAll:function(e){if(this.multiple){void 0===e&&(e=!0);var t=this.$element[0],n=0,i=0,s=y(t);t.classList.add(\"bs-select-hidden\");for(var a=0,r=this.selectpicker.current.data,o=r.length;a<o;a++){var d=r[a],l=d.option;l&&!d.disabled&&\"divider\"!==d.type&&(d.selected&&n++,l.selected=e,!0===e&&i++)}t.classList.remove(\"bs-select-hidden\"),n!==i&&(this.setOptionStatus(),M=[null,null,s],this.$element.triggerNative(\"change\"))}},selectAll:function(){return this.changeAll(!0)},deselectAll:function(){return this.changeAll(!1)},toggle:function(e){(e=e||window.event)&&e.stopPropagation(),this.$button.trigger(\"click.bs.dropdown.data-api\")},keydown:function(t){var n,i,s,a,r,o=e(this),d=o.hasClass(\"dropdown-toggle\"),l=(d?o.closest(\".dropdown\"):o.closest($.MENU)).data(\"this\"),u=l.findLis(),c=!1,h=t.which===P.TAB&&!d&&!l.options.selectOnTab,m=F.test(t.which)||h,_=l.$menuInner[0].scrollTop,p=!0===l.isVirtual()?l.selectpicker.view.position0:0;if(!(t.which>=112&&t.which<=123))if(!(i=l.$newElement.hasClass(N.SHOW))&&(m||t.which>=48&&t.which<=57||t.which>=96&&t.which<=105||t.which>=65&&t.which<=90)&&(l.$button.trigger(\"click.bs.dropdown.data-api\"),l.options.liveSearch))l.$searchbox.trigger(\"focus\");else{if(t.which===P.ESCAPE&&i&&(t.preventDefault(),l.$button.trigger(\"click.bs.dropdown.data-api\").trigger(\"focus\")),m){if(!u.length)return;-1!==(n=(s=l.selectpicker.main.elements[l.activeIndex])?Array.prototype.indexOf.call(s.parentElement.children,s):-1)&&l.defocusItem(s),t.which===P.ARROW_UP?(-1!==n&&n--,n+p<0&&(n+=u.length),l.selectpicker.view.canHighlight[n+p]||-1==(n=l.selectpicker.view.canHighlight.slice(0,n+p).lastIndexOf(!0)-p)&&(n=u.length-1)):(t.which===P.ARROW_DOWN||h)&&(++n+p>=l.selectpicker.view.canHighlight.length&&(n=l.selectpicker.view.firstHighlightIndex),l.selectpicker.view.canHighlight[n+p]||(n=n+1+l.selectpicker.view.canHighlight.slice(n+p+1).indexOf(!0))),t.preventDefault();var f=p+n;t.which===P.ARROW_UP?0===p&&n===u.length-1?(l.$menuInner[0].scrollTop=l.$menuInner[0].scrollHeight,f=l.selectpicker.current.elements.length-1):c=(r=(a=l.selectpicker.current.data[f]).position-a.height)<_:(t.which===P.ARROW_DOWN||h)&&(n===l.selectpicker.view.firstHighlightIndex?(l.$menuInner[0].scrollTop=0,f=l.selectpicker.view.firstHighlightIndex):c=(r=(a=l.selectpicker.current.data[f]).position-l.sizeInfo.menuInnerHeight)>_),s=l.selectpicker.current.elements[f],l.activeIndex=l.selectpicker.current.data[f].index,l.focusItem(s),l.selectpicker.view.currentActive=s,c&&(l.$menuInner[0].scrollTop=r),l.options.liveSearch?l.$searchbox.trigger(\"focus\"):o.trigger(\"focus\")}else if(!o.is(\"input\")&&!R.test(t.which)||t.which===P.SPACE&&l.selectpicker.keydown.keyHistory){var y,g,M=[];t.preventDefault(),l.selectpicker.keydown.keyHistory+=O[t.which],l.selectpicker.keydown.resetKeyHistory.cancel&&clearTimeout(l.selectpicker.keydown.resetKeyHistory.cancel),l.selectpicker.keydown.resetKeyHistory.cancel=l.selectpicker.keydown.resetKeyHistory.start(),g=l.selectpicker.keydown.keyHistory,/^(.)\\1+$/.test(g)&&(g=g.charAt(0));for(var v=0;v<l.selectpicker.current.data.length;v++){var Y=l.selectpicker.current.data[v];L(Y,g,\"startsWith\",!0)&&l.selectpicker.view.canHighlight[v]&&M.push(Y.index)}if(M.length){var k=0;u.removeClass(\"active\").find(\"a\").removeClass(\"active\"),1===g.length&&(-1===(k=M.indexOf(l.activeIndex))||k===M.length-1?k=0:k++),y=M[k],_-(a=l.selectpicker.main.data[y]).position>0?(r=a.position-a.height,c=!0):(r=a.position-l.sizeInfo.menuInnerHeight,c=a.position>_+l.sizeInfo.menuInnerHeight),s=l.selectpicker.main.elements[y],l.activeIndex=M[k],l.focusItem(s),s&&s.firstChild.focus(),c&&(l.$menuInner[0].scrollTop=r),o.trigger(\"focus\")}}i&&(t.which===P.SPACE&&!l.selectpicker.keydown.keyHistory||t.which===P.ENTER||t.which===P.TAB&&l.options.selectOnTab)&&(t.which!==P.SPACE&&t.preventDefault(),l.options.liveSearch&&t.which===P.SPACE||(l.$menuInner.find(\".active a\").trigger(\"click\",!0),o.trigger(\"focus\"),l.options.liveSearch||(t.preventDefault(),e(document).data(\"spaceSelect\",!0))))}},mobile:function(){this.options.mobile=!0,this.$element[0].classList.add(\"mobile-device\")},refresh:function(){var t=e.extend({},this.options,this.$element.data());this.options=t,this.checkDisabled(),this.buildData(),this.setStyle(),this.render(),this.buildList(),this.setWidth(),this.setSize(!0),this.$element.trigger(\"refreshed\"+W)},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()},destroy:function(){this.$newElement.before(this.$element).remove(),this.$bsContainer?this.$bsContainer.remove():this.$menu.remove(),this.selectpicker.view.titleOption&&this.selectpicker.view.titleOption.parentNode&&this.selectpicker.view.titleOption.parentNode.removeChild(this.selectpicker.view.titleOption),this.$element.off(W).removeData(\"selectpicker\").removeClass(\"bs-select-hidden selectpicker\"),e(window).off(W+\".\"+this.selectId)}};var V=e.fn.selectpicker;function G(){if(e.fn.dropdown)return(e.fn.dropdown.Constructor._dataApiKeydownHandler||e.fn.dropdown.Constructor.prototype.keydown).apply(this,arguments)}e.fn.selectpicker=q,e.fn.selectpicker.Constructor=J,e.fn.selectpicker.noConflict=function(){return e.fn.selectpicker=V,this},e(document).off(\"keydown.bs.dropdown.data-api\").on(\"keydown.bs.dropdown.data-api\",':not(.bootstrap-select) > [data-toggle=\"dropdown\"]',G).on(\"keydown.bs.dropdown.data-api\",\":not(.bootstrap-select) > .dropdown-menu\",G).on(\"keydown\"+W,'.bootstrap-select [data-toggle=\"dropdown\"], .bootstrap-select [role=\"listbox\"], .bootstrap-select .bs-searchbox input',J.prototype.keydown).on(\"focusin.modal\",'.bootstrap-select [data-toggle=\"dropdown\"], .bootstrap-select [role=\"listbox\"], .bootstrap-select .bs-searchbox input',(function(e){e.stopPropagation()})),e(window).on(\"load\"+W+\".data-api\",(function(){e(\".selectpicker\").each((function(){var t=e(this);q.call(t,t.data())}))}))}(e)}.apply(t,i))||(e.exports=s)},932:function(e,t,n){var i,s;i=[n(381),n(9755)],void 0===(s=function(e,t){return t.fn||(t.fn={}),\"function\"!=typeof e&&e.hasOwnProperty(\"default\")&&(e=e.default),function(e,t){var n=function(n,i,s){if(this.parentEl=\"body\",this.element=t(n),this.startDate=e().startOf(\"day\"),this.endDate=e().endOf(\"day\"),this.minDate=!1,this.maxDate=!1,this.maxSpan=!1,this.autoApply=!1,this.singleDatePicker=!1,this.showDropdowns=!1,this.minYear=e().subtract(100,\"year\").format(\"YYYY\"),this.maxYear=e().add(100,\"year\").format(\"YYYY\"),this.showWeekNumbers=!1,this.showISOWeekNumbers=!1,this.showCustomRangeLabel=!0,this.timePicker=!1,this.timePicker24Hour=!1,this.timePickerIncrement=1,this.timePickerSeconds=!1,this.linkedCalendars=!0,this.autoUpdateInput=!0,this.alwaysShowCalendars=!1,this.ranges={},this.opens=\"right\",this.element.hasClass(\"pull-right\")&&(this.opens=\"left\"),this.drops=\"down\",this.element.hasClass(\"dropup\")&&(this.drops=\"up\"),this.buttonClasses=\"btn btn-sm\",this.applyButtonClasses=\"btn-primary\",this.cancelButtonClasses=\"btn-default\",this.locale={direction:\"ltr\",format:e.localeData().longDateFormat(\"L\"),separator:\" - \",applyLabel:\"Apply\",cancelLabel:\"Cancel\",weekLabel:\"W\",customRangeLabel:\"Custom Range\",daysOfWeek:e.weekdaysMin(),monthNames:e.monthsShort(),firstDay:e.localeData().firstDayOfWeek()},this.callback=function(){},this.isShowing=!1,this.leftCalendar={},this.rightCalendar={},\"object\"==typeof i&&null!==i||(i={}),\"string\"==typeof(i=t.extend(this.element.data(),i)).template||i.template instanceof t||(i.template='<div class=\"daterangepicker\"><div class=\"ranges\"></div><div class=\"drp-calendar left\"><div class=\"calendar-table\"></div><div class=\"calendar-time\"></div></div><div class=\"drp-calendar right\"><div class=\"calendar-table\"></div><div class=\"calendar-time\"></div></div><div class=\"drp-buttons\"><span class=\"drp-selected\"></span><button class=\"cancelBtn\" type=\"button\"></button><button class=\"applyBtn\" disabled=\"disabled\" type=\"button\"></button> </div></div>'),this.parentEl=i.parentEl&&t(i.parentEl).length?t(i.parentEl):t(this.parentEl),this.container=t(i.template).appendTo(this.parentEl),\"object\"==typeof i.locale&&(\"string\"==typeof i.locale.direction&&(this.locale.direction=i.locale.direction),\"string\"==typeof i.locale.format&&(this.locale.format=i.locale.format),\"string\"==typeof i.locale.separator&&(this.locale.separator=i.locale.separator),\"object\"==typeof i.locale.daysOfWeek&&(this.locale.daysOfWeek=i.locale.daysOfWeek.slice()),\"object\"==typeof i.locale.monthNames&&(this.locale.monthNames=i.locale.monthNames.slice()),\"number\"==typeof i.locale.firstDay&&(this.locale.firstDay=i.locale.firstDay),\"string\"==typeof i.locale.applyLabel&&(this.locale.applyLabel=i.locale.applyLabel),\"string\"==typeof i.locale.cancelLabel&&(this.locale.cancelLabel=i.locale.cancelLabel),\"string\"==typeof i.locale.weekLabel&&(this.locale.weekLabel=i.locale.weekLabel),\"string\"==typeof i.locale.customRangeLabel)){(h=document.createElement(\"textarea\")).innerHTML=i.locale.customRangeLabel;var a=h.value;this.locale.customRangeLabel=a}if(this.container.addClass(this.locale.direction),\"string\"==typeof i.startDate&&(this.startDate=e(i.startDate,this.locale.format)),\"string\"==typeof i.endDate&&(this.endDate=e(i.endDate,this.locale.format)),\"string\"==typeof i.minDate&&(this.minDate=e(i.minDate,this.locale.format)),\"string\"==typeof i.maxDate&&(this.maxDate=e(i.maxDate,this.locale.format)),\"object\"==typeof i.startDate&&(this.startDate=e(i.startDate)),\"object\"==typeof i.endDate&&(this.endDate=e(i.endDate)),\"object\"==typeof i.minDate&&(this.minDate=e(i.minDate)),\"object\"==typeof i.maxDate&&(this.maxDate=e(i.maxDate)),this.minDate&&this.startDate.isBefore(this.minDate)&&(this.startDate=this.minDate.clone()),this.maxDate&&this.endDate.isAfter(this.maxDate)&&(this.endDate=this.maxDate.clone()),\"string\"==typeof i.applyButtonClasses&&(this.applyButtonClasses=i.applyButtonClasses),\"string\"==typeof i.applyClass&&(this.applyButtonClasses=i.applyClass),\"string\"==typeof i.cancelButtonClasses&&(this.cancelButtonClasses=i.cancelButtonClasses),\"string\"==typeof i.cancelClass&&(this.cancelButtonClasses=i.cancelClass),\"object\"==typeof i.maxSpan&&(this.maxSpan=i.maxSpan),\"object\"==typeof i.dateLimit&&(this.maxSpan=i.dateLimit),\"string\"==typeof i.opens&&(this.opens=i.opens),\"string\"==typeof i.drops&&(this.drops=i.drops),\"boolean\"==typeof i.showWeekNumbers&&(this.showWeekNumbers=i.showWeekNumbers),\"boolean\"==typeof i.showISOWeekNumbers&&(this.showISOWeekNumbers=i.showISOWeekNumbers),\"string\"==typeof i.buttonClasses&&(this.buttonClasses=i.buttonClasses),\"object\"==typeof i.buttonClasses&&(this.buttonClasses=i.buttonClasses.join(\" \")),\"boolean\"==typeof i.showDropdowns&&(this.showDropdowns=i.showDropdowns),\"number\"==typeof i.minYear&&(this.minYear=i.minYear),\"number\"==typeof i.maxYear&&(this.maxYear=i.maxYear),\"boolean\"==typeof i.showCustomRangeLabel&&(this.showCustomRangeLabel=i.showCustomRangeLabel),\"boolean\"==typeof i.singleDatePicker&&(this.singleDatePicker=i.singleDatePicker,this.singleDatePicker&&(this.endDate=this.startDate.clone())),\"boolean\"==typeof i.timePicker&&(this.timePicker=i.timePicker),\"boolean\"==typeof i.timePickerSeconds&&(this.timePickerSeconds=i.timePickerSeconds),\"number\"==typeof i.timePickerIncrement&&(this.timePickerIncrement=i.timePickerIncrement),\"boolean\"==typeof i.timePicker24Hour&&(this.timePicker24Hour=i.timePicker24Hour),\"boolean\"==typeof i.autoApply&&(this.autoApply=i.autoApply),\"boolean\"==typeof i.autoUpdateInput&&(this.autoUpdateInput=i.autoUpdateInput),\"boolean\"==typeof i.linkedCalendars&&(this.linkedCalendars=i.linkedCalendars),\"function\"==typeof i.isInvalidDate&&(this.isInvalidDate=i.isInvalidDate),\"function\"==typeof i.isCustomDate&&(this.isCustomDate=i.isCustomDate),\"boolean\"==typeof i.alwaysShowCalendars&&(this.alwaysShowCalendars=i.alwaysShowCalendars),0!=this.locale.firstDay)for(var r=this.locale.firstDay;r>0;)this.locale.daysOfWeek.push(this.locale.daysOfWeek.shift()),r--;var o,d,l;if(void 0===i.startDate&&void 0===i.endDate&&t(this.element).is(\":text\")){var u=t(this.element).val(),c=u.split(this.locale.separator);o=d=null,2==c.length?(o=e(c[0],this.locale.format),d=e(c[1],this.locale.format)):this.singleDatePicker&&\"\"!==u&&(o=e(u,this.locale.format),d=e(u,this.locale.format)),null!==o&&null!==d&&(this.setStartDate(o),this.setEndDate(d))}if(\"object\"==typeof i.ranges){for(l in i.ranges){o=\"string\"==typeof i.ranges[l][0]?e(i.ranges[l][0],this.locale.format):e(i.ranges[l][0]),d=\"string\"==typeof i.ranges[l][1]?e(i.ranges[l][1],this.locale.format):e(i.ranges[l][1]),this.minDate&&o.isBefore(this.minDate)&&(o=this.minDate.clone());var h,m=this.maxDate;if(this.maxSpan&&m&&o.clone().add(this.maxSpan).isAfter(m)&&(m=o.clone().add(this.maxSpan)),m&&d.isAfter(m)&&(d=m.clone()),!(this.minDate&&d.isBefore(this.minDate,this.timepicker?\"minute\":\"day\")||m&&o.isAfter(m,this.timepicker?\"minute\":\"day\")))(h=document.createElement(\"textarea\")).innerHTML=l,a=h.value,this.ranges[a]=[o,d]}var _=\"<ul>\";for(l in this.ranges)_+='<li data-range-key=\"'+l+'\">'+l+\"</li>\";this.showCustomRangeLabel&&(_+='<li data-range-key=\"'+this.locale.customRangeLabel+'\">'+this.locale.customRangeLabel+\"</li>\"),_+=\"</ul>\",this.container.find(\".ranges\").prepend(_)}\"function\"==typeof s&&(this.callback=s),this.timePicker||(this.startDate=this.startDate.startOf(\"day\"),this.endDate=this.endDate.endOf(\"day\"),this.container.find(\".calendar-time\").hide()),this.timePicker&&this.autoApply&&(this.autoApply=!1),this.autoApply&&this.container.addClass(\"auto-apply\"),\"object\"==typeof i.ranges&&this.container.addClass(\"show-ranges\"),this.singleDatePicker&&(this.container.addClass(\"single\"),this.container.find(\".drp-calendar.left\").addClass(\"single\"),this.container.find(\".drp-calendar.left\").show(),this.container.find(\".drp-calendar.right\").hide(),!this.timePicker&&this.autoApply&&this.container.addClass(\"auto-apply\")),(void 0===i.ranges&&!this.singleDatePicker||this.alwaysShowCalendars)&&this.container.addClass(\"show-calendar\"),this.container.addClass(\"opens\"+this.opens),this.container.find(\".applyBtn, .cancelBtn\").addClass(this.buttonClasses),this.applyButtonClasses.length&&this.container.find(\".applyBtn\").addClass(this.applyButtonClasses),this.cancelButtonClasses.length&&this.container.find(\".cancelBtn\").addClass(this.cancelButtonClasses),this.container.find(\".applyBtn\").html(this.locale.applyLabel),this.container.find(\".cancelBtn\").html(this.locale.cancelLabel),this.container.find(\".drp-calendar\").on(\"click.daterangepicker\",\".prev\",t.proxy(this.clickPrev,this)).on(\"click.daterangepicker\",\".next\",t.proxy(this.clickNext,this)).on(\"mousedown.daterangepicker\",\"td.available\",t.proxy(this.clickDate,this)).on(\"mouseenter.daterangepicker\",\"td.available\",t.proxy(this.hoverDate,this)).on(\"change.daterangepicker\",\"select.yearselect\",t.proxy(this.monthOrYearChanged,this)).on(\"change.daterangepicker\",\"select.monthselect\",t.proxy(this.monthOrYearChanged,this)).on(\"change.daterangepicker\",\"select.hourselect,select.minuteselect,select.secondselect,select.ampmselect\",t.proxy(this.timeChanged,this)),this.container.find(\".ranges\").on(\"click.daterangepicker\",\"li\",t.proxy(this.clickRange,this)),this.container.find(\".drp-buttons\").on(\"click.daterangepicker\",\"button.applyBtn\",t.proxy(this.clickApply,this)).on(\"click.daterangepicker\",\"button.cancelBtn\",t.proxy(this.clickCancel,this)),this.element.is(\"input\")||this.element.is(\"button\")?this.element.on({\"click.daterangepicker\":t.proxy(this.show,this),\"focus.daterangepicker\":t.proxy(this.show,this),\"keyup.daterangepicker\":t.proxy(this.elementChanged,this),\"keydown.daterangepicker\":t.proxy(this.keydown,this)}):(this.element.on(\"click.daterangepicker\",t.proxy(this.toggle,this)),this.element.on(\"keydown.daterangepicker\",t.proxy(this.toggle,this))),this.updateElement()};return n.prototype={constructor:n,setStartDate:function(t){\"string\"==typeof t&&(this.startDate=e(t,this.locale.format)),\"object\"==typeof t&&(this.startDate=e(t)),this.timePicker||(this.startDate=this.startDate.startOf(\"day\")),this.timePicker&&this.timePickerIncrement&&this.startDate.minute(Math.round(this.startDate.minute()/this.timePickerIncrement)*this.timePickerIncrement),this.minDate&&this.startDate.isBefore(this.minDate)&&(this.startDate=this.minDate.clone(),this.timePicker&&this.timePickerIncrement&&this.startDate.minute(Math.round(this.startDate.minute()/this.timePickerIncrement)*this.timePickerIncrement)),this.maxDate&&this.startDate.isAfter(this.maxDate)&&(this.startDate=this.maxDate.clone(),this.timePicker&&this.timePickerIncrement&&this.startDate.minute(Math.floor(this.startDate.minute()/this.timePickerIncrement)*this.timePickerIncrement)),this.isShowing||this.updateElement(),this.updateMonthsInView()},setEndDate:function(t){\"string\"==typeof t&&(this.endDate=e(t,this.locale.format)),\"object\"==typeof t&&(this.endDate=e(t)),this.timePicker||(this.endDate=this.endDate.endOf(\"day\")),this.timePicker&&this.timePickerIncrement&&this.endDate.minute(Math.round(this.endDate.minute()/this.timePickerIncrement)*this.timePickerIncrement),this.endDate.isBefore(this.startDate)&&(this.endDate=this.startDate.clone()),this.maxDate&&this.endDate.isAfter(this.maxDate)&&(this.endDate=this.maxDate.clone()),this.maxSpan&&this.startDate.clone().add(this.maxSpan).isBefore(this.endDate)&&(this.endDate=this.startDate.clone().add(this.maxSpan)),this.previousRightTime=this.endDate.clone(),this.container.find(\".drp-selected\").html(this.startDate.format(this.locale.format)+this.locale.separator+this.endDate.format(this.locale.format)),this.isShowing||this.updateElement(),this.updateMonthsInView()},isInvalidDate:function(){return!1},isCustomDate:function(){return!1},updateView:function(){this.timePicker&&(this.renderTimePicker(\"left\"),this.renderTimePicker(\"right\"),this.endDate?this.container.find(\".right .calendar-time select\").prop(\"disabled\",!1).removeClass(\"disabled\"):this.container.find(\".right .calendar-time select\").prop(\"disabled\",!0).addClass(\"disabled\")),this.endDate&&this.container.find(\".drp-selected\").html(this.startDate.format(this.locale.format)+this.locale.separator+this.endDate.format(this.locale.format)),this.updateMonthsInView(),this.updateCalendars(),this.updateFormInputs()},updateMonthsInView:function(){if(this.endDate){if(!this.singleDatePicker&&this.leftCalendar.month&&this.rightCalendar.month&&(this.startDate.format(\"YYYY-MM\")==this.leftCalendar.month.format(\"YYYY-MM\")||this.startDate.format(\"YYYY-MM\")==this.rightCalendar.month.format(\"YYYY-MM\"))&&(this.endDate.format(\"YYYY-MM\")==this.leftCalendar.month.format(\"YYYY-MM\")||this.endDate.format(\"YYYY-MM\")==this.rightCalendar.month.format(\"YYYY-MM\")))return;this.leftCalendar.month=this.startDate.clone().date(2),this.linkedCalendars||this.endDate.month()==this.startDate.month()&&this.endDate.year()==this.startDate.year()?this.rightCalendar.month=this.startDate.clone().date(2).add(1,\"month\"):this.rightCalendar.month=this.endDate.clone().date(2)}else this.leftCalendar.month.format(\"YYYY-MM\")!=this.startDate.format(\"YYYY-MM\")&&this.rightCalendar.month.format(\"YYYY-MM\")!=this.startDate.format(\"YYYY-MM\")&&(this.leftCalendar.month=this.startDate.clone().date(2),this.rightCalendar.month=this.startDate.clone().date(2).add(1,\"month\"));this.maxDate&&this.linkedCalendars&&!this.singleDatePicker&&this.rightCalendar.month>this.maxDate&&(this.rightCalendar.month=this.maxDate.clone().date(2),this.leftCalendar.month=this.maxDate.clone().date(2).subtract(1,\"month\"))},updateCalendars:function(){var e,t,n,i;this.timePicker&&(this.endDate?(e=parseInt(this.container.find(\".left .hourselect\").val(),10),t=parseInt(this.container.find(\".left .minuteselect\").val(),10),isNaN(t)&&(t=parseInt(this.container.find(\".left .minuteselect option:last\").val(),10)),n=this.timePickerSeconds?parseInt(this.container.find(\".left .secondselect\").val(),10):0,this.timePicker24Hour||(\"PM\"===(i=this.container.find(\".left .ampmselect\").val())&&e<12&&(e+=12),\"AM\"===i&&12===e&&(e=0))):(e=parseInt(this.container.find(\".right .hourselect\").val(),10),t=parseInt(this.container.find(\".right .minuteselect\").val(),10),isNaN(t)&&(t=parseInt(this.container.find(\".right .minuteselect option:last\").val(),10)),n=this.timePickerSeconds?parseInt(this.container.find(\".right .secondselect\").val(),10):0,this.timePicker24Hour||(\"PM\"===(i=this.container.find(\".right .ampmselect\").val())&&e<12&&(e+=12),\"AM\"===i&&12===e&&(e=0))),this.leftCalendar.month.hour(e).minute(t).second(n),this.rightCalendar.month.hour(e).minute(t).second(n));this.renderCalendar(\"left\"),this.renderCalendar(\"right\"),this.container.find(\".ranges li\").removeClass(\"active\"),null!=this.endDate&&this.calculateChosenLabel()},renderCalendar:function(n){var i,s=(i=\"left\"==n?this.leftCalendar:this.rightCalendar).month.month(),a=i.month.year(),r=i.month.hour(),o=i.month.minute(),d=i.month.second(),l=e([a,s]).daysInMonth(),u=e([a,s,1]),c=e([a,s,l]),h=e(u).subtract(1,\"month\").month(),m=e(u).subtract(1,\"month\").year(),_=e([m,h]).daysInMonth(),p=u.day();(i=[]).firstDay=u,i.lastDay=c;for(var f=0;f<6;f++)i[f]=[];var y=_-p+this.locale.firstDay+1;y>_&&(y-=7),p==this.locale.firstDay&&(y=_-6);for(var g=e([m,h,y,12,o,d]),M=(f=0,0),v=0;f<42;f++,M++,g=e(g).add(24,\"hour\"))f>0&&M%7==0&&(M=0,v++),i[v][M]=g.clone().hour(r).minute(o).second(d),g.hour(12),this.minDate&&i[v][M].format(\"YYYY-MM-DD\")==this.minDate.format(\"YYYY-MM-DD\")&&i[v][M].isBefore(this.minDate)&&\"left\"==n&&(i[v][M]=this.minDate.clone()),this.maxDate&&i[v][M].format(\"YYYY-MM-DD\")==this.maxDate.format(\"YYYY-MM-DD\")&&i[v][M].isAfter(this.maxDate)&&\"right\"==n&&(i[v][M]=this.maxDate.clone());\"left\"==n?this.leftCalendar.calendar=i:this.rightCalendar.calendar=i;var L=\"left\"==n?this.minDate:this.startDate,Y=this.maxDate,k=(\"left\"==n?this.startDate:this.endDate,this.locale.direction,'<table class=\"table-condensed\">');k+=\"<thead>\",k+=\"<tr>\",(this.showWeekNumbers||this.showISOWeekNumbers)&&(k+=\"<th></th>\"),L&&!L.isBefore(i.firstDay)||this.linkedCalendars&&\"left\"!=n?k+=\"<th></th>\":k+='<th class=\"prev available\"><span></span></th>';var b=this.locale.monthNames[i[1][1].month()]+i[1][1].format(\" YYYY\");if(this.showDropdowns){for(var w=i[1][1].month(),D=i[1][1].year(),T=Y&&Y.year()||this.maxYear,x=L&&L.year()||this.minYear,S=D==x,H=D==T,j='<select class=\"monthselect\">',C=0;C<12;C++)(!S||L&&C>=L.month())&&(!H||Y&&C<=Y.month())?j+=\"<option value='\"+C+\"'\"+(C===w?\" selected='selected'\":\"\")+\">\"+this.locale.monthNames[C]+\"</option>\":j+=\"<option value='\"+C+\"'\"+(C===w?\" selected='selected'\":\"\")+\" disabled='disabled'>\"+this.locale.monthNames[C]+\"</option>\";j+=\"</select>\";for(var E='<select class=\"yearselect\">',O=x;O<=T;O++)E+='<option value=\"'+O+'\"'+(O===D?' selected=\"selected\"':\"\")+\">\"+O+\"</option>\";b=j+(E+=\"</select>\")}if(k+='<th colspan=\"5\" class=\"month\">'+b+\"</th>\",Y&&!Y.isAfter(i.lastDay)||this.linkedCalendars&&\"right\"!=n&&!this.singleDatePicker?k+=\"<th></th>\":k+='<th class=\"next available\"><span></span></th>',k+=\"</tr>\",k+=\"<tr>\",(this.showWeekNumbers||this.showISOWeekNumbers)&&(k+='<th class=\"week\">'+this.locale.weekLabel+\"</th>\"),t.each(this.locale.daysOfWeek,(function(e,t){k+=\"<th>\"+t+\"</th>\"})),k+=\"</tr>\",k+=\"</thead>\",k+=\"<tbody>\",null==this.endDate&&this.maxSpan){var P=this.startDate.clone().add(this.maxSpan).endOf(\"day\");Y&&!P.isBefore(Y)||(Y=P)}for(v=0;v<6;v++){for(k+=\"<tr>\",this.showWeekNumbers?k+='<td class=\"week\">'+i[v][0].week()+\"</td>\":this.showISOWeekNumbers&&(k+='<td class=\"week\">'+i[v][0].isoWeek()+\"</td>\"),M=0;M<7;M++){var A=[];i[v][M].isSame(new Date,\"day\")&&A.push(\"today\"),i[v][M].isoWeekday()>5&&A.push(\"weekend\"),i[v][M].month()!=i[1][1].month()&&A.push(\"off\",\"ends\"),this.minDate&&i[v][M].isBefore(this.minDate,\"day\")&&A.push(\"off\",\"disabled\"),Y&&i[v][M].isAfter(Y,\"day\")&&A.push(\"off\",\"disabled\"),this.isInvalidDate(i[v][M])&&A.push(\"off\",\"disabled\"),i[v][M].format(\"YYYY-MM-DD\")==this.startDate.format(\"YYYY-MM-DD\")&&A.push(\"active\",\"start-date\"),null!=this.endDate&&i[v][M].format(\"YYYY-MM-DD\")==this.endDate.format(\"YYYY-MM-DD\")&&A.push(\"active\",\"end-date\"),null!=this.endDate&&i[v][M]>this.startDate&&i[v][M]<this.endDate&&A.push(\"in-range\");var I=this.isCustomDate(i[v][M]);!1!==I&&(\"string\"==typeof I?A.push(I):Array.prototype.push.apply(A,I));var W=\"\",N=!1;for(f=0;f<A.length;f++)W+=A[f]+\" \",\"disabled\"==A[f]&&(N=!0);N||(W+=\"available\"),k+='<td class=\"'+W.replace(/^\\s+|\\s+$/g,\"\")+'\" data-title=\"r'+v+\"c\"+M+'\">'+i[v][M].date()+\"</td>\"}k+=\"</tr>\"}k+=\"</tbody>\",k+=\"</table>\",this.container.find(\".drp-calendar.\"+n+\" .calendar-table\").html(k)},renderTimePicker:function(e){if(\"right\"!=e||this.endDate){var t,n,i,s=this.maxDate;if(!this.maxSpan||this.maxDate&&!this.startDate.clone().add(this.maxSpan).isBefore(this.maxDate)||(s=this.startDate.clone().add(this.maxSpan)),\"left\"==e)n=this.startDate.clone(),i=this.minDate;else if(\"right\"==e){n=this.endDate.clone(),i=this.startDate;var a=this.container.find(\".drp-calendar.right .calendar-time\");if(\"\"!=a.html()&&(n.hour(isNaN(n.hour())?a.find(\".hourselect option:selected\").val():n.hour()),n.minute(isNaN(n.minute())?a.find(\".minuteselect option:selected\").val():n.minute()),n.second(isNaN(n.second())?a.find(\".secondselect option:selected\").val():n.second()),!this.timePicker24Hour)){var r=a.find(\".ampmselect option:selected\").val();\"PM\"===r&&n.hour()<12&&n.hour(n.hour()+12),\"AM\"===r&&12===n.hour()&&n.hour(0)}n.isBefore(this.startDate)&&(n=this.startDate.clone()),s&&n.isAfter(s)&&(n=s.clone())}t='<select class=\"hourselect\">';for(var o=this.timePicker24Hour?0:1,d=this.timePicker24Hour?23:12,l=o;l<=d;l++){var u=l;this.timePicker24Hour||(u=n.hour()>=12?12==l?12:l+12:12==l?0:l);var c=n.clone().hour(u),h=!1;i&&c.minute(59).isBefore(i)&&(h=!0),s&&c.minute(0).isAfter(s)&&(h=!0),u!=n.hour()||h?t+=h?'<option value=\"'+l+'\" disabled=\"disabled\" class=\"disabled\">'+l+\"</option>\":'<option value=\"'+l+'\">'+l+\"</option>\":t+='<option value=\"'+l+'\" selected=\"selected\">'+l+\"</option>\"}for(t+=\"</select> \",t+=': <select class=\"minuteselect\">',l=0;l<60;l+=this.timePickerIncrement){var m=l<10?\"0\"+l:l;c=n.clone().minute(l),h=!1,i&&c.second(59).isBefore(i)&&(h=!0),s&&c.second(0).isAfter(s)&&(h=!0),n.minute()!=l||h?t+=h?'<option value=\"'+l+'\" disabled=\"disabled\" class=\"disabled\">'+m+\"</option>\":'<option value=\"'+l+'\">'+m+\"</option>\":t+='<option value=\"'+l+'\" selected=\"selected\">'+m+\"</option>\"}if(t+=\"</select> \",this.timePickerSeconds){for(t+=': <select class=\"secondselect\">',l=0;l<60;l++)m=l<10?\"0\"+l:l,c=n.clone().second(l),h=!1,i&&c.isBefore(i)&&(h=!0),s&&c.isAfter(s)&&(h=!0),n.second()!=l||h?t+=h?'<option value=\"'+l+'\" disabled=\"disabled\" class=\"disabled\">'+m+\"</option>\":'<option value=\"'+l+'\">'+m+\"</option>\":t+='<option value=\"'+l+'\" selected=\"selected\">'+m+\"</option>\";t+=\"</select> \"}if(!this.timePicker24Hour){t+='<select class=\"ampmselect\">';var _=\"\",p=\"\";i&&n.clone().hour(12).minute(0).second(0).isBefore(i)&&(_=' disabled=\"disabled\" class=\"disabled\"'),s&&n.clone().hour(0).minute(0).second(0).isAfter(s)&&(p=' disabled=\"disabled\" class=\"disabled\"'),n.hour()>=12?t+='<option value=\"AM\"'+_+'>AM</option><option value=\"PM\" selected=\"selected\"'+p+\">PM</option>\":t+='<option value=\"AM\" selected=\"selected\"'+_+'>AM</option><option value=\"PM\"'+p+\">PM</option>\",t+=\"</select>\"}this.container.find(\".drp-calendar.\"+e+\" .calendar-time\").html(t)}},updateFormInputs:function(){this.singleDatePicker||this.endDate&&(this.startDate.isBefore(this.endDate)||this.startDate.isSame(this.endDate))?this.container.find(\"button.applyBtn\").prop(\"disabled\",!1):this.container.find(\"button.applyBtn\").prop(\"disabled\",!0)},move:function(){var e,n={top:0,left:0},i=this.drops,s=t(window).width();switch(this.parentEl.is(\"body\")||(n={top:this.parentEl.offset().top-this.parentEl.scrollTop(),left:this.parentEl.offset().left-this.parentEl.scrollLeft()},s=this.parentEl[0].clientWidth+this.parentEl.offset().left),i){case\"auto\":(e=this.element.offset().top+this.element.outerHeight()-n.top)+this.container.outerHeight()>=this.parentEl[0].scrollHeight&&(e=this.element.offset().top-this.container.outerHeight()-n.top,i=\"up\");break;case\"up\":e=this.element.offset().top-this.container.outerHeight()-n.top;break;default:e=this.element.offset().top+this.element.outerHeight()-n.top}this.container.css({top:0,left:0,right:\"auto\"});var a=this.container.outerWidth();if(this.container.toggleClass(\"drop-up\",\"up\"==i),\"left\"==this.opens){var r=s-this.element.offset().left-this.element.outerWidth();a+r>t(window).width()?this.container.css({top:e,right:\"auto\",left:9}):this.container.css({top:e,right:r,left:\"auto\"})}else if(\"center\"==this.opens)(o=this.element.offset().left-n.left+this.element.outerWidth()/2-a/2)<0?this.container.css({top:e,right:\"auto\",left:9}):o+a>t(window).width()?this.container.css({top:e,left:\"auto\",right:0}):this.container.css({top:e,left:o,right:\"auto\"});else{var o;(o=this.element.offset().left-n.left)+a>t(window).width()?this.container.css({top:e,left:\"auto\",right:0}):this.container.css({top:e,left:o,right:\"auto\"})}},show:function(e){this.isShowing||(this._outsideClickProxy=t.proxy((function(e){this.outsideClick(e)}),this),t(document).on(\"mousedown.daterangepicker\",this._outsideClickProxy).on(\"touchend.daterangepicker\",this._outsideClickProxy).on(\"click.daterangepicker\",\"[data-toggle=dropdown]\",this._outsideClickProxy).on(\"focusin.daterangepicker\",this._outsideClickProxy),t(window).on(\"resize.daterangepicker\",t.proxy((function(e){this.move(e)}),this)),this.oldStartDate=this.startDate.clone(),this.oldEndDate=this.endDate.clone(),this.previousRightTime=this.endDate.clone(),this.updateView(),this.container.show(),this.move(),this.element.trigger(\"show.daterangepicker\",this),this.isShowing=!0)},hide:function(e){this.isShowing&&(this.endDate||(this.startDate=this.oldStartDate.clone(),this.endDate=this.oldEndDate.clone()),this.startDate.isSame(this.oldStartDate)&&this.endDate.isSame(this.oldEndDate)||this.callback(this.startDate.clone(),this.endDate.clone(),this.chosenLabel),this.updateElement(),t(document).off(\".daterangepicker\"),t(window).off(\".daterangepicker\"),this.container.hide(),this.element.trigger(\"hide.daterangepicker\",this),this.isShowing=!1)},toggle:function(e){this.isShowing?this.hide():this.show()},outsideClick:function(e){var n=t(e.target);\"focusin\"==e.type||n.closest(this.element).length||n.closest(this.container).length||n.closest(\".calendar-table\").length||(this.hide(),this.element.trigger(\"outsideClick.daterangepicker\",this))},showCalendars:function(){this.container.addClass(\"show-calendar\"),this.move(),this.element.trigger(\"showCalendar.daterangepicker\",this)},hideCalendars:function(){this.container.removeClass(\"show-calendar\"),this.element.trigger(\"hideCalendar.daterangepicker\",this)},clickRange:function(e){var t=e.target.getAttribute(\"data-range-key\");if(this.chosenLabel=t,t==this.locale.customRangeLabel)this.showCalendars();else{var n=this.ranges[t];this.startDate=n[0],this.endDate=n[1],this.timePicker||(this.startDate.startOf(\"day\"),this.endDate.endOf(\"day\")),this.alwaysShowCalendars||this.hideCalendars(),this.clickApply()}},clickPrev:function(e){t(e.target).parents(\".drp-calendar\").hasClass(\"left\")?(this.leftCalendar.month.subtract(1,\"month\"),this.linkedCalendars&&this.rightCalendar.month.subtract(1,\"month\")):this.rightCalendar.month.subtract(1,\"month\"),this.updateCalendars()},clickNext:function(e){t(e.target).parents(\".drp-calendar\").hasClass(\"left\")?this.leftCalendar.month.add(1,\"month\"):(this.rightCalendar.month.add(1,\"month\"),this.linkedCalendars&&this.leftCalendar.month.add(1,\"month\")),this.updateCalendars()},hoverDate:function(e){if(t(e.target).hasClass(\"available\")){var n=t(e.target).attr(\"data-title\"),i=n.substr(1,1),s=n.substr(3,1),a=t(e.target).parents(\".drp-calendar\").hasClass(\"left\")?this.leftCalendar.calendar[i][s]:this.rightCalendar.calendar[i][s],r=this.leftCalendar,o=this.rightCalendar,d=this.startDate;this.endDate||this.container.find(\".drp-calendar tbody td\").each((function(e,n){if(!t(n).hasClass(\"week\")){var i=t(n).attr(\"data-title\"),s=i.substr(1,1),l=i.substr(3,1),u=t(n).parents(\".drp-calendar\").hasClass(\"left\")?r.calendar[s][l]:o.calendar[s][l];u.isAfter(d)&&u.isBefore(a)||u.isSame(a,\"day\")?t(n).addClass(\"in-range\"):t(n).removeClass(\"in-range\")}}))}},clickDate:function(e){if(t(e.target).hasClass(\"available\")){var n=t(e.target).attr(\"data-title\"),i=n.substr(1,1),s=n.substr(3,1),a=t(e.target).parents(\".drp-calendar\").hasClass(\"left\")?this.leftCalendar.calendar[i][s]:this.rightCalendar.calendar[i][s];if(this.endDate||a.isBefore(this.startDate,\"day\")){if(this.timePicker){var r=parseInt(this.container.find(\".left .hourselect\").val(),10);this.timePicker24Hour||(\"PM\"===(l=this.container.find(\".left .ampmselect\").val())&&r<12&&(r+=12),\"AM\"===l&&12===r&&(r=0));var o=parseInt(this.container.find(\".left .minuteselect\").val(),10);isNaN(o)&&(o=parseInt(this.container.find(\".left .minuteselect option:last\").val(),10));var d=this.timePickerSeconds?parseInt(this.container.find(\".left .secondselect\").val(),10):0;a=a.clone().hour(r).minute(o).second(d)}this.endDate=null,this.setStartDate(a.clone())}else if(!this.endDate&&a.isBefore(this.startDate))this.setEndDate(this.startDate.clone());else{var l;if(this.timePicker)r=parseInt(this.container.find(\".right .hourselect\").val(),10),this.timePicker24Hour||(\"PM\"===(l=this.container.find(\".right .ampmselect\").val())&&r<12&&(r+=12),\"AM\"===l&&12===r&&(r=0)),o=parseInt(this.container.find(\".right .minuteselect\").val(),10),isNaN(o)&&(o=parseInt(this.container.find(\".right .minuteselect option:last\").val(),10)),d=this.timePickerSeconds?parseInt(this.container.find(\".right .secondselect\").val(),10):0,a=a.clone().hour(r).minute(o).second(d);this.setEndDate(a.clone()),this.autoApply&&(this.calculateChosenLabel(),this.clickApply())}this.singleDatePicker&&(this.setEndDate(this.startDate),!this.timePicker&&this.autoApply&&this.clickApply()),this.updateView(),e.stopPropagation()}},calculateChosenLabel:function(){var e=!0,t=0;for(var n in this.ranges){if(this.timePicker){var i=this.timePickerSeconds?\"YYYY-MM-DD HH:mm:ss\":\"YYYY-MM-DD HH:mm\";if(this.startDate.format(i)==this.ranges[n][0].format(i)&&this.endDate.format(i)==this.ranges[n][1].format(i)){e=!1,this.chosenLabel=this.container.find(\".ranges li:eq(\"+t+\")\").addClass(\"active\").attr(\"data-range-key\");break}}else if(this.startDate.format(\"YYYY-MM-DD\")==this.ranges[n][0].format(\"YYYY-MM-DD\")&&this.endDate.format(\"YYYY-MM-DD\")==this.ranges[n][1].format(\"YYYY-MM-DD\")){e=!1,this.chosenLabel=this.container.find(\".ranges li:eq(\"+t+\")\").addClass(\"active\").attr(\"data-range-key\");break}t++}e&&(this.showCustomRangeLabel?this.chosenLabel=this.container.find(\".ranges li:last\").addClass(\"active\").attr(\"data-range-key\"):this.chosenLabel=null,this.showCalendars())},clickApply:function(e){this.hide(),this.element.trigger(\"apply.daterangepicker\",this)},clickCancel:function(e){this.startDate=this.oldStartDate,this.endDate=this.oldEndDate,this.hide(),this.element.trigger(\"cancel.daterangepicker\",this)},monthOrYearChanged:function(e){var n=t(e.target).closest(\".drp-calendar\").hasClass(\"left\"),i=n?\"left\":\"right\",s=this.container.find(\".drp-calendar.\"+i),a=parseInt(s.find(\".monthselect\").val(),10),r=s.find(\".yearselect\").val();n||(r<this.startDate.year()||r==this.startDate.year()&&a<this.startDate.month())&&(a=this.startDate.month(),r=this.startDate.year()),this.minDate&&(r<this.minDate.year()||r==this.minDate.year()&&a<this.minDate.month())&&(a=this.minDate.month(),r=this.minDate.year()),this.maxDate&&(r>this.maxDate.year()||r==this.maxDate.year()&&a>this.maxDate.month())&&(a=this.maxDate.month(),r=this.maxDate.year()),n?(this.leftCalendar.month.month(a).year(r),this.linkedCalendars&&(this.rightCalendar.month=this.leftCalendar.month.clone().add(1,\"month\"))):(this.rightCalendar.month.month(a).year(r),this.linkedCalendars&&(this.leftCalendar.month=this.rightCalendar.month.clone().subtract(1,\"month\"))),this.updateCalendars()},timeChanged:function(e){var n=t(e.target).closest(\".drp-calendar\"),i=n.hasClass(\"left\"),s=parseInt(n.find(\".hourselect\").val(),10),a=parseInt(n.find(\".minuteselect\").val(),10);isNaN(a)&&(a=parseInt(n.find(\".minuteselect option:last\").val(),10));var r=this.timePickerSeconds?parseInt(n.find(\".secondselect\").val(),10):0;if(!this.timePicker24Hour){var o=n.find(\".ampmselect\").val();\"PM\"===o&&s<12&&(s+=12),\"AM\"===o&&12===s&&(s=0)}if(i){var d=this.startDate.clone();d.hour(s),d.minute(a),d.second(r),this.setStartDate(d),this.singleDatePicker?this.endDate=this.startDate.clone():this.endDate&&this.endDate.format(\"YYYY-MM-DD\")==d.format(\"YYYY-MM-DD\")&&this.endDate.isBefore(d)&&this.setEndDate(d.clone())}else if(this.endDate){var l=this.endDate.clone();l.hour(s),l.minute(a),l.second(r),this.setEndDate(l)}this.updateCalendars(),this.updateFormInputs(),this.renderTimePicker(\"left\"),this.renderTimePicker(\"right\")},elementChanged:function(){if(this.element.is(\"input\")&&this.element.val().length){var t=this.element.val().split(this.locale.separator),n=null,i=null;2===t.length&&(n=e(t[0],this.locale.format),i=e(t[1],this.locale.format)),(this.singleDatePicker||null===n||null===i)&&(i=n=e(this.element.val(),this.locale.format)),n.isValid()&&i.isValid()&&(this.setStartDate(n),this.setEndDate(i),this.updateView())}},keydown:function(e){9!==e.keyCode&&13!==e.keyCode||this.hide(),27===e.keyCode&&(e.preventDefault(),e.stopPropagation(),this.hide())},updateElement:function(){if(this.element.is(\"input\")&&this.autoUpdateInput){var e=this.startDate.format(this.locale.format);this.singleDatePicker||(e+=this.locale.separator+this.endDate.format(this.locale.format)),e!==this.element.val()&&this.element.val(e).trigger(\"change\")}},remove:function(){this.container.remove(),this.element.off(\".daterangepicker\"),this.element.removeData()}},t.fn.daterangepicker=function(e,i){var s=t.extend(!0,{},t.fn.daterangepicker.defaultOptions,e);return this.each((function(){var e=t(this);e.data(\"daterangepicker\")&&e.data(\"daterangepicker\").remove(),e.data(\"daterangepicker\",new n(e,s,i))})),this},n}(e,t)}.apply(t,i))||(e.exports=s)},9303:(e,t,n)=>{!function(e){var t=\"iCheck\",n=\"checkbox\",i=\"radio\",s=\"checked\",a=\"unchecked\",r=\"disabled\",o=\"determinate\",d=\"indeterminate\",l=\"update\",u=\"click\",c=\"touchbegin.i touchend.i\",h=\"addClass\",m=\"removeClass\",_=\"label\",p=\"cursor\",f=/ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent);function y(e,t,n){var a=e[0],u=/er/.test(n)?d:/bl/.test(n)?r:s,c=n==l?{checked:a.checked,disabled:a.disabled,indeterminate:\"true\"==e.attr(d)||\"false\"==e.attr(o)}:a[u];if(/^(ch|di|in)/.test(n)&&!c)g(e,u);else if(/^(un|en|de)/.test(n)&&c)M(e,u);else if(n==l)for(var h in c)c[h]?g(e,h,!0):M(e,h,!0);else t&&\"toggle\"!=n||(t||e.trigger(\"ifClicked\"),c?a.type!==i&&M(e,u):g(e,u))}function g(n,l,u){var c=n[0],_=n.parent(),f=l==s,y=l==d,g=l==r,v=y?o:f?a:\"enabled\",b=L(n,v+Y(c.type)),w=L(n,l+Y(c.type));if(!0!==c[l]){if(!u&&l==s&&c.type==i&&c.name){var D=n.closest(\"form\"),T='input[name=\"'+c.name+'\"]';(T=D.length?D.find(T):e(T)).each((function(){this!==c&&e(this).data(t)&&M(e(this),l)}))}y?(c[l]=!0,c.checked&&M(n,s,\"force\")):(u||(c[l]=!0),f&&c.indeterminate&&M(n,d,!1)),k(n,f,l,u)}c.disabled&&L(n,p,!0)&&_.find(\".iCheck-helper\").css(p,\"default\"),_[h](w||L(n,l)||\"\"),_.attr(\"role\")&&!y&&_.attr(\"aria-\"+(g?r:s),\"true\"),_[m](b||L(n,v)||\"\")}function M(e,t,n){var i=e[0],l=e.parent(),u=t==s,c=t==d,_=t==r,f=c?o:u?a:\"enabled\",y=L(e,f+Y(i.type)),g=L(e,t+Y(i.type));!1!==i[t]&&(!c&&n&&\"force\"!=n||(i[t]=!1),k(e,u,f,n)),!i.disabled&&L(e,p,!0)&&l.find(\".iCheck-helper\").css(p,\"pointer\"),l[m](g||L(e,t)||\"\"),l.attr(\"role\")&&!c&&l.attr(\"aria-\"+(_?r:s),\"false\"),l[h](y||L(e,f)||\"\")}function v(n,i){n.data(t)&&(n.parent().html(n.attr(\"style\",n.data(t).s||\"\")),i&&n.trigger(i),n.off(\".i\").unwrap(),e('label[for=\"'+n[0].id+'\"]').add(n.closest(_)).off(\".i\"))}function L(e,n,i){if(e.data(t))return e.data(t).o[n+(i?\"\":\"Class\")]}function Y(e){return e.charAt(0).toUpperCase()+e.slice(1)}function k(e,t,n,i){i||(t&&e.trigger(\"ifToggled\"),e.trigger(\"ifChanged\").trigger(\"if\"+Y(n)))}e.fn.iCheck=function(a,o){var p='input[type=\"checkbox\"], input[type=\"radio\"]',L=e(),Y=function(t){t.each((function(){var t=e(this);L=t.is(p)?L.add(t):L.add(t.find(p))}))};if(/^(check|uncheck|toggle|indeterminate|determinate|disable|enable|update|destroy)$/i.test(a))return a=a.toLowerCase(),Y(this),L.each((function(){var t=e(this);\"destroy\"==a?v(t,\"ifDestroyed\"):y(t,!0,a),e.isFunction(o)&&o()}));if(\"object\"!=typeof a&&a)return this;var k=e.extend({checkedClass:s,disabledClass:r,indeterminateClass:d,labelHover:!0},a),b=k.handle,w=k.hoverClass||\"hover\",D=k.focusClass||\"focus\",T=k.activeClass||\"active\",x=!!k.labelHover,S=k.labelHoverClass||\"hover\",H=0|(\"\"+k.increaseArea).replace(\"%\",\"\");return b!=n&&b!=i||(p='input[type=\"'+b+'\"]'),H<-50&&(H=-50),Y(this),L.each((function(){var a=e(this);v(a);var r,o=this,d=o.id,p=-H+\"%\",L=100+2*H+\"%\",Y={position:\"absolute\",top:p,left:p,display:\"block\",width:L,height:L,margin:0,padding:0,background:\"#fff\",border:0,opacity:0},b=f?{position:\"absolute\",visibility:\"hidden\"}:H?Y:{position:\"absolute\",opacity:0},j=o.type==n?k.checkboxClass||\"icheckbox\":k.radioClass||\"iradio\",C=e('label[for=\"'+d+'\"]').add(a.closest(_)),E=!!k.aria,O=\"iCheck-\"+Math.random().toString(36).substr(2,6),P='<div class=\"'+j+'\" '+(E?'role=\"'+o.type+'\" ':\"\");E&&C.each((function(){P+='aria-labelledby=\"',this.id?P+=this.id:(this.id=O,P+=O),P+='\"'})),P=a.wrap(P+\"/>\").trigger(\"ifCreated\").parent().append(k.insert),r=e('<ins class=\"iCheck-helper\"/>').css(Y).appendTo(P),a.data(t,{o:k,s:a.attr(\"style\")}).css(b),k.inheritClass&&P[h](o.className||\"\"),k.inheritID&&d&&P.attr(\"id\",\"iCheck-\"+d),\"static\"==P.css(\"position\")&&P.css(\"position\",\"relative\"),y(a,!0,l),C.length&&C.on(\"click.i mouseover.i mouseout.i \"+c,(function(t){var n=t.type,i=e(this);if(!o.disabled){if(n==u){if(e(t.target).is(\"a\"))return;y(a,!1,!0)}else x&&(/ut|nd/.test(n)?(P[m](w),i[m](S)):(P[h](w),i[h](S)));if(!f)return!1;t.stopPropagation()}})),a.on(\"click.i focus.i blur.i keyup.i keydown.i keypress.i\",(function(e){var t=e.type,n=e.keyCode;return t!=u&&(\"keydown\"==t&&32==n?(o.type==i&&o.checked||(o.checked?M(a,s):g(a,s)),!1):void(\"keyup\"==t&&o.type==i?!o.checked&&g(a,s):/us|ur/.test(t)&&P[\"blur\"==t?m:h](D)))})),r.on(\"click mousedown mouseup mouseover mouseout \"+c,(function(e){var t=e.type,n=/wn|up/.test(t)?T:w;if(!o.disabled){if(t==u?y(a,!1,!0):(/wn|er|in/.test(t)?P[h](n):P[m](n+\" \"+T),C.length&&x&&n==w&&C[/ut|nd/.test(t)?m:h](S)),!f)return!1;e.stopPropagation()}}))}))}}(n(9755)||window.Zepto)},1402:(e,n,i)=>{var s,a=i(9755);(s=a).fn.extend({slimScroll:function(e){var n=s.extend({width:\"auto\",height:\"250px\",size:\"7px\",color:\"#000\",position:\"right\",distance:\"1px\",start:\"top\",opacity:.4,alwaysVisible:!1,disableFadeOut:!1,railVisible:!1,railColor:\"#333\",railOpacity:.2,railDraggable:!0,railClass:\"slimScrollRail\",barClass:\"slimScrollBar\",wrapperClass:\"slimScrollDiv\",allowPageScroll:!1,wheelStep:20,touchScrollStep:200,borderRadius:\"7px\",railBorderRadius:\"7px\"},e);return this.each((function(){var i,a,r,o,d,l,u,c,h=\"<div></div>\",m=!1,_=s(this);if(_.parent().hasClass(n.wrapperClass)){var p=_.scrollTop();if(L=_.siblings(\".\"+n.barClass),v=_.siblings(\".\"+n.railClass),w(),s.isPlainObject(e)){if(\"height\"in e&&\"auto\"==e.height){_.parent().css(\"height\",\"auto\"),_.css(\"height\",\"auto\");var f=_.parent().parent().height();_.parent().css(\"height\",f),_.css(\"height\",f)}else if(\"height\"in e){var y=e.height;_.parent().css(\"height\",y),_.css(\"height\",y)}if(\"scrollTo\"in e)p=parseInt(n.scrollTo);else if(\"scrollBy\"in e)p+=parseInt(n.scrollBy);else if(\"destroy\"in e)return L.remove(),v.remove(),void _.unwrap();b(p,!1,!0)}}else if(!s.isPlainObject(e)||!(\"destroy\"in e)){n.height=\"auto\"==n.height?_.parent().height():n.height;var g=s(h).addClass(n.wrapperClass).css({position:\"relative\",overflow:\"hidden\",width:n.width,height:n.height});_.css({overflow:\"hidden\",width:n.width,height:n.height});var M,v=s(h).addClass(n.railClass).css({width:n.size,height:\"100%\",position:\"absolute\",top:0,display:n.alwaysVisible&&n.railVisible?\"block\":\"none\",\"border-radius\":n.railBorderRadius,background:n.railColor,opacity:n.railOpacity,zIndex:90}),L=s(h).addClass(n.barClass).css({background:n.color,width:n.size,position:\"absolute\",top:0,opacity:n.opacity,display:n.alwaysVisible?\"block\":\"none\",\"border-radius\":n.borderRadius,BorderRadius:n.borderRadius,MozBorderRadius:n.borderRadius,WebkitBorderRadius:n.borderRadius,zIndex:99}),Y=\"right\"==n.position?{right:n.distance}:{left:n.distance};v.css(Y),L.css(Y),_.wrap(g),_.parent().append(L),_.parent().append(v),n.railDraggable&&L.bind(\"mousedown\",(function(e){var n=s(document);return r=!0,t=parseFloat(L.css(\"top\")),pageY=e.pageY,n.bind(\"mousemove.slimscroll\",(function(e){currTop=t+e.pageY-pageY,L.css(\"top\",currTop),b(0,L.position().top,!1)})),n.bind(\"mouseup.slimscroll\",(function(e){r=!1,T(),n.unbind(\".slimscroll\")})),!1})).bind(\"selectstart.slimscroll\",(function(e){return e.stopPropagation(),e.preventDefault(),!1})),v.hover((function(){D()}),(function(){T()})),L.hover((function(){a=!0}),(function(){a=!1})),_.hover((function(){i=!0,D(),T()}),(function(){i=!1,T()})),_.bind(\"touchstart\",(function(e,t){e.originalEvent.touches.length&&(d=e.originalEvent.touches[0].pageY)})),_.bind(\"touchmove\",(function(e){m||e.originalEvent.preventDefault(),e.originalEvent.touches.length&&(b((d-e.originalEvent.touches[0].pageY)/n.touchScrollStep,!0),d=e.originalEvent.touches[0].pageY)})),w(),\"bottom\"===n.start?(L.css({top:_.outerHeight()-L.outerHeight()}),b(0,!0)):\"top\"!==n.start&&(b(s(n.start).position().top,null,!0),n.alwaysVisible||L.hide()),M=this,window.addEventListener?(M.addEventListener(\"DOMMouseScroll\",k,!1),M.addEventListener(\"mousewheel\",k,!1)):document.attachEvent(\"onmousewheel\",k)}function k(e){if(i){var t=0;(e=e||window.event).wheelDelta&&(t=-e.wheelDelta/120),e.detail&&(t=e.detail/3);var a=e.target||e.srcTarget||e.srcElement;s(a).closest(\".\"+n.wrapperClass).is(_.parent())&&b(t,!0),e.preventDefault&&!m&&e.preventDefault(),m||(e.returnValue=!1)}}function b(e,t,i){m=!1;var s=e,a=_.outerHeight()-L.outerHeight();if(t&&(s=parseInt(L.css(\"top\"))+e*parseInt(n.wheelStep)/100*L.outerHeight(),s=Math.min(Math.max(s,0),a),s=e>0?Math.ceil(s):Math.floor(s),L.css({top:s+\"px\"})),s=(u=parseInt(L.css(\"top\"))/(_.outerHeight()-L.outerHeight()))*(_[0].scrollHeight-_.outerHeight()),i){var r=(s=e)/_[0].scrollHeight*_.outerHeight();r=Math.min(Math.max(r,0),a),L.css({top:r+\"px\"})}_.scrollTop(s),_.trigger(\"slimscrolling\",~~s),D(),T()}function w(){l=Math.max(_.outerHeight()/_[0].scrollHeight*_.outerHeight(),30),L.css({height:l+\"px\"});var e=l==_.outerHeight()?\"none\":\"block\";L.css({display:e})}function D(){if(w(),clearTimeout(o),u==~~u){if(m=n.allowPageScroll,c!=u){var e=0==~~u?\"top\":\"bottom\";_.trigger(\"slimscroll\",e)}}else m=!1;c=u,l>=_.outerHeight()?m=!0:(L.stop(!0,!0).fadeIn(\"fast\"),n.railVisible&&v.stop(!0,!0).fadeIn(\"fast\"))}function T(){n.alwaysVisible||(o=setTimeout((function(){n.disableFadeOut&&i||a||r||(L.fadeOut(\"slow\"),v.fadeOut(\"slow\"))}),1e3))}})),this}}),s.fn.extend({slimscroll:s.fn.slimScroll})},5592:(e,t,n)=>{var i,s,a;s=[n(9755)],void 0===(a=\"function\"==typeof(i=function(e){return e.ui=e.ui||{},e.ui.version=\"1.12.1\"})?i.apply(t,s):i)||(e.exports=a)},6891:(e,t,n)=>{var i,s,a;s=[n(9755),n(5592)],void 0===(a=\"function\"==typeof(i=function(e){var t,n=0,i=Array.prototype.slice;return e.cleanData=(t=e.cleanData,function(n){var i,s,a;for(a=0;null!=(s=n[a]);a++)try{(i=e._data(s,\"events\"))&&i.remove&&e(s).triggerHandler(\"remove\")}catch(e){}t(n)}),e.widget=function(t,n,i){var s,a,r,o={},d=t.split(\".\")[0],l=d+\"-\"+(t=t.split(\".\")[1]);return i||(i=n,n=e.Widget),e.isArray(i)&&(i=e.extend.apply(null,[{}].concat(i))),e.expr[\":\"][l.toLowerCase()]=function(t){return!!e.data(t,l)},e[d]=e[d]||{},s=e[d][t],a=e[d][t]=function(e,t){if(!this._createWidget)return new a(e,t);arguments.length&&this._createWidget(e,t)},e.extend(a,s,{version:i.version,_proto:e.extend({},i),_childConstructors:[]}),(r=new n).options=e.widget.extend({},r.options),e.each(i,(function(t,i){e.isFunction(i)?o[t]=function(){function e(){return n.prototype[t].apply(this,arguments)}function s(e){return n.prototype[t].apply(this,e)}return function(){var t,n=this._super,a=this._superApply;return this._super=e,this._superApply=s,t=i.apply(this,arguments),this._super=n,this._superApply=a,t}}():o[t]=i})),a.prototype=e.widget.extend(r,{widgetEventPrefix:s&&r.widgetEventPrefix||t},o,{constructor:a,namespace:d,widgetName:t,widgetFullName:l}),s?(e.each(s._childConstructors,(function(t,n){var i=n.prototype;e.widget(i.namespace+\".\"+i.widgetName,a,n._proto)})),delete s._childConstructors):n._childConstructors.push(a),e.widget.bridge(t,a),a},e.widget.extend=function(t){for(var n,s,a=i.call(arguments,1),r=0,o=a.length;r<o;r++)for(n in a[r])s=a[r][n],a[r].hasOwnProperty(n)&&void 0!==s&&(e.isPlainObject(s)?t[n]=e.isPlainObject(t[n])?e.widget.extend({},t[n],s):e.widget.extend({},s):t[n]=s);return t},e.widget.bridge=function(t,n){var s=n.prototype.widgetFullName||t;e.fn[t]=function(a){var r=\"string\"==typeof a,o=i.call(arguments,1),d=this;return r?this.length||\"instance\"!==a?this.each((function(){var n,i=e.data(this,s);return\"instance\"===a?(d=i,!1):i?e.isFunction(i[a])&&\"_\"!==a.charAt(0)?(n=i[a].apply(i,o))!==i&&void 0!==n?(d=n&&n.jquery?d.pushStack(n.get()):n,!1):void 0:e.error(\"no such method '\"+a+\"' for \"+t+\" widget instance\"):e.error(\"cannot call methods on \"+t+\" prior to initialization; attempted to call method '\"+a+\"'\")})):d=void 0:(o.length&&(a=e.widget.extend.apply(null,[a].concat(o))),this.each((function(){var t=e.data(this,s);t?(t.option(a||{}),t._init&&t._init()):e.data(this,s,new n(a,this))}))),d}},e.Widget=function(){},e.Widget._childConstructors=[],e.Widget.prototype={widgetName:\"widget\",widgetEventPrefix:\"\",defaultElement:\"<div>\",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,i){i=e(i||this.defaultElement||this)[0],this.element=e(i),this.uuid=n++,this.eventNamespace=\".\"+this.widgetName+this.uuid,this.bindings=e(),this.hoverable=e(),this.focusable=e(),this.classesElementLookup={},i!==this&&(e.data(i,this.widgetFullName,this),this._on(!0,this.element,{remove:function(e){e.target===i&&this.destroy()}}),this.document=e(i.style?i.ownerDocument:i.document||i),this.window=e(this.document[0].defaultView||this.document[0].parentWindow)),this.options=e.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger(\"create\",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:e.noop,_create:e.noop,_init:e.noop,destroy:function(){var t=this;this._destroy(),e.each(this.classesElementLookup,(function(e,n){t._removeClass(n,e)})),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr(\"aria-disabled\"),this.bindings.off(this.eventNamespace)},_destroy:e.noop,widget:function(){return this.element},option:function(t,n){var i,s,a,r=t;if(0===arguments.length)return e.widget.extend({},this.options);if(\"string\"==typeof t)if(r={},i=t.split(\".\"),t=i.shift(),i.length){for(s=r[t]=e.widget.extend({},this.options[t]),a=0;a<i.length-1;a++)s[i[a]]=s[i[a]]||{},s=s[i[a]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=n}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];r[t]=n}return this._setOptions(r),this},_setOptions:function(e){var t;for(t in e)this._setOption(t,e[t]);return this},_setOption:function(e,t){return\"classes\"===e&&this._setOptionClasses(t),this.options[e]=t,\"disabled\"===e&&this._setOptionDisabled(t),this},_setOptionClasses:function(t){var n,i,s;for(n in t)s=this.classesElementLookup[n],t[n]!==this.options.classes[n]&&s&&s.length&&(i=e(s.get()),this._removeClass(s,n),i.addClass(this._classes({element:i,keys:n,classes:t,add:!0})))},_setOptionDisabled:function(e){this._toggleClass(this.widget(),this.widgetFullName+\"-disabled\",null,!!e),e&&(this._removeClass(this.hoverable,null,\"ui-state-hover\"),this._removeClass(this.focusable,null,\"ui-state-focus\"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(t){var n=[],i=this;function s(s,a){var r,o;for(o=0;o<s.length;o++)r=i.classesElementLookup[s[o]]||e(),r=t.add?e(e.unique(r.get().concat(t.element.get()))):e(r.not(t.element).get()),i.classesElementLookup[s[o]]=r,n.push(s[o]),a&&t.classes[s[o]]&&n.push(t.classes[s[o]])}return t=e.extend({element:this.element,classes:this.options.classes||{}},t),this._on(t.element,{remove:\"_untrackClassesElement\"}),t.keys&&s(t.keys.match(/\\S+/g)||[],!0),t.extra&&s(t.extra.match(/\\S+/g)||[]),n.join(\" \")},_untrackClassesElement:function(t){var n=this;e.each(n.classesElementLookup,(function(i,s){-1!==e.inArray(t.target,s)&&(n.classesElementLookup[i]=e(s.not(t.target).get()))}))},_removeClass:function(e,t,n){return this._toggleClass(e,t,n,!1)},_addClass:function(e,t,n){return this._toggleClass(e,t,n,!0)},_toggleClass:function(e,t,n,i){i=\"boolean\"==typeof i?i:n;var s=\"string\"==typeof e||null===e,a={extra:s?t:n,keys:s?e:t,element:s?this.element:e,add:i};return a.element.toggleClass(this._classes(a),i),this},_on:function(t,n,i){var s,a=this;\"boolean\"!=typeof t&&(i=n,n=t,t=!1),i?(n=s=e(n),this.bindings=this.bindings.add(n)):(i=n,n=this.element,s=this.widget()),e.each(i,(function(i,r){function o(){if(t||!0!==a.options.disabled&&!e(this).hasClass(\"ui-state-disabled\"))return(\"string\"==typeof r?a[r]:r).apply(a,arguments)}\"string\"!=typeof r&&(o.guid=r.guid=r.guid||o.guid||e.guid++);var d=i.match(/^([\\w:-]*)\\s*(.*)$/),l=d[1]+a.eventNamespace,u=d[2];u?s.on(l,u,o):n.on(l,o)}))},_off:function(t,n){n=(n||\"\").split(\" \").join(this.eventNamespace+\" \")+this.eventNamespace,t.off(n).off(n),this.bindings=e(this.bindings.not(t).get()),this.focusable=e(this.focusable.not(t).get()),this.hoverable=e(this.hoverable.not(t).get())},_delay:function(e,t){function n(){return(\"string\"==typeof e?i[e]:e).apply(i,arguments)}var i=this;return setTimeout(n,t||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(e(t.currentTarget),null,\"ui-state-hover\")},mouseleave:function(t){this._removeClass(e(t.currentTarget),null,\"ui-state-hover\")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(e(t.currentTarget),null,\"ui-state-focus\")},focusout:function(t){this._removeClass(e(t.currentTarget),null,\"ui-state-focus\")}})},_trigger:function(t,n,i){var s,a,r=this.options[t];if(i=i||{},(n=e.Event(n)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),n.target=this.element[0],a=n.originalEvent)for(s in a)s in n||(n[s]=a[s]);return this.element.trigger(n,i),!(e.isFunction(r)&&!1===r.apply(this.element[0],[n].concat(i))||n.isDefaultPrevented())}},e.each({show:\"fadeIn\",hide:\"fadeOut\"},(function(t,n){e.Widget.prototype[\"_\"+t]=function(i,s,a){var r;\"string\"==typeof s&&(s={effect:s});var o=s?!0===s||\"number\"==typeof s?n:s.effect||n:t;\"number\"==typeof(s=s||{})&&(s={duration:s}),r=!e.isEmptyObject(s),s.complete=a,s.delay&&i.delay(s.delay),r&&e.effects&&e.effects.effect[o]?i[t](s):o!==t&&i[o]?i[o](s.duration,s.easing,a):i.queue((function(n){e(this)[t](),a&&a.call(i[0]),n()}))}})),e.widget})?i.apply(t,s):i)||(e.exports=a)},9755:function(e,t){var n;!function(t,n){\"use strict\";\"object\"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error(\"jQuery requires a window with a document\");return n(e)}:n(t)}(\"undefined\"!=typeof window?window:this,(function(i,s){\"use strict\";var a=[],r=Object.getPrototypeOf,o=a.slice,d=a.flat?function(e){return a.flat.call(e)}:function(e){return a.concat.apply([],e)},l=a.push,u=a.indexOf,c={},h=c.toString,m=c.hasOwnProperty,_=m.toString,p=_.call(Object),f={},y=function(e){return\"function\"==typeof e&&\"number\"!=typeof e.nodeType},g=function(e){return null!=e&&e===e.window},M=i.document,v={type:!0,src:!0,nonce:!0,noModule:!0};function L(e,t,n){var i,s,a=(n=n||M).createElement(\"script\");if(a.text=e,t)for(i in v)(s=t[i]||t.getAttribute&&t.getAttribute(i))&&a.setAttribute(i,s);n.head.appendChild(a).parentNode.removeChild(a)}function Y(e){return null==e?e+\"\":\"object\"==typeof e||\"function\"==typeof e?c[h.call(e)]||\"object\":typeof e}var k=\"3.5.1\",b=function(e,t){return new b.fn.init(e,t)};function w(e){var t=!!e&&\"length\"in e&&e.length,n=Y(e);return!y(e)&&!g(e)&&(\"array\"===n||0===t||\"number\"==typeof t&&t>0&&t-1 in e)}b.fn=b.prototype={jquery:k,constructor:b,length:0,toArray:function(){return o.call(this)},get:function(e){return null==e?o.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return b.each(this,e)},map:function(e){return this.pushStack(b.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(o.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(b.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(b.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:l,sort:a.sort,splice:a.splice},b.extend=b.fn.extend=function(){var e,t,n,i,s,a,r=arguments[0]||{},o=1,d=arguments.length,l=!1;for(\"boolean\"==typeof r&&(l=r,r=arguments[o]||{},o++),\"object\"==typeof r||y(r)||(r={}),o===d&&(r=this,o--);o<d;o++)if(null!=(e=arguments[o]))for(t in e)i=e[t],\"__proto__\"!==t&&r!==i&&(l&&i&&(b.isPlainObject(i)||(s=Array.isArray(i)))?(n=r[t],a=s&&!Array.isArray(n)?[]:s||b.isPlainObject(n)?n:{},s=!1,r[t]=b.extend(l,a,i)):void 0!==i&&(r[t]=i));return r},b.extend({expando:\"jQuery\"+(k+Math.random()).replace(/\\D/g,\"\"),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||\"[object Object]\"!==h.call(e))&&(!(t=r(e))||\"function\"==typeof(n=m.call(t,\"constructor\")&&t.constructor)&&_.call(n)===p)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){L(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,i=0;if(w(e))for(n=e.length;i<n&&!1!==t.call(e[i],i,e[i]);i++);else for(i in e)if(!1===t.call(e[i],i,e[i]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(w(Object(e))?b.merge(n,\"string\"==typeof e?[e]:e):l.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:u.call(t,e,n)},merge:function(e,t){for(var n=+t.length,i=0,s=e.length;i<n;i++)e[s++]=t[i];return e.length=s,e},grep:function(e,t,n){for(var i=[],s=0,a=e.length,r=!n;s<a;s++)!t(e[s],s)!==r&&i.push(e[s]);return i},map:function(e,t,n){var i,s,a=0,r=[];if(w(e))for(i=e.length;a<i;a++)null!=(s=t(e[a],a,n))&&r.push(s);else for(a in e)null!=(s=t(e[a],a,n))&&r.push(s);return d(r)},guid:1,support:f}),\"function\"==typeof Symbol&&(b.fn[Symbol.iterator]=a[Symbol.iterator]),b.each(\"Boolean Number String Function Array Date RegExp Object Error Symbol\".split(\" \"),(function(e,t){c[\"[object \"+t+\"]\"]=t.toLowerCase()}));var D=function(e){var t,n,i,s,a,r,o,d,l,u,c,h,m,_,p,f,y,g,M,v=\"sizzle\"+1*new Date,L=e.document,Y=0,k=0,b=de(),w=de(),D=de(),T=de(),x=function(e,t){return e===t&&(c=!0),0},S={}.hasOwnProperty,H=[],j=H.pop,C=H.push,E=H.push,O=H.slice,P=function(e,t){for(var n=0,i=e.length;n<i;n++)if(e[n]===t)return n;return-1},A=\"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",I=\"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",W=\"(?:\\\\\\\\[\\\\da-fA-F]{1,6}[\\\\x20\\\\t\\\\r\\\\n\\\\f]?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",N=\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(\"+W+\")(?:\"+I+\"*([*^$|!~]?=)\"+I+\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+W+\"))|)\"+I+\"*\\\\]\",$=\":(\"+W+\")(?:\\\\((('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\"+N+\")*)|.*)\\\\)|)\",z=new RegExp(I+\"+\",\"g\"),F=new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)[\\\\x20\\\\t\\\\r\\\\n\\\\f]+$\",\"g\"),R=new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]*,[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\"),U=new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]*([>+~]|[\\\\x20\\\\t\\\\r\\\\n\\\\f])[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\"),B=new RegExp(I+\"|>\"),J=new RegExp($),q=new RegExp(\"^\"+W+\"$\"),V={ID:new RegExp(\"^#(\"+W+\")\"),CLASS:new RegExp(\"^\\\\.(\"+W+\")\"),TAG:new RegExp(\"^(\"+W+\"|[*])\"),ATTR:new RegExp(\"^\"+N),PSEUDO:new RegExp(\"^\"+$),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*(even|odd|(([+-]|)(\\\\d*)n|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:([+-]|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(\\\\d+)|))[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+A+\")$\",\"i\"),needsContext:new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*((?:-\\\\d)?\\\\d*)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)(?=[^-]|$)\",\"i\")},G=/HTML$/i,K=/^(?:input|select|textarea|button)$/i,Z=/^h\\d$/i,Q=/^[^{]+\\{\\s*\\[native \\w/,X=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}[\\\\x20\\\\t\\\\r\\\\n\\\\f]?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},ie=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,se=function(e,t){return t?\"\\0\"===e?\"�\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},ae=function(){h()},re=ve((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{E.apply(H=O.call(L.childNodes),L.childNodes),H[L.childNodes.length].nodeType}catch(e){E={apply:H.length?function(e,t){C.apply(e,O.call(t))}:function(e,t){for(var n=e.length,i=0;e[n++]=t[i++];);e.length=n-1}}}function oe(e,t,i,s){var a,o,l,u,c,_,y,g=t&&t.ownerDocument,L=t?t.nodeType:9;if(i=i||[],\"string\"!=typeof e||!e||1!==L&&9!==L&&11!==L)return i;if(!s&&(h(t),t=t||m,p)){if(11!==L&&(c=X.exec(e)))if(a=c[1]){if(9===L){if(!(l=t.getElementById(a)))return i;if(l.id===a)return i.push(l),i}else if(g&&(l=g.getElementById(a))&&M(t,l)&&l.id===a)return i.push(l),i}else{if(c[2])return E.apply(i,t.getElementsByTagName(e)),i;if((a=c[3])&&n.getElementsByClassName&&t.getElementsByClassName)return E.apply(i,t.getElementsByClassName(a)),i}if(n.qsa&&!T[e+\" \"]&&(!f||!f.test(e))&&(1!==L||\"object\"!==t.nodeName.toLowerCase())){if(y=e,g=t,1===L&&(B.test(e)||U.test(e))){for((g=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((u=t.getAttribute(\"id\"))?u=u.replace(ie,se):t.setAttribute(\"id\",u=v)),o=(_=r(e)).length;o--;)_[o]=(u?\"#\"+u:\":scope\")+\" \"+Me(_[o]);y=_.join(\",\")}try{return E.apply(i,g.querySelectorAll(y)),i}catch(t){T(e,!0)}finally{u===v&&t.removeAttribute(\"id\")}}}return d(e.replace(F,\"$1\"),t,i,s)}function de(){var e=[];return function t(n,s){return e.push(n+\" \")>i.cacheLength&&delete t[e.shift()],t[n+\" \"]=s}}function le(e){return e[v]=!0,e}function ue(e){var t=m.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ce(e,t){for(var n=e.split(\"|\"),s=n.length;s--;)i.attrHandle[n[s]]=t}function he(e,t){var n=t&&e,i=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(i)return i;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function me(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function _e(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function pe(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&re(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function fe(e){return le((function(t){return t=+t,le((function(n,i){for(var s,a=e([],n.length,t),r=a.length;r--;)n[s=a[r]]&&(n[s]=!(i[s]=n[s]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=oe.support={},a=oe.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!G.test(t||n&&n.nodeName||\"HTML\")},h=oe.setDocument=function(e){var t,s,r=e?e.ownerDocument||e:L;return r!=m&&9===r.nodeType&&r.documentElement?(_=(m=r).documentElement,p=!a(m),L!=m&&(s=m.defaultView)&&s.top!==s&&(s.addEventListener?s.addEventListener(\"unload\",ae,!1):s.attachEvent&&s.attachEvent(\"onunload\",ae)),n.scope=ue((function(e){return _.appendChild(e).appendChild(m.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ue((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ue((function(e){return e.appendChild(m.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=Q.test(m.getElementsByClassName),n.getById=ue((function(e){return _.appendChild(e).id=v,!m.getElementsByName||!m.getElementsByName(v).length})),n.getById?(i.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},i.find.ID=function(e,t){if(void 0!==t.getElementById&&p){var n=t.getElementById(e);return n?[n]:[]}}):(i.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},i.find.ID=function(e,t){if(void 0!==t.getElementById&&p){var n,i,s,a=t.getElementById(e);if(a){if((n=a.getAttributeNode(\"id\"))&&n.value===e)return[a];for(s=t.getElementsByName(e),i=0;a=s[i++];)if((n=a.getAttributeNode(\"id\"))&&n.value===e)return[a]}return[]}}),i.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,i=[],s=0,a=t.getElementsByTagName(e);if(\"*\"===e){for(;n=a[s++];)1===n.nodeType&&i.push(n);return i}return a},i.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&p)return t.getElementsByClassName(e)},y=[],f=[],(n.qsa=Q.test(m.querySelectorAll))&&(ue((function(e){var t;_.appendChild(e).innerHTML=\"<a id='\"+v+\"'></a><select id='\"+v+\"-\\r\\\\' msallowcapture=''><option selected=''></option></select>\",e.querySelectorAll(\"[msallowcapture^='']\").length&&f.push(\"[*^$]=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||f.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:value|\"+A+\")\"),e.querySelectorAll(\"[id~=\"+v+\"-]\").length||f.push(\"~=\"),(t=m.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||f.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||f.push(\":checked\"),e.querySelectorAll(\"a#\"+v+\"+*\").length||f.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),f.push(\"[\\\\r\\\\n\\\\f]\")})),ue((function(e){e.innerHTML=\"<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>\";var t=m.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&f.push(\"name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&f.push(\":enabled\",\":disabled\"),_.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&f.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),f.push(\",.*:\")}))),(n.matchesSelector=Q.test(g=_.matches||_.webkitMatchesSelector||_.mozMatchesSelector||_.oMatchesSelector||_.msMatchesSelector))&&ue((function(e){n.disconnectedMatch=g.call(e,\"*\"),g.call(e,\"[s!='']:x\"),y.push(\"!=\",$)})),f=f.length&&new RegExp(f.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=Q.test(_.compareDocumentPosition),M=t||Q.test(_.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,i=t&&t.parentNode;return e===i||!(!i||1!==i.nodeType||!(n.contains?n.contains(i):e.compareDocumentPosition&&16&e.compareDocumentPosition(i)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},x=t?function(e,t){if(e===t)return c=!0,0;var i=!e.compareDocumentPosition-!t.compareDocumentPosition;return i||(1&(i=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===i?e==m||e.ownerDocument==L&&M(L,e)?-1:t==m||t.ownerDocument==L&&M(L,t)?1:u?P(u,e)-P(u,t):0:4&i?-1:1)}:function(e,t){if(e===t)return c=!0,0;var n,i=0,s=e.parentNode,a=t.parentNode,r=[e],o=[t];if(!s||!a)return e==m?-1:t==m?1:s?-1:a?1:u?P(u,e)-P(u,t):0;if(s===a)return he(e,t);for(n=e;n=n.parentNode;)r.unshift(n);for(n=t;n=n.parentNode;)o.unshift(n);for(;r[i]===o[i];)i++;return i?he(r[i],o[i]):r[i]==L?-1:o[i]==L?1:0},m):m},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if(h(e),n.matchesSelector&&p&&!T[t+\" \"]&&(!y||!y.test(t))&&(!f||!f.test(t)))try{var i=g.call(e,t);if(i||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return i}catch(e){T(t,!0)}return oe(t,m,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!=m&&h(e),M(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!=m&&h(e);var s=i.attrHandle[t.toLowerCase()],a=s&&S.call(i.attrHandle,t.toLowerCase())?s(e,t,!p):void 0;return void 0!==a?a:n.attributes||!p?e.getAttribute(t):(a=e.getAttributeNode(t))&&a.specified?a.value:null},oe.escape=function(e){return(e+\"\").replace(ie,se)},oe.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},oe.uniqueSort=function(e){var t,i=[],s=0,a=0;if(c=!n.detectDuplicates,u=!n.sortStable&&e.slice(0),e.sort(x),c){for(;t=e[a++];)t===e[a]&&(s=i.push(a));for(;s--;)e.splice(i[s],1)}return u=null,e},s=oe.getText=function(e){var t,n=\"\",i=0,a=e.nodeType;if(a){if(1===a||9===a||11===a){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=s(e)}else if(3===a||4===a)return e.nodeValue}else for(;t=e[i++];)n+=s(t);return n},(i=oe.selectors={cacheLength:50,createPseudo:le,match:V,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&J.test(n)&&(t=r(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=b[e+\" \"];return t||(t=new RegExp(\"(^|[\\\\x20\\\\t\\\\r\\\\n\\\\f])\"+e+\"(\"+I+\"|$)\"))&&b(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(i){var s=oe.attr(i,e);return null==s?\"!=\"===t:!t||(s+=\"\",\"=\"===t?s===n:\"!=\"===t?s!==n:\"^=\"===t?n&&0===s.indexOf(n):\"*=\"===t?n&&s.indexOf(n)>-1:\"$=\"===t?n&&s.slice(-n.length)===n:\"~=\"===t?(\" \"+s.replace(z,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(s===n||s.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,i,s){var a=\"nth\"!==e.slice(0,3),r=\"last\"!==e.slice(-4),o=\"of-type\"===t;return 1===i&&0===s?function(e){return!!e.parentNode}:function(t,n,d){var l,u,c,h,m,_,p=a!==r?\"nextSibling\":\"previousSibling\",f=t.parentNode,y=o&&t.nodeName.toLowerCase(),g=!d&&!o,M=!1;if(f){if(a){for(;p;){for(h=t;h=h[p];)if(o?h.nodeName.toLowerCase()===y:1===h.nodeType)return!1;_=p=\"only\"===e&&!_&&\"nextSibling\"}return!0}if(_=[r?f.firstChild:f.lastChild],r&&g){for(M=(m=(l=(u=(c=(h=f)[v]||(h[v]={}))[h.uniqueID]||(c[h.uniqueID]={}))[e]||[])[0]===Y&&l[1])&&l[2],h=m&&f.childNodes[m];h=++m&&h&&h[p]||(M=m=0)||_.pop();)if(1===h.nodeType&&++M&&h===t){u[e]=[Y,m,M];break}}else if(g&&(M=m=(l=(u=(c=(h=t)[v]||(h[v]={}))[h.uniqueID]||(c[h.uniqueID]={}))[e]||[])[0]===Y&&l[1]),!1===M)for(;(h=++m&&h&&h[p]||(M=m=0)||_.pop())&&((o?h.nodeName.toLowerCase()!==y:1!==h.nodeType)||!++M||(g&&((u=(c=h[v]||(h[v]={}))[h.uniqueID]||(c[h.uniqueID]={}))[e]=[Y,M]),h!==t)););return(M-=s)===i||M%i==0&&M/i>=0}}},PSEUDO:function(e,t){var n,s=i.pseudos[e]||i.setFilters[e.toLowerCase()]||oe.error(\"unsupported pseudo: \"+e);return s[v]?s(t):s.length>1?(n=[e,e,\"\",t],i.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var i,a=s(e,t),r=a.length;r--;)e[i=P(e,a[r])]=!(n[i]=a[r])})):function(e){return s(e,0,n)}):s}},pseudos:{not:le((function(e){var t=[],n=[],i=o(e.replace(F,\"$1\"));return i[v]?le((function(e,t,n,s){for(var a,r=i(e,null,s,[]),o=e.length;o--;)(a=r[o])&&(e[o]=!(t[o]=a))})):function(e,s,a){return t[0]=e,i(t,null,a,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return oe(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||s(t)).indexOf(e)>-1}})),lang:le((function(e){return q.test(e||\"\")||oe.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=p?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===_},focus:function(e){return e===m.activeElement&&(!m.hasFocus||m.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:pe(!1),disabled:pe(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Z.test(e.nodeName)},input:function(e){return K.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:fe((function(){return[0]})),last:fe((function(e,t){return[t-1]})),eq:fe((function(e,t,n){return[n<0?n+t:n]})),even:fe((function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e})),odd:fe((function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e})),lt:fe((function(e,t,n){for(var i=n<0?n+t:n>t?t:n;--i>=0;)e.push(i);return e})),gt:fe((function(e,t,n){for(var i=n<0?n+t:n;++i<t;)e.push(i);return e}))}}).pseudos.nth=i.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[t]=me(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=_e(t);function ge(){}function Me(e){for(var t=0,n=e.length,i=\"\";t<n;t++)i+=e[t].value;return i}function ve(e,t,n){var i=t.dir,s=t.next,a=s||i,r=n&&\"parentNode\"===a,o=k++;return t.first?function(t,n,s){for(;t=t[i];)if(1===t.nodeType||r)return e(t,n,s);return!1}:function(t,n,d){var l,u,c,h=[Y,o];if(d){for(;t=t[i];)if((1===t.nodeType||r)&&e(t,n,d))return!0}else for(;t=t[i];)if(1===t.nodeType||r)if(u=(c=t[v]||(t[v]={}))[t.uniqueID]||(c[t.uniqueID]={}),s&&s===t.nodeName.toLowerCase())t=t[i]||t;else{if((l=u[a])&&l[0]===Y&&l[1]===o)return h[2]=l[2];if(u[a]=h,h[2]=e(t,n,d))return!0}return!1}}function Le(e){return e.length>1?function(t,n,i){for(var s=e.length;s--;)if(!e[s](t,n,i))return!1;return!0}:e[0]}function Ye(e,t,n,i,s){for(var a,r=[],o=0,d=e.length,l=null!=t;o<d;o++)(a=e[o])&&(n&&!n(a,i,s)||(r.push(a),l&&t.push(o)));return r}function ke(e,t,n,i,s,a){return i&&!i[v]&&(i=ke(i)),s&&!s[v]&&(s=ke(s,a)),le((function(a,r,o,d){var l,u,c,h=[],m=[],_=r.length,p=a||function(e,t,n){for(var i=0,s=t.length;i<s;i++)oe(e,t[i],n);return n}(t||\"*\",o.nodeType?[o]:o,[]),f=!e||!a&&t?p:Ye(p,h,e,o,d),y=n?s||(a?e:_||i)?[]:r:f;if(n&&n(f,y,o,d),i)for(l=Ye(y,m),i(l,[],o,d),u=l.length;u--;)(c=l[u])&&(y[m[u]]=!(f[m[u]]=c));if(a){if(s||e){if(s){for(l=[],u=y.length;u--;)(c=y[u])&&l.push(f[u]=c);s(null,y=[],l,d)}for(u=y.length;u--;)(c=y[u])&&(l=s?P(a,c):h[u])>-1&&(a[l]=!(r[l]=c))}}else y=Ye(y===r?y.splice(_,y.length):y),s?s(null,r,y,d):E.apply(r,y)}))}function be(e){for(var t,n,s,a=e.length,r=i.relative[e[0].type],o=r||i.relative[\" \"],d=r?1:0,u=ve((function(e){return e===t}),o,!0),c=ve((function(e){return P(t,e)>-1}),o,!0),h=[function(e,n,i){var s=!r&&(i||n!==l)||((t=n).nodeType?u(e,n,i):c(e,n,i));return t=null,s}];d<a;d++)if(n=i.relative[e[d].type])h=[ve(Le(h),n)];else{if((n=i.filter[e[d].type].apply(null,e[d].matches))[v]){for(s=++d;s<a&&!i.relative[e[s].type];s++);return ke(d>1&&Le(h),d>1&&Me(e.slice(0,d-1).concat({value:\" \"===e[d-2].type?\"*\":\"\"})).replace(F,\"$1\"),n,d<s&&be(e.slice(d,s)),s<a&&be(e=e.slice(s)),s<a&&Me(e))}h.push(n)}return Le(h)}return ge.prototype=i.filters=i.pseudos,i.setFilters=new ge,r=oe.tokenize=function(e,t){var n,s,a,r,o,d,l,u=w[e+\" \"];if(u)return t?0:u.slice(0);for(o=e,d=[],l=i.preFilter;o;){for(r in n&&!(s=R.exec(o))||(s&&(o=o.slice(s[0].length)||o),d.push(a=[])),n=!1,(s=U.exec(o))&&(n=s.shift(),a.push({value:n,type:s[0].replace(F,\" \")}),o=o.slice(n.length)),i.filter)!(s=V[r].exec(o))||l[r]&&!(s=l[r](s))||(n=s.shift(),a.push({value:n,type:r,matches:s}),o=o.slice(n.length));if(!n)break}return t?o.length:o?oe.error(e):w(e,d).slice(0)},o=oe.compile=function(e,t){var n,s=[],a=[],o=D[e+\" \"];if(!o){for(t||(t=r(e)),n=t.length;n--;)(o=be(t[n]))[v]?s.push(o):a.push(o);(o=D(e,function(e,t){var n=t.length>0,s=e.length>0,a=function(a,r,o,d,u){var c,_,f,y=0,g=\"0\",M=a&&[],v=[],L=l,k=a||s&&i.find.TAG(\"*\",u),b=Y+=null==L?1:Math.random()||.1,w=k.length;for(u&&(l=r==m||r||u);g!==w&&null!=(c=k[g]);g++){if(s&&c){for(_=0,r||c.ownerDocument==m||(h(c),o=!p);f=e[_++];)if(f(c,r||m,o)){d.push(c);break}u&&(Y=b)}n&&((c=!f&&c)&&y--,a&&M.push(c))}if(y+=g,n&&g!==y){for(_=0;f=t[_++];)f(M,v,r,o);if(a){if(y>0)for(;g--;)M[g]||v[g]||(v[g]=j.call(d));v=Ye(v)}E.apply(d,v),u&&!a&&v.length>0&&y+t.length>1&&oe.uniqueSort(d)}return u&&(Y=b,l=L),M};return n?le(a):a}(a,s))).selector=e}return o},d=oe.select=function(e,t,n,s){var a,d,l,u,c,h=\"function\"==typeof e&&e,m=!s&&r(e=h.selector||e);if(n=n||[],1===m.length){if((d=m[0]=m[0].slice(0)).length>2&&\"ID\"===(l=d[0]).type&&9===t.nodeType&&p&&i.relative[d[1].type]){if(!(t=(i.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;h&&(t=t.parentNode),e=e.slice(d.shift().value.length)}for(a=V.needsContext.test(e)?0:d.length;a--&&(l=d[a],!i.relative[u=l.type]);)if((c=i.find[u])&&(s=c(l.matches[0].replace(te,ne),ee.test(d[0].type)&&ye(t.parentNode)||t))){if(d.splice(a,1),!(e=s.length&&Me(d)))return E.apply(n,s),n;break}}return(h||o(e,m))(s,t,!p,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=v.split(\"\").sort(x).join(\"\")===v,n.detectDuplicates=!!c,h(),n.sortDetached=ue((function(e){return 1&e.compareDocumentPosition(m.createElement(\"fieldset\"))})),ue((function(e){return e.innerHTML=\"<a href='#'></a>\",\"#\"===e.firstChild.getAttribute(\"href\")}))||ce(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ue((function(e){return e.innerHTML=\"<input/>\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||ce(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ue((function(e){return null==e.getAttribute(\"disabled\")}))||ce(A,(function(e,t,n){var i;if(!n)return!0===e[t]?t.toLowerCase():(i=e.getAttributeNode(t))&&i.specified?i.value:null})),oe}(i);b.find=D,b.expr=D.selectors,b.expr[\":\"]=b.expr.pseudos,b.uniqueSort=b.unique=D.uniqueSort,b.text=D.getText,b.isXMLDoc=D.isXML,b.contains=D.contains,b.escapeSelector=D.escape;var T=function(e,t,n){for(var i=[],s=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(s&&b(e).is(n))break;i.push(e)}return i},x=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},S=b.expr.match.needsContext;function H(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var j=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function C(e,t,n){return y(t)?b.grep(e,(function(e,i){return!!t.call(e,i,e)!==n})):t.nodeType?b.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?b.grep(e,(function(e){return u.call(t,e)>-1!==n})):b.filter(t,e,n)}b.filter=function(e,t,n){var i=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===i.nodeType?b.find.matchesSelector(i,e)?[i]:[]:b.find.matches(e,b.grep(t,(function(e){return 1===e.nodeType})))},b.fn.extend({find:function(e){var t,n,i=this.length,s=this;if(\"string\"!=typeof e)return this.pushStack(b(e).filter((function(){for(t=0;t<i;t++)if(b.contains(s[t],this))return!0})));for(n=this.pushStack([]),t=0;t<i;t++)b.find(e,s[t],n);return i>1?b.uniqueSort(n):n},filter:function(e){return this.pushStack(C(this,e||[],!1))},not:function(e){return this.pushStack(C(this,e||[],!0))},is:function(e){return!!C(this,\"string\"==typeof e&&S.test(e)?b(e):e||[],!1).length}});var E,O=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(b.fn.init=function(e,t,n){var i,s;if(!e)return this;if(n=n||E,\"string\"==typeof e){if(!(i=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:O.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof b?t[0]:t,b.merge(this,b.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:M,!0)),j.test(i[1])&&b.isPlainObject(t))for(i in t)y(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(s=M.getElementById(i[2]))&&(this[0]=s,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):y(e)?void 0!==n.ready?n.ready(e):e(b):b.makeArray(e,this)}).prototype=b.fn,E=b(M);var P=/^(?:parents|prev(?:Until|All))/,A={children:!0,contents:!0,next:!0,prev:!0};function I(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}b.fn.extend({has:function(e){var t=b(e,this),n=t.length;return this.filter((function(){for(var e=0;e<n;e++)if(b.contains(this,t[e]))return!0}))},closest:function(e,t){var n,i=0,s=this.length,a=[],r=\"string\"!=typeof e&&b(e);if(!S.test(e))for(;i<s;i++)for(n=this[i];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(r?r.index(n)>-1:1===n.nodeType&&b.find.matchesSelector(n,e))){a.push(n);break}return this.pushStack(a.length>1?b.uniqueSort(a):a)},index:function(e){return e?\"string\"==typeof e?u.call(b(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(b.uniqueSort(b.merge(this.get(),b(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,\"parentNode\")},parentsUntil:function(e,t,n){return T(e,\"parentNode\",n)},next:function(e){return I(e,\"nextSibling\")},prev:function(e){return I(e,\"previousSibling\")},nextAll:function(e){return T(e,\"nextSibling\")},prevAll:function(e){return T(e,\"previousSibling\")},nextUntil:function(e,t,n){return T(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return T(e,\"previousSibling\",n)},siblings:function(e){return x((e.parentNode||{}).firstChild,e)},children:function(e){return x(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(H(e,\"template\")&&(e=e.content||e),b.merge([],e.childNodes))}},(function(e,t){b.fn[e]=function(n,i){var s=b.map(this,t,n);return\"Until\"!==e.slice(-5)&&(i=n),i&&\"string\"==typeof i&&(s=b.filter(i,s)),this.length>1&&(A[e]||b.uniqueSort(s),P.test(e)&&s.reverse()),this.pushStack(s)}}));var W=/[^\\x20\\t\\r\\n\\f]+/g;function N(e){return e}function $(e){throw e}function z(e,t,n,i){var s;try{e&&y(s=e.promise)?s.call(e).done(t).fail(n):e&&y(s=e.then)?s.call(e,t,n):t.apply(void 0,[e].slice(i))}catch(e){n.apply(void 0,[e])}}b.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return b.each(e.match(W)||[],(function(e,n){t[n]=!0})),t}(e):b.extend({},e);var t,n,i,s,a=[],r=[],o=-1,d=function(){for(s=s||e.once,i=t=!0;r.length;o=-1)for(n=r.shift();++o<a.length;)!1===a[o].apply(n[0],n[1])&&e.stopOnFalse&&(o=a.length,n=!1);e.memory||(n=!1),t=!1,s&&(a=n?[]:\"\")},l={add:function(){return a&&(n&&!t&&(o=a.length-1,r.push(n)),function t(n){b.each(n,(function(n,i){y(i)?e.unique&&l.has(i)||a.push(i):i&&i.length&&\"string\"!==Y(i)&&t(i)}))}(arguments),n&&!t&&d()),this},remove:function(){return b.each(arguments,(function(e,t){for(var n;(n=b.inArray(t,a,n))>-1;)a.splice(n,1),n<=o&&o--})),this},has:function(e){return e?b.inArray(e,a)>-1:a.length>0},empty:function(){return a&&(a=[]),this},disable:function(){return s=r=[],a=n=\"\",this},disabled:function(){return!a},lock:function(){return s=r=[],n||t||(a=n=\"\"),this},locked:function(){return!!s},fireWith:function(e,n){return s||(n=[e,(n=n||[]).slice?n.slice():n],r.push(n),t||d()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!i}};return l},b.extend({Deferred:function(e){var t=[[\"notify\",\"progress\",b.Callbacks(\"memory\"),b.Callbacks(\"memory\"),2],[\"resolve\",\"done\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",b.Callbacks(\"once memory\"),b.Callbacks(\"once memory\"),1,\"rejected\"]],n=\"pending\",s={state:function(){return n},always:function(){return a.done(arguments).fail(arguments),this},catch:function(e){return s.then(null,e)},pipe:function(){var e=arguments;return b.Deferred((function(n){b.each(t,(function(t,i){var s=y(e[i[4]])&&e[i[4]];a[i[1]]((function(){var e=s&&s.apply(this,arguments);e&&y(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[i[0]+\"With\"](this,s?[e]:arguments)}))})),e=null})).promise()},then:function(e,n,s){var a=0;function r(e,t,n,s){return function(){var o=this,d=arguments,l=function(){var i,l;if(!(e<a)){if((i=n.apply(o,d))===t.promise())throw new TypeError(\"Thenable self-resolution\");l=i&&(\"object\"==typeof i||\"function\"==typeof i)&&i.then,y(l)?s?l.call(i,r(a,t,N,s),r(a,t,$,s)):(a++,l.call(i,r(a,t,N,s),r(a,t,$,s),r(a,t,N,t.notifyWith))):(n!==N&&(o=void 0,d=[i]),(s||t.resolveWith)(o,d))}},u=s?l:function(){try{l()}catch(i){b.Deferred.exceptionHook&&b.Deferred.exceptionHook(i,u.stackTrace),e+1>=a&&(n!==$&&(o=void 0,d=[i]),t.rejectWith(o,d))}};e?u():(b.Deferred.getStackHook&&(u.stackTrace=b.Deferred.getStackHook()),i.setTimeout(u))}}return b.Deferred((function(i){t[0][3].add(r(0,i,y(s)?s:N,i.notifyWith)),t[1][3].add(r(0,i,y(e)?e:N)),t[2][3].add(r(0,i,y(n)?n:$))})).promise()},promise:function(e){return null!=e?b.extend(e,s):s}},a={};return b.each(t,(function(e,i){var r=i[2],o=i[5];s[i[1]]=r.add,o&&r.add((function(){n=o}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),r.add(i[3].fire),a[i[0]]=function(){return a[i[0]+\"With\"](this===a?void 0:this,arguments),this},a[i[0]+\"With\"]=r.fireWith})),s.promise(a),e&&e.call(a,a),a},when:function(e){var t=arguments.length,n=t,i=Array(n),s=o.call(arguments),a=b.Deferred(),r=function(e){return function(n){i[e]=this,s[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(i,s)}};if(t<=1&&(z(e,a.done(r(n)).resolve,a.reject,!t),\"pending\"===a.state()||y(s[n]&&s[n].then)))return a.then();for(;n--;)z(s[n],r(n),a.reject);return a.promise()}});var F=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;b.Deferred.exceptionHook=function(e,t){i.console&&i.console.warn&&e&&F.test(e.name)&&i.console.warn(\"jQuery.Deferred exception: \"+e.message,e.stack,t)},b.readyException=function(e){i.setTimeout((function(){throw e}))};var R=b.Deferred();function U(){M.removeEventListener(\"DOMContentLoaded\",U),i.removeEventListener(\"load\",U),b.ready()}b.fn.ready=function(e){return R.then(e).catch((function(e){b.readyException(e)})),this},b.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--b.readyWait:b.isReady)||(b.isReady=!0,!0!==e&&--b.readyWait>0||R.resolveWith(M,[b]))}}),b.ready.then=R.then,\"complete\"===M.readyState||\"loading\"!==M.readyState&&!M.documentElement.doScroll?i.setTimeout(b.ready):(M.addEventListener(\"DOMContentLoaded\",U),i.addEventListener(\"load\",U));var B=function(e,t,n,i,s,a,r){var o=0,d=e.length,l=null==n;if(\"object\"===Y(n))for(o in s=!0,n)B(e,t,o,n[o],!0,a,r);else if(void 0!==i&&(s=!0,y(i)||(r=!0),l&&(r?(t.call(e,i),t=null):(l=t,t=function(e,t,n){return l.call(b(e),n)})),t))for(;o<d;o++)t(e[o],n,r?i:i.call(e[o],o,t(e[o],n)));return s?e:l?t.call(e):d?t(e[0],n):a},J=/^-ms-/,q=/-([a-z])/g;function V(e,t){return t.toUpperCase()}function G(e){return e.replace(J,\"ms-\").replace(q,V)}var K=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Z(){this.expando=b.expando+Z.uid++}Z.uid=1,Z.prototype={cache:function(e){var t=e[this.expando];return t||(t={},K(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var i,s=this.cache(e);if(\"string\"==typeof t)s[G(t)]=n;else for(i in t)s[G(i)]=t[i];return s},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][G(t)]},access:function(e,t,n){return void 0===t||t&&\"string\"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,i=e[this.expando];if(void 0!==i){if(void 0!==t){n=(t=Array.isArray(t)?t.map(G):(t=G(t))in i?[t]:t.match(W)||[]).length;for(;n--;)delete i[t[n]]}(void 0===t||b.isEmptyObject(i))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!b.isEmptyObject(t)}};var Q=new Z,X=new Z,ee=/^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,te=/[A-Z]/g;function ne(e,t,n){var i;if(void 0===n&&1===e.nodeType)if(i=\"data-\"+t.replace(te,\"-$&\").toLowerCase(),\"string\"==typeof(n=e.getAttribute(i))){try{n=function(e){return\"true\"===e||\"false\"!==e&&(\"null\"===e?null:e===+e+\"\"?+e:ee.test(e)?JSON.parse(e):e)}(n)}catch(e){}X.set(e,t,n)}else n=void 0;return n}b.extend({hasData:function(e){return X.hasData(e)||Q.hasData(e)},data:function(e,t,n){return X.access(e,t,n)},removeData:function(e,t){X.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),b.fn.extend({data:function(e,t){var n,i,s,a=this[0],r=a&&a.attributes;if(void 0===e){if(this.length&&(s=X.get(a),1===a.nodeType&&!Q.get(a,\"hasDataAttrs\"))){for(n=r.length;n--;)r[n]&&0===(i=r[n].name).indexOf(\"data-\")&&(i=G(i.slice(5)),ne(a,i,s[i]));Q.set(a,\"hasDataAttrs\",!0)}return s}return\"object\"==typeof e?this.each((function(){X.set(this,e)})):B(this,(function(t){var n;if(a&&void 0===t)return void 0!==(n=X.get(a,e))||void 0!==(n=ne(a,e))?n:void 0;this.each((function(){X.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){X.remove(this,e)}))}}),b.extend({queue:function(e,t,n){var i;if(e)return t=(t||\"fx\")+\"queue\",i=Q.get(e,t),n&&(!i||Array.isArray(n)?i=Q.access(e,t,b.makeArray(n)):i.push(n)),i||[]},dequeue:function(e,t){t=t||\"fx\";var n=b.queue(e,t),i=n.length,s=n.shift(),a=b._queueHooks(e,t);\"inprogress\"===s&&(s=n.shift(),i--),s&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete a.stop,s.call(e,(function(){b.dequeue(e,t)}),a)),!i&&a&&a.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return Q.get(e,n)||Q.access(e,n,{empty:b.Callbacks(\"once memory\").add((function(){Q.remove(e,[t+\"queue\",n])}))})}}),b.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length<n?b.queue(this[0],e):void 0===t?this:this.each((function(){var n=b.queue(this,e,t);b._queueHooks(this,e),\"fx\"===e&&\"inprogress\"!==n[0]&&b.dequeue(this,e)}))},dequeue:function(e){return this.each((function(){b.dequeue(this,e)}))},clearQueue:function(e){return this.queue(e||\"fx\",[])},promise:function(e,t){var n,i=1,s=b.Deferred(),a=this,r=this.length,o=function(){--i||s.resolveWith(a,[a])};for(\"string\"!=typeof e&&(t=e,e=void 0),e=e||\"fx\";r--;)(n=Q.get(a[r],e+\"queueHooks\"))&&n.empty&&(i++,n.empty.add(o));return o(),s.promise(t)}});var ie=/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source,se=new RegExp(\"^(?:([+-])=|)(\"+ie+\")([a-z%]*)$\",\"i\"),ae=[\"Top\",\"Right\",\"Bottom\",\"Left\"],re=M.documentElement,oe=function(e){return b.contains(e.ownerDocument,e)},de={composed:!0};re.getRootNode&&(oe=function(e){return b.contains(e.ownerDocument,e)||e.getRootNode(de)===e.ownerDocument});var le=function(e,t){return\"none\"===(e=t||e).style.display||\"\"===e.style.display&&oe(e)&&\"none\"===b.css(e,\"display\")};function ue(e,t,n,i){var s,a,r=20,o=i?function(){return i.cur()}:function(){return b.css(e,t,\"\")},d=o(),l=n&&n[3]||(b.cssNumber[t]?\"\":\"px\"),u=e.nodeType&&(b.cssNumber[t]||\"px\"!==l&&+d)&&se.exec(b.css(e,t));if(u&&u[3]!==l){for(d/=2,l=l||u[3],u=+d||1;r--;)b.style(e,t,u+l),(1-a)*(1-(a=o()/d||.5))<=0&&(r=0),u/=a;u*=2,b.style(e,t,u+l),n=n||[]}return n&&(u=+u||+d||0,s=n[1]?u+(n[1]+1)*n[2]:+n[2],i&&(i.unit=l,i.start=u,i.end=s)),s}var ce={};function he(e){var t,n=e.ownerDocument,i=e.nodeName,s=ce[i];return s||(t=n.body.appendChild(n.createElement(i)),s=b.css(t,\"display\"),t.parentNode.removeChild(t),\"none\"===s&&(s=\"block\"),ce[i]=s,s)}function me(e,t){for(var n,i,s=[],a=0,r=e.length;a<r;a++)(i=e[a]).style&&(n=i.style.display,t?(\"none\"===n&&(s[a]=Q.get(i,\"display\")||null,s[a]||(i.style.display=\"\")),\"\"===i.style.display&&le(i)&&(s[a]=he(i))):\"none\"!==n&&(s[a]=\"none\",Q.set(i,\"display\",n)));for(a=0;a<r;a++)null!=s[a]&&(e[a].style.display=s[a]);return e}b.fn.extend({show:function(){return me(this,!0)},hide:function(){return me(this)},toggle:function(e){return\"boolean\"==typeof e?e?this.show():this.hide():this.each((function(){le(this)?b(this).show():b(this).hide()}))}});var _e,pe,fe=/^(?:checkbox|radio)$/i,ye=/<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i,ge=/^$|^module$|\\/(?:java|ecma)script/i;_e=M.createDocumentFragment().appendChild(M.createElement(\"div\")),(pe=M.createElement(\"input\")).setAttribute(\"type\",\"radio\"),pe.setAttribute(\"checked\",\"checked\"),pe.setAttribute(\"name\",\"t\"),_e.appendChild(pe),f.checkClone=_e.cloneNode(!0).cloneNode(!0).lastChild.checked,_e.innerHTML=\"<textarea>x</textarea>\",f.noCloneChecked=!!_e.cloneNode(!0).lastChild.defaultValue,_e.innerHTML=\"<option></option>\",f.option=!!_e.lastChild;var Me={thead:[1,\"<table>\",\"</table>\"],col:[2,\"<table><colgroup>\",\"</colgroup></table>\"],tr:[2,\"<table><tbody>\",\"</tbody></table>\"],td:[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"],_default:[0,\"\",\"\"]};function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&H(e,t)?b.merge([e],n):n}function Le(e,t){for(var n=0,i=e.length;n<i;n++)Q.set(e[n],\"globalEval\",!t||Q.get(t[n],\"globalEval\"))}Me.tbody=Me.tfoot=Me.colgroup=Me.caption=Me.thead,Me.th=Me.td,f.option||(Me.optgroup=Me.option=[1,\"<select multiple='multiple'>\",\"</select>\"]);var Ye=/<|&#?\\w+;/;function ke(e,t,n,i,s){for(var a,r,o,d,l,u,c=t.createDocumentFragment(),h=[],m=0,_=e.length;m<_;m++)if((a=e[m])||0===a)if(\"object\"===Y(a))b.merge(h,a.nodeType?[a]:a);else if(Ye.test(a)){for(r=r||c.appendChild(t.createElement(\"div\")),o=(ye.exec(a)||[\"\",\"\"])[1].toLowerCase(),d=Me[o]||Me._default,r.innerHTML=d[1]+b.htmlPrefilter(a)+d[2],u=d[0];u--;)r=r.lastChild;b.merge(h,r.childNodes),(r=c.firstChild).textContent=\"\"}else h.push(t.createTextNode(a));for(c.textContent=\"\",m=0;a=h[m++];)if(i&&b.inArray(a,i)>-1)s&&s.push(a);else if(l=oe(a),r=ve(c.appendChild(a),\"script\"),l&&Le(r),n)for(u=0;a=r[u++];)ge.test(a.type||\"\")&&n.push(a);return c}var be=/^key/,we=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,De=/^([^.]*)(?:\\.(.+)|)/;function Te(){return!0}function xe(){return!1}function Se(e,t){return e===function(){try{return M.activeElement}catch(e){}}()==(\"focus\"===t)}function He(e,t,n,i,s,a){var r,o;if(\"object\"==typeof t){for(o in\"string\"!=typeof n&&(i=i||n,n=void 0),t)He(e,o,n,i,t[o],a);return e}if(null==i&&null==s?(s=n,i=n=void 0):null==s&&(\"string\"==typeof n?(s=i,i=void 0):(s=i,i=n,n=void 0)),!1===s)s=xe;else if(!s)return e;return 1===a&&(r=s,(s=function(e){return b().off(e),r.apply(this,arguments)}).guid=r.guid||(r.guid=b.guid++)),e.each((function(){b.event.add(this,t,s,i,n)}))}function je(e,t,n){n?(Q.set(e,t,!1),b.event.add(e,t,{namespace:!1,handler:function(e){var i,s,a=Q.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(b.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=o.call(arguments),Q.set(this,t,a),i=n(this,t),this[t](),a!==(s=Q.get(this,t))||i?Q.set(this,t,!1):s={},a!==s)return e.stopImmediatePropagation(),e.preventDefault(),s.value}else a.length&&(Q.set(this,t,{value:b.event.trigger(b.extend(a[0],b.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,t)&&b.event.add(e,t,Te)}b.event={global:{},add:function(e,t,n,i,s){var a,r,o,d,l,u,c,h,m,_,p,f=Q.get(e);if(K(e))for(n.handler&&(n=(a=n).handler,s=a.selector),s&&b.find.matchesSelector(re,s),n.guid||(n.guid=b.guid++),(d=f.events)||(d=f.events=Object.create(null)),(r=f.handle)||(r=f.handle=function(t){return void 0!==b&&b.event.triggered!==t.type?b.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(W)||[\"\"]).length;l--;)m=p=(o=De.exec(t[l])||[])[1],_=(o[2]||\"\").split(\".\").sort(),m&&(c=b.event.special[m]||{},m=(s?c.delegateType:c.bindType)||m,c=b.event.special[m]||{},u=b.extend({type:m,origType:p,data:i,handler:n,guid:n.guid,selector:s,needsContext:s&&b.expr.match.needsContext.test(s),namespace:_.join(\".\")},a),(h=d[m])||((h=d[m]=[]).delegateCount=0,c.setup&&!1!==c.setup.call(e,i,_,r)||e.addEventListener&&e.addEventListener(m,r)),c.add&&(c.add.call(e,u),u.handler.guid||(u.handler.guid=n.guid)),s?h.splice(h.delegateCount++,0,u):h.push(u),b.event.global[m]=!0)},remove:function(e,t,n,i,s){var a,r,o,d,l,u,c,h,m,_,p,f=Q.hasData(e)&&Q.get(e);if(f&&(d=f.events)){for(l=(t=(t||\"\").match(W)||[\"\"]).length;l--;)if(m=p=(o=De.exec(t[l])||[])[1],_=(o[2]||\"\").split(\".\").sort(),m){for(c=b.event.special[m]||{},h=d[m=(i?c.delegateType:c.bindType)||m]||[],o=o[2]&&new RegExp(\"(^|\\\\.)\"+_.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),r=a=h.length;a--;)u=h[a],!s&&p!==u.origType||n&&n.guid!==u.guid||o&&!o.test(u.namespace)||i&&i!==u.selector&&(\"**\"!==i||!u.selector)||(h.splice(a,1),u.selector&&h.delegateCount--,c.remove&&c.remove.call(e,u));r&&!h.length&&(c.teardown&&!1!==c.teardown.call(e,_,f.handle)||b.removeEvent(e,m,f.handle),delete d[m])}else for(m in d)b.event.remove(e,m+t[l],n,i,!0);b.isEmptyObject(d)&&Q.remove(e,\"handle events\")}},dispatch:function(e){var t,n,i,s,a,r,o=new Array(arguments.length),d=b.event.fix(e),l=(Q.get(this,\"events\")||Object.create(null))[d.type]||[],u=b.event.special[d.type]||{};for(o[0]=d,t=1;t<arguments.length;t++)o[t]=arguments[t];if(d.delegateTarget=this,!u.preDispatch||!1!==u.preDispatch.call(this,d)){for(r=b.event.handlers.call(this,d,l),t=0;(s=r[t++])&&!d.isPropagationStopped();)for(d.currentTarget=s.elem,n=0;(a=s.handlers[n++])&&!d.isImmediatePropagationStopped();)d.rnamespace&&!1!==a.namespace&&!d.rnamespace.test(a.namespace)||(d.handleObj=a,d.data=a.data,void 0!==(i=((b.event.special[a.origType]||{}).handle||a.handler).apply(s.elem,o))&&!1===(d.result=i)&&(d.preventDefault(),d.stopPropagation()));return u.postDispatch&&u.postDispatch.call(this,d),d.result}},handlers:function(e,t){var n,i,s,a,r,o=[],d=t.delegateCount,l=e.target;if(d&&l.nodeType&&!(\"click\"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(a=[],r={},n=0;n<d;n++)void 0===r[s=(i=t[n]).selector+\" \"]&&(r[s]=i.needsContext?b(s,this).index(l)>-1:b.find(s,this,null,[l]).length),r[s]&&a.push(i);a.length&&o.push({elem:l,handlers:a})}return l=this,d<t.length&&o.push({elem:l,handlers:t.slice(d)}),o},addProp:function(e,t){Object.defineProperty(b.Event.prototype,e,{enumerable:!0,configurable:!0,get:y(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[b.expando]?e:new b.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return fe.test(t.type)&&t.click&&H(t,\"input\")&&je(t,\"click\",Te),!1},trigger:function(e){var t=this||e;return fe.test(t.type)&&t.click&&H(t,\"input\")&&je(t,\"click\"),!0},_default:function(e){var t=e.target;return fe.test(t.type)&&t.click&&H(t,\"input\")&&Q.get(t,\"click\")||H(t,\"a\")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},b.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},b.Event=function(e,t){if(!(this instanceof b.Event))return new b.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?Te:xe,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&b.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[b.expando]=!0},b.Event.prototype={constructor:b.Event,isDefaultPrevented:xe,isPropagationStopped:xe,isImmediatePropagationStopped:xe,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=Te,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=Te,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=Te,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},b.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&be.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&we.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},b.event.addProp),b.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){b.event.special[e]={setup:function(){return je(this,e,Se),!1},trigger:function(){return je(this,e),!0},delegateType:t}})),b.each({mouseenter:\"mouseover\",mouseleave:\"mouseout\",pointerenter:\"pointerover\",pointerleave:\"pointerout\"},(function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,i=this,s=e.relatedTarget,a=e.handleObj;return s&&(s===i||b.contains(i,s))||(e.type=a.origType,n=a.handler.apply(this,arguments),e.type=t),n}}})),b.fn.extend({on:function(e,t,n,i){return He(this,e,t,n,i)},one:function(e,t,n,i){return He(this,e,t,n,i,1)},off:function(e,t,n){var i,s;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+\".\"+i.namespace:i.origType,i.selector,i.handler),this;if(\"object\"==typeof e){for(s in e)this.off(s,t,e[s]);return this}return!1!==t&&\"function\"!=typeof t||(n=t,t=void 0),!1===n&&(n=xe),this.each((function(){b.event.remove(this,e,n,t)}))}});var Ce=/<script|<style|<link/i,Ee=/checked\\s*(?:[^=]|=\\s*.checked.)/i,Oe=/^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;function Pe(e,t){return H(e,\"table\")&&H(11!==t.nodeType?t:t.firstChild,\"tr\")&&b(e).children(\"tbody\")[0]||e}function Ae(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function Ie(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function We(e,t){var n,i,s,a,r,o;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.get(e).events))for(s in Q.remove(t,\"handle events\"),o)for(n=0,i=o[s].length;n<i;n++)b.event.add(t,s,o[s][n]);X.hasData(e)&&(a=X.access(e),r=b.extend({},a),X.set(t,r))}}function Ne(e,t){var n=t.nodeName.toLowerCase();\"input\"===n&&fe.test(e.type)?t.checked=e.checked:\"input\"!==n&&\"textarea\"!==n||(t.defaultValue=e.defaultValue)}function $e(e,t,n,i){t=d(t);var s,a,r,o,l,u,c=0,h=e.length,m=h-1,_=t[0],p=y(_);if(p||h>1&&\"string\"==typeof _&&!f.checkClone&&Ee.test(_))return e.each((function(s){var a=e.eq(s);p&&(t[0]=_.call(this,s,a.html())),$e(a,t,n,i)}));if(h&&(a=(s=ke(t,e[0].ownerDocument,!1,e,i)).firstChild,1===s.childNodes.length&&(s=a),a||i)){for(o=(r=b.map(ve(s,\"script\"),Ae)).length;c<h;c++)l=s,c!==m&&(l=b.clone(l,!0,!0),o&&b.merge(r,ve(l,\"script\"))),n.call(e[c],l,c);if(o)for(u=r[r.length-1].ownerDocument,b.map(r,Ie),c=0;c<o;c++)l=r[c],ge.test(l.type||\"\")&&!Q.access(l,\"globalEval\")&&b.contains(u,l)&&(l.src&&\"module\"!==(l.type||\"\").toLowerCase()?b._evalUrl&&!l.noModule&&b._evalUrl(l.src,{nonce:l.nonce||l.getAttribute(\"nonce\")},u):L(l.textContent.replace(Oe,\"\"),l,u))}return e}function ze(e,t,n){for(var i,s=t?b.filter(t,e):e,a=0;null!=(i=s[a]);a++)n||1!==i.nodeType||b.cleanData(ve(i)),i.parentNode&&(n&&oe(i)&&Le(ve(i,\"script\")),i.parentNode.removeChild(i));return e}b.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var i,s,a,r,o=e.cloneNode(!0),d=oe(e);if(!(f.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=ve(o),i=0,s=(a=ve(e)).length;i<s;i++)Ne(a[i],r[i]);if(t)if(n)for(a=a||ve(e),r=r||ve(o),i=0,s=a.length;i<s;i++)We(a[i],r[i]);else We(e,o);return(r=ve(o,\"script\")).length>0&&Le(r,!d&&ve(e,\"script\")),o},cleanData:function(e){for(var t,n,i,s=b.event.special,a=0;void 0!==(n=e[a]);a++)if(K(n)){if(t=n[Q.expando]){if(t.events)for(i in t.events)s[i]?b.event.remove(n,i):b.removeEvent(n,i,t.handle);n[Q.expando]=void 0}n[X.expando]&&(n[X.expando]=void 0)}}}),b.fn.extend({detach:function(e){return ze(this,e,!0)},remove:function(e){return ze(this,e)},text:function(e){return B(this,(function(e){return void 0===e?b.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return $e(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Pe(this,e).appendChild(e)}))},prepend:function(){return $e(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Pe(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return $e(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return $e(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(b.cleanData(ve(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return b.clone(this,e,t)}))},html:function(e){return B(this,(function(e){var t=this[0]||{},n=0,i=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ce.test(e)&&!Me[(ye.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=b.htmlPrefilter(e);try{for(;n<i;n++)1===(t=this[n]||{}).nodeType&&(b.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)}),null,e,arguments.length)},replaceWith:function(){var e=[];return $e(this,arguments,(function(t){var n=this.parentNode;b.inArray(this,e)<0&&(b.cleanData(ve(this)),n&&n.replaceChild(t,this))}),e)}}),b.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},(function(e,t){b.fn[e]=function(e){for(var n,i=[],s=b(e),a=s.length-1,r=0;r<=a;r++)n=r===a?this:this.clone(!0),b(s[r])[t](n),l.apply(i,n.get());return this.pushStack(i)}}));var Fe=new RegExp(\"^(\"+ie+\")(?!px)[a-z%]+$\",\"i\"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=i),t.getComputedStyle(e)},Ue=function(e,t,n){var i,s,a={};for(s in t)a[s]=e.style[s],e.style[s]=t[s];for(s in i=n.call(e),t)e.style[s]=a[s];return i},Be=new RegExp(ae.join(\"|\"),\"i\");function Je(e,t,n){var i,s,a,r,o=e.style;return(n=n||Re(e))&&(\"\"!==(r=n.getPropertyValue(t)||n[t])||oe(e)||(r=b.style(e,t)),!f.pixelBoxStyles()&&Fe.test(r)&&Be.test(t)&&(i=o.width,s=o.minWidth,a=o.maxWidth,o.minWidth=o.maxWidth=o.width=r,r=n.width,o.width=i,o.minWidth=s,o.maxWidth=a)),void 0!==r?r+\"\":r}function qe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){l.style.cssText=\"position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0\",u.style.cssText=\"position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%\",re.appendChild(l).appendChild(u);var e=i.getComputedStyle(u);n=\"1%\"!==e.top,d=12===t(e.marginLeft),u.style.right=\"60%\",r=36===t(e.right),s=36===t(e.width),u.style.position=\"absolute\",a=12===t(u.offsetWidth/3),re.removeChild(l),u=null}}function t(e){return Math.round(parseFloat(e))}var n,s,a,r,o,d,l=M.createElement(\"div\"),u=M.createElement(\"div\");u.style&&(u.style.backgroundClip=\"content-box\",u.cloneNode(!0).style.backgroundClip=\"\",f.clearCloneStyle=\"content-box\"===u.style.backgroundClip,b.extend(f,{boxSizingReliable:function(){return e(),s},pixelBoxStyles:function(){return e(),r},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),d},scrollboxSize:function(){return e(),a},reliableTrDimensions:function(){var e,t,n,s;return null==o&&(e=M.createElement(\"table\"),t=M.createElement(\"tr\"),n=M.createElement(\"div\"),e.style.cssText=\"position:absolute;left:-11111px\",t.style.height=\"1px\",n.style.height=\"9px\",re.appendChild(e).appendChild(t).appendChild(n),s=i.getComputedStyle(t),o=parseInt(s.height)>3,re.removeChild(e)),o}}))}();var Ve=[\"Webkit\",\"Moz\",\"ms\"],Ge=M.createElement(\"div\").style,Ke={};function Ze(e){var t=b.cssProps[e]||Ke[e];return t||(e in Ge?e:Ke[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=Ve.length;n--;)if((e=Ve[n]+t)in Ge)return e}(e)||e)}var Qe=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,et={position:\"absolute\",visibility:\"hidden\",display:\"block\"},tt={letterSpacing:\"0\",fontWeight:\"400\"};function nt(e,t,n){var i=se.exec(t);return i?Math.max(0,i[2]-(n||0))+(i[3]||\"px\"):t}function it(e,t,n,i,s,a){var r=\"width\"===t?1:0,o=0,d=0;if(n===(i?\"border\":\"content\"))return 0;for(;r<4;r+=2)\"margin\"===n&&(d+=b.css(e,n+ae[r],!0,s)),i?(\"content\"===n&&(d-=b.css(e,\"padding\"+ae[r],!0,s)),\"margin\"!==n&&(d-=b.css(e,\"border\"+ae[r]+\"Width\",!0,s))):(d+=b.css(e,\"padding\"+ae[r],!0,s),\"padding\"!==n?d+=b.css(e,\"border\"+ae[r]+\"Width\",!0,s):o+=b.css(e,\"border\"+ae[r]+\"Width\",!0,s));return!i&&a>=0&&(d+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-a-d-o-.5))||0),d}function st(e,t,n){var i=Re(e),s=(!f.boxSizingReliable()||n)&&\"border-box\"===b.css(e,\"boxSizing\",!1,i),a=s,r=Je(e,t,i),o=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Fe.test(r)){if(!n)return r;r=\"auto\"}return(!f.boxSizingReliable()&&s||!f.reliableTrDimensions()&&H(e,\"tr\")||\"auto\"===r||!parseFloat(r)&&\"inline\"===b.css(e,\"display\",!1,i))&&e.getClientRects().length&&(s=\"border-box\"===b.css(e,\"boxSizing\",!1,i),(a=o in e)&&(r=e[o])),(r=parseFloat(r)||0)+it(e,t,n||(s?\"border\":\"content\"),a,i,r)+\"px\"}function at(e,t,n,i,s){return new at.prototype.init(e,t,n,i,s)}b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Je(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var s,a,r,o=G(t),d=Xe.test(t),l=e.style;if(d||(t=Ze(o)),r=b.cssHooks[t]||b.cssHooks[o],void 0===n)return r&&\"get\"in r&&void 0!==(s=r.get(e,!1,i))?s:l[t];\"string\"===(a=typeof n)&&(s=se.exec(n))&&s[1]&&(n=ue(e,t,s),a=\"number\"),null!=n&&n==n&&(\"number\"!==a||d||(n+=s&&s[3]||(b.cssNumber[o]?\"\":\"px\")),f.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),r&&\"set\"in r&&void 0===(n=r.set(e,n,i))||(d?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,i){var s,a,r,o=G(t);return Xe.test(t)||(t=Ze(o)),(r=b.cssHooks[t]||b.cssHooks[o])&&\"get\"in r&&(s=r.get(e,!0,n)),void 0===s&&(s=Je(e,t,i)),\"normal\"===s&&t in tt&&(s=tt[t]),\"\"===n||n?(a=parseFloat(s),!0===n||isFinite(a)?a||0:s):s}}),b.each([\"height\",\"width\"],(function(e,t){b.cssHooks[t]={get:function(e,n,i){if(n)return!Qe.test(b.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?st(e,t,i):Ue(e,et,(function(){return st(e,t,i)}))},set:function(e,n,i){var s,a=Re(e),r=!f.scrollboxSize()&&\"absolute\"===a.position,o=(r||i)&&\"border-box\"===b.css(e,\"boxSizing\",!1,a),d=i?it(e,t,i,o,a):0;return o&&r&&(d-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(a[t])-it(e,t,\"border\",!1,a)-.5)),d&&(s=se.exec(n))&&\"px\"!==(s[3]||\"px\")&&(e.style[t]=n,n=b.css(e,t)),nt(0,n,d)}}})),b.cssHooks.marginLeft=qe(f.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Je(e,\"marginLeft\"))||e.getBoundingClientRect().left-Ue(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),b.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){b.cssHooks[e+t]={expand:function(n){for(var i=0,s={},a=\"string\"==typeof n?n.split(\" \"):[n];i<4;i++)s[e+ae[i]+t]=a[i]||a[i-2]||a[0];return s}},\"margin\"!==e&&(b.cssHooks[e+t].set=nt)})),b.fn.extend({css:function(e,t){return B(this,(function(e,t,n){var i,s,a={},r=0;if(Array.isArray(t)){for(i=Re(e),s=t.length;r<s;r++)a[t[r]]=b.css(e,t[r],!1,i);return a}return void 0!==n?b.style(e,t,n):b.css(e,t)}),e,t,arguments.length>1)}}),b.Tween=at,at.prototype={constructor:at,init:function(e,t,n,i,s,a){this.elem=e,this.prop=n,this.easing=s||b.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=i,this.unit=a||(b.cssNumber[n]?\"\":\"px\")},cur:function(){var e=at.propHooks[this.prop];return e&&e.get?e.get(this):at.propHooks._default.get(this)},run:function(e){var t,n=at.propHooks[this.prop];return this.options.duration?this.pos=t=b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):at.propHooks._default.set(this),this}},at.prototype.init.prototype=at.prototype,at.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=b.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):1!==e.elem.nodeType||!b.cssHooks[e.prop]&&null==e.elem.style[Ze(e.prop)]?e.elem[e.prop]=e.now:b.style(e.elem,e.prop,e.now+e.unit)}}},at.propHooks.scrollTop=at.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},b.fx=at.prototype.init,b.fx.step={};var rt,ot,dt=/^(?:toggle|show|hide)$/,lt=/queueHooks$/;function ut(){ot&&(!1===M.hidden&&i.requestAnimationFrame?i.requestAnimationFrame(ut):i.setTimeout(ut,b.fx.interval),b.fx.tick())}function ct(){return i.setTimeout((function(){rt=void 0})),rt=Date.now()}function ht(e,t){var n,i=0,s={height:e};for(t=t?1:0;i<4;i+=2-t)s[\"margin\"+(n=ae[i])]=s[\"padding\"+n]=e;return t&&(s.opacity=s.width=e),s}function mt(e,t,n){for(var i,s=(_t.tweeners[t]||[]).concat(_t.tweeners[\"*\"]),a=0,r=s.length;a<r;a++)if(i=s[a].call(n,t,e))return i}function _t(e,t,n){var i,s,a=0,r=_t.prefilters.length,o=b.Deferred().always((function(){delete d.elem})),d=function(){if(s)return!1;for(var t=rt||ct(),n=Math.max(0,l.startTime+l.duration-t),i=1-(n/l.duration||0),a=0,r=l.tweens.length;a<r;a++)l.tweens[a].run(i);return o.notifyWith(e,[l,i,n]),i<1&&r?n:(r||o.notifyWith(e,[l,1,0]),o.resolveWith(e,[l]),!1)},l=o.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{},easing:b.easing._default},n),originalProperties:t,originalOptions:n,startTime:rt||ct(),duration:n.duration,tweens:[],createTween:function(t,n){var i=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(i),i},stop:function(t){var n=0,i=t?l.tweens.length:0;if(s)return this;for(s=!0;n<i;n++)l.tweens[n].run(1);return t?(o.notifyWith(e,[l,1,0]),o.resolveWith(e,[l,t])):o.rejectWith(e,[l,t]),this}}),u=l.props;for(!function(e,t){var n,i,s,a,r;for(n in e)if(s=t[i=G(n)],a=e[n],Array.isArray(a)&&(s=a[1],a=e[n]=a[0]),n!==i&&(e[i]=a,delete e[n]),(r=b.cssHooks[i])&&\"expand\"in r)for(n in a=r.expand(a),delete e[i],a)n in e||(e[n]=a[n],t[n]=s);else t[i]=s}(u,l.opts.specialEasing);a<r;a++)if(i=_t.prefilters[a].call(l,e,u,l.opts))return y(i.stop)&&(b._queueHooks(l.elem,l.opts.queue).stop=i.stop.bind(i)),i;return b.map(u,mt,l),y(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),b.fx.timer(b.extend(d,{elem:e,anim:l,queue:l.opts.queue})),l}b.Animation=b.extend(_t,{tweeners:{\"*\":[function(e,t){var n=this.createTween(e,t);return ue(n.elem,e,se.exec(t),n),n}]},tweener:function(e,t){y(e)?(t=e,e=[\"*\"]):e=e.match(W);for(var n,i=0,s=e.length;i<s;i++)n=e[i],_t.tweeners[n]=_t.tweeners[n]||[],_t.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var i,s,a,r,o,d,l,u,c=\"width\"in t||\"height\"in t,h=this,m={},_=e.style,p=e.nodeType&&le(e),f=Q.get(e,\"fxshow\");for(i in n.queue||(null==(r=b._queueHooks(e,\"fx\")).unqueued&&(r.unqueued=0,o=r.empty.fire,r.empty.fire=function(){r.unqueued||o()}),r.unqueued++,h.always((function(){h.always((function(){r.unqueued--,b.queue(e,\"fx\").length||r.empty.fire()}))}))),t)if(s=t[i],dt.test(s)){if(delete t[i],a=a||\"toggle\"===s,s===(p?\"hide\":\"show\")){if(\"show\"!==s||!f||void 0===f[i])continue;p=!0}m[i]=f&&f[i]||b.style(e,i)}if((d=!b.isEmptyObject(t))||!b.isEmptyObject(m))for(i in c&&1===e.nodeType&&(n.overflow=[_.overflow,_.overflowX,_.overflowY],null==(l=f&&f.display)&&(l=Q.get(e,\"display\")),\"none\"===(u=b.css(e,\"display\"))&&(l?u=l:(me([e],!0),l=e.style.display||l,u=b.css(e,\"display\"),me([e]))),(\"inline\"===u||\"inline-block\"===u&&null!=l)&&\"none\"===b.css(e,\"float\")&&(d||(h.done((function(){_.display=l})),null==l&&(u=_.display,l=\"none\"===u?\"\":u)),_.display=\"inline-block\")),n.overflow&&(_.overflow=\"hidden\",h.always((function(){_.overflow=n.overflow[0],_.overflowX=n.overflow[1],_.overflowY=n.overflow[2]}))),d=!1,m)d||(f?\"hidden\"in f&&(p=f.hidden):f=Q.access(e,\"fxshow\",{display:l}),a&&(f.hidden=!p),p&&me([e],!0),h.done((function(){for(i in p||me([e]),Q.remove(e,\"fxshow\"),m)b.style(e,i,m[i])}))),d=mt(p?f[i]:0,i,h),i in f||(f[i]=d.start,p&&(d.end=d.start,d.start=0))}],prefilter:function(e,t){t?_t.prefilters.unshift(e):_t.prefilters.push(e)}}),b.speed=function(e,t,n){var i=e&&\"object\"==typeof e?b.extend({},e):{complete:n||!n&&t||y(e)&&e,duration:e,easing:n&&t||t&&!y(t)&&t};return b.fx.off?i.duration=0:\"number\"!=typeof i.duration&&(i.duration in b.fx.speeds?i.duration=b.fx.speeds[i.duration]:i.duration=b.fx.speeds._default),null!=i.queue&&!0!==i.queue||(i.queue=\"fx\"),i.old=i.complete,i.complete=function(){y(i.old)&&i.old.call(this),i.queue&&b.dequeue(this,i.queue)},i},b.fn.extend({fadeTo:function(e,t,n,i){return this.filter(le).css(\"opacity\",0).show().end().animate({opacity:t},e,n,i)},animate:function(e,t,n,i){var s=b.isEmptyObject(e),a=b.speed(t,n,i),r=function(){var t=_t(this,b.extend({},e),a);(s||Q.get(this,\"finish\"))&&t.stop(!0)};return r.finish=r,s||!1===a.queue?this.each(r):this.queue(a.queue,r)},stop:function(e,t,n){var i=function(e){var t=e.stop;delete e.stop,t(n)};return\"string\"!=typeof e&&(n=t,t=e,e=void 0),t&&this.queue(e||\"fx\",[]),this.each((function(){var t=!0,s=null!=e&&e+\"queueHooks\",a=b.timers,r=Q.get(this);if(s)r[s]&&r[s].stop&&i(r[s]);else for(s in r)r[s]&&r[s].stop&&lt.test(s)&&i(r[s]);for(s=a.length;s--;)a[s].elem!==this||null!=e&&a[s].queue!==e||(a[s].anim.stop(n),t=!1,a.splice(s,1));!t&&n||b.dequeue(this,e)}))},finish:function(e){return!1!==e&&(e=e||\"fx\"),this.each((function(){var t,n=Q.get(this),i=n[e+\"queue\"],s=n[e+\"queueHooks\"],a=b.timers,r=i?i.length:0;for(n.finish=!0,b.queue(this,e,[]),s&&s.stop&&s.stop.call(this,!0),t=a.length;t--;)a[t].elem===this&&a[t].queue===e&&(a[t].anim.stop(!0),a.splice(t,1));for(t=0;t<r;t++)i[t]&&i[t].finish&&i[t].finish.call(this);delete n.finish}))}}),b.each([\"toggle\",\"show\",\"hide\"],(function(e,t){var n=b.fn[t];b.fn[t]=function(e,i,s){return null==e||\"boolean\"==typeof e?n.apply(this,arguments):this.animate(ht(t,!0),e,i,s)}})),b.each({slideDown:ht(\"show\"),slideUp:ht(\"hide\"),slideToggle:ht(\"toggle\"),fadeIn:{opacity:\"show\"},fadeOut:{opacity:\"hide\"},fadeToggle:{opacity:\"toggle\"}},(function(e,t){b.fn[e]=function(e,n,i){return this.animate(t,e,n,i)}})),b.timers=[],b.fx.tick=function(){var e,t=0,n=b.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||b.fx.stop(),rt=void 0},b.fx.timer=function(e){b.timers.push(e),b.fx.start()},b.fx.interval=13,b.fx.start=function(){ot||(ot=!0,ut())},b.fx.stop=function(){ot=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fn.delay=function(e,t){return e=b.fx&&b.fx.speeds[e]||e,t=t||\"fx\",this.queue(t,(function(t,n){var s=i.setTimeout(t,e);n.stop=function(){i.clearTimeout(s)}}))},function(){var e=M.createElement(\"input\"),t=M.createElement(\"select\").appendChild(M.createElement(\"option\"));e.type=\"checkbox\",f.checkOn=\"\"!==e.value,f.optSelected=t.selected,(e=M.createElement(\"input\")).value=\"t\",e.type=\"radio\",f.radioValue=\"t\"===e.value}();var pt,ft=b.expr.attrHandle;b.fn.extend({attr:function(e,t){return B(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each((function(){b.removeAttr(this,e)}))}}),b.extend({attr:function(e,t,n){var i,s,a=e.nodeType;if(3!==a&&8!==a&&2!==a)return void 0===e.getAttribute?b.prop(e,t,n):(1===a&&b.isXMLDoc(e)||(s=b.attrHooks[t.toLowerCase()]||(b.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void b.removeAttr(e,t):s&&\"set\"in s&&void 0!==(i=s.set(e,n,t))?i:(e.setAttribute(t,n+\"\"),n):s&&\"get\"in s&&null!==(i=s.get(e,t))?i:null==(i=b.find.attr(e,t))?void 0:i)},attrHooks:{type:{set:function(e,t){if(!f.radioValue&&\"radio\"===t&&H(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,i=0,s=t&&t.match(W);if(s&&1===e.nodeType)for(;n=s[i++];)e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?b.removeAttr(e,n):e.setAttribute(n,n),n}},b.each(b.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=ft[t]||b.find.attr;ft[t]=function(e,t,i){var s,a,r=t.toLowerCase();return i||(a=ft[r],ft[r]=s,s=null!=n(e,t,i)?r:null,ft[r]=a),s}}));var yt=/^(?:input|select|textarea|button)$/i,gt=/^(?:a|area)$/i;function Mt(e){return(e.match(W)||[]).join(\" \")}function vt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function Lt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(W)||[]}b.fn.extend({prop:function(e,t){return B(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[b.propFix[e]||e]}))}}),b.extend({prop:function(e,t,n){var i,s,a=e.nodeType;if(3!==a&&8!==a&&2!==a)return 1===a&&b.isXMLDoc(e)||(t=b.propFix[t]||t,s=b.propHooks[t]),void 0!==n?s&&\"set\"in s&&void 0!==(i=s.set(e,n,t))?i:e[t]=n:s&&\"get\"in s&&null!==(i=s.get(e,t))?i:e[t]},propHooks:{tabIndex:{get:function(e){var t=b.find.attr(e,\"tabindex\");return t?parseInt(t,10):yt.test(e.nodeName)||gt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),f.optSelected||(b.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),b.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){b.propFix[this.toLowerCase()]=this})),b.fn.extend({addClass:function(e){var t,n,i,s,a,r,o,d=0;if(y(e))return this.each((function(t){b(this).addClass(e.call(this,t,vt(this)))}));if((t=Lt(e)).length)for(;n=this[d++];)if(s=vt(n),i=1===n.nodeType&&\" \"+Mt(s)+\" \"){for(r=0;a=t[r++];)i.indexOf(\" \"+a+\" \")<0&&(i+=a+\" \");s!==(o=Mt(i))&&n.setAttribute(\"class\",o)}return this},removeClass:function(e){var t,n,i,s,a,r,o,d=0;if(y(e))return this.each((function(t){b(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=Lt(e)).length)for(;n=this[d++];)if(s=vt(n),i=1===n.nodeType&&\" \"+Mt(s)+\" \"){for(r=0;a=t[r++];)for(;i.indexOf(\" \"+a+\" \")>-1;)i=i.replace(\" \"+a+\" \",\" \");s!==(o=Mt(i))&&n.setAttribute(\"class\",o)}return this},toggleClass:function(e,t){var n=typeof e,i=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&i?t?this.addClass(e):this.removeClass(e):y(e)?this.each((function(n){b(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,s,a,r;if(i)for(s=0,a=b(this),r=Lt(e);t=r[s++];)a.hasClass(t)?a.removeClass(t):a.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=vt(this))&&Q.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":Q.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,i=0;for(t=\" \"+e+\" \";n=this[i++];)if(1===n.nodeType&&(\" \"+Mt(vt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var Yt=/\\r/g;b.fn.extend({val:function(e){var t,n,i,s=this[0];return arguments.length?(i=y(e),this.each((function(n){var s;1===this.nodeType&&(null==(s=i?e.call(this,n,b(this).val()):e)?s=\"\":\"number\"==typeof s?s+=\"\":Array.isArray(s)&&(s=b.map(s,(function(e){return null==e?\"\":e+\"\"}))),(t=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,s,\"value\")||(this.value=s))}))):s?(t=b.valHooks[s.type]||b.valHooks[s.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(s,\"value\"))?n:\"string\"==typeof(n=s.value)?n.replace(Yt,\"\"):null==n?\"\":n:void 0}}),b.extend({valHooks:{option:{get:function(e){var t=b.find.attr(e,\"value\");return null!=t?t:Mt(b.text(e))}},select:{get:function(e){var t,n,i,s=e.options,a=e.selectedIndex,r=\"select-one\"===e.type,o=r?null:[],d=r?a+1:s.length;for(i=a<0?d:r?a:0;i<d;i++)if(((n=s[i]).selected||i===a)&&!n.disabled&&(!n.parentNode.disabled||!H(n.parentNode,\"optgroup\"))){if(t=b(n).val(),r)return t;o.push(t)}return o},set:function(e,t){for(var n,i,s=e.options,a=b.makeArray(t),r=s.length;r--;)((i=s[r]).selected=b.inArray(b.valHooks.option.get(i),a)>-1)&&(n=!0);return n||(e.selectedIndex=-1),a}}}}),b.each([\"radio\",\"checkbox\"],(function(){b.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=b.inArray(b(e).val(),t)>-1}},f.checkOn||(b.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),f.focusin=\"onfocusin\"in i;var kt=/^(?:focusinfocus|focusoutblur)$/,bt=function(e){e.stopPropagation()};b.extend(b.event,{trigger:function(e,t,n,s){var a,r,o,d,l,u,c,h,_=[n||M],p=m.call(e,\"type\")?e.type:e,f=m.call(e,\"namespace\")?e.namespace.split(\".\"):[];if(r=h=o=n=n||M,3!==n.nodeType&&8!==n.nodeType&&!kt.test(p+b.event.triggered)&&(p.indexOf(\".\")>-1&&(f=p.split(\".\"),p=f.shift(),f.sort()),l=p.indexOf(\":\")<0&&\"on\"+p,(e=e[b.expando]?e:new b.Event(p,\"object\"==typeof e&&e)).isTrigger=s?2:3,e.namespace=f.join(\".\"),e.rnamespace=e.namespace?new RegExp(\"(^|\\\\.)\"+f.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:b.makeArray(t,[e]),c=b.event.special[p]||{},s||!c.trigger||!1!==c.trigger.apply(n,t))){if(!s&&!c.noBubble&&!g(n)){for(d=c.delegateType||p,kt.test(d+p)||(r=r.parentNode);r;r=r.parentNode)_.push(r),o=r;o===(n.ownerDocument||M)&&_.push(o.defaultView||o.parentWindow||i)}for(a=0;(r=_[a++])&&!e.isPropagationStopped();)h=r,e.type=a>1?d:c.bindType||p,(u=(Q.get(r,\"events\")||Object.create(null))[e.type]&&Q.get(r,\"handle\"))&&u.apply(r,t),(u=l&&r[l])&&u.apply&&K(r)&&(e.result=u.apply(r,t),!1===e.result&&e.preventDefault());return e.type=p,s||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(_.pop(),t)||!K(n)||l&&y(n[p])&&!g(n)&&((o=n[l])&&(n[l]=null),b.event.triggered=p,e.isPropagationStopped()&&h.addEventListener(p,bt),n[p](),e.isPropagationStopped()&&h.removeEventListener(p,bt),b.event.triggered=void 0,o&&(n[l]=o)),e.result}},simulate:function(e,t,n){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0});b.event.trigger(i,null,t)}}),b.fn.extend({trigger:function(e,t){return this.each((function(){b.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return b.event.trigger(e,t,n,!0)}}),f.focusin||b.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){b.event.simulate(t,e.target,b.event.fix(e))};b.event.special[t]={setup:function(){var i=this.ownerDocument||this.document||this,s=Q.access(i,t);s||i.addEventListener(e,n,!0),Q.access(i,t,(s||0)+1)},teardown:function(){var i=this.ownerDocument||this.document||this,s=Q.access(i,t)-1;s?Q.access(i,t,s):(i.removeEventListener(e,n,!0),Q.remove(i,t))}}}));var wt=i.location,Dt={guid:Date.now()},Tt=/\\?/;b.parseXML=function(e){var t;if(!e||\"string\"!=typeof e)return null;try{t=(new i.DOMParser).parseFromString(e,\"text/xml\")}catch(e){t=void 0}return t&&!t.getElementsByTagName(\"parsererror\").length||b.error(\"Invalid XML: \"+e),t};var xt=/\\[\\]$/,St=/\\r?\\n/g,Ht=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function Ct(e,t,n,i){var s;if(Array.isArray(t))b.each(t,(function(t,s){n||xt.test(e)?i(e,s):Ct(e+\"[\"+(\"object\"==typeof s&&null!=s?t:\"\")+\"]\",s,n,i)}));else if(n||\"object\"!==Y(t))i(e,t);else for(s in t)Ct(e+\"[\"+s+\"]\",t[s],n,i)}b.param=function(e,t){var n,i=[],s=function(e,t){var n=y(t)?t():t;i[i.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,(function(){s(this.name,this.value)}));else for(n in e)Ct(n,e[n],t,s);return i.join(\"&\")},b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=b.prop(this,\"elements\");return e?b.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!b(this).is(\":disabled\")&&jt.test(this.nodeName)&&!Ht.test(e)&&(this.checked||!fe.test(e))})).map((function(e,t){var n=b(this).val();return null==n?null:Array.isArray(n)?b.map(n,(function(e){return{name:t.name,value:e.replace(St,\"\\r\\n\")}})):{name:t.name,value:n.replace(St,\"\\r\\n\")}})).get()}});var Et=/%20/g,Ot=/#.*$/,Pt=/([?&])_=[^&]*/,At=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,It=/^(?:GET|HEAD)$/,Wt=/^\\/\\//,Nt={},$t={},zt=\"*/\".concat(\"*\"),Ft=M.createElement(\"a\");function Rt(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var i,s=0,a=t.toLowerCase().match(W)||[];if(y(n))for(;i=a[s++];)\"+\"===i[0]?(i=i.slice(1)||\"*\",(e[i]=e[i]||[]).unshift(n)):(e[i]=e[i]||[]).push(n)}}function Ut(e,t,n,i){var s={},a=e===$t;function r(o){var d;return s[o]=!0,b.each(e[o]||[],(function(e,o){var l=o(t,n,i);return\"string\"!=typeof l||a||s[l]?a?!(d=l):void 0:(t.dataTypes.unshift(l),r(l),!1)})),d}return r(t.dataTypes[0])||!s[\"*\"]&&r(\"*\")}function Bt(e,t){var n,i,s=b.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((s[n]?e:i||(i={}))[n]=t[n]);return i&&b.extend(!0,e,i),e}Ft.href=wt.href,b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:wt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(wt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":zt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,b.ajaxSettings),t):Bt(b.ajaxSettings,e)},ajaxPrefilter:Rt(Nt),ajaxTransport:Rt($t),ajax:function(e,t){\"object\"==typeof e&&(t=e,e=void 0),t=t||{};var n,s,a,r,o,d,l,u,c,h,m=b.ajaxSetup({},t),_=m.context||m,p=m.context&&(_.nodeType||_.jquery)?b(_):b.event,f=b.Deferred(),y=b.Callbacks(\"once memory\"),g=m.statusCode||{},v={},L={},Y=\"canceled\",k={readyState:0,getResponseHeader:function(e){var t;if(l){if(!r)for(r={};t=At.exec(a);)r[t[1].toLowerCase()+\" \"]=(r[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=r[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?a:null},setRequestHeader:function(e,t){return null==l&&(e=L[e.toLowerCase()]=L[e.toLowerCase()]||e,v[e]=t),this},overrideMimeType:function(e){return null==l&&(m.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)k.always(e[k.status]);else for(t in e)g[t]=[g[t],e[t]];return this},abort:function(e){var t=e||Y;return n&&n.abort(t),w(0,t),this}};if(f.promise(k),m.url=((e||m.url||wt.href)+\"\").replace(Wt,wt.protocol+\"//\"),m.type=t.method||t.type||m.method||m.type,m.dataTypes=(m.dataType||\"*\").toLowerCase().match(W)||[\"\"],null==m.crossDomain){d=M.createElement(\"a\");try{d.href=m.url,d.href=d.href,m.crossDomain=Ft.protocol+\"//\"+Ft.host!=d.protocol+\"//\"+d.host}catch(e){m.crossDomain=!0}}if(m.data&&m.processData&&\"string\"!=typeof m.data&&(m.data=b.param(m.data,m.traditional)),Ut(Nt,m,t,k),l)return k;for(c in(u=b.event&&m.global)&&0==b.active++&&b.event.trigger(\"ajaxStart\"),m.type=m.type.toUpperCase(),m.hasContent=!It.test(m.type),s=m.url.replace(Ot,\"\"),m.hasContent?m.data&&m.processData&&0===(m.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(m.data=m.data.replace(Et,\"+\")):(h=m.url.slice(s.length),m.data&&(m.processData||\"string\"==typeof m.data)&&(s+=(Tt.test(s)?\"&\":\"?\")+m.data,delete m.data),!1===m.cache&&(s=s.replace(Pt,\"$1\"),h=(Tt.test(s)?\"&\":\"?\")+\"_=\"+Dt.guid+++h),m.url=s+h),m.ifModified&&(b.lastModified[s]&&k.setRequestHeader(\"If-Modified-Since\",b.lastModified[s]),b.etag[s]&&k.setRequestHeader(\"If-None-Match\",b.etag[s])),(m.data&&m.hasContent&&!1!==m.contentType||t.contentType)&&k.setRequestHeader(\"Content-Type\",m.contentType),k.setRequestHeader(\"Accept\",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+(\"*\"!==m.dataTypes[0]?\", \"+zt+\"; q=0.01\":\"\"):m.accepts[\"*\"]),m.headers)k.setRequestHeader(c,m.headers[c]);if(m.beforeSend&&(!1===m.beforeSend.call(_,k,m)||l))return k.abort();if(Y=\"abort\",y.add(m.complete),k.done(m.success),k.fail(m.error),n=Ut($t,m,t,k)){if(k.readyState=1,u&&p.trigger(\"ajaxSend\",[k,m]),l)return k;m.async&&m.timeout>0&&(o=i.setTimeout((function(){k.abort(\"timeout\")}),m.timeout));try{l=!1,n.send(v,w)}catch(e){if(l)throw e;w(-1,e)}}else w(-1,\"No Transport\");function w(e,t,r,d){var c,h,M,v,L,Y=t;l||(l=!0,o&&i.clearTimeout(o),n=void 0,a=d||\"\",k.readyState=e>0?4:0,c=e>=200&&e<300||304===e,r&&(v=function(e,t,n){for(var i,s,a,r,o=e.contents,d=e.dataTypes;\"*\"===d[0];)d.shift(),void 0===i&&(i=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(i)for(s in o)if(o[s]&&o[s].test(i)){d.unshift(s);break}if(d[0]in n)a=d[0];else{for(s in n){if(!d[0]||e.converters[s+\" \"+d[0]]){a=s;break}r||(r=s)}a=a||r}if(a)return a!==d[0]&&d.unshift(a),n[a]}(m,k,r)),!c&&b.inArray(\"script\",m.dataTypes)>-1&&(m.converters[\"text script\"]=function(){}),v=function(e,t,n,i){var s,a,r,o,d,l={},u=e.dataTypes.slice();if(u[1])for(r in e.converters)l[r.toLowerCase()]=e.converters[r];for(a=u.shift();a;)if(e.responseFields[a]&&(n[e.responseFields[a]]=t),!d&&i&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),d=a,a=u.shift())if(\"*\"===a)a=d;else if(\"*\"!==d&&d!==a){if(!(r=l[d+\" \"+a]||l[\"* \"+a]))for(s in l)if((o=s.split(\" \"))[1]===a&&(r=l[d+\" \"+o[0]]||l[\"* \"+o[0]])){!0===r?r=l[s]:!0!==l[s]&&(a=o[0],u.unshift(o[1]));break}if(!0!==r)if(r&&e.throws)t=r(t);else try{t=r(t)}catch(e){return{state:\"parsererror\",error:r?e:\"No conversion from \"+d+\" to \"+a}}}return{state:\"success\",data:t}}(m,v,k,c),c?(m.ifModified&&((L=k.getResponseHeader(\"Last-Modified\"))&&(b.lastModified[s]=L),(L=k.getResponseHeader(\"etag\"))&&(b.etag[s]=L)),204===e||\"HEAD\"===m.type?Y=\"nocontent\":304===e?Y=\"notmodified\":(Y=v.state,h=v.data,c=!(M=v.error))):(M=Y,!e&&Y||(Y=\"error\",e<0&&(e=0))),k.status=e,k.statusText=(t||Y)+\"\",c?f.resolveWith(_,[h,Y,k]):f.rejectWith(_,[k,Y,M]),k.statusCode(g),g=void 0,u&&p.trigger(c?\"ajaxSuccess\":\"ajaxError\",[k,m,c?h:M]),y.fireWith(_,[k,Y]),u&&(p.trigger(\"ajaxComplete\",[k,m]),--b.active||b.event.trigger(\"ajaxStop\")))}return k},getJSON:function(e,t,n){return b.get(e,t,n,\"json\")},getScript:function(e,t){return b.get(e,void 0,t,\"script\")}}),b.each([\"get\",\"post\"],(function(e,t){b[t]=function(e,n,i,s){return y(n)&&(s=s||i,i=n,n=void 0),b.ajax(b.extend({url:e,type:t,dataType:s,data:n,success:i},b.isPlainObject(e)&&e))}})),b.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),b._evalUrl=function(e,t,n){return b.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){b.globalEval(e,t,n)}})},b.fn.extend({wrapAll:function(e){var t;return this[0]&&(y(e)&&(e=e.call(this[0])),t=b(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return y(e)?this.each((function(t){b(this).wrapInner(e.call(this,t))})):this.each((function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=y(e);return this.each((function(n){b(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){b(this).replaceWith(this.childNodes)})),this}}),b.expr.pseudos.hidden=function(e){return!b.expr.pseudos.visible(e)},b.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},b.ajaxSettings.xhr=function(){try{return new i.XMLHttpRequest}catch(e){}};var Jt={0:200,1223:204},qt=b.ajaxSettings.xhr();f.cors=!!qt&&\"withCredentials\"in qt,f.ajax=qt=!!qt,b.ajaxTransport((function(e){var t,n;if(f.cors||qt&&!e.crossDomain)return{send:function(s,a){var r,o=e.xhr();if(o.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(r in e.xhrFields)o[r]=e.xhrFields[r];for(r in e.mimeType&&o.overrideMimeType&&o.overrideMimeType(e.mimeType),e.crossDomain||s[\"X-Requested-With\"]||(s[\"X-Requested-With\"]=\"XMLHttpRequest\"),s)o.setRequestHeader(r,s[r]);t=function(e){return function(){t&&(t=n=o.onload=o.onerror=o.onabort=o.ontimeout=o.onreadystatechange=null,\"abort\"===e?o.abort():\"error\"===e?\"number\"!=typeof o.status?a(0,\"error\"):a(o.status,o.statusText):a(Jt[o.status]||o.status,o.statusText,\"text\"!==(o.responseType||\"text\")||\"string\"!=typeof o.responseText?{binary:o.response}:{text:o.responseText},o.getAllResponseHeaders()))}},o.onload=t(),n=o.onerror=o.ontimeout=t(\"error\"),void 0!==o.onabort?o.onabort=n:o.onreadystatechange=function(){4===o.readyState&&i.setTimeout((function(){t&&n()}))},t=t(\"abort\");try{o.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),b.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),b.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),b.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(i,s){t=b(\"<script>\").attr(e.scriptAttrs||{}).prop({charset:e.scriptCharset,src:e.url}).on(\"load error\",n=function(e){t.remove(),n=null,e&&s(\"error\"===e.type?404:200,e.type)}),M.head.appendChild(t[0])},abort:function(){n&&n()}}}));var Vt,Gt=[],Kt=/(=)\\?(?=&|$)|\\?\\?/;b.ajaxSetup({jsonp:\"callback\",jsonpCallback:function(){var e=Gt.pop()||b.expando+\"_\"+Dt.guid++;return this[e]=!0,e}}),b.ajaxPrefilter(\"json jsonp\",(function(e,t,n){var s,a,r,o=!1!==e.jsonp&&(Kt.test(e.url)?\"url\":\"string\"==typeof e.data&&0===(e.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&Kt.test(e.data)&&\"data\");if(o||\"jsonp\"===e.dataTypes[0])return s=e.jsonpCallback=y(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,o?e[o]=e[o].replace(Kt,\"$1\"+s):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?\"&\":\"?\")+e.jsonp+\"=\"+s),e.converters[\"script json\"]=function(){return r||b.error(s+\" was not called\"),r[0]},e.dataTypes[0]=\"json\",a=i[s],i[s]=function(){r=arguments},n.always((function(){void 0===a?b(i).removeProp(s):i[s]=a,e[s]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(s)),r&&y(a)&&a(r[0]),r=a=void 0})),\"script\"})),f.createHTMLDocument=((Vt=M.implementation.createHTMLDocument(\"\").body).innerHTML=\"<form></form><form></form>\",2===Vt.childNodes.length),b.parseHTML=function(e,t,n){return\"string\"!=typeof e?[]:(\"boolean\"==typeof t&&(n=t,t=!1),t||(f.createHTMLDocument?((i=(t=M.implementation.createHTMLDocument(\"\")).createElement(\"base\")).href=M.location.href,t.head.appendChild(i)):t=M),a=!n&&[],(s=j.exec(e))?[t.createElement(s[1])]:(s=ke([e],t,a),a&&a.length&&b(a).remove(),b.merge([],s.childNodes)));var i,s,a},b.fn.load=function(e,t,n){var i,s,a,r=this,o=e.indexOf(\" \");return o>-1&&(i=Mt(e.slice(o)),e=e.slice(0,o)),y(t)?(n=t,t=void 0):t&&\"object\"==typeof t&&(s=\"POST\"),r.length>0&&b.ajax({url:e,type:s||\"GET\",dataType:\"html\",data:t}).done((function(e){a=arguments,r.html(i?b(\"<div>\").append(b.parseHTML(e)).find(i):e)})).always(n&&function(e,t){r.each((function(){n.apply(this,a||[e.responseText,t,e])}))}),this},b.expr.pseudos.animated=function(e){return b.grep(b.timers,(function(t){return e===t.elem})).length},b.offset={setOffset:function(e,t,n){var i,s,a,r,o,d,l=b.css(e,\"position\"),u=b(e),c={};\"static\"===l&&(e.style.position=\"relative\"),o=u.offset(),a=b.css(e,\"top\"),d=b.css(e,\"left\"),(\"absolute\"===l||\"fixed\"===l)&&(a+d).indexOf(\"auto\")>-1?(r=(i=u.position()).top,s=i.left):(r=parseFloat(a)||0,s=parseFloat(d)||0),y(t)&&(t=t.call(e,n,b.extend({},o))),null!=t.top&&(c.top=t.top-o.top+r),null!=t.left&&(c.left=t.left-o.left+s),\"using\"in t?t.using.call(e,c):(\"number\"==typeof c.top&&(c.top+=\"px\"),\"number\"==typeof c.left&&(c.left+=\"px\"),u.css(c))}},b.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each((function(t){b.offset.setOffset(this,e,t)}));var t,n,i=this[0];return i?i.getClientRects().length?(t=i.getBoundingClientRect(),n=i.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,i=this[0],s={top:0,left:0};if(\"fixed\"===b.css(i,\"position\"))t=i.getBoundingClientRect();else{for(t=this.offset(),n=i.ownerDocument,e=i.offsetParent||n.documentElement;e&&(e===n.body||e===n.documentElement)&&\"static\"===b.css(e,\"position\");)e=e.parentNode;e&&e!==i&&1===e.nodeType&&((s=b(e).offset()).top+=b.css(e,\"borderTopWidth\",!0),s.left+=b.css(e,\"borderLeftWidth\",!0))}return{top:t.top-s.top-b.css(i,\"marginTop\",!0),left:t.left-s.left-b.css(i,\"marginLeft\",!0)}}},offsetParent:function(){return this.map((function(){for(var e=this.offsetParent;e&&\"static\"===b.css(e,\"position\");)e=e.offsetParent;return e||re}))}}),b.each({scrollLeft:\"pageXOffset\",scrollTop:\"pageYOffset\"},(function(e,t){var n=\"pageYOffset\"===t;b.fn[e]=function(i){return B(this,(function(e,i,s){var a;if(g(e)?a=e:9===e.nodeType&&(a=e.defaultView),void 0===s)return a?a[t]:e[i];a?a.scrollTo(n?a.pageXOffset:s,n?s:a.pageYOffset):e[i]=s}),e,i,arguments.length)}})),b.each([\"top\",\"left\"],(function(e,t){b.cssHooks[t]=qe(f.pixelPosition,(function(e,n){if(n)return n=Je(e,t),Fe.test(n)?b(e).position()[t]+\"px\":n}))})),b.each({Height:\"height\",Width:\"width\"},(function(e,t){b.each({padding:\"inner\"+e,content:t,\"\":\"outer\"+e},(function(n,i){b.fn[i]=function(s,a){var r=arguments.length&&(n||\"boolean\"!=typeof s),o=n||(!0===s||!0===a?\"margin\":\"border\");return B(this,(function(t,n,s){var a;return g(t)?0===i.indexOf(\"outer\")?t[\"inner\"+e]:t.document.documentElement[\"client\"+e]:9===t.nodeType?(a=t.documentElement,Math.max(t.body[\"scroll\"+e],a[\"scroll\"+e],t.body[\"offset\"+e],a[\"offset\"+e],a[\"client\"+e])):void 0===s?b.css(t,n,o):b.style(t,n,s,o)}),t,r?s:void 0,r)}}))})),b.each([\"ajaxStart\",\"ajaxStop\",\"ajaxComplete\",\"ajaxError\",\"ajaxSuccess\",\"ajaxSend\"],(function(e,t){b.fn[t]=function(e){return this.on(t,e)}})),b.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,i){return this.on(t,e,n,i)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,\"**\"):this.off(t,e||\"**\",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),b.each(\"blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu\".split(\" \"),(function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}));var Zt=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g;b.proxy=function(e,t){var n,i,s;if(\"string\"==typeof t&&(n=e[t],t=e,e=n),y(e))return i=o.call(arguments,2),(s=function(){return e.apply(t||this,i.concat(o.call(arguments)))}).guid=e.guid=e.guid||b.guid++,s},b.holdReady=function(e){e?b.readyWait++:b.ready(!0)},b.isArray=Array.isArray,b.parseJSON=JSON.parse,b.nodeName=H,b.isFunction=y,b.isWindow=g,b.camelCase=G,b.type=Y,b.now=Date.now,b.isNumeric=function(e){var t=b.type(e);return(\"number\"===t||\"string\"===t)&&!isNaN(e-parseFloat(e))},b.trim=function(e){return null==e?\"\":(e+\"\").replace(Zt,\"\")},void 0===(n=function(){return b}.apply(t,[]))||(e.exports=n);var Qt=i.jQuery,Xt=i.$;return b.noConflict=function(e){return i.$===b&&(i.$=Xt),e&&i.jQuery===b&&(i.jQuery=Qt),b},void 0===s&&(i.jQuery=i.$=b),b}))},958:(e,t,n)=>{\"use strict\";n.r(t)},157:(e,t,n)=>{\"use strict\";n.r(t)},3638:(e,t,n)=>{\"use strict\";n.r(t)},1980:(e,t,n)=>{\"use strict\";n.r(t)},6979:(e,t,n)=>{\"use strict\";n.r(t)},2786:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[Môre om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(381))},4130:function(e,t,n){!function(e){\"use strict\";var t=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:[\"أقل من ثانية\",\"ثانية واحدة\",[\"ثانيتان\",\"ثانيتين\"],\"%d ثوان\",\"%d ثانية\",\"%d ثانية\"],m:[\"أقل من دقيقة\",\"دقيقة واحدة\",[\"دقيقتان\",\"دقيقتين\"],\"%d دقائق\",\"%d دقيقة\",\"%d دقيقة\"],h:[\"أقل من ساعة\",\"ساعة واحدة\",[\"ساعتان\",\"ساعتين\"],\"%d ساعات\",\"%d ساعة\",\"%d ساعة\"],d:[\"أقل من يوم\",\"يوم واحد\",[\"يومان\",\"يومين\"],\"%d أيام\",\"%d يومًا\",\"%d يوم\"],M:[\"أقل من شهر\",\"شهر واحد\",[\"شهران\",\"شهرين\"],\"%d أشهر\",\"%d شهرا\",\"%d شهر\"],y:[\"أقل من عام\",\"عام واحد\",[\"عامان\",\"عامين\"],\"%d أعوام\",\"%d عامًا\",\"%d عام\"]},i=function(e){return function(i,s,a,r){var o=t(i),d=n[e][t(i)];return 2===o&&(d=d[s?0:1]),d.replace(/%d/i,i)}},s=[\"جانفي\",\"فيفري\",\"مارس\",\"أفريل\",\"ماي\",\"جوان\",\"جويلية\",\"أوت\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\"];e.defineLocale(\"ar-dz\",{months:s,monthsShort:s,weekdays:\"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/‏M/‏YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/ص|م/,isPM:function(e){return\"م\"===e},meridiem:function(e,t,n){return e<12?\"ص\":\"م\"},calendar:{sameDay:\"[اليوم عند الساعة] LT\",nextDay:\"[غدًا عند الساعة] LT\",nextWeek:\"dddd [عند الساعة] LT\",lastDay:\"[أمس عند الساعة] LT\",lastWeek:\"dddd [عند الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"بعد %s\",past:\"منذ %s\",s:i(\"s\"),ss:i(\"s\"),m:i(\"m\"),mm:i(\"m\"),h:i(\"h\"),hh:i(\"h\"),d:i(\"d\"),dd:i(\"d\"),M:i(\"M\"),MM:i(\"M\"),y:i(\"y\"),yy:i(\"y\")},postformat:function(e){return e.replace(/,/g,\"،\")},week:{dow:0,doy:4}})}(n(381))},6135:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر\".split(\"_\"),monthsShort:\"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر\".split(\"_\"),weekdays:\"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[اليوم على الساعة] LT\",nextDay:\"[غدا على الساعة] LT\",nextWeek:\"dddd [على الساعة] LT\",lastDay:\"[أمس على الساعة] LT\",lastWeek:\"dddd [على الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"في %s\",past:\"منذ %s\",s:\"ثوان\",ss:\"%d ثانية\",m:\"دقيقة\",mm:\"%d دقائق\",h:\"ساعة\",hh:\"%d ساعات\",d:\"يوم\",dd:\"%d أيام\",M:\"شهر\",MM:\"%d أشهر\",y:\"سنة\",yy:\"%d سنوات\"},week:{dow:0,doy:12}})}(n(381))},6440:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"أقل من ثانية\",\"ثانية واحدة\",[\"ثانيتان\",\"ثانيتين\"],\"%d ثوان\",\"%d ثانية\",\"%d ثانية\"],m:[\"أقل من دقيقة\",\"دقيقة واحدة\",[\"دقيقتان\",\"دقيقتين\"],\"%d دقائق\",\"%d دقيقة\",\"%d دقيقة\"],h:[\"أقل من ساعة\",\"ساعة واحدة\",[\"ساعتان\",\"ساعتين\"],\"%d ساعات\",\"%d ساعة\",\"%d ساعة\"],d:[\"أقل من يوم\",\"يوم واحد\",[\"يومان\",\"يومين\"],\"%d أيام\",\"%d يومًا\",\"%d يوم\"],M:[\"أقل من شهر\",\"شهر واحد\",[\"شهران\",\"شهرين\"],\"%d أشهر\",\"%d شهرا\",\"%d شهر\"],y:[\"أقل من عام\",\"عام واحد\",[\"عامان\",\"عامين\"],\"%d أعوام\",\"%d عامًا\",\"%d عام\"]},s=function(e){return function(t,s,a,r){var o=n(t),d=i[e][n(t)];return 2===o&&(d=d[s?0:1]),d.replace(/%d/i,t)}},a=[\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\"];e.defineLocale(\"ar-ly\",{months:a,monthsShort:a,weekdays:\"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/‏M/‏YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/ص|م/,isPM:function(e){return\"م\"===e},meridiem:function(e,t,n){return e<12?\"ص\":\"م\"},calendar:{sameDay:\"[اليوم عند الساعة] LT\",nextDay:\"[غدًا عند الساعة] LT\",nextWeek:\"dddd [عند الساعة] LT\",lastDay:\"[أمس عند الساعة] LT\",lastWeek:\"dddd [عند الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"بعد %s\",past:\"منذ %s\",s:s(\"s\"),ss:s(\"s\"),m:s(\"m\"),mm:s(\"m\"),h:s(\"h\"),hh:s(\"h\"),d:s(\"d\"),dd:s(\"d\"),M:s(\"M\"),MM:s(\"M\"),y:s(\"y\"),yy:s(\"y\")},preparse:function(e){return e.replace(/،/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"،\")},week:{dow:6,doy:12}})}(n(381))},7702:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-ma\",{months:\"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر\".split(\"_\"),monthsShort:\"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر\".split(\"_\"),weekdays:\"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[اليوم على الساعة] LT\",nextDay:\"[غدا على الساعة] LT\",nextWeek:\"dddd [على الساعة] LT\",lastDay:\"[أمس على الساعة] LT\",lastWeek:\"dddd [على الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"في %s\",past:\"منذ %s\",s:\"ثوان\",ss:\"%d ثانية\",m:\"دقيقة\",mm:\"%d دقائق\",h:\"ساعة\",hh:\"%d ساعات\",d:\"يوم\",dd:\"%d أيام\",M:\"شهر\",MM:\"%d أشهر\",y:\"سنة\",yy:\"%d سنوات\"},week:{dow:1,doy:4}})}(n(381))},6040:function(e,t,n){!function(e){\"use strict\";var t={1:\"١\",2:\"٢\",3:\"٣\",4:\"٤\",5:\"٥\",6:\"٦\",7:\"٧\",8:\"٨\",9:\"٩\",0:\"٠\"},n={\"١\":\"1\",\"٢\":\"2\",\"٣\":\"3\",\"٤\":\"4\",\"٥\":\"5\",\"٦\":\"6\",\"٧\":\"7\",\"٨\":\"8\",\"٩\":\"9\",\"٠\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر\".split(\"_\"),monthsShort:\"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر\".split(\"_\"),weekdays:\"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/ص|م/,isPM:function(e){return\"م\"===e},meridiem:function(e,t,n){return e<12?\"ص\":\"م\"},calendar:{sameDay:\"[اليوم على الساعة] LT\",nextDay:\"[غدا على الساعة] LT\",nextWeek:\"dddd [على الساعة] LT\",lastDay:\"[أمس على الساعة] LT\",lastWeek:\"dddd [على الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"في %s\",past:\"منذ %s\",s:\"ثوان\",ss:\"%d ثانية\",m:\"دقيقة\",mm:\"%d دقائق\",h:\"ساعة\",hh:\"%d ساعات\",d:\"يوم\",dd:\"%d أيام\",M:\"شهر\",MM:\"%d أشهر\",y:\"سنة\",yy:\"%d سنوات\"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"،\")},week:{dow:0,doy:6}})}(n(381))},7100:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر\".split(\"_\"),monthsShort:\"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر\".split(\"_\"),weekdays:\"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[اليوم على الساعة] LT\",nextDay:\"[غدا على الساعة] LT\",nextWeek:\"dddd [على الساعة] LT\",lastDay:\"[أمس على الساعة] LT\",lastWeek:\"dddd [على الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"في %s\",past:\"منذ %s\",s:\"ثوان\",ss:\"%d ثانية\",m:\"دقيقة\",mm:\"%d دقائق\",h:\"ساعة\",hh:\"%d ساعات\",d:\"يوم\",dd:\"%d أيام\",M:\"شهر\",MM:\"%d أشهر\",y:\"سنة\",yy:\"%d سنوات\"},week:{dow:1,doy:4}})}(n(381))},867:function(e,t,n){!function(e){\"use strict\";var t={1:\"١\",2:\"٢\",3:\"٣\",4:\"٤\",5:\"٥\",6:\"٦\",7:\"٧\",8:\"٨\",9:\"٩\",0:\"٠\"},n={\"١\":\"1\",\"٢\":\"2\",\"٣\":\"3\",\"٤\":\"4\",\"٥\":\"5\",\"٦\":\"6\",\"٧\":\"7\",\"٨\":\"8\",\"٩\":\"9\",\"٠\":\"0\"},i=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:[\"أقل من ثانية\",\"ثانية واحدة\",[\"ثانيتان\",\"ثانيتين\"],\"%d ثوان\",\"%d ثانية\",\"%d ثانية\"],m:[\"أقل من دقيقة\",\"دقيقة واحدة\",[\"دقيقتان\",\"دقيقتين\"],\"%d دقائق\",\"%d دقيقة\",\"%d دقيقة\"],h:[\"أقل من ساعة\",\"ساعة واحدة\",[\"ساعتان\",\"ساعتين\"],\"%d ساعات\",\"%d ساعة\",\"%d ساعة\"],d:[\"أقل من يوم\",\"يوم واحد\",[\"يومان\",\"يومين\"],\"%d أيام\",\"%d يومًا\",\"%d يوم\"],M:[\"أقل من شهر\",\"شهر واحد\",[\"شهران\",\"شهرين\"],\"%d أشهر\",\"%d شهرا\",\"%d شهر\"],y:[\"أقل من عام\",\"عام واحد\",[\"عامان\",\"عامين\"],\"%d أعوام\",\"%d عامًا\",\"%d عام\"]},a=function(e){return function(t,n,a,r){var o=i(t),d=s[e][i(t)];return 2===o&&(d=d[n?0:1]),d.replace(/%d/i,t)}},r=[\"يناير\",\"فبراير\",\"مارس\",\"أبريل\",\"مايو\",\"يونيو\",\"يوليو\",\"أغسطس\",\"سبتمبر\",\"أكتوبر\",\"نوفمبر\",\"ديسمبر\"];e.defineLocale(\"ar\",{months:r,monthsShort:r,weekdays:\"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت\".split(\"_\"),weekdaysShort:\"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت\".split(\"_\"),weekdaysMin:\"ح_ن_ث_ر_خ_ج_س\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/‏M/‏YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/ص|م/,isPM:function(e){return\"م\"===e},meridiem:function(e,t,n){return e<12?\"ص\":\"م\"},calendar:{sameDay:\"[اليوم عند الساعة] LT\",nextDay:\"[غدًا عند الساعة] LT\",nextWeek:\"dddd [عند الساعة] LT\",lastDay:\"[أمس عند الساعة] LT\",lastWeek:\"dddd [عند الساعة] LT\",sameElse:\"L\"},relativeTime:{future:\"بعد %s\",past:\"منذ %s\",s:a(\"s\"),ss:a(\"s\"),m:a(\"m\"),mm:a(\"m\"),h:a(\"h\"),hh:a(\"h\"),d:a(\"d\"),dd:a(\"d\"),M:a(\"M\"),MM:a(\"M\"),y:a(\"y\"),yy:a(\"y\")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"،\")},week:{dow:6,doy:12}})}(n(381))},1083:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-üncü\",4:\"-üncü\",100:\"-üncü\",6:\"-ncı\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-ıncı\",90:\"-ıncı\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə\".split(\"_\"),weekdaysShort:\"Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən\".split(\"_\"),weekdaysMin:\"Bz_BE_ÇA_Çə_CA_Cü_Şə\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bugün saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[gələn həftə] dddd [saat] LT\",lastDay:\"[dünən] LT\",lastWeek:\"[keçən həftə] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s əvvəl\",s:\"bir neçə saniyə\",ss:\"%d saniyə\",m:\"bir dəqiqə\",mm:\"%d dəqiqə\",h:\"bir saat\",hh:\"%d saat\",d:\"bir gün\",dd:\"%d gün\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gecə|səhər|gündüz|axşam/,isPM:function(e){return/^(gündüz|axşam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gecə\":e<12?\"səhər\":e<17?\"gündüz\":\"axşam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,ordinal:function(e){if(0===e)return e+\"-ıncı\";var n=e%10,i=e%100-n,s=e>=100?100:null;return e+(t[n]||t[i]||t[s])},week:{dow:1,doy:7}})}(n(381))},9808:function(e,t,n){!function(e){\"use strict\";function t(e,t){var n=e.split(\"_\");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,i){return\"m\"===i?n?\"хвіліна\":\"хвіліну\":\"h\"===i?n?\"гадзіна\":\"гадзіну\":e+\" \"+t({ss:n?\"секунда_секунды_секунд\":\"секунду_секунды_секунд\",mm:n?\"хвіліна_хвіліны_хвілін\":\"хвіліну_хвіліны_хвілін\",hh:n?\"гадзіна_гадзіны_гадзін\":\"гадзіну_гадзіны_гадзін\",dd:\"дзень_дні_дзён\",MM:\"месяц_месяцы_месяцаў\",yy:\"год_гады_гадоў\"}[i],+e)}e.defineLocale(\"be\",{months:{format:\"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня\".split(\"_\"),standalone:\"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань\".split(\"_\")},monthsShort:\"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж\".split(\"_\"),weekdays:{format:\"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу\".split(\"_\"),standalone:\"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота\".split(\"_\"),isFormat:/\\[ ?[Ууў] ?(?:мінулую|наступную)? ?\\] ?dddd/},weekdaysShort:\"нд_пн_ат_ср_чц_пт_сб\".split(\"_\"),weekdaysMin:\"нд_пн_ат_ср_чц_пт_сб\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY г.\",LLL:\"D MMMM YYYY г., HH:mm\",LLLL:\"dddd, D MMMM YYYY г., HH:mm\"},calendar:{sameDay:\"[Сёння ў] LT\",nextDay:\"[Заўтра ў] LT\",lastDay:\"[Учора ў] LT\",nextWeek:function(){return\"[У] dddd [ў] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[У мінулую] dddd [ў] LT\";case 1:case 2:case 4:return\"[У мінулы] dddd [ў] LT\"}},sameElse:\"L\"},relativeTime:{future:\"праз %s\",past:\"%s таму\",s:\"некалькі секунд\",m:n,mm:n,h:n,hh:n,d:\"дзень\",dd:n,M:\"месяц\",MM:n,y:\"год\",yy:n},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(e){return/^(дня|вечара)$/.test(e)},meridiem:function(e,t,n){return e<4?\"ночы\":e<12?\"раніцы\":e<17?\"дня\":\"вечара\"},dayOfMonthOrdinalParse:/\\d{1,2}-(і|ы|га)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-ы\":e+\"-і\";case\"D\":return e+\"-га\";default:return e}},week:{dow:1,doy:7}})}(n(381))},8338:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември\".split(\"_\"),monthsShort:\"яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек\".split(\"_\"),weekdays:\"неделя_понеделник_вторник_сряда_четвъртък_петък_събота\".split(\"_\"),weekdaysShort:\"нед_пон_вто_сря_чет_пет_съб\".split(\"_\"),weekdaysMin:\"нд_пн_вт_ср_чт_пт_сб\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[Днес в] LT\",nextDay:\"[Утре в] LT\",nextWeek:\"dddd [в] LT\",lastDay:\"[Вчера в] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[Миналата] dddd [в] LT\";case 1:case 2:case 4:case 5:return\"[Миналия] dddd [в] LT\"}},sameElse:\"L\"},relativeTime:{future:\"след %s\",past:\"преди %s\",s:\"няколко секунди\",ss:\"%d секунди\",m:\"минута\",mm:\"%d минути\",h:\"час\",hh:\"%d часа\",d:\"ден\",dd:\"%d дена\",w:\"седмица\",ww:\"%d седмици\",M:\"месец\",MM:\"%d месеца\",y:\"година\",yy:\"%d години\"},dayOfMonthOrdinalParse:/\\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-ев\":0===n?e+\"-ен\":n>10&&n<20?e+\"-ти\":1===t?e+\"-ви\":2===t?e+\"-ри\":7===t||8===t?e+\"-ми\":e+\"-ти\"},week:{dow:1,doy:7}})}(n(381))},7438:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des\".split(\"_\"),weekdays:\"Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm\"},calendar:{sameDay:\"[Bi lɛrɛ] LT\",nextDay:\"[Sini lɛrɛ] LT\",nextWeek:\"dddd [don lɛrɛ] LT\",lastDay:\"[Kunu lɛrɛ] LT\",lastWeek:\"dddd [tɛmɛnen lɛrɛ] LT\",sameElse:\"L\"},relativeTime:{future:\"%s kɔnɔ\",past:\"a bɛ %s bɔ\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"lɛrɛ kelen\",hh:\"lɛrɛ %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(381))},6225:function(e,t,n){!function(e){\"use strict\";var t={1:\"১\",2:\"২\",3:\"৩\",4:\"৪\",5:\"৫\",6:\"৬\",7:\"৭\",8:\"৮\",9:\"৯\",0:\"০\"},n={\"১\":\"1\",\"২\":\"2\",\"৩\":\"3\",\"৪\":\"4\",\"৫\":\"5\",\"৬\":\"6\",\"৭\":\"7\",\"৮\":\"8\",\"৯\":\"9\",\"০\":\"0\"};e.defineLocale(\"bn-bd\",{months:\"জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর\".split(\"_\"),monthsShort:\"জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে\".split(\"_\"),weekdays:\"রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার\".split(\"_\"),weekdaysShort:\"রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি\".split(\"_\"),weekdaysMin:\"রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি\".split(\"_\"),longDateFormat:{LT:\"A h:mm সময়\",LTS:\"A h:mm:ss সময়\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm সময়\",LLLL:\"dddd, D MMMM YYYY, A h:mm সময়\"},calendar:{sameDay:\"[আজ] LT\",nextDay:\"[আগামীকাল] LT\",nextWeek:\"dddd, LT\",lastDay:\"[গতকাল] LT\",lastWeek:\"[গত] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s পরে\",past:\"%s আগে\",s:\"কয়েক সেকেন্ড\",ss:\"%d সেকেন্ড\",m:\"এক মিনিট\",mm:\"%d মিনিট\",h:\"এক ঘন্টা\",hh:\"%d ঘন্টা\",d:\"এক দিন\",dd:\"%d দিন\",M:\"এক মাস\",MM:\"%d মাস\",y:\"এক বছর\",yy:\"%d বছর\"},preparse:function(e){return e.replace(/[১২৩৪৫৬৭৮৯০]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/রাত|ভোর|সকাল|দুপুর|বিকাল|সন্ধ্যা|রাত/,meridiemHour:function(e,t){return 12===e&&(e=0),\"রাত\"===t?e<4?e:e+12:\"ভোর\"===t||\"সকাল\"===t?e:\"দুপুর\"===t?e>=3?e:e+12:\"বিকাল\"===t||\"সন্ধ্যা\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"রাত\":e<6?\"ভোর\":e<12?\"সকাল\":e<15?\"দুপুর\":e<18?\"বিকাল\":e<20?\"সন্ধ্যা\":\"রাত\"},week:{dow:0,doy:6}})}(n(381))},8905:function(e,t,n){!function(e){\"use strict\";var t={1:\"১\",2:\"২\",3:\"৩\",4:\"৪\",5:\"৫\",6:\"৬\",7:\"৭\",8:\"৮\",9:\"৯\",0:\"০\"},n={\"১\":\"1\",\"২\":\"2\",\"৩\":\"3\",\"৪\":\"4\",\"৫\":\"5\",\"৬\":\"6\",\"৭\":\"7\",\"৮\":\"8\",\"৯\":\"9\",\"০\":\"0\"};e.defineLocale(\"bn\",{months:\"জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর\".split(\"_\"),monthsShort:\"জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে\".split(\"_\"),weekdays:\"রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার\".split(\"_\"),weekdaysShort:\"রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি\".split(\"_\"),weekdaysMin:\"রবি_সোম_মঙ্গল_বুধ_বৃহ_শুক্র_শনি\".split(\"_\"),longDateFormat:{LT:\"A h:mm সময়\",LTS:\"A h:mm:ss সময়\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm সময়\",LLLL:\"dddd, D MMMM YYYY, A h:mm সময়\"},calendar:{sameDay:\"[আজ] LT\",nextDay:\"[আগামীকাল] LT\",nextWeek:\"dddd, LT\",lastDay:\"[গতকাল] LT\",lastWeek:\"[গত] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s পরে\",past:\"%s আগে\",s:\"কয়েক সেকেন্ড\",ss:\"%d সেকেন্ড\",m:\"এক মিনিট\",mm:\"%d মিনিট\",h:\"এক ঘন্টা\",hh:\"%d ঘন্টা\",d:\"এক দিন\",dd:\"%d দিন\",M:\"এক মাস\",MM:\"%d মাস\",y:\"এক বছর\",yy:\"%d বছর\"},preparse:function(e){return e.replace(/[১২৩৪৫৬৭৮৯০]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/রাত|সকাল|দুপুর|বিকাল|রাত/,meridiemHour:function(e,t){return 12===e&&(e=0),\"রাত\"===t&&e>=4||\"দুপুর\"===t&&e<5||\"বিকাল\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"রাত\":e<10?\"সকাল\":e<17?\"দুপুর\":e<20?\"বিকাল\":\"রাত\"},week:{dow:0,doy:6}})}(n(381))},1560:function(e,t,n){!function(e){\"use strict\";var t={1:\"༡\",2:\"༢\",3:\"༣\",4:\"༤\",5:\"༥\",6:\"༦\",7:\"༧\",8:\"༨\",9:\"༩\",0:\"༠\"},n={\"༡\":\"1\",\"༢\":\"2\",\"༣\":\"3\",\"༤\":\"4\",\"༥\":\"5\",\"༦\":\"6\",\"༧\":\"7\",\"༨\":\"8\",\"༩\":\"9\",\"༠\":\"0\"};e.defineLocale(\"bo\",{months:\"ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ\".split(\"_\"),monthsShort:\"ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12\".split(\"_\"),monthsShortRegex:/^(ཟླ་\\d{1,2})/,monthsParseExact:!0,weekdays:\"གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་\".split(\"_\"),weekdaysShort:\"ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་\".split(\"_\"),weekdaysMin:\"ཉི_ཟླ_མིག_ལྷག_ཕུར_སངས_སྤེན\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[དི་རིང] LT\",nextDay:\"[སང་ཉིན] LT\",nextWeek:\"[བདུན་ཕྲག་རྗེས་མ], LT\",lastDay:\"[ཁ་སང] LT\",lastWeek:\"[བདུན་ཕྲག་མཐའ་མ] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s ལ་\",past:\"%s སྔན་ལ\",s:\"ལམ་སང\",ss:\"%d སྐར་ཆ།\",m:\"སྐར་མ་གཅིག\",mm:\"%d སྐར་མ\",h:\"ཆུ་ཚོད་གཅིག\",hh:\"%d ཆུ་ཚོད\",d:\"ཉིན་གཅིག\",dd:\"%d ཉིན་\",M:\"ཟླ་བ་གཅིག\",MM:\"%d ཟླ་བ\",y:\"ལོ་གཅིག\",yy:\"%d ལོ\"},preparse:function(e){return e.replace(/[༡༢༣༤༥༦༧༨༩༠]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/མཚན་མོ|ཞོགས་ཀས|ཉིན་གུང|དགོང་དག|མཚན་མོ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"མཚན་མོ\"===t&&e>=4||\"ཉིན་གུང\"===t&&e<5||\"དགོང་དག\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"མཚན་མོ\":e<10?\"ཞོགས་ཀས\":e<17?\"ཉིན་གུང\":e<20?\"དགོང་དག\":\"མཚན་མོ\"},week:{dow:0,doy:6}})}(n(381))},1278:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+s({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}function n(e){switch(i(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}function i(e){return e>9?i(e%10):e}function s(e,t){return 2===t?a(e):e}function a(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}var r=[/^gen/i,/^c[ʼ\\']hwe/i,/^meu/i,/^ebr/i,/^mae/i,/^(mez|eve)/i,/^gou/i,/^eos/i,/^gwe/i,/^her/i,/^du/i,/^ker/i],o=/^(genver|c[ʼ\\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,d=/^(genver|c[ʼ\\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,l=/^(gen|c[ʼ\\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,u=[/^sul/i,/^lun/i,/^meurzh/i,/^merc[ʼ\\']her/i,/^yaou/i,/^gwener/i,/^sadorn/i],c=[/^Sul/i,/^Lun/i,/^Meu/i,/^Mer/i,/^Yao/i,/^Gwe/i,/^Sad/i],h=[/^Su/i,/^Lu/i,/^Me([^r]|$)/i,/^Mer/i,/^Ya/i,/^Gw/i,/^Sa/i];e.defineLocale(\"br\",{months:\"Genver_Cʼhwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_Cʼhwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Mercʼher_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParse:h,fullWeekdaysParse:u,shortWeekdaysParse:c,minWeekdaysParse:h,monthsRegex:o,monthsShortRegex:o,monthsStrictRegex:d,monthsShortStrictRegex:l,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY HH:mm\",LLLL:\"dddd, D [a viz] MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warcʼhoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Decʼh da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s ʼzo\",s:\"un nebeud segondennoù\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}(añ|vet)/,ordinal:function(e){return e+(1===e?\"añ\":\"vet\")},week:{dow:1,doy:4},meridiemParse:/a.m.|g.m./,isPM:function(e){return\"g.m.\"===e},meridiem:function(e,t,n){return e<12?\"a.m.\":\"g.m.\"}})}(n(381))},622:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+=1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\";case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+=1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\";case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+=1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\";case\"dd\":return i+=1===e?\"dan\":\"dana\";case\"MM\":return i+=1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\";case\"yy\":return i+=1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\"}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._čet._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_če_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[jučer u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[prošlu] dddd [u] LT\";case 6:return\"[prošle] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[prošli] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},2468:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[demà a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aquí %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"è\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(381))},5822:function(e,t,n){!function(e){\"use strict\";var t=\"leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec\".split(\"_\"),n=\"led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro\".split(\"_\"),i=[/^led/i,/^úno/i,/^bře/i,/^dub/i,/^kvě/i,/^(čvn|červen$|června)/i,/^(čvc|červenec|července)/i,/^srp/i,/^zář/i,/^říj/i,/^lis/i,/^pro/i],s=/^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;function a(e){return e>1&&e<5&&1!=~~(e/10)}function r(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"pár sekund\":\"pár sekundami\";case\"ss\":return t||i?s+(a(e)?\"sekundy\":\"sekund\"):s+\"sekundami\";case\"m\":return t?\"minuta\":i?\"minutu\":\"minutou\";case\"mm\":return t||i?s+(a(e)?\"minuty\":\"minut\"):s+\"minutami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?s+(a(e)?\"hodiny\":\"hodin\"):s+\"hodinami\";case\"d\":return t||i?\"den\":\"dnem\";case\"dd\":return t||i?s+(a(e)?\"dny\":\"dní\"):s+\"dny\";case\"M\":return t||i?\"měsíc\":\"měsícem\";case\"MM\":return t||i?s+(a(e)?\"měsíce\":\"měsíců\"):s+\"měsíci\";case\"y\":return t||i?\"rok\":\"rokem\";case\"yy\":return t||i?s+(a(e)?\"roky\":\"let\"):s+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_út_st_čt_pá_so\".split(\"_\"),weekdaysMin:\"ne_po_út_st_čt_pá_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[zítra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v neděli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve středu v] LT\";case 4:return\"[ve čtvrtek v] LT\";case 5:return\"[v pátek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[včera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou neděli v] LT\";case 1:case 2:return\"[minulé] dddd [v] LT\";case 3:return\"[minulou středu v] LT\";case 4:case 5:return\"[minulý] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"před %s\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},877:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав\".split(\"_\"),monthsShort:\"кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш\".split(\"_\"),weekdays:\"вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун\".split(\"_\"),weekdaysShort:\"выр_тун_ытл_юн_кӗҫ_эрн_шӑм\".split(\"_\"),weekdaysMin:\"вр_тн_ыт_юн_кҫ_эр_шм\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]\",LLL:\"YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm\",LLLL:\"dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm\"},calendar:{sameDay:\"[Паян] LT [сехетре]\",nextDay:\"[Ыран] LT [сехетре]\",lastDay:\"[Ӗнер] LT [сехетре]\",nextWeek:\"[Ҫитес] dddd LT [сехетре]\",lastWeek:\"[Иртнӗ] dddd LT [сехетре]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/сехет$/i.exec(e)?\"рен\":/ҫул$/i.exec(e)?\"тан\":\"ран\")},past:\"%s каялла\",s:\"пӗр-ик ҫеккунт\",ss:\"%d ҫеккунт\",m:\"пӗр минут\",mm:\"%d минут\",h:\"пӗр сехет\",hh:\"%d сехет\",d:\"пӗр кун\",dd:\"%d кун\",M:\"пӗр уйӑх\",MM:\"%d уйӑх\",y:\"пӗр ҫул\",yy:\"%d ҫул\"},dayOfMonthOrdinalParse:/\\d{1,2}-мӗш/,ordinal:\"%d-мӗш\",week:{dow:1,doy:7}})}(n(381))},7373:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn ôl\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(381))},4780:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag\".split(\"_\"),weekdaysShort:\"søn_man_tir_ons_tor_fre_lør\".split(\"_\"),weekdaysMin:\"sø_ma_ti_on_to_fr_lø\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"på dddd [kl.] LT\",lastDay:\"[i går kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"få sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en måned\",MM:\"%d måneder\",y:\"et år\",yy:\"%d år\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},217:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],w:[\"eine Woche\",\"einer Woche\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-at\",{months:\"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,w:t,ww:\"%d Wochen\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},894:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],w:[\"eine Woche\",\"einer Woche\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,w:t,ww:\"%d Wochen\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},9740:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],w:[\"eine Woche\",\"einer Woche\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,w:t,ww:\"%d Wochen\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},5300:function(e,t,n){!function(e){\"use strict\";var t=[\"ޖެނުއަރީ\",\"ފެބްރުއަރީ\",\"މާރިޗު\",\"އޭޕްރީލު\",\"މޭ\",\"ޖޫން\",\"ޖުލައި\",\"އޯގަސްޓު\",\"ސެޕްޓެމްބަރު\",\"އޮކްޓޯބަރު\",\"ނޮވެމްބަރު\",\"ޑިސެމްބަރު\"],n=[\"އާދިއްތަ\",\"ހޯމަ\",\"އަންގާރަ\",\"ބުދަ\",\"ބުރާސްފަތި\",\"ހުކުރު\",\"ހޮނިހިރު\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"އާދި_ހޯމަ_އަން_ބުދަ_ބުރާ_ހުކު_ހޮނި\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/މކ|މފ/,isPM:function(e){return\"މފ\"===e},meridiem:function(e,t,n){return e<12?\"މކ\":\"މފ\"},calendar:{sameDay:\"[މިއަދު] LT\",nextDay:\"[މާދަމާ] LT\",nextWeek:\"dddd LT\",lastDay:\"[އިއްޔެ] LT\",lastWeek:\"[ފާއިތުވި] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"ތެރޭގައި %s\",past:\"ކުރިން %s\",s:\"ސިކުންތުކޮޅެއް\",ss:\"d% ސިކުންތު\",m:\"މިނިޓެއް\",mm:\"މިނިޓު %d\",h:\"ގަޑިއިރެއް\",hh:\"ގަޑިއިރު %d\",d:\"ދުވަހެއް\",dd:\"ދުވަސް %d\",M:\"މަހެއް\",MM:\"މަސް %d\",y:\"އަހަރެއް\",yy:\"އަހަރު %d\"},preparse:function(e){return e.replace(/،/g,\",\")},postformat:function(e){return e.replace(/,/g,\"،\")},week:{dow:7,doy:12}})}(n(381))},837:function(e,t,n){!function(e){\"use strict\";function t(e){return\"undefined\"!=typeof Function&&e instanceof Function||\"[object Function]\"===Object.prototype.toString.call(e)}e.defineLocale(\"el\",{monthsNominativeEl:\"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος\".split(\"_\"),monthsGenitiveEl:\"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ\".split(\"_\"),weekdays:\"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο\".split(\"_\"),weekdaysShort:\"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ\".split(\"_\"),weekdaysMin:\"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"μμ\":\"ΜΜ\":n?\"πμ\":\"ΠΜ\"},isPM:function(e){return\"μ\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[ΠΜ]\\.?Μ?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[Σήμερα {}] LT\",nextDay:\"[Αύριο {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[Χθες {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[το προηγούμενο] dddd [{}] LT\";default:return\"[την προηγούμενη] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,n){var i=this._calendarEl[e],s=n&&n.hours();return t(i)&&(i=i.apply(n)),i.replace(\"{}\",s%12==1?\"στη\":\"στις\")},relativeTime:{future:\"σε %s\",past:\"%s πριν\",s:\"λίγα δευτερόλεπτα\",ss:\"%d δευτερόλεπτα\",m:\"ένα λεπτό\",mm:\"%d λεπτά\",h:\"μία ώρα\",hh:\"%d ώρες\",d:\"μία μέρα\",dd:\"%d μέρες\",M:\"ένας μήνας\",MM:\"%d μήνες\",y:\"ένας χρόνος\",yy:\"%d χρόνια\"},dayOfMonthOrdinalParse:/\\d{1,2}η/,ordinal:\"%dη\",week:{dow:1,doy:4}})}(n(381))},8348:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:0,doy:4}})}(n(381))},7925:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(381))},2243:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(381))},6436:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(381))},7207:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(381))},4175:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-in\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:0,doy:6}})}(n(381))},6319:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(381))},1662:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-sg\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(381))},2915:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec\".split(\"_\"),weekdays:\"dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_ĵaŭ_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_ĵa_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"[la] D[-an de] MMMM, YYYY\",LLL:\"[la] D[-an de] MMMM, YYYY HH:mm\",LLLL:\"dddd[n], [la] D[-an de] MMMM, YYYY HH:mm\",llll:\"ddd, [la] D[-an de] MMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodiaŭ je] LT\",nextDay:\"[Morgaŭ je] LT\",nextWeek:\"dddd[n je] LT\",lastDay:\"[Hieraŭ je] LT\",lastWeek:\"[pasintan] dddd[n je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"antaŭ %s\",s:\"kelkaj sekundoj\",ss:\"%d sekundoj\",m:\"unu minuto\",mm:\"%d minutoj\",h:\"unu horo\",hh:\"%d horoj\",d:\"unu tago\",dd:\"%d tagoj\",M:\"unu monato\",MM:\"%d monatoj\",y:\"unu jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(381))},5251:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-do\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_miércoles_jueves_viernes_sábado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mié._jue._vie._sáb.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[mañana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un día\",dd:\"%d días\",w:\"una semana\",ww:\"%d semanas\",M:\"un mes\",MM:\"%d meses\",y:\"un año\",yy:\"%d años\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},6112:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-mx\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_miércoles_jueves_viernes_sábado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mié._jue._vie._sáb.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[mañana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un día\",dd:\"%d días\",w:\"una semana\",ww:\"%d semanas\",M:\"un mes\",MM:\"%d meses\",y:\"un año\",yy:\"%d años\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:0,doy:4},invalidDate:\"Fecha inválida\"})}(n(381))},1146:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_miércoles_jueves_viernes_sábado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mié._jue._vie._sáb.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[mañana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un día\",dd:\"%d días\",w:\"una semana\",ww:\"%d semanas\",M:\"un mes\",MM:\"%d meses\",y:\"un año\",yy:\"%d años\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:0,doy:6}})}(n(381))},5655:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_miércoles_jueves_viernes_sábado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mié._jue._vie._sáb.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[mañana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un día\",dd:\"%d días\",w:\"una semana\",ww:\"%d semanas\",M:\"un mes\",MM:\"%d meses\",y:\"un año\",yy:\"%d años\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4},invalidDate:\"Fecha inválida\"})}(n(381))},5603:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"mõne sekundi\",\"mõni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"ühe minuti\",\"üks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"ühe tunni\",\"tund aega\",\"üks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"ühe päeva\",\"üks päev\"],M:[\"kuu aja\",\"kuu aega\",\"üks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"ühe aasta\",\"aasta\",\"üks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?s[n][2]?s[n][2]:s[n][1]:i?s[n][0]:s[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[Täna,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[Järgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s pärast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d päeva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},7763:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eu\",{months:\"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua\".split(\"_\"),monthsShort:\"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.\".split(\"_\"),monthsParseExact:!0,weekdays:\"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata\".split(\"_\"),weekdaysShort:\"ig._al._ar._az._og._ol._lr.\".split(\"_\"),weekdaysMin:\"ig_al_ar_az_og_ol_lr\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY[ko] MMMM[ren] D[a]\",LLL:\"YYYY[ko] MMMM[ren] D[a] HH:mm\",LLLL:\"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm\",l:\"YYYY-M-D\",ll:\"YYYY[ko] MMM D[a]\",lll:\"YYYY[ko] MMM D[a] HH:mm\",llll:\"ddd, YYYY[ko] MMM D[a] HH:mm\"},calendar:{sameDay:\"[gaur] LT[etan]\",nextDay:\"[bihar] LT[etan]\",nextWeek:\"dddd LT[etan]\",lastDay:\"[atzo] LT[etan]\",lastWeek:\"[aurreko] dddd LT[etan]\",sameElse:\"L\"},relativeTime:{future:\"%s barru\",past:\"duela %s\",s:\"segundo batzuk\",ss:\"%d segundo\",m:\"minutu bat\",mm:\"%d minutu\",h:\"ordu bat\",hh:\"%d ordu\",d:\"egun bat\",dd:\"%d egun\",M:\"hilabete bat\",MM:\"%d hilabete\",y:\"urte bat\",yy:\"%d urte\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},6959:function(e,t,n){!function(e){\"use strict\";var t={1:\"۱\",2:\"۲\",3:\"۳\",4:\"۴\",5:\"۵\",6:\"۶\",7:\"۷\",8:\"۸\",9:\"۹\",0:\"۰\"},n={\"۱\":\"1\",\"۲\":\"2\",\"۳\":\"3\",\"۴\":\"4\",\"۵\":\"5\",\"۶\":\"6\",\"۷\":\"7\",\"۸\":\"8\",\"۹\":\"9\",\"۰\":\"0\"};e.defineLocale(\"fa\",{months:\"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر\".split(\"_\"),monthsShort:\"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر\".split(\"_\"),weekdays:\"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه\".split(\"_\"),weekdaysShort:\"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه\".split(\"_\"),weekdaysMin:\"ی_د_س_چ_پ_ج_ش\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,t,n){return e<12?\"قبل از ظهر\":\"بعد از ظهر\"},calendar:{sameDay:\"[امروز ساعت] LT\",nextDay:\"[فردا ساعت] LT\",nextWeek:\"dddd [ساعت] LT\",lastDay:\"[دیروز ساعت] LT\",lastWeek:\"dddd [پیش] [ساعت] LT\",sameElse:\"L\"},relativeTime:{future:\"در %s\",past:\"%s پیش\",s:\"چند ثانیه\",ss:\"%d ثانیه\",m:\"یک دقیقه\",mm:\"%d دقیقه\",h:\"یک ساعت\",hh:\"%d ساعت\",d:\"یک روز\",dd:\"%d روز\",M:\"یک ماه\",MM:\"%d ماه\",y:\"یک سال\",yy:\"%d سال\"},preparse:function(e){return e.replace(/[۰-۹]/g,(function(e){return n[e]})).replace(/،/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"،\")},dayOfMonthOrdinalParse:/\\d{1,2}م/,ordinal:\"%dم\",week:{dow:6,doy:12}})}(n(381))},1897:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"neljän\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function i(e,t,n,i){var a=\"\";switch(n){case\"s\":return i?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":a=i?\"sekunnin\":\"sekuntia\";break;case\"m\":return i?\"minuutin\":\"minuutti\";case\"mm\":a=i?\"minuutin\":\"minuuttia\";break;case\"h\":return i?\"tunnin\":\"tunti\";case\"hh\":a=i?\"tunnin\":\"tuntia\";break;case\"d\":return i?\"päivän\":\"päivä\";case\"dd\":a=i?\"päivän\":\"päivää\";break;case\"M\":return i?\"kuukauden\":\"kuukausi\";case\"MM\":a=i?\"kuukauden\":\"kuukautta\";break;case\"y\":return i?\"vuoden\":\"vuosi\";case\"yy\":a=i?\"vuoden\":\"vuotta\"}return a=s(e,i)+\" \"+a}function s(e,i){return e<10?i?n[e]:t[e]:e}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[tänään] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s päästä\",past:\"%s sitten\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},2549:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fil\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(381))},4694:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fo\",{months:\"januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur\".split(\"_\"),weekdaysShort:\"sun_mán_týs_mik_hós_frí_ley\".split(\"_\"),weekdaysMin:\"su_má_tý_mi_hó_fr_le\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D. MMMM, YYYY HH:mm\"},calendar:{sameDay:\"[Í dag kl.] LT\",nextDay:\"[Í morgin kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[Í gjár kl.] LT\",lastWeek:\"[síðstu] dddd [kl] LT\",sameElse:\"L\"},relativeTime:{future:\"um %s\",past:\"%s síðani\",s:\"fá sekund\",ss:\"%d sekundir\",m:\"ein minuttur\",mm:\"%d minuttir\",h:\"ein tími\",hh:\"%d tímar\",d:\"ein dagur\",dd:\"%d dagar\",M:\"ein mánaður\",MM:\"%d mánaðir\",y:\"eitt ár\",yy:\"%d ár\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},3049:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre\".split(\"_\"),monthsShort:\"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd’hui à] LT\",nextDay:\"[Demain à] LT\",nextWeek:\"dddd [à] LT\",lastDay:\"[Hier à] LT\",lastWeek:\"dddd [dernier à] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(381))},2330:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre\".split(\"_\"),monthsShort:\"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd’hui à] LT\",nextDay:\"[Demain à] LT\",nextWeek:\"dddd [à] LT\",lastDay:\"[Hier à] LT\",lastWeek:\"dddd [dernier à] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(381))},4470:function(e,t,n){!function(e){\"use strict\";var t=/^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,n=/(janv\\.?|févr\\.?|mars|avr\\.?|mai|juin|juil\\.?|août|sept\\.?|oct\\.?|nov\\.?|déc\\.?)/i,i=/(janv\\.?|févr\\.?|mars|avr\\.?|mai|juin|juil\\.?|août|sept\\.?|oct\\.?|nov\\.?|déc\\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,s=[/^janv/i,/^févr/i,/^mars/i,/^avr/i,/^mai/i,/^juin/i,/^juil/i,/^août/i,/^sept/i,/^oct/i,/^nov/i,/^déc/i];e.defineLocale(\"fr\",{months:\"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre\".split(\"_\"),monthsShort:\"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.\".split(\"_\"),monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:t,monthsShortStrictRegex:n,monthsParse:s,longMonthsParse:s,shortMonthsParse:s,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd’hui à] LT\",nextDay:\"[Demain à] LT\",nextWeek:\"dddd [à] LT\",lastDay:\"[Hier à] LT\",lastWeek:\"dddd [dernier à] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",w:\"une semaine\",ww:\"%d semaines\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(381))},5044:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[ôfrûne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien minút\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(381))},9295:function(e,t,n){!function(e){\"use strict\";var t=[\"Eanáir\",\"Feabhra\",\"Márta\",\"Aibreán\",\"Bealtaine\",\"Meitheamh\",\"Iúil\",\"Lúnasa\",\"Meán Fómhair\",\"Deireadh Fómhair\",\"Samhain\",\"Nollaig\"],n=[\"Ean\",\"Feabh\",\"Márt\",\"Aib\",\"Beal\",\"Meith\",\"Iúil\",\"Lún\",\"M.F.\",\"D.F.\",\"Samh\",\"Noll\"],i=[\"Dé Domhnaigh\",\"Dé Luain\",\"Dé Máirt\",\"Dé Céadaoin\",\"Déardaoin\",\"Dé hAoine\",\"Dé Sathairn\"],s=[\"Domh\",\"Luan\",\"Máirt\",\"Céad\",\"Déar\",\"Aoine\",\"Sath\"],a=[\"Do\",\"Lu\",\"Má\",\"Cé\",\"Dé\",\"A\",\"Sa\"];e.defineLocale(\"ga\",{months:t,monthsShort:n,monthsParseExact:!0,weekdays:i,weekdaysShort:s,weekdaysMin:a,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Amárach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inné ag] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s ó shin\",s:\"cúpla soicind\",ss:\"%d soicind\",m:\"nóiméad\",mm:\"%d nóiméad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"lá\",dd:\"%d lá\",M:\"mí\",MM:\"%d míonna\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(381))},2101:function(e,t,n){!function(e){\"use strict\";var t=[\"Am Faoilleach\",\"An Gearran\",\"Am Màrt\",\"An Giblean\",\"An Cèitean\",\"An t-Ògmhios\",\"An t-Iuchar\",\"An Lùnastal\",\"An t-Sultain\",\"An Dàmhair\",\"An t-Samhain\",\"An Dùbhlachd\"],n=[\"Faoi\",\"Gear\",\"Màrt\",\"Gibl\",\"Cèit\",\"Ògmh\",\"Iuch\",\"Lùn\",\"Sult\",\"Dàmh\",\"Samh\",\"Dùbh\"],i=[\"Didòmhnaich\",\"Diluain\",\"Dimàirt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],s=[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],a=[\"Dò\",\"Lu\",\"Mà\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"];e.defineLocale(\"gd\",{months:t,monthsShort:n,monthsParseExact:!0,weekdays:i,weekdaysShort:s,weekdaysMin:a,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-màireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-dè aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"mìos\",MM:\"%d mìosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(381))},8794:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_mércores_xoves_venres_sábado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mér._xov._ven._sáb.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mé_xo_ve_sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"ás\":\"á\")+\"] LT\"},nextDay:function(){return\"[mañá \"+(1!==this.hours()?\"ás\":\"á\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"ás\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"á\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"ás\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un día\",dd:\"%d días\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},7884:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"थोडया सॅकंडांनी\",\"थोडे सॅकंड\"],ss:[e+\" सॅकंडांनी\",e+\" सॅकंड\"],m:[\"एका मिणटान\",\"एक मिनूट\"],mm:[e+\" मिणटांनी\",e+\" मिणटां\"],h:[\"एका वरान\",\"एक वर\"],hh:[e+\" वरांनी\",e+\" वरां\"],d:[\"एका दिसान\",\"एक दीस\"],dd:[e+\" दिसांनी\",e+\" दीस\"],M:[\"एका म्हयन्यान\",\"एक म्हयनो\"],MM:[e+\" म्हयन्यानी\",e+\" म्हयने\"],y:[\"एका वर्सान\",\"एक वर्स\"],yy:[e+\" वर्सांनी\",e+\" वर्सां\"]};return i?s[n][0]:s[n][1]}e.defineLocale(\"gom-deva\",{months:{standalone:\"जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर\".split(\"_\"),format:\"जानेवारीच्या_फेब्रुवारीच्या_मार्चाच्या_एप्रीलाच्या_मेयाच्या_जूनाच्या_जुलयाच्या_ऑगस्टाच्या_सप्टेंबराच्या_ऑक्टोबराच्या_नोव्हेंबराच्या_डिसेंबराच्या\".split(\"_\"),isFormat:/MMMM(\\s)+D[oD]?/},monthsShort:\"जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.\".split(\"_\"),monthsParseExact:!0,weekdays:\"आयतार_सोमार_मंगळार_बुधवार_बिरेस्तार_सुक्रार_शेनवार\".split(\"_\"),weekdaysShort:\"आयत._सोम._मंगळ._बुध._ब्रेस्त._सुक्र._शेन.\".split(\"_\"),weekdaysMin:\"आ_सो_मं_बु_ब्रे_सु_शे\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A h:mm [वाजतां]\",LTS:\"A h:mm:ss [वाजतां]\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY A h:mm [वाजतां]\",LLLL:\"dddd, MMMM Do, YYYY, A h:mm [वाजतां]\",llll:\"ddd, D MMM YYYY, A h:mm [वाजतां]\"},calendar:{sameDay:\"[आयज] LT\",nextDay:\"[फाल्यां] LT\",nextWeek:\"[फुडलो] dddd[,] LT\",lastDay:\"[काल] LT\",lastWeek:\"[फाटलो] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\",past:\"%s आदीं\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}(वेर)/,ordinal:function(e,t){switch(t){case\"D\":return e+\"वेर\";default:case\"M\":case\"Q\":case\"DDD\":case\"d\":case\"w\":case\"W\":return e}},week:{dow:0,doy:3},meridiemParse:/राती|सकाळीं|दनपारां|सांजे/,meridiemHour:function(e,t){return 12===e&&(e=0),\"राती\"===t?e<4?e:e+12:\"सकाळीं\"===t?e:\"दनपारां\"===t?e>12?e:e+12:\"सांजे\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"राती\":e<12?\"सकाळीं\":e<16?\"दनपारां\":e<20?\"सांजे\":\"राती\"}})}(n(381))},3168:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"thoddea sekondamni\",\"thodde sekond\"],ss:[e+\" sekondamni\",e+\" sekond\"],m:[\"eka mintan\",\"ek minut\"],mm:[e+\" mintamni\",e+\" mintam\"],h:[\"eka voran\",\"ek vor\"],hh:[e+\" voramni\",e+\" voram\"],d:[\"eka disan\",\"ek dis\"],dd:[e+\" disamni\",e+\" dis\"],M:[\"eka mhoinean\",\"ek mhoino\"],MM:[e+\" mhoineamni\",e+\" mhoine\"],y:[\"eka vorsan\",\"ek voros\"],yy:[e+\" vorsamni\",e+\" vorsam\"]};return i?s[n][0]:s[n][1]}e.defineLocale(\"gom-latn\",{months:{standalone:\"Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr\".split(\"_\"),format:\"Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea\".split(\"_\"),isFormat:/MMMM(\\s)+D[oD]?/},monthsShort:\"Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var\".split(\"_\"),weekdaysShort:\"Ait._Som._Mon._Bud._Bre._Suk._Son.\".split(\"_\"),weekdaysMin:\"Ai_Sm_Mo_Bu_Br_Su_Sn\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A h:mm [vazta]\",LTS:\"A h:mm:ss [vazta]\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY A h:mm [vazta]\",LLLL:\"dddd, MMMM Do, YYYY, A h:mm [vazta]\",llll:\"ddd, D MMM YYYY, A h:mm [vazta]\"},calendar:{sameDay:\"[Aiz] LT\",nextDay:\"[Faleam] LT\",nextWeek:\"[Fuddlo] dddd[,] LT\",lastDay:\"[Kal] LT\",lastWeek:\"[Fattlo] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\",past:\"%s adim\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}(er)/,ordinal:function(e,t){switch(t){case\"D\":return e+\"er\";default:case\"M\":case\"Q\":case\"DDD\":case\"d\":case\"w\":case\"W\":return e}},week:{dow:0,doy:3},meridiemParse:/rati|sokallim|donparam|sanje/,meridiemHour:function(e,t){return 12===e&&(e=0),\"rati\"===t?e<4?e:e+12:\"sokallim\"===t?e:\"donparam\"===t?e>12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokallim\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(381))},5349:function(e,t,n){!function(e){\"use strict\";var t={1:\"૧\",2:\"૨\",3:\"૩\",4:\"૪\",5:\"૫\",6:\"૬\",7:\"૭\",8:\"૮\",9:\"૯\",0:\"૦\"},n={\"૧\":\"1\",\"૨\":\"2\",\"૩\":\"3\",\"૪\":\"4\",\"૫\":\"5\",\"૬\":\"6\",\"૭\":\"7\",\"૮\":\"8\",\"૯\":\"9\",\"૦\":\"0\"};e.defineLocale(\"gu\",{months:\"જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર\".split(\"_\"),monthsShort:\"જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.\".split(\"_\"),monthsParseExact:!0,weekdays:\"રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર\".split(\"_\"),weekdaysShort:\"રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ\".split(\"_\"),weekdaysMin:\"ર_સો_મં_બુ_ગુ_શુ_શ\".split(\"_\"),longDateFormat:{LT:\"A h:mm વાગ્યે\",LTS:\"A h:mm:ss વાગ્યે\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm વાગ્યે\",LLLL:\"dddd, D MMMM YYYY, A h:mm વાગ્યે\"},calendar:{sameDay:\"[આજ] LT\",nextDay:\"[કાલે] LT\",nextWeek:\"dddd, LT\",lastDay:\"[ગઇકાલે] LT\",lastWeek:\"[પાછલા] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s મા\",past:\"%s પહેલા\",s:\"અમુક પળો\",ss:\"%d સેકંડ\",m:\"એક મિનિટ\",mm:\"%d મિનિટ\",h:\"એક કલાક\",hh:\"%d કલાક\",d:\"એક દિવસ\",dd:\"%d દિવસ\",M:\"એક મહિનો\",MM:\"%d મહિનો\",y:\"એક વર્ષ\",yy:\"%d વર્ષ\"},preparse:function(e){return e.replace(/[૧૨૩૪૫૬૭૮૯૦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/રાત|બપોર|સવાર|સાંજ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"રાત\"===t?e<4?e:e+12:\"સવાર\"===t?e:\"બપોર\"===t?e>=10?e:e+12:\"સાંજ\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"રાત\":e<10?\"સવાર\":e<17?\"બપોર\":e<20?\"સાંજ\":\"રાત\"},week:{dow:0,doy:6}})}(n(381))},4206:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר\".split(\"_\"),monthsShort:\"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳\".split(\"_\"),weekdays:\"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת\".split(\"_\"),weekdaysShort:\"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳\".split(\"_\"),weekdaysMin:\"א_ב_ג_ד_ה_ו_ש\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [ב]MMMM YYYY\",LLL:\"D [ב]MMMM YYYY HH:mm\",LLLL:\"dddd, D [ב]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[היום ב־]LT\",nextDay:\"[מחר ב־]LT\",nextWeek:\"dddd [בשעה] LT\",lastDay:\"[אתמול ב־]LT\",lastWeek:\"[ביום] dddd [האחרון בשעה] LT\",sameElse:\"L\"},relativeTime:{future:\"בעוד %s\",past:\"לפני %s\",s:\"מספר שניות\",ss:\"%d שניות\",m:\"דקה\",mm:\"%d דקות\",h:\"שעה\",hh:function(e){return 2===e?\"שעתיים\":e+\" שעות\"},d:\"יום\",dd:function(e){return 2===e?\"יומיים\":e+\" ימים\"},M:\"חודש\",MM:function(e){return 2===e?\"חודשיים\":e+\" חודשים\"},y:\"שנה\",yy:function(e){return 2===e?\"שנתיים\":e%10==0&&10!==e?e+\" שנה\":e+\" שנים\"}},meridiemParse:/אחה\"צ|לפנה\"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(אחה\"צ|אחרי הצהריים|בערב)$/.test(e)},meridiem:function(e,t,n){return e<5?\"לפנות בוקר\":e<10?\"בבוקר\":e<12?n?'לפנה\"צ':\"לפני הצהריים\":e<18?n?'אחה\"צ':\"אחרי הצהריים\":\"בערב\"}})}(n(381))},94:function(e,t,n){!function(e){\"use strict\";var t={1:\"१\",2:\"२\",3:\"३\",4:\"४\",5:\"५\",6:\"६\",7:\"७\",8:\"८\",9:\"९\",0:\"०\"},n={\"१\":\"1\",\"२\":\"2\",\"३\":\"3\",\"४\":\"4\",\"५\":\"5\",\"६\":\"6\",\"७\":\"7\",\"८\":\"8\",\"९\":\"9\",\"०\":\"0\"},i=[/^जन/i,/^फ़र|फर/i,/^मार्च/i,/^अप्रै/i,/^मई/i,/^जून/i,/^जुल/i,/^अग/i,/^सितं|सित/i,/^अक्टू/i,/^नव|नवं/i,/^दिसं|दिस/i],s=[/^जन/i,/^फ़र/i,/^मार्च/i,/^अप्रै/i,/^मई/i,/^जून/i,/^जुल/i,/^अग/i,/^सित/i,/^अक्टू/i,/^नव/i,/^दिस/i];e.defineLocale(\"hi\",{months:{format:\"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर\".split(\"_\"),standalone:\"जनवरी_फरवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितंबर_अक्टूबर_नवंबर_दिसंबर\".split(\"_\")},monthsShort:\"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.\".split(\"_\"),weekdays:\"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार\".split(\"_\"),weekdaysShort:\"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि\".split(\"_\"),weekdaysMin:\"र_सो_मं_बु_गु_शु_श\".split(\"_\"),longDateFormat:{LT:\"A h:mm बजे\",LTS:\"A h:mm:ss बजे\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm बजे\",LLLL:\"dddd, D MMMM YYYY, A h:mm बजे\"},monthsParse:i,longMonthsParse:i,shortMonthsParse:s,monthsRegex:/^(जनवरी|जन\\.?|फ़रवरी|फरवरी|फ़र\\.?|मार्च?|अप्रैल|अप्रै\\.?|मई?|जून?|जुलाई|जुल\\.?|अगस्त|अग\\.?|सितम्बर|सितंबर|सित\\.?|अक्टूबर|अक्टू\\.?|नवम्बर|नवंबर|नव\\.?|दिसम्बर|दिसंबर|दिस\\.?)/i,monthsShortRegex:/^(जनवरी|जन\\.?|फ़रवरी|फरवरी|फ़र\\.?|मार्च?|अप्रैल|अप्रै\\.?|मई?|जून?|जुलाई|जुल\\.?|अगस्त|अग\\.?|सितम्बर|सितंबर|सित\\.?|अक्टूबर|अक्टू\\.?|नवम्बर|नवंबर|नव\\.?|दिसम्बर|दिसंबर|दिस\\.?)/i,monthsStrictRegex:/^(जनवरी?|फ़रवरी|फरवरी?|मार्च?|अप्रैल?|मई?|जून?|जुलाई?|अगस्त?|सितम्बर|सितंबर|सित?\\.?|अक्टूबर|अक्टू\\.?|नवम्बर|नवंबर?|दिसम्बर|दिसंबर?)/i,monthsShortStrictRegex:/^(जन\\.?|फ़र\\.?|मार्च?|अप्रै\\.?|मई?|जून?|जुल\\.?|अग\\.?|सित\\.?|अक्टू\\.?|नव\\.?|दिस\\.?)/i,calendar:{sameDay:\"[आज] LT\",nextDay:\"[कल] LT\",nextWeek:\"dddd, LT\",lastDay:\"[कल] LT\",lastWeek:\"[पिछले] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s में\",past:\"%s पहले\",s:\"कुछ ही क्षण\",ss:\"%d सेकंड\",m:\"एक मिनट\",mm:\"%d मिनट\",h:\"एक घंटा\",hh:\"%d घंटे\",d:\"एक दिन\",dd:\"%d दिन\",M:\"एक महीने\",MM:\"%d महीने\",y:\"एक वर्ष\",yy:\"%d वर्ष\"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,t){return 12===e&&(e=0),\"रात\"===t?e<4?e:e+12:\"सुबह\"===t?e:\"दोपहर\"===t?e>=10?e:e+12:\"शाम\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"रात\":e<10?\"सुबह\":e<17?\"दोपहर\":e<20?\"शाम\":\"रात\"},week:{dow:0,doy:6}})}(n(381))},316:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+=1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\";case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+=1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\";case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+=1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\";case\"dd\":return i+=1===e?\"dan\":\"dana\";case\"MM\":return i+=1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\";case\"yy\":return i+=1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\"}}e.defineLocale(\"hr\",{months:{format:\"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._čet._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_če_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM YYYY\",LLL:\"Do MMMM YYYY H:mm\",LLLL:\"dddd, Do MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[jučer u] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prošlu] [nedjelju] [u] LT\";case 3:return\"[prošlu] [srijedu] [u] LT\";case 6:return\"[prošle] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[prošli] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},2138:function(e,t,n){!function(e){\"use strict\";var t=\"vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton\".split(\" \");function n(e,t,n,i){var s=e;switch(n){case\"s\":return i||t?\"néhány másodperc\":\"néhány másodperce\";case\"ss\":return s+(i||t)?\" másodperc\":\" másodperce\";case\"m\":return\"egy\"+(i||t?\" perc\":\" perce\");case\"mm\":return s+(i||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(i||t?\" óra\":\" órája\");case\"hh\":return s+(i||t?\" óra\":\" órája\");case\"d\":return\"egy\"+(i||t?\" nap\":\" napja\");case\"dd\":return s+(i||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(i||t?\" hónap\":\" hónapja\");case\"MM\":return s+(i||t?\" hónap\":\" hónapja\");case\"y\":return\"egy\"+(i||t?\" év\":\" éve\");case\"yy\":return s+(i||t?\" év\":\" éve\")}return\"\"}function i(e){return(e?\"\":\"[múlt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december\".split(\"_\"),monthsShort:\"jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat\".split(\"_\"),weekdaysShort:\"vas_hét_kedd_sze_csüt_pén_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return i.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return i.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s múlva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},1423:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի\".split(\"_\"),standalone:\"հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր\".split(\"_\")},monthsShort:\"հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ\".split(\"_\"),weekdays:\"կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ\".split(\"_\"),weekdaysShort:\"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ\".split(\"_\"),weekdaysMin:\"կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY թ.\",LLL:\"D MMMM YYYY թ., HH:mm\",LLLL:\"dddd, D MMMM YYYY թ., HH:mm\"},calendar:{sameDay:\"[այսօր] LT\",nextDay:\"[վաղը] LT\",lastDay:\"[երեկ] LT\",nextWeek:function(){return\"dddd [օրը ժամը] LT\"},lastWeek:function(){return\"[անցած] dddd [օրը ժամը] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s հետո\",past:\"%s առաջ\",s:\"մի քանի վայրկյան\",ss:\"%d վայրկյան\",m:\"րոպե\",mm:\"%d րոպե\",h:\"ժամ\",hh:\"%d ժամ\",d:\"օր\",dd:\"%d օր\",M:\"ամիս\",MM:\"%d ամիս\",y:\"տարի\",yy:\"%d տարի\"},meridiemParse:/գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,isPM:function(e){return/^(ցերեկվա|երեկոյան)$/.test(e)},meridiem:function(e){return e<4?\"գիշերվա\":e<12?\"առավոտվա\":e<17?\"ցերեկվա\":\"երեկոյան\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(ին|րդ)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-ին\":e+\"-րդ\";default:return e}},week:{dow:1,doy:7}})}(n(381))},9218:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:0,doy:6}})}(n(381))},135:function(e,t,n){!function(e){\"use strict\";function t(e){return e%100==11||e%10!=1}function n(e,n,i,s){var a=e+\" \";switch(i){case\"s\":return n||s?\"nokkrar sekúndur\":\"nokkrum sekúndum\";case\"ss\":return t(e)?a+(n||s?\"sekúndur\":\"sekúndum\"):a+\"sekúnda\";case\"m\":return n?\"mínúta\":\"mínútu\";case\"mm\":return t(e)?a+(n||s?\"mínútur\":\"mínútum\"):n?a+\"mínúta\":a+\"mínútu\";case\"hh\":return t(e)?a+(n||s?\"klukkustundir\":\"klukkustundum\"):a+\"klukkustund\";case\"d\":return n?\"dagur\":s?\"dag\":\"degi\";case\"dd\":return t(e)?n?a+\"dagar\":a+(s?\"daga\":\"dögum\"):n?a+\"dagur\":a+(s?\"dag\":\"degi\");case\"M\":return n?\"mánuður\":s?\"mánuð\":\"mánuði\";case\"MM\":return t(e)?n?a+\"mánuðir\":a+(s?\"mánuði\":\"mánuðum\"):n?a+\"mánuður\":a+(s?\"mánuð\":\"mánuði\");case\"y\":return n||s?\"ár\":\"ári\";case\"yy\":return t(e)?a+(n||s?\"ár\":\"árum\"):a+(n||s?\"ár\":\"ári\")}}e.defineLocale(\"is\",{months:\"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des\".split(\"_\"),weekdays:\"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur\".split(\"_\"),weekdaysShort:\"sun_mán_þri_mið_fim_fös_lau\".split(\"_\"),weekdaysMin:\"Su_Má_Þr_Mi_Fi_Fö_La\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd, D. MMMM YYYY [kl.] H:mm\"},calendar:{sameDay:\"[í dag kl.] LT\",nextDay:\"[á morgun kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[í gær kl.] LT\",lastWeek:\"[síðasta] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"eftir %s\",past:\"fyrir %s síðan\",s:n,ss:n,m:n,mm:n,h:\"klukkustund\",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},150:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},626:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:function(){return\"[Oggi a\"+(this.hours()>1?\"lle \":0===this.hours()?\" \":\"ll'\")+\"]LT\"},nextDay:function(){return\"[Domani a\"+(this.hours()>1?\"lle \":0===this.hours()?\" \":\"ll'\")+\"]LT\"},nextWeek:function(){return\"dddd [a\"+(this.hours()>1?\"lle \":0===this.hours()?\" \":\"ll'\")+\"]LT\"},lastDay:function(){return\"[Ieri a\"+(this.hours()>1?\"lle \":0===this.hours()?\" \":\"ll'\")+\"]LT\"},lastWeek:function(){switch(this.day()){case 0:return\"[La scorsa] dddd [a\"+(this.hours()>1?\"lle \":0===this.hours()?\" \":\"ll'\")+\"]LT\";default:return\"[Lo scorso] dddd [a\"+(this.hours()>1?\"lle \":0===this.hours()?\" \":\"ll'\")+\"]LT\"}},sameElse:\"L\"},relativeTime:{future:\"tra %s\",past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",w:\"una settimana\",ww:\"%d settimane\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},9183:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{eras:[{since:\"2019-05-01\",offset:1,name:\"令和\",narrow:\"㋿\",abbr:\"R\"},{since:\"1989-01-08\",until:\"2019-04-30\",offset:1,name:\"平成\",narrow:\"㍻\",abbr:\"H\"},{since:\"1926-12-25\",until:\"1989-01-07\",offset:1,name:\"昭和\",narrow:\"㍼\",abbr:\"S\"},{since:\"1912-07-30\",until:\"1926-12-24\",offset:1,name:\"大正\",narrow:\"㍽\",abbr:\"T\"},{since:\"1873-01-01\",until:\"1912-07-29\",offset:6,name:\"明治\",narrow:\"㍾\",abbr:\"M\"},{since:\"0001-01-01\",until:\"1873-12-31\",offset:1,name:\"西暦\",narrow:\"AD\",abbr:\"AD\"},{since:\"0000-12-31\",until:-1/0,offset:1,name:\"紀元前\",narrow:\"BC\",abbr:\"BC\"}],eraYearOrdinalRegex:/(元|\\d+)年/,eraYearOrdinalParse:function(e,t){return\"元\"===t[1]?1:parseInt(t[1]||e,10)},months:\"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月\".split(\"_\"),monthsShort:\"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月\".split(\"_\"),weekdays:\"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日\".split(\"_\"),weekdaysShort:\"日_月_火_水_木_金_土\".split(\"_\"),weekdaysMin:\"日_月_火_水_木_金_土\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY年M月D日\",LLL:\"YYYY年M月D日 HH:mm\",LLLL:\"YYYY年M月D日 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY年M月D日\",lll:\"YYYY年M月D日 HH:mm\",llll:\"YYYY年M月D日(ddd) HH:mm\"},meridiemParse:/午前|午後/i,isPM:function(e){return\"午後\"===e},meridiem:function(e,t,n){return e<12?\"午前\":\"午後\"},calendar:{sameDay:\"[今日] LT\",nextDay:\"[明日] LT\",nextWeek:function(e){return e.week()!==this.week()?\"[来週]dddd LT\":\"dddd LT\"},lastDay:\"[昨日] LT\",lastWeek:function(e){return this.week()!==e.week()?\"[先週]dddd LT\":\"dddd LT\"},sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}日/,ordinal:function(e,t){switch(t){case\"y\":return 1===e?\"元年\":e+\"年\";case\"d\":case\"D\":case\"DDD\":return e+\"日\";default:return e}},relativeTime:{future:\"%s後\",past:\"%s前\",s:\"数秒\",ss:\"%d秒\",m:\"1分\",mm:\"%d分\",h:\"1時間\",hh:\"%d時間\",d:\"1日\",dd:\"%d日\",M:\"1ヶ月\",MM:\"%dヶ月\",y:\"1年\",yy:\"%d年\"}})}(n(381))},4286:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(381))},2105:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:\"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი\".split(\"_\"),monthsShort:\"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ\".split(\"_\"),weekdays:{standalone:\"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი\".split(\"_\"),format:\"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს\".split(\"_\"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:\"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ\".split(\"_\"),weekdaysMin:\"კვ_ორ_სა_ოთ_ხუ_პა_შა\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[დღეს] LT[-ზე]\",nextDay:\"[ხვალ] LT[-ზე]\",lastDay:\"[გუშინ] LT[-ზე]\",nextWeek:\"[შემდეგ] dddd LT[-ზე]\",lastWeek:\"[წინა] dddd LT-ზე\",sameElse:\"L\"},relativeTime:{future:function(e){return e.replace(/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/,(function(e,t,n){return\"ი\"===n?t+\"ში\":t+n+\"ში\"}))},past:function(e){return/(წამი|წუთი|საათი|დღე|თვე)/.test(e)?e.replace(/(ი|ე)$/,\"ის წინ\"):/წელი/.test(e)?e.replace(/წელი$/,\"წლის წინ\"):e},s:\"რამდენიმე წამი\",ss:\"%d წამი\",m:\"წუთი\",mm:\"%d წუთი\",h:\"საათი\",hh:\"%d საათი\",d:\"დღე\",dd:\"%d დღე\",M:\"თვე\",MM:\"%d თვე\",y:\"წელი\",yy:\"%d წელი\"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\\d{1,2}|\\d{1,2}-ე/,ordinal:function(e){return 0===e?e:1===e?e+\"-ლი\":e<20||e<=100&&e%20==0||e%100==0?\"მე-\"+e:e+\"-ე\"},week:{dow:1,doy:7}})}(n(381))},7772:function(e,t,n){!function(e){\"use strict\";var t={0:\"-ші\",1:\"-ші\",2:\"-ші\",3:\"-ші\",4:\"-ші\",5:\"-ші\",6:\"-шы\",7:\"-ші\",8:\"-ші\",9:\"-шы\",10:\"-шы\",20:\"-шы\",30:\"-шы\",40:\"-шы\",50:\"-ші\",60:\"-шы\",70:\"-ші\",80:\"-ші\",90:\"-шы\",100:\"-ші\"};e.defineLocale(\"kk\",{months:\"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан\".split(\"_\"),monthsShort:\"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел\".split(\"_\"),weekdays:\"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі\".split(\"_\"),weekdaysShort:\"жек_дүй_сей_сәр_бей_жұм_сен\".split(\"_\"),weekdaysMin:\"жк_дй_сй_ср_бй_жм_сн\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Бүгін сағат] LT\",nextDay:\"[Ертең сағат] LT\",nextWeek:\"dddd [сағат] LT\",lastDay:\"[Кеше сағат] LT\",lastWeek:\"[Өткен аптаның] dddd [сағат] LT\",sameElse:\"L\"},relativeTime:{future:\"%s ішінде\",past:\"%s бұрын\",s:\"бірнеше секунд\",ss:\"%d секунд\",m:\"бір минут\",mm:\"%d минут\",h:\"бір сағат\",hh:\"%d сағат\",d:\"бір күн\",dd:\"%d күн\",M:\"бір ай\",MM:\"%d ай\",y:\"бір жыл\",yy:\"%d жыл\"},dayOfMonthOrdinalParse:/\\d{1,2}-(ші|шы)/,ordinal:function(e){var n=e%10,i=e>=100?100:null;return e+(t[e]||t[n]||t[i])},week:{dow:1,doy:7}})}(n(381))},8758:function(e,t,n){!function(e){\"use strict\";var t={1:\"១\",2:\"២\",3:\"៣\",4:\"៤\",5:\"៥\",6:\"៦\",7:\"៧\",8:\"៨\",9:\"៩\",0:\"០\"},n={\"១\":\"1\",\"២\":\"2\",\"៣\":\"3\",\"៤\":\"4\",\"៥\":\"5\",\"៦\":\"6\",\"៧\":\"7\",\"៨\":\"8\",\"៩\":\"9\",\"០\":\"0\"};e.defineLocale(\"km\",{months:\"មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ\".split(\"_\"),monthsShort:\"មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ\".split(\"_\"),weekdays:\"អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍\".split(\"_\"),weekdaysShort:\"អា_ច_អ_ព_ព្រ_សុ_ស\".split(\"_\"),weekdaysMin:\"អា_ច_អ_ព_ព្រ_សុ_ស\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/ព្រឹក|ល្ងាច/,isPM:function(e){return\"ល្ងាច\"===e},meridiem:function(e,t,n){return e<12?\"ព្រឹក\":\"ល្ងាច\"},calendar:{sameDay:\"[ថ្ងៃនេះ ម៉ោង] LT\",nextDay:\"[ស្អែក ម៉ោង] LT\",nextWeek:\"dddd [ម៉ោង] LT\",lastDay:\"[ម្សិលមិញ ម៉ោង] LT\",lastWeek:\"dddd [សប្តាហ៍មុន] [ម៉ោង] LT\",sameElse:\"L\"},relativeTime:{future:\"%sទៀត\",past:\"%sមុន\",s:\"ប៉ុន្មានវិនាទី\",ss:\"%d វិនាទី\",m:\"មួយនាទី\",mm:\"%d នាទី\",h:\"មួយម៉ោង\",hh:\"%d ម៉ោង\",d:\"មួយថ្ងៃ\",dd:\"%d ថ្ងៃ\",M:\"មួយខែ\",MM:\"%d ខែ\",y:\"មួយឆ្នាំ\",yy:\"%d ឆ្នាំ\"},dayOfMonthOrdinalParse:/ទី\\d{1,2}/,ordinal:\"ទី%d\",preparse:function(e){return e.replace(/[១២៣៤៥៦៧៨៩០]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(381))},9282:function(e,t,n){!function(e){\"use strict\";var t={1:\"೧\",2:\"೨\",3:\"೩\",4:\"೪\",5:\"೫\",6:\"೬\",7:\"೭\",8:\"೮\",9:\"೯\",0:\"೦\"},n={\"೧\":\"1\",\"೨\":\"2\",\"೩\":\"3\",\"೪\":\"4\",\"೫\":\"5\",\"೬\":\"6\",\"೭\":\"7\",\"೮\":\"8\",\"೯\":\"9\",\"೦\":\"0\"};e.defineLocale(\"kn\",{months:\"ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್\".split(\"_\"),monthsShort:\"ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ\".split(\"_\"),monthsParseExact:!0,weekdays:\"ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ\".split(\"_\"),weekdaysShort:\"ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ\".split(\"_\"),weekdaysMin:\"ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[ಇಂದು] LT\",nextDay:\"[ನಾಳೆ] LT\",nextWeek:\"dddd, LT\",lastDay:\"[ನಿನ್ನೆ] LT\",lastWeek:\"[ಕೊನೆಯ] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s ನಂತರ\",past:\"%s ಹಿಂದೆ\",s:\"ಕೆಲವು ಕ್ಷಣಗಳು\",ss:\"%d ಸೆಕೆಂಡುಗಳು\",m:\"ಒಂದು ನಿಮಿಷ\",mm:\"%d ನಿಮಿಷ\",h:\"ಒಂದು ಗಂಟೆ\",hh:\"%d ಗಂಟೆ\",d:\"ಒಂದು ದಿನ\",dd:\"%d ದಿನ\",M:\"ಒಂದು ತಿಂಗಳು\",MM:\"%d ತಿಂಗಳು\",y:\"ಒಂದು ವರ್ಷ\",yy:\"%d ವರ್ಷ\"},preparse:function(e){return e.replace(/[೧೨೩೪೫೬೭೮೯೦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"ರಾತ್ರಿ\"===t?e<4?e:e+12:\"ಬೆಳಿಗ್ಗೆ\"===t?e:\"ಮಧ್ಯಾಹ್ನ\"===t?e>=10?e:e+12:\"ಸಂಜೆ\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"ರಾತ್ರಿ\":e<10?\"ಬೆಳಿಗ್ಗೆ\":e<17?\"ಮಧ್ಯಾಹ್ನ\":e<20?\"ಸಂಜೆ\":\"ರಾತ್ರಿ\"},dayOfMonthOrdinalParse:/\\d{1,2}(ನೇ)/,ordinal:function(e){return e+\"ನೇ\"},week:{dow:0,doy:6}})}(n(381))},3730:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월\".split(\"_\"),monthsShort:\"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월\".split(\"_\"),weekdays:\"일요일_월요일_화요일_수요일_목요일_금요일_토요일\".split(\"_\"),weekdaysShort:\"일_월_화_수_목_금_토\".split(\"_\"),weekdaysMin:\"일_월_화_수_목_금_토\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY년 MMMM D일\",LLL:\"YYYY년 MMMM D일 A h:mm\",LLLL:\"YYYY년 MMMM D일 dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY년 MMMM D일\",lll:\"YYYY년 MMMM D일 A h:mm\",llll:\"YYYY년 MMMM D일 dddd A h:mm\"},calendar:{sameDay:\"오늘 LT\",nextDay:\"내일 LT\",nextWeek:\"dddd LT\",lastDay:\"어제 LT\",lastWeek:\"지난주 dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s 후\",past:\"%s 전\",s:\"몇 초\",ss:\"%d초\",m:\"1분\",mm:\"%d분\",h:\"한 시간\",hh:\"%d시간\",d:\"하루\",dd:\"%d일\",M:\"한 달\",MM:\"%d달\",y:\"일 년\",yy:\"%d년\"},dayOfMonthOrdinalParse:/\\d{1,2}(일|월|주)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"일\";case\"M\":return e+\"월\";case\"w\":case\"W\":return e+\"주\";default:return e}},meridiemParse:/오전|오후/,isPM:function(e){return\"오후\"===e},meridiem:function(e,t,n){return e<12?\"오전\":\"오후\"}})}(n(381))},1408:function(e,t,n){!function(e){\"use strict\";var t={1:\"١\",2:\"٢\",3:\"٣\",4:\"٤\",5:\"٥\",6:\"٦\",7:\"٧\",8:\"٨\",9:\"٩\",0:\"٠\"},n={\"١\":\"1\",\"٢\":\"2\",\"٣\":\"3\",\"٤\":\"4\",\"٥\":\"5\",\"٦\":\"6\",\"٧\":\"7\",\"٨\":\"8\",\"٩\":\"9\",\"٠\":\"0\"},i=[\"کانونی دووەم\",\"شوبات\",\"ئازار\",\"نیسان\",\"ئایار\",\"حوزەیران\",\"تەمموز\",\"ئاب\",\"ئەیلوول\",\"تشرینی یەكەم\",\"تشرینی دووەم\",\"كانونی یەکەم\"];e.defineLocale(\"ku\",{months:i,monthsShort:i,weekdays:\"یه‌كشه‌ممه‌_دووشه‌ممه‌_سێشه‌ممه‌_چوارشه‌ممه‌_پێنجشه‌ممه‌_هه‌ینی_شه‌ممه‌\".split(\"_\"),weekdaysShort:\"یه‌كشه‌م_دووشه‌م_سێشه‌م_چوارشه‌م_پێنجشه‌م_هه‌ینی_شه‌ممه‌\".split(\"_\"),weekdaysMin:\"ی_د_س_چ_پ_ه_ش\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/ئێواره‌|به‌یانی/,isPM:function(e){return/ئێواره‌/.test(e)},meridiem:function(e,t,n){return e<12?\"به‌یانی\":\"ئێواره‌\"},calendar:{sameDay:\"[ئه‌مرۆ كاتژمێر] LT\",nextDay:\"[به‌یانی كاتژمێر] LT\",nextWeek:\"dddd [كاتژمێر] LT\",lastDay:\"[دوێنێ كاتژمێر] LT\",lastWeek:\"dddd [كاتژمێر] LT\",sameElse:\"L\"},relativeTime:{future:\"له‌ %s\",past:\"%s\",s:\"چه‌ند چركه‌یه‌ك\",ss:\"چركه‌ %d\",m:\"یه‌ك خوله‌ك\",mm:\"%d خوله‌ك\",h:\"یه‌ك كاتژمێر\",hh:\"%d كاتژمێر\",d:\"یه‌ك ڕۆژ\",dd:\"%d ڕۆژ\",M:\"یه‌ك مانگ\",MM:\"%d مانگ\",y:\"یه‌ك ساڵ\",yy:\"%d ساڵ\"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,(function(e){return n[e]})).replace(/،/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"،\")},week:{dow:6,doy:12}})}(n(381))},3291:function(e,t,n){!function(e){\"use strict\";var t={0:\"-чү\",1:\"-чи\",2:\"-чи\",3:\"-чү\",4:\"-чү\",5:\"-чи\",6:\"-чы\",7:\"-чи\",8:\"-чи\",9:\"-чу\",10:\"-чу\",20:\"-чы\",30:\"-чу\",40:\"-чы\",50:\"-чү\",60:\"-чы\",70:\"-чи\",80:\"-чи\",90:\"-чу\",100:\"-чү\"};e.defineLocale(\"ky\",{months:\"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь\".split(\"_\"),monthsShort:\"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек\".split(\"_\"),weekdays:\"Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби\".split(\"_\"),weekdaysShort:\"Жек_Дүй_Шей_Шар_Бей_Жум_Ише\".split(\"_\"),weekdaysMin:\"Жк_Дй_Шй_Шр_Бй_Жм_Иш\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Бүгүн саат] LT\",nextDay:\"[Эртең саат] LT\",nextWeek:\"dddd [саат] LT\",lastDay:\"[Кечээ саат] LT\",lastWeek:\"[Өткөн аптанын] dddd [күнү] [саат] LT\",sameElse:\"L\"},relativeTime:{future:\"%s ичинде\",past:\"%s мурун\",s:\"бирнече секунд\",ss:\"%d секунд\",m:\"бир мүнөт\",mm:\"%d мүнөт\",h:\"бир саат\",hh:\"%d саат\",d:\"бир күн\",dd:\"%d күн\",M:\"бир ай\",MM:\"%d ай\",y:\"бир жыл\",yy:\"%d жыл\"},dayOfMonthOrdinalParse:/\\d{1,2}-(чи|чы|чү|чу)/,ordinal:function(e){var n=e%10,i=e>=100?100:null;return e+(t[e]||t[n]||t[i])},week:{dow:1,doy:7}})}(n(381))},6841:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?s[n][0]:s[n][1]}function n(e){return s(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e}function i(e){return s(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e}function s(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return s(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return s(e)}return s(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._Mé._Dë._Më._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mé_Dë_Më_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[Gëschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:n,past:i,s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d Méint\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},5466:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ\".split(\"_\"),monthsShort:\"ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ\".split(\"_\"),weekdays:\"ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ\".split(\"_\"),weekdaysShort:\"ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ\".split(\"_\"),weekdaysMin:\"ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"ວັນdddd D MMMM YYYY HH:mm\"},meridiemParse:/ຕອນເຊົ້າ|ຕອນແລງ/,isPM:function(e){return\"ຕອນແລງ\"===e},meridiem:function(e,t,n){return e<12?\"ຕອນເຊົ້າ\":\"ຕອນແລງ\"},calendar:{sameDay:\"[ມື້ນີ້ເວລາ] LT\",nextDay:\"[ມື້ອື່ນເວລາ] LT\",nextWeek:\"[ວັນ]dddd[ໜ້າເວລາ] LT\",lastDay:\"[ມື້ວານນີ້ເວລາ] LT\",lastWeek:\"[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT\",sameElse:\"L\"},relativeTime:{future:\"ອີກ %s\",past:\"%sຜ່ານມາ\",s:\"ບໍ່ເທົ່າໃດວິນາທີ\",ss:\"%d ວິນາທີ\",m:\"1 ນາທີ\",mm:\"%d ນາທີ\",h:\"1 ຊົ່ວໂມງ\",hh:\"%d ຊົ່ວໂມງ\",d:\"1 ມື້\",dd:\"%d ມື້\",M:\"1 ເດືອນ\",MM:\"%d ເດືອນ\",y:\"1 ປີ\",yy:\"%d ປີ\"},dayOfMonthOrdinalParse:/(ທີ່)\\d{1,2}/,ordinal:function(e){return\"ທີ່\"+e}})}(n(381))},7010:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundė_sekundžių_sekundes\",m:\"minutė_minutės_minutę\",mm:\"minutės_minučių_minutes\",h:\"valanda_valandos_valandą\",hh:\"valandos_valandų_valandas\",d:\"diena_dienos_dieną\",dd:\"dienos_dienų_dienas\",M:\"mėnuo_mėnesio_mėnesį\",MM:\"mėnesiai_mėnesių_mėnesius\",y:\"metai_metų_metus\",yy:\"metai_metų_metus\"};function n(e,t,n,i){return t?\"kelios sekundės\":i?\"kelių sekundžių\":\"kelias sekundes\"}function i(e,t,n,i){return t?a(n)[0]:i?a(n)[1]:a(n)[2]}function s(e){return e%10==0||e>10&&e<20}function a(e){return t[e].split(\"_\")}function r(e,t,n,r){var o=e+\" \";return 1===e?o+i(e,t,n[0],r):t?o+(s(e)?a(n)[1]:a(n)[0]):r?o+a(n)[1]:o+(s(e)?a(n)[1]:a(n)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_Šeš\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_Š\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[Šiandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Praėjusį] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prieš %s\",s:n,ss:r,m:i,mm:r,h:i,hh:r,d:i,dd:r,M:i,MM:r,y:i,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(381))},7595:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekundēm_sekunde_sekundes\".split(\"_\"),m:\"minūtes_minūtēm_minūte_minūtes\".split(\"_\"),mm:\"minūtes_minūtēm_minūte_minūtes\".split(\"_\"),h:\"stundas_stundām_stunda_stundas\".split(\"_\"),hh:\"stundas_stundām_stunda_stundas\".split(\"_\"),d:\"dienas_dienām_diena_dienas\".split(\"_\"),dd:\"dienas_dienām_diena_dienas\".split(\"_\"),M:\"mēneša_mēnešiem_mēnesis_mēneši\".split(\"_\"),MM:\"mēneša_mēnešiem_mēnesis_mēneši\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function i(e,i,s){return e+\" \"+n(t[s],e,i)}function s(e,i,s){return n(t[s],e,i)}function a(e,t){return t?\"dažas sekundes\":\"dažām sekundēm\"}e.defineLocale(\"lv\",{months:\"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[Šodien pulksten] LT\",nextDay:\"[Rīt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pagājušā] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"pēc %s\",past:\"pirms %s\",s:a,ss:i,m:s,mm:i,h:s,hh:i,d:s,dd:i,M:s,MM:i,y:s,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},9861:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._čet._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_če_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[juče u] LT\",lastWeek:function(){return[\"[prošle] [nedjelje] [u] LT\",\"[prošlog] [ponedjeljka] [u] LT\",\"[prošlog] [utorka] [u] LT\",\"[prošle] [srijede] [u] LT\",\"[prošlog] [četvrtka] [u] LT\",\"[prošlog] [petka] [u] LT\",\"[prošle] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},5493:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_Tū_We_Tāi_Pa_Hā\".split(\"_\"),weekdaysMin:\"Ta_Ma_Tū_We_Tāi_Pa_Hā\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te hēkona ruarua\",ss:\"%d hēkona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},5966:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември\".split(\"_\"),monthsShort:\"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек\".split(\"_\"),weekdays:\"недела_понеделник_вторник_среда_четврток_петок_сабота\".split(\"_\"),weekdaysShort:\"нед_пон_вто_сре_чет_пет_саб\".split(\"_\"),weekdaysMin:\"нe_пo_вт_ср_че_пе_сa\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[Денес во] LT\",nextDay:\"[Утре во] LT\",nextWeek:\"[Во] dddd [во] LT\",lastDay:\"[Вчера во] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[Изминатата] dddd [во] LT\";case 1:case 2:case 4:case 5:return\"[Изминатиот] dddd [во] LT\"}},sameElse:\"L\"},relativeTime:{future:\"за %s\",past:\"пред %s\",s:\"неколку секунди\",ss:\"%d секунди\",m:\"една минута\",mm:\"%d минути\",h:\"еден час\",hh:\"%d часа\",d:\"еден ден\",dd:\"%d дена\",M:\"еден месец\",MM:\"%d месеци\",y:\"една година\",yy:\"%d години\"},dayOfMonthOrdinalParse:/\\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-ев\":0===n?e+\"-ен\":n>10&&n<20?e+\"-ти\":1===t?e+\"-ви\":2===t?e+\"-ри\":7===t||8===t?e+\"-ми\":e+\"-ти\"},week:{dow:1,doy:7}})}(n(381))},7341:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ\".split(\"_\"),monthsShort:\"ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.\".split(\"_\"),monthsParseExact:!0,weekdays:\"ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച\".split(\"_\"),weekdaysShort:\"ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി\".split(\"_\"),weekdaysMin:\"ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ\".split(\"_\"),longDateFormat:{LT:\"A h:mm -നു\",LTS:\"A h:mm:ss -നു\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -നു\",LLLL:\"dddd, D MMMM YYYY, A h:mm -നു\"},calendar:{sameDay:\"[ഇന്ന്] LT\",nextDay:\"[നാളെ] LT\",nextWeek:\"dddd, LT\",lastDay:\"[ഇന്നലെ] LT\",lastWeek:\"[കഴിഞ്ഞ] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s കഴിഞ്ഞ്\",past:\"%s മുൻപ്\",s:\"അൽപ നിമിഷങ്ങൾ\",ss:\"%d സെക്കൻഡ്\",m:\"ഒരു മിനിറ്റ്\",mm:\"%d മിനിറ്റ്\",h:\"ഒരു മണിക്കൂർ\",hh:\"%d മണിക്കൂർ\",d:\"ഒരു ദിവസം\",dd:\"%d ദിവസം\",M:\"ഒരു മാസം\",MM:\"%d മാസം\",y:\"ഒരു വർഷം\",yy:\"%d വർഷം\"},meridiemParse:/രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"രാത്രി\"===t&&e>=4||\"ഉച്ച കഴിഞ്ഞ്\"===t||\"വൈകുന്നേരം\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"രാത്രി\":e<12?\"രാവിലെ\":e<17?\"ഉച്ച കഴിഞ്ഞ്\":e<20?\"വൈകുന്നേരം\":\"രാത്രി\"}})}(n(381))},5115:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){switch(n){case\"s\":return t?\"хэдхэн секунд\":\"хэдхэн секундын\";case\"ss\":return e+(t?\" секунд\":\" секундын\");case\"m\":case\"mm\":return e+(t?\" минут\":\" минутын\");case\"h\":case\"hh\":return e+(t?\" цаг\":\" цагийн\");case\"d\":case\"dd\":return e+(t?\" өдөр\":\" өдрийн\");case\"M\":case\"MM\":return e+(t?\" сар\":\" сарын\");case\"y\":case\"yy\":return e+(t?\" жил\":\" жилийн\");default:return e}}e.defineLocale(\"mn\",{months:\"Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар\".split(\"_\"),monthsShort:\"1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар\".split(\"_\"),monthsParseExact:!0,weekdays:\"Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба\".split(\"_\"),weekdaysShort:\"Ням_Дав_Мяг_Лха_Пүр_Баа_Бям\".split(\"_\"),weekdaysMin:\"Ня_Да_Мя_Лх_Пү_Ба_Бя\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY оны MMMMын D\",LLL:\"YYYY оны MMMMын D HH:mm\",LLLL:\"dddd, YYYY оны MMMMын D HH:mm\"},meridiemParse:/ҮӨ|ҮХ/i,isPM:function(e){return\"ҮХ\"===e},meridiem:function(e,t,n){return e<12?\"ҮӨ\":\"ҮХ\"},calendar:{sameDay:\"[Өнөөдөр] LT\",nextDay:\"[Маргааш] LT\",nextWeek:\"[Ирэх] dddd LT\",lastDay:\"[Өчигдөр] LT\",lastWeek:\"[Өнгөрсөн] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s дараа\",past:\"%s өмнө\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} өдөр/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" өдөр\";default:return e}}})}(n(381))},370:function(e,t,n){!function(e){\"use strict\";var t={1:\"१\",2:\"२\",3:\"३\",4:\"४\",5:\"५\",6:\"६\",7:\"७\",8:\"८\",9:\"९\",0:\"०\"},n={\"१\":\"1\",\"२\":\"2\",\"३\":\"3\",\"४\":\"4\",\"५\":\"5\",\"६\":\"6\",\"७\":\"7\",\"८\":\"8\",\"९\":\"9\",\"०\":\"0\"};function i(e,t,n,i){var s=\"\";if(t)switch(n){case\"s\":s=\"काही सेकंद\";break;case\"ss\":s=\"%d सेकंद\";break;case\"m\":s=\"एक मिनिट\";break;case\"mm\":s=\"%d मिनिटे\";break;case\"h\":s=\"एक तास\";break;case\"hh\":s=\"%d तास\";break;case\"d\":s=\"एक दिवस\";break;case\"dd\":s=\"%d दिवस\";break;case\"M\":s=\"एक महिना\";break;case\"MM\":s=\"%d महिने\";break;case\"y\":s=\"एक वर्ष\";break;case\"yy\":s=\"%d वर्षे\"}else switch(n){case\"s\":s=\"काही सेकंदां\";break;case\"ss\":s=\"%d सेकंदां\";break;case\"m\":s=\"एका मिनिटा\";break;case\"mm\":s=\"%d मिनिटां\";break;case\"h\":s=\"एका तासा\";break;case\"hh\":s=\"%d तासां\";break;case\"d\":s=\"एका दिवसा\";break;case\"dd\":s=\"%d दिवसां\";break;case\"M\":s=\"एका महिन्या\";break;case\"MM\":s=\"%d महिन्यां\";break;case\"y\":s=\"एका वर्षा\";break;case\"yy\":s=\"%d वर्षां\"}return s.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर\".split(\"_\"),monthsShort:\"जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.\".split(\"_\"),monthsParseExact:!0,weekdays:\"रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार\".split(\"_\"),weekdaysShort:\"रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि\".split(\"_\"),weekdaysMin:\"र_सो_मं_बु_गु_शु_श\".split(\"_\"),longDateFormat:{LT:\"A h:mm वाजता\",LTS:\"A h:mm:ss वाजता\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm वाजता\",LLLL:\"dddd, D MMMM YYYY, A h:mm वाजता\"},calendar:{sameDay:\"[आज] LT\",nextDay:\"[उद्या] LT\",nextWeek:\"dddd, LT\",lastDay:\"[काल] LT\",lastWeek:\"[मागील] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%sमध्ये\",past:\"%sपूर्वी\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/पहाटे|सकाळी|दुपारी|सायंकाळी|रात्री/,meridiemHour:function(e,t){return 12===e&&(e=0),\"पहाटे\"===t||\"सकाळी\"===t?e:\"दुपारी\"===t||\"सायंकाळी\"===t||\"रात्री\"===t?e>=12?e:e+12:void 0},meridiem:function(e,t,n){return e>=0&&e<6?\"पहाटे\":e<12?\"सकाळी\":e<17?\"दुपारी\":e<20?\"सायंकाळी\":\"रात्री\"},week:{dow:0,doy:6}})}(n(381))},1237:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(381))},9847:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(381))},2126:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ\".split(\"_\"),weekdays:\"Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt\".split(\"_\"),weekdaysShort:\"Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib\".split(\"_\"),weekdaysMin:\"Ħa_Tn_Tl_Er_Ħa_Ġi_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[Għada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-bieraħ fil-]LT\",lastWeek:\"dddd [li għadda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f’ %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"siegħa\",hh:\"%d siegħat\",d:\"ġurnata\",dd:\"%d ġranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},6165:function(e,t,n){!function(e){\"use strict\";var t={1:\"၁\",2:\"၂\",3:\"၃\",4:\"၄\",5:\"၅\",6:\"၆\",7:\"၇\",8:\"၈\",9:\"၉\",0:\"၀\"},n={\"၁\":\"1\",\"၂\":\"2\",\"၃\":\"3\",\"၄\":\"4\",\"၅\":\"5\",\"၆\":\"6\",\"၇\":\"7\",\"၈\":\"8\",\"၉\":\"9\",\"၀\":\"0\"};e.defineLocale(\"my\",{months:\"ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ\".split(\"_\"),monthsShort:\"ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ\".split(\"_\"),weekdays:\"တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ\".split(\"_\"),weekdaysShort:\"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ\".split(\"_\"),weekdaysMin:\"နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[ယနေ.] LT [မှာ]\",nextDay:\"[မနက်ဖြန်] LT [မှာ]\",nextWeek:\"dddd LT [မှာ]\",lastDay:\"[မနေ.က] LT [မှာ]\",lastWeek:\"[ပြီးခဲ့သော] dddd LT [မှာ]\",sameElse:\"L\"},relativeTime:{future:\"လာမည့် %s မှာ\",past:\"လွန်ခဲ့သော %s က\",s:\"စက္ကန်.အနည်းငယ်\",ss:\"%d စက္ကန့်\",m:\"တစ်မိနစ်\",mm:\"%d မိနစ်\",h:\"တစ်နာရီ\",hh:\"%d နာရီ\",d:\"တစ်ရက်\",dd:\"%d ရက်\",M:\"တစ်လ\",MM:\"%d လ\",y:\"တစ်နှစ်\",yy:\"%d နှစ်\"},preparse:function(e){return e.replace(/[၁၂၃၄၅၆၇၈၉၀]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(381))},4924:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag\".split(\"_\"),weekdaysShort:\"sø._ma._ti._on._to._fr._lø.\".split(\"_\"),weekdaysMin:\"sø_ma_ti_on_to_fr_lø\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i går kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",w:\"en uke\",ww:\"%d uker\",M:\"en måned\",MM:\"%d måneder\",y:\"ett år\",yy:\"%d år\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},6744:function(e,t,n){!function(e){\"use strict\";var t={1:\"१\",2:\"२\",3:\"३\",4:\"४\",5:\"५\",6:\"६\",7:\"७\",8:\"८\",9:\"९\",0:\"०\"},n={\"१\":\"1\",\"२\":\"2\",\"३\":\"3\",\"४\":\"4\",\"५\":\"5\",\"६\":\"6\",\"७\":\"7\",\"८\":\"8\",\"९\":\"9\",\"०\":\"0\"};e.defineLocale(\"ne\",{months:\"जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर\".split(\"_\"),monthsShort:\"जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.\".split(\"_\"),monthsParseExact:!0,weekdays:\"आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार\".split(\"_\"),weekdaysShort:\"आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.\".split(\"_\"),weekdaysMin:\"आ._सो._मं._बु._बि._शु._श.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"Aको h:mm बजे\",LTS:\"Aको h:mm:ss बजे\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, Aको h:mm बजे\",LLLL:\"dddd, D MMMM YYYY, Aको h:mm बजे\"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/राति|बिहान|दिउँसो|साँझ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"राति\"===t?e<4?e:e+12:\"बिहान\"===t?e:\"दिउँसो\"===t?e>=10?e:e+12:\"साँझ\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"राति\":e<12?\"बिहान\":e<16?\"दिउँसो\":e<20?\"साँझ\":\"राति\"},calendar:{sameDay:\"[आज] LT\",nextDay:\"[भोलि] LT\",nextWeek:\"[आउँदो] dddd[,] LT\",lastDay:\"[हिजो] LT\",lastWeek:\"[गएको] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%sमा\",past:\"%s अगाडि\",s:\"केही क्षण\",ss:\"%d सेकेण्ड\",m:\"एक मिनेट\",mm:\"%d मिनेट\",h:\"एक घण्टा\",hh:\"%d घण्टा\",d:\"एक दिन\",dd:\"%d दिन\",M:\"एक महिना\",MM:\"%d महिना\",y:\"एक बर्ष\",yy:\"%d बर्ष\"},week:{dow:0,doy:6}})}(n(381))},9814:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"één minuut\",mm:\"%d minuten\",h:\"één uur\",hh:\"%d uur\",d:\"één dag\",dd:\"%d dagen\",M:\"één maand\",MM:\"%d maanden\",y:\"één jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(381))},3901:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"één minuut\",mm:\"%d minuten\",h:\"één uur\",hh:\"%d uur\",d:\"één dag\",dd:\"%d dagen\",w:\"één week\",ww:\"%d weken\",M:\"één maand\",MM:\"%d maanden\",y:\"één jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(381))},3877:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"su._må._ty._on._to._fr._lau.\".split(\"_\"),weekdaysMin:\"su_må_ty_on_to_fr_la\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I går klokka] LT\",lastWeek:\"[Føregåande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",w:\"ei veke\",ww:\"%d veker\",M:\"ein månad\",MM:\"%d månader\",y:\"eit år\",yy:\"%d år\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},2135:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"oc-lnc\",{months:{standalone:\"genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre\".split(\"_\"),format:\"de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dm._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dm_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:\"[uèi a] LT\",nextDay:\"[deman a] LT\",nextWeek:\"dddd [a] LT\",lastDay:\"[ièr a] LT\",lastWeek:\"dddd [passat a] LT\",sameElse:\"L\"},relativeTime:{future:\"d'aquí %s\",past:\"fa %s\",s:\"unas segondas\",ss:\"%d segondas\",m:\"una minuta\",mm:\"%d minutas\",h:\"una ora\",hh:\"%d oras\",d:\"un jorn\",dd:\"%d jorns\",M:\"un mes\",MM:\"%d meses\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"è\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(381))},5858:function(e,t,n){!function(e){\"use strict\";var t={1:\"੧\",2:\"੨\",3:\"੩\",4:\"੪\",5:\"੫\",6:\"੬\",7:\"੭\",8:\"੮\",9:\"੯\",0:\"੦\"},n={\"੧\":\"1\",\"੨\":\"2\",\"੩\":\"3\",\"੪\":\"4\",\"੫\":\"5\",\"੬\":\"6\",\"੭\":\"7\",\"੮\":\"8\",\"੯\":\"9\",\"੦\":\"0\"};e.defineLocale(\"pa-in\",{months:\"ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ\".split(\"_\"),monthsShort:\"ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ\".split(\"_\"),weekdays:\"ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ\".split(\"_\"),weekdaysShort:\"ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ\".split(\"_\"),weekdaysMin:\"ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ\".split(\"_\"),longDateFormat:{LT:\"A h:mm ਵਜੇ\",LTS:\"A h:mm:ss ਵਜੇ\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm ਵਜੇ\",LLLL:\"dddd, D MMMM YYYY, A h:mm ਵਜੇ\"},calendar:{sameDay:\"[ਅਜ] LT\",nextDay:\"[ਕਲ] LT\",nextWeek:\"[ਅਗਲਾ] dddd, LT\",lastDay:\"[ਕਲ] LT\",lastWeek:\"[ਪਿਛਲੇ] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s ਵਿੱਚ\",past:\"%s ਪਿਛਲੇ\",s:\"ਕੁਝ ਸਕਿੰਟ\",ss:\"%d ਸਕਿੰਟ\",m:\"ਇਕ ਮਿੰਟ\",mm:\"%d ਮਿੰਟ\",h:\"ਇੱਕ ਘੰਟਾ\",hh:\"%d ਘੰਟੇ\",d:\"ਇੱਕ ਦਿਨ\",dd:\"%d ਦਿਨ\",M:\"ਇੱਕ ਮਹੀਨਾ\",MM:\"%d ਮਹੀਨੇ\",y:\"ਇੱਕ ਸਾਲ\",yy:\"%d ਸਾਲ\"},preparse:function(e){return e.replace(/[੧੨੩੪੫੬੭੮੯੦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"ਰਾਤ\"===t?e<4?e:e+12:\"ਸਵੇਰ\"===t?e:\"ਦੁਪਹਿਰ\"===t?e>=10?e:e+12:\"ਸ਼ਾਮ\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"ਰਾਤ\":e<10?\"ਸਵੇਰ\":e<17?\"ਦੁਪਹਿਰ\":e<20?\"ਸ਼ਾਮ\":\"ਰਾਤ\"},week:{dow:0,doy:6}})}(n(381))},4495:function(e,t,n){!function(e){\"use strict\";var t=\"styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia\".split(\"_\"),i=[/^sty/i,/^lut/i,/^mar/i,/^kwi/i,/^maj/i,/^cze/i,/^lip/i,/^sie/i,/^wrz/i,/^paź/i,/^lis/i,/^gru/i];function s(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function a(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(s(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minutę\";case\"mm\":return i+(s(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzinę\";case\"hh\":return i+(s(e)?\"godziny\":\"godzin\");case\"ww\":return i+(s(e)?\"tygodnie\":\"tygodni\");case\"MM\":return i+(s(e)?\"miesiące\":\"miesięcy\");case\"yy\":return i+(s(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,i){return e?/D MMMM/.test(i)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru\".split(\"_\"),monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_śr_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_Śr_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dziś o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedzielę o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W środę o] LT\";case 6:return\"[W sobotę o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zeszłą niedzielę o] LT\";case 3:return\"[W zeszłą środę o] LT\";case 6:return\"[W zeszłą sobotę o] LT\";default:return\"[W zeszły] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:a,m:a,mm:a,h:a,hh:a,d:\"1 dzień\",dd:\"%d dni\",w:\"tydzień\",ww:a,M:\"miesiąc\",MM:a,y:\"rok\",yy:a},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},7971:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro\".split(\"_\"),monthsShort:\"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez\".split(\"_\"),weekdays:\"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado\".split(\"_\"),weekdaysShort:\"dom_seg_ter_qua_qui_sex_sáb\".split(\"_\"),weekdaysMin:\"do_2ª_3ª_4ª_5ª_6ª_sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [às] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [às] HH:mm\"},calendar:{sameDay:\"[Hoje às] LT\",nextDay:\"[Amanhã às] LT\",nextWeek:\"dddd [às] LT\",lastDay:\"[Ontem às] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[Último] dddd [às] LT\":\"[Última] dddd [às] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"há %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um mês\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",invalidDate:\"Data inválida\"})}(n(381))},9520:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro\".split(\"_\"),monthsShort:\"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_Sáb\".split(\"_\"),weekdaysMin:\"Do_2ª_3ª_4ª_5ª_6ª_Sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje às] LT\",nextDay:\"[Amanhã às] LT\",nextWeek:\"dddd [às] LT\",lastDay:\"[Ontem às] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[Último] dddd [às] LT\":\"[Última] dddd [às] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"há %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",w:\"uma semana\",ww:\"%d semanas\",M:\"um mês\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}º/,ordinal:\"%dº\",week:{dow:1,doy:4}})}(n(381))},6459:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=\" \";return(e%100>=20||e>=100&&e%100==0)&&(i=\" de \"),e+i+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",ww:\"săptămâni\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminică_luni_marți_miercuri_joi_vineri_sâmbătă\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_Sâm\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_Sâ\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[mâine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s în urmă\",s:\"câteva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o oră\",hh:t,d:\"o zi\",dd:t,w:\"o săptămână\",ww:t,M:\"o lună\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(381))},1793:function(e,t,n){!function(e){\"use strict\";function t(e,t){var n=e.split(\"_\");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,i){return\"m\"===i?n?\"минута\":\"минуту\":e+\" \"+t({ss:n?\"секунда_секунды_секунд\":\"секунду_секунды_секунд\",mm:n?\"минута_минуты_минут\":\"минуту_минуты_минут\",hh:\"час_часа_часов\",dd:\"день_дня_дней\",ww:\"неделя_недели_недель\",MM:\"месяц_месяца_месяцев\",yy:\"год_года_лет\"}[i],+e)}var i=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i];e.defineLocale(\"ru\",{months:{format:\"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря\".split(\"_\"),standalone:\"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь\".split(\"_\")},monthsShort:{format:\"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.\".split(\"_\"),standalone:\"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.\".split(\"_\")},weekdays:{standalone:\"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота\".split(\"_\"),format:\"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу\".split(\"_\"),isFormat:/\\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?] ?dddd/},weekdaysShort:\"вс_пн_вт_ср_чт_пт_сб\".split(\"_\"),weekdaysMin:\"вс_пн_вт_ср_чт_пт_сб\".split(\"_\"),monthsParse:i,longMonthsParse:i,shortMonthsParse:i,monthsRegex:/^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,monthsShortRegex:/^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,monthsStrictRegex:/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,monthsShortStrictRegex:/^(янв\\.|февр?\\.|мар[т.]|апр\\.|ма[яй]|июн[ья.]|июл[ья.]|авг\\.|сент?\\.|окт\\.|нояб?\\.|дек\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY г.\",LLL:\"D MMMM YYYY г., H:mm\",LLLL:\"dddd, D MMMM YYYY г., H:mm\"},calendar:{sameDay:\"[Сегодня, в] LT\",nextDay:\"[Завтра, в] LT\",lastDay:\"[Вчера, в] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[Во] dddd, [в] LT\":\"[В] dddd, [в] LT\";switch(this.day()){case 0:return\"[В следующее] dddd, [в] LT\";case 1:case 2:case 4:return\"[В следующий] dddd, [в] LT\";case 3:case 5:case 6:return\"[В следующую] dddd, [в] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[Во] dddd, [в] LT\":\"[В] dddd, [в] LT\";switch(this.day()){case 0:return\"[В прошлое] dddd, [в] LT\";case 1:case 2:case 4:return\"[В прошлый] dddd, [в] LT\";case 3:case 5:case 6:return\"[В прошлую] dddd, [в] LT\"}},sameElse:\"L\"},relativeTime:{future:\"через %s\",past:\"%s назад\",s:\"несколько секунд\",ss:n,m:n,mm:n,h:\"час\",hh:n,d:\"день\",dd:n,w:\"неделя\",ww:n,M:\"месяц\",MM:n,y:\"год\",yy:n},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,t,n){return e<4?\"ночи\":e<12?\"утра\":e<17?\"дня\":\"вечера\"},dayOfMonthOrdinalParse:/\\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-й\";case\"D\":return e+\"-го\";case\"w\":case\"W\":return e+\"-я\";default:return e}},week:{dow:1,doy:4}})}(n(381))},950:function(e,t,n){!function(e){\"use strict\";var t=[\"جنوري\",\"فيبروري\",\"مارچ\",\"اپريل\",\"مئي\",\"جون\",\"جولاءِ\",\"آگسٽ\",\"سيپٽمبر\",\"آڪٽوبر\",\"نومبر\",\"ڊسمبر\"],n=[\"آچر\",\"سومر\",\"اڱارو\",\"اربع\",\"خميس\",\"جمع\",\"ڇنڇر\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd، D MMMM YYYY HH:mm\"},meridiemParse:/صبح|شام/,isPM:function(e){return\"شام\"===e},meridiem:function(e,t,n){return e<12?\"صبح\":\"شام\"},calendar:{sameDay:\"[اڄ] LT\",nextDay:\"[سڀاڻي] LT\",nextWeek:\"dddd [اڳين هفتي تي] LT\",lastDay:\"[ڪالهه] LT\",lastWeek:\"[گزريل هفتي] dddd [تي] LT\",sameElse:\"L\"},relativeTime:{future:\"%s پوء\",past:\"%s اڳ\",s:\"چند سيڪنڊ\",ss:\"%d سيڪنڊ\",m:\"هڪ منٽ\",mm:\"%d منٽ\",h:\"هڪ ڪلاڪ\",hh:\"%d ڪلاڪ\",d:\"هڪ ڏينهن\",dd:\"%d ڏينهن\",M:\"هڪ مهينو\",MM:\"%d مهينا\",y:\"هڪ سال\",yy:\"%d سال\"},preparse:function(e){return e.replace(/،/g,\",\")},postformat:function(e){return e.replace(/,/g,\"،\")},week:{dow:1,doy:4}})}(n(381))},490:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu\".split(\"_\"),monthsShort:\"ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_maŋ_gask_duor_bear_láv\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s geažes\",past:\"maŋit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta mánnu\",MM:\"%d mánut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},124:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්\".split(\"_\"),monthsShort:\"ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ\".split(\"_\"),weekdays:\"ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා\".split(\"_\"),weekdaysShort:\"ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන\".split(\"_\"),weekdaysMin:\"ඉ_ස_අ_බ_බ්‍ර_සි_සෙ\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [වැනි] dddd, a h:mm:ss\"},calendar:{sameDay:\"[අද] LT[ට]\",nextDay:\"[හෙට] LT[ට]\",nextWeek:\"dddd LT[ට]\",lastDay:\"[ඊයේ] LT[ට]\",lastWeek:\"[පසුගිය] dddd LT[ට]\",sameElse:\"L\"},relativeTime:{future:\"%sකින්\",past:\"%sකට පෙර\",s:\"තත්පර කිහිපය\",ss:\"තත්පර %d\",m:\"මිනිත්තුව\",mm:\"මිනිත්තු %d\",h:\"පැය\",hh:\"පැය %d\",d:\"දිනය\",dd:\"දින %d\",M:\"මාසය\",MM:\"මාස %d\",y:\"වසර\",yy:\"වසර %d\"},dayOfMonthOrdinalParse:/\\d{1,2} වැනි/,ordinal:function(e){return e+\" වැනි\"},meridiemParse:/පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,isPM:function(e){return\"ප.ව.\"===e||\"පස් වරු\"===e},meridiem:function(e,t,n){return e>11?n?\"ප.ව.\":\"පස් වරු\":n?\"පෙ.ව.\":\"පෙර වරු\"}})}(n(381))},4249:function(e,t,n){!function(e){\"use strict\";var t=\"január_február_marec_apríl_máj_jún_júl_august_september_október_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec\".split(\"_\");function i(e){return e>1&&e<5}function s(e,t,n,s){var a=e+\" \";switch(n){case\"s\":return t||s?\"pár sekúnd\":\"pár sekundami\";case\"ss\":return t||s?a+(i(e)?\"sekundy\":\"sekúnd\"):a+\"sekundami\";case\"m\":return t?\"minúta\":s?\"minútu\":\"minútou\";case\"mm\":return t||s?a+(i(e)?\"minúty\":\"minút\"):a+\"minútami\";case\"h\":return t?\"hodina\":s?\"hodinu\":\"hodinou\";case\"hh\":return t||s?a+(i(e)?\"hodiny\":\"hodín\"):a+\"hodinami\";case\"d\":return t||s?\"deň\":\"dňom\";case\"dd\":return t||s?a+(i(e)?\"dni\":\"dní\"):a+\"dňami\";case\"M\":return t||s?\"mesiac\":\"mesiacom\";case\"MM\":return t||s?a+(i(e)?\"mesiace\":\"mesiacov\"):a+\"mesiacmi\";case\"y\":return t||s?\"rok\":\"rokom\";case\"yy\":return t||s?a+(i(e)?\"roky\":\"rokov\"):a+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_št_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_št_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nedeľu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo štvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[včera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulú nedeľu o] LT\";case 1:case 2:return\"[minulý] dddd [o] LT\";case 3:return\"[minulú stredu o] LT\";case 4:case 5:return\"[minulý] dddd [o] LT\";case 6:return\"[minulú sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:s,M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},4985:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return s+=1===e?t?\"sekundo\":\"sekundi\":2===e?t||i?\"sekundi\":\"sekundah\":e<5?t||i?\"sekunde\":\"sekundah\":\"sekund\";case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return s+=1===e?t?\"minuta\":\"minuto\":2===e?t||i?\"minuti\":\"minutama\":e<5?t||i?\"minute\":\"minutami\":t||i?\"minut\":\"minutami\";case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return s+=1===e?t?\"ura\":\"uro\":2===e?t||i?\"uri\":\"urama\":e<5?t||i?\"ure\":\"urami\":t||i?\"ur\":\"urami\";case\"d\":return t||i?\"en dan\":\"enim dnem\";case\"dd\":return s+=1===e?t||i?\"dan\":\"dnem\":2===e?t||i?\"dni\":\"dnevoma\":t||i?\"dni\":\"dnevi\";case\"M\":return t||i?\"en mesec\":\"enim mesecem\";case\"MM\":return s+=1===e?t||i?\"mesec\":\"mesecem\":2===e?t||i?\"meseca\":\"mesecema\":e<5?t||i?\"mesece\":\"meseci\":t||i?\"mesecev\":\"meseci\";case\"y\":return t||i?\"eno leto\":\"enim letom\";case\"yy\":return s+=1===e?t||i?\"leto\":\"letom\":2===e?t||i?\"leti\":\"letoma\":e<5?t||i?\"leta\":\"leti\":t||i?\"let\":\"leti\"}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._čet._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_če_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD. MM. YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[včeraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prejšnjo] [nedeljo] [ob] LT\";case 3:return\"[prejšnjo] [sredo] [ob] LT\";case 6:return\"[prejšnjo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prejšnji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"čez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},1104:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj\".split(\"_\"),weekdays:\"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë\".split(\"_\"),weekdaysShort:\"Die_Hën_Mar_Mër_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_Më_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot në] LT\",nextDay:\"[Nesër në] LT\",nextWeek:\"dddd [në] LT\",lastDay:\"[Dje në] LT\",lastWeek:\"dddd [e kaluar në] LT\",sameElse:\"L\"},relativeTime:{future:\"në %s\",past:\"%s më parë\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"një minutë\",mm:\"%d minuta\",h:\"një orë\",hh:\"%d orë\",d:\"një ditë\",dd:\"%d ditë\",M:\"një muaj\",MM:\"%d muaj\",y:\"një vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},9915:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"секунда\",\"секунде\",\"секунди\"],m:[\"један минут\",\"једне минуте\"],mm:[\"минут\",\"минуте\",\"минута\"],h:[\"један сат\",\"једног сата\"],hh:[\"сат\",\"сата\",\"сати\"],dd:[\"дан\",\"дана\",\"дана\"],MM:[\"месец\",\"месеца\",\"месеци\"],yy:[\"година\",\"године\",\"година\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr-cyrl\",{months:\"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар\".split(\"_\"),monthsShort:\"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.\".split(\"_\"),monthsParseExact:!0,weekdays:\"недеља_понедељак_уторак_среда_четвртак_петак_субота\".split(\"_\"),weekdaysShort:\"нед._пон._уто._сре._чет._пет._суб.\".split(\"_\"),weekdaysMin:\"не_по_ут_ср_че_пе_су\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D. M. YYYY.\",LL:\"D. MMMM YYYY.\",LLL:\"D. MMMM YYYY. H:mm\",LLLL:\"dddd, D. MMMM YYYY. H:mm\"},calendar:{sameDay:\"[данас у] LT\",nextDay:\"[сутра у] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[у] [недељу] [у] LT\";case 3:return\"[у] [среду] [у] LT\";case 6:return\"[у] [суботу] [у] LT\";case 1:case 2:case 4:case 5:return\"[у] dddd [у] LT\"}},lastDay:\"[јуче у] LT\",lastWeek:function(){return[\"[прошле] [недеље] [у] LT\",\"[прошлог] [понедељка] [у] LT\",\"[прошлог] [уторка] [у] LT\",\"[прошле] [среде] [у] LT\",\"[прошлог] [четвртка] [у] LT\",\"[прошлог] [петка] [у] LT\",\"[прошле] [суботе] [у] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"за %s\",past:\"пре %s\",s:\"неколико секунди\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"дан\",dd:t.translate,M:\"месец\",MM:t.translate,y:\"годину\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},9131:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._čet._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_če_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D. M. YYYY.\",LL:\"D. MMMM YYYY.\",LLL:\"D. MMMM YYYY. H:mm\",LLLL:\"dddd, D. MMMM YYYY. H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[juče u] LT\",lastWeek:function(){return[\"[prošle] [nedelje] [u] LT\",\"[prošlog] [ponedeljka] [u] LT\",\"[prošlog] [utorka] [u] LT\",\"[prošle] [srede] [u] LT\",\"[prošlog] [četvrtka] [u] LT\",\"[prošlog] [petka] [u] LT\",\"[prošle] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(381))},5893:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(381))},8760:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag\".split(\"_\"),weekdaysShort:\"sön_mån_tis_ons_tor_fre_lör\".split(\"_\"),weekdaysMin:\"sö_må_ti_on_to_fr_lö\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Igår] LT\",nextWeek:\"[På] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"för %s sedan\",s:\"några sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en månad\",MM:\"%d månader\",y:\"ett år\",yy:\"%d år\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\:e|\\:a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\":e\":1===t||2===t?\":a\":\":e\")},week:{dow:1,doy:4}})}(n(381))},1172:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"hh:mm A\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"siku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(381))},7333:function(e,t,n){!function(e){\"use strict\";var t={1:\"௧\",2:\"௨\",3:\"௩\",4:\"௪\",5:\"௫\",6:\"௬\",7:\"௭\",8:\"௮\",9:\"௯\",0:\"௦\"},n={\"௧\":\"1\",\"௨\":\"2\",\"௩\":\"3\",\"௪\":\"4\",\"௫\":\"5\",\"௬\":\"6\",\"௭\":\"7\",\"௮\":\"8\",\"௯\":\"9\",\"௦\":\"0\"};e.defineLocale(\"ta\",{months:\"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்\".split(\"_\"),monthsShort:\"ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்\".split(\"_\"),weekdays:\"ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை\".split(\"_\"),weekdaysShort:\"ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி\".split(\"_\"),weekdaysMin:\"ஞா_தி_செ_பு_வி_வெ_ச\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[இன்று] LT\",nextDay:\"[நாளை] LT\",nextWeek:\"dddd, LT\",lastDay:\"[நேற்று] LT\",lastWeek:\"[கடந்த வாரம்] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s இல்\",past:\"%s முன்\",s:\"ஒரு சில விநாடிகள்\",ss:\"%d விநாடிகள்\",m:\"ஒரு நிமிடம்\",mm:\"%d நிமிடங்கள்\",h:\"ஒரு மணி நேரம்\",hh:\"%d மணி நேரம்\",d:\"ஒரு நாள்\",dd:\"%d நாட்கள்\",M:\"ஒரு மாதம்\",MM:\"%d மாதங்கள்\",y:\"ஒரு வருடம்\",yy:\"%d ஆண்டுகள்\"},dayOfMonthOrdinalParse:/\\d{1,2}வது/,ordinal:function(e){return e+\"வது\"},preparse:function(e){return e.replace(/[௧௨௩௪௫௬௭௮௯௦]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/யாமம்|வைகறை|காலை|நண்பகல்|எற்பாடு|மாலை/,meridiem:function(e,t,n){return e<2?\" யாமம்\":e<6?\" வைகறை\":e<10?\" காலை\":e<14?\" நண்பகல்\":e<18?\" எற்பாடு\":e<22?\" மாலை\":\" யாமம்\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"யாமம்\"===t?e<2?e:e+12:\"வைகறை\"===t||\"காலை\"===t||\"நண்பகல்\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(381))},3110:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్\".split(\"_\"),monthsShort:\"జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.\".split(\"_\"),monthsParseExact:!0,weekdays:\"ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం\".split(\"_\"),weekdaysShort:\"ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని\".split(\"_\"),weekdaysMin:\"ఆ_సో_మం_బు_గు_శు_శ\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[నేడు] LT\",nextDay:\"[రేపు] LT\",nextWeek:\"dddd, LT\",lastDay:\"[నిన్న] LT\",lastWeek:\"[గత] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s లో\",past:\"%s క్రితం\",s:\"కొన్ని క్షణాలు\",ss:\"%d సెకన్లు\",m:\"ఒక నిమిషం\",mm:\"%d నిమిషాలు\",h:\"ఒక గంట\",hh:\"%d గంటలు\",d:\"ఒక రోజు\",dd:\"%d రోజులు\",M:\"ఒక నెల\",MM:\"%d నెలలు\",y:\"ఒక సంవత్సరం\",yy:\"%d సంవత్సరాలు\"},dayOfMonthOrdinalParse:/\\d{1,2}వ/,ordinal:\"%dవ\",meridiemParse:/రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,meridiemHour:function(e,t){return 12===e&&(e=0),\"రాత్రి\"===t?e<4?e:e+12:\"ఉదయం\"===t?e:\"మధ్యాహ్నం\"===t?e>=10?e:e+12:\"సాయంత్రం\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"రాత్రి\":e<10?\"ఉదయం\":e<17?\"మధ్యాహ్నం\":e<20?\"సాయంత్రం\":\"రాత్రి\"},week:{dow:0,doy:6}})}(n(381))},2095:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"segundu balun\",ss:\"segundu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(381))},7321:function(e,t,n){!function(e){\"use strict\";var t={0:\"-ум\",1:\"-ум\",2:\"-юм\",3:\"-юм\",4:\"-ум\",5:\"-ум\",6:\"-ум\",7:\"-ум\",8:\"-ум\",9:\"-ум\",10:\"-ум\",12:\"-ум\",13:\"-ум\",20:\"-ум\",30:\"-юм\",40:\"-ум\",50:\"-ум\",60:\"-ум\",70:\"-ум\",80:\"-ум\",90:\"-ум\",100:\"-ум\"};e.defineLocale(\"tg\",{months:{format:\"январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри\".split(\"_\"),standalone:\"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр\".split(\"_\")},monthsShort:\"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек\".split(\"_\"),weekdays:\"якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе\".split(\"_\"),weekdaysShort:\"яшб_дшб_сшб_чшб_пшб_ҷум_шнб\".split(\"_\"),weekdaysMin:\"яш_дш_сш_чш_пш_ҷм_шб\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Имрӯз соати] LT\",nextDay:\"[Фардо соати] LT\",lastDay:\"[Дирӯз соати] LT\",nextWeek:\"dddd[и] [ҳафтаи оянда соати] LT\",lastWeek:\"dddd[и] [ҳафтаи гузашта соати] LT\",sameElse:\"L\"},relativeTime:{future:\"баъди %s\",past:\"%s пеш\",s:\"якчанд сония\",m:\"як дақиқа\",mm:\"%d дақиқа\",h:\"як соат\",hh:\"%d соат\",d:\"як рӯз\",dd:\"%d рӯз\",M:\"як моҳ\",MM:\"%d моҳ\",y:\"як сол\",yy:\"%d сол\"},meridiemParse:/шаб|субҳ|рӯз|бегоҳ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"шаб\"===t?e<4?e:e+12:\"субҳ\"===t?e:\"рӯз\"===t?e>=11?e:e+12:\"бегоҳ\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"шаб\":e<11?\"субҳ\":e<16?\"рӯз\":e<19?\"бегоҳ\":\"шаб\"},dayOfMonthOrdinalParse:/\\d{1,2}-(ум|юм)/,ordinal:function(e){var n=e%10,i=e>=100?100:null;return e+(t[e]||t[n]||t[i])},week:{dow:1,doy:7}})}(n(381))},9041:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม\".split(\"_\"),monthsShort:\"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.\".split(\"_\"),monthsParseExact:!0,weekdays:\"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์\".split(\"_\"),weekdaysShort:\"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์\".split(\"_\"),weekdaysMin:\"อา._จ._อ._พ._พฤ._ศ._ส.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY เวลา H:mm\",LLLL:\"วันddddที่ D MMMM YYYY เวลา H:mm\"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return\"หลังเที่ยง\"===e},meridiem:function(e,t,n){return e<12?\"ก่อนเที่ยง\":\"หลังเที่ยง\"},calendar:{sameDay:\"[วันนี้ เวลา] LT\",nextDay:\"[พรุ่งนี้ เวลา] LT\",nextWeek:\"dddd[หน้า เวลา] LT\",lastDay:\"[เมื่อวานนี้ เวลา] LT\",lastWeek:\"[วัน]dddd[ที่แล้ว เวลา] LT\",sameElse:\"L\"},relativeTime:{future:\"อีก %s\",past:\"%sที่แล้ว\",s:\"ไม่กี่วินาที\",ss:\"%d วินาที\",m:\"1 นาที\",mm:\"%d นาที\",h:\"1 ชั่วโมง\",hh:\"%d ชั่วโมง\",d:\"1 วัน\",dd:\"%d วัน\",w:\"1 สัปดาห์\",ww:\"%d สัปดาห์\",M:\"1 เดือน\",MM:\"%d เดือน\",y:\"1 ปี\",yy:\"%d ปี\"}})}(n(381))},9005:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inji\",5:\"'inji\",8:\"'inji\",70:\"'inji\",80:\"'inji\",2:\"'nji\",7:\"'nji\",20:\"'nji\",50:\"'nji\",3:\"'ünji\",4:\"'ünji\",100:\"'ünji\",6:\"'njy\",9:\"'unjy\",10:\"'unjy\",30:\"'unjy\",60:\"'ynjy\",90:\"'ynjy\"};e.defineLocale(\"tk\",{months:\"Ýanwar_Fewral_Mart_Aprel_Maý_Iýun_Iýul_Awgust_Sentýabr_Oktýabr_Noýabr_Dekabr\".split(\"_\"),monthsShort:\"Ýan_Few_Mar_Apr_Maý_Iýn_Iýl_Awg_Sen_Okt_Noý_Dek\".split(\"_\"),weekdays:\"Ýekşenbe_Duşenbe_Sişenbe_Çarşenbe_Penşenbe_Anna_Şenbe\".split(\"_\"),weekdaysShort:\"Ýek_Duş_Siş_Çar_Pen_Ann_Şen\".split(\"_\"),weekdaysMin:\"Ýk_Dş_Sş_Çr_Pn_An_Şn\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bugün sagat] LT\",nextDay:\"[ertir sagat] LT\",nextWeek:\"[indiki] dddd [sagat] LT\",lastDay:\"[düýn] LT\",lastWeek:\"[geçen] dddd [sagat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s soň\",past:\"%s öň\",s:\"birnäçe sekunt\",m:\"bir minut\",mm:\"%d minut\",h:\"bir sagat\",hh:\"%d sagat\",d:\"bir gün\",dd:\"%d gün\",M:\"bir aý\",MM:\"%d aý\",y:\"bir ýyl\",yy:\"%d ýyl\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'unjy\";var i=e%10,s=e%100-i,a=e>=100?100:null;return e+(t[i]||t[s]||t[a])}},week:{dow:1,doy:7}})}(n(381))},5768:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(381))},9444:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa’_cha’_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e){var t=e;return t=-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"}function i(e){var t=e;return t=-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu’\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"}function s(e,t,n,i){var s=a(e);switch(n){case\"ss\":return s+\" lup\";case\"mm\":return s+\" tup\";case\"hh\":return s+\" rep\";case\"dd\":return s+\" jaj\";case\"MM\":return s+\" jar\";case\"yy\":return s+\" DIS\"}}function a(e){var n=Math.floor(e%1e3/100),i=Math.floor(e%100/10),s=e%10,a=\"\";return n>0&&(a+=t[n]+\"vatlh\"),i>0&&(a+=(\"\"!==a?\" \":\"\")+t[i]+\"maH\"),s>0&&(a+=(\"\"!==a?\" \":\"\")+t[s]),\"\"===a?\"pagh\":a}e.defineLocale(\"tlh\",{months:\"tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’\".split(\"_\"),monthsShort:\"jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa’leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa’Hu’] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:n,past:i,s:\"puS lup\",ss:s,m:\"wa’ tup\",mm:s,h:\"wa’ rep\",hh:s,d:\"wa’ jaj\",dd:s,M:\"wa’ jar\",MM:s,y:\"wa’ DIS\",yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},2397:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'üncü\",4:\"'üncü\",100:\"'üncü\",6:\"'ncı\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'ıncı\",90:\"'ıncı\"};e.defineLocale(\"tr\",{months:\"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık\".split(\"_\"),monthsShort:\"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_Çar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_Ça_Pe_Cu_Ct\".split(\"_\"),meridiem:function(e,t,n){return e<12?n?\"öö\":\"ÖÖ\":n?\"ös\":\"ÖS\"},meridiemParse:/öö|ÖÖ|ös|ÖS/,isPM:function(e){return\"ös\"===e||\"ÖS\"===e},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bugün saat] LT\",nextDay:\"[yarın saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[dün] LT\",lastWeek:\"[geçen] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s önce\",s:\"birkaç saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir gün\",dd:\"%d gün\",w:\"bir hafta\",ww:\"%d hafta\",M:\"bir ay\",MM:\"%d ay\",y:\"bir yıl\",yy:\"%d yıl\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'ıncı\";var i=e%10,s=e%100-i,a=e>=100?100:null;return e+(t[i]||t[s]||t[a])}},week:{dow:1,doy:7}})}(n(381))},8254:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n míut\",\"'iens míut\"],mm:[e+\" míuts\",e+\" míuts\"],h:[\"'n þora\",\"'iensa þora\"],hh:[e+\" þoras\",e+\" þoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return i||t?s[n][0]:s[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi\".split(\"_\"),weekdaysShort:\"Súl_Lún_Mai_Már_Xhú_Vié_Sát\".split(\"_\"),weekdaysMin:\"Sú_Lú_Ma_Má_Xh_Vi_Sá\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi à] LT\",nextDay:\"[demà à] LT\",nextWeek:\"dddd [à] LT\",lastDay:\"[ieiri à] LT\",lastWeek:\"[sür el] dddd [lasteu à] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(381))},699:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minuḍ\",mm:\"%d minuḍ\",h:\"saɛa\",hh:\"%d tassaɛin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(381))},1106:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ\".split(\"_\"),monthsShort:\"ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ\".split(\"_\"),weekdays:\"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ\".split(\"_\"),weekdaysShort:\"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ\".split(\"_\"),weekdaysMin:\"ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[ⴰⵙⴷⵅ ⴴ] LT\",nextDay:\"[ⴰⵙⴽⴰ ⴴ] LT\",nextWeek:\"dddd [ⴴ] LT\",lastDay:\"[ⴰⵚⴰⵏⵜ ⴴ] LT\",lastWeek:\"dddd [ⴴ] LT\",sameElse:\"L\"},relativeTime:{future:\"ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s\",past:\"ⵢⴰⵏ %s\",s:\"ⵉⵎⵉⴽ\",ss:\"%d ⵉⵎⵉⴽ\",m:\"ⵎⵉⵏⵓⴺ\",mm:\"%d ⵎⵉⵏⵓⴺ\",h:\"ⵙⴰⵄⴰ\",hh:\"%d ⵜⴰⵙⵙⴰⵄⵉⵏ\",d:\"ⴰⵙⵙ\",dd:\"%d oⵙⵙⴰⵏ\",M:\"ⴰⵢoⵓⵔ\",MM:\"%d ⵉⵢⵢⵉⵔⵏ\",y:\"ⴰⵙⴳⴰⵙ\",yy:\"%d ⵉⵙⴳⴰⵙⵏ\"},week:{dow:6,doy:12}})}(n(381))},9288:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر\".split(\"_\"),monthsShort:\"يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر\".split(\"_\"),weekdays:\"يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە\".split(\"_\"),weekdaysShort:\"يە_دۈ_سە_چا_پە_جۈ_شە\".split(\"_\"),weekdaysMin:\"يە_دۈ_سە_چا_پە_جۈ_شە\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-يىلىM-ئاينىڭD-كۈنى\",LLL:\"YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm\",LLLL:\"dddd، YYYY-يىلىM-ئاينىڭD-كۈنى، HH:mm\"},meridiemParse:/يېرىم كېچە|سەھەر|چۈشتىن بۇرۇن|چۈش|چۈشتىن كېيىن|كەچ/,meridiemHour:function(e,t){return 12===e&&(e=0),\"يېرىم كېچە\"===t||\"سەھەر\"===t||\"چۈشتىن بۇرۇن\"===t?e:\"چۈشتىن كېيىن\"===t||\"كەچ\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"يېرىم كېچە\":i<900?\"سەھەر\":i<1130?\"چۈشتىن بۇرۇن\":i<1230?\"چۈش\":i<1800?\"چۈشتىن كېيىن\":\"كەچ\"},calendar:{sameDay:\"[بۈگۈن سائەت] LT\",nextDay:\"[ئەتە سائەت] LT\",nextWeek:\"[كېلەركى] dddd [سائەت] LT\",lastDay:\"[تۆنۈگۈن] LT\",lastWeek:\"[ئالدىنقى] dddd [سائەت] LT\",sameElse:\"L\"},relativeTime:{future:\"%s كېيىن\",past:\"%s بۇرۇن\",s:\"نەچچە سېكونت\",ss:\"%d سېكونت\",m:\"بىر مىنۇت\",mm:\"%d مىنۇت\",h:\"بىر سائەت\",hh:\"%d سائەت\",d:\"بىر كۈن\",dd:\"%d كۈن\",M:\"بىر ئاي\",MM:\"%d ئاي\",y:\"بىر يىل\",yy:\"%d يىل\"},dayOfMonthOrdinalParse:/\\d{1,2}(-كۈنى|-ئاي|-ھەپتە)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-كۈنى\";case\"w\":case\"W\":return e+\"-ھەپتە\";default:return e}},preparse:function(e){return e.replace(/،/g,\",\")},postformat:function(e){return e.replace(/,/g,\"،\")},week:{dow:1,doy:7}})}(n(381))},7691:function(e,t,n){!function(e){\"use strict\";function t(e,t){var n=e.split(\"_\");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,i){return\"m\"===i?n?\"хвилина\":\"хвилину\":\"h\"===i?n?\"година\":\"годину\":e+\" \"+t({ss:n?\"секунда_секунди_секунд\":\"секунду_секунди_секунд\",mm:n?\"хвилина_хвилини_хвилин\":\"хвилину_хвилини_хвилин\",hh:n?\"година_години_годин\":\"годину_години_годин\",dd:\"день_дні_днів\",MM:\"місяць_місяці_місяців\",yy:\"рік_роки_років\"}[i],+e)}function i(e,t){var n={nominative:\"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота\".split(\"_\"),accusative:\"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу\".split(\"_\"),genitive:\"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[ВвУу]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:минулої|наступної)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative}function s(e){return function(){return e+\"о\"+(11===this.hours()?\"б\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня\".split(\"_\"),standalone:\"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень\".split(\"_\")},monthsShort:\"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд\".split(\"_\"),weekdays:i,weekdaysShort:\"нд_пн_вт_ср_чт_пт_сб\".split(\"_\"),weekdaysMin:\"нд_пн_вт_ср_чт_пт_сб\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY р.\",LLL:\"D MMMM YYYY р., HH:mm\",LLLL:\"dddd, D MMMM YYYY р., HH:mm\"},calendar:{sameDay:s(\"[Сьогодні \"),nextDay:s(\"[Завтра \"),lastDay:s(\"[Вчора \"),nextWeek:s(\"[У] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return s(\"[Минулої] dddd [\").call(this);case 1:case 2:case 4:return s(\"[Минулого] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"за %s\",past:\"%s тому\",s:\"декілька секунд\",ss:n,m:n,mm:n,h:\"годину\",hh:n,d:\"день\",dd:n,M:\"місяць\",MM:n,y:\"рік\",yy:n},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,t,n){return e<4?\"ночі\":e<12?\"ранку\":e<17?\"дня\":\"вечора\"},dayOfMonthOrdinalParse:/\\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-й\";case\"D\":return e+\"-го\";default:return e}},week:{dow:1,doy:7}})}(n(381))},3795:function(e,t,n){!function(e){\"use strict\";var t=[\"جنوری\",\"فروری\",\"مارچ\",\"اپریل\",\"مئی\",\"جون\",\"جولائی\",\"اگست\",\"ستمبر\",\"اکتوبر\",\"نومبر\",\"دسمبر\"],n=[\"اتوار\",\"پیر\",\"منگل\",\"بدھ\",\"جمعرات\",\"جمعہ\",\"ہفتہ\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd، D MMMM YYYY HH:mm\"},meridiemParse:/صبح|شام/,isPM:function(e){return\"شام\"===e},meridiem:function(e,t,n){return e<12?\"صبح\":\"شام\"},calendar:{sameDay:\"[آج بوقت] LT\",nextDay:\"[کل بوقت] LT\",nextWeek:\"dddd [بوقت] LT\",lastDay:\"[گذشتہ روز بوقت] LT\",lastWeek:\"[گذشتہ] dddd [بوقت] LT\",sameElse:\"L\"},relativeTime:{future:\"%s بعد\",past:\"%s قبل\",s:\"چند سیکنڈ\",ss:\"%d سیکنڈ\",m:\"ایک منٹ\",mm:\"%d منٹ\",h:\"ایک گھنٹہ\",hh:\"%d گھنٹے\",d:\"ایک دن\",dd:\"%d دن\",M:\"ایک ماہ\",MM:\"%d ماہ\",y:\"ایک سال\",yy:\"%d سال\"},preparse:function(e){return e.replace(/،/g,\",\")},postformat:function(e){return e.replace(/,/g,\"،\")},week:{dow:1,doy:4}})}(n(381))},588:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(381))},6791:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр\".split(\"_\"),monthsShort:\"янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек\".split(\"_\"),weekdays:\"Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба\".split(\"_\"),weekdaysShort:\"Якш_Душ_Сеш_Чор_Пай_Жум_Шан\".split(\"_\"),weekdaysMin:\"Як_Ду_Се_Чо_Па_Жу_Ша\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Бугун соат] LT [да]\",nextDay:\"[Эртага] LT [да]\",nextWeek:\"dddd [куни соат] LT [да]\",lastDay:\"[Кеча соат] LT [да]\",lastWeek:\"[Утган] dddd [куни соат] LT [да]\",sameElse:\"L\"},relativeTime:{future:\"Якин %s ичида\",past:\"Бир неча %s олдин\",s:\"фурсат\",ss:\"%d фурсат\",m:\"бир дакика\",mm:\"%d дакика\",h:\"бир соат\",hh:\"%d соат\",d:\"бир кун\",dd:\"%d кун\",M:\"бир ой\",MM:\"%d ой\",y:\"бир йил\",yy:\"%d йил\"},week:{dow:1,doy:7}})}(n(381))},5666:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12\".split(\"_\"),monthsShort:\"Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12\".split(\"_\"),monthsParseExact:!0,weekdays:\"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [năm] YYYY\",LLL:\"D MMMM [năm] YYYY HH:mm\",LLLL:\"dddd, D MMMM [năm] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Hôm nay lúc] LT\",nextDay:\"[Ngày mai lúc] LT\",nextWeek:\"dddd [tuần tới lúc] LT\",lastDay:\"[Hôm qua lúc] LT\",lastWeek:\"dddd [tuần trước lúc] LT\",sameElse:\"L\"},relativeTime:{future:\"%s tới\",past:\"%s trước\",s:\"vài giây\",ss:\"%d giây\",m:\"một phút\",mm:\"%d phút\",h:\"một giờ\",hh:\"%d giờ\",d:\"một ngày\",dd:\"%d ngày\",w:\"một tuần\",ww:\"%d tuần\",M:\"một tháng\",MM:\"%d tháng\",y:\"một năm\",yy:\"%d năm\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(381))},4378:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér\".split(\"_\"),monthsShort:\"J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý\".split(\"_\"),weekdaysShort:\"S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát\".split(\"_\"),weekdaysMin:\"S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~ódá~ý át] LT\",nextDay:\"[T~ómó~rró~w át] LT\",nextWeek:\"dddd [át] LT\",lastDay:\"[Ý~ést~érdá~ý át] LT\",lastWeek:\"[L~ást] dddd [át] LT\",sameElse:\"L\"},relativeTime:{future:\"í~ñ %s\",past:\"%s á~gó\",s:\"á ~féw ~sécó~ñds\",ss:\"%d s~écóñ~ds\",m:\"á ~míñ~úté\",mm:\"%d m~íñú~tés\",h:\"á~ñ hó~úr\",hh:\"%d h~óúrs\",d:\"á ~dáý\",dd:\"%d d~áýs\",M:\"á ~móñ~th\",MM:\"%d m~óñt~hs\",y:\"á ~ýéár\",yy:\"%d ý~éárs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(381))},5805:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀\".split(\"_\"),monthsShort:\"Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀\".split(\"_\"),weekdays:\"Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta\".split(\"_\"),weekdaysShort:\"Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá\".split(\"_\"),weekdaysMin:\"Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Ònì ni] LT\",nextDay:\"[Ọ̀la ni] LT\",nextWeek:\"dddd [Ọsẹ̀ tón'bọ] [ni] LT\",lastDay:\"[Àna ni] LT\",lastWeek:\"dddd [Ọsẹ̀ tólọ́] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ní %s\",past:\"%s kọjá\",s:\"ìsẹjú aayá die\",ss:\"aayá %d\",m:\"ìsẹjú kan\",mm:\"ìsẹjú %d\",h:\"wákati kan\",hh:\"wákati %d\",d:\"ọjọ́ kan\",dd:\"ọjọ́ %d\",M:\"osù kan\",MM:\"osù %d\",y:\"ọdún kan\",yy:\"ọdún %d\"},dayOfMonthOrdinalParse:/ọjọ́\\s\\d{1,2}/,ordinal:\"ọjọ́ %d\",week:{dow:1,doy:4}})}(n(381))},3839:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月\".split(\"_\"),monthsShort:\"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月\".split(\"_\"),weekdays:\"星期日_星期一_星期二_星期三_星期四_星期五_星期六\".split(\"_\"),weekdaysShort:\"周日_周一_周二_周三_周四_周五_周六\".split(\"_\"),weekdaysMin:\"日_一_二_三_四_五_六\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY年M月D日\",LLL:\"YYYY年M月D日Ah点mm分\",LLLL:\"YYYY年M月D日ddddAh点mm分\",l:\"YYYY/M/D\",ll:\"YYYY年M月D日\",lll:\"YYYY年M月D日 HH:mm\",llll:\"YYYY年M月D日dddd HH:mm\"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),\"凌晨\"===t||\"早上\"===t||\"上午\"===t?e:\"下午\"===t||\"晚上\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"凌晨\":i<900?\"早上\":i<1130?\"上午\":i<1230?\"中午\":i<1800?\"下午\":\"晚上\"},calendar:{sameDay:\"[今天]LT\",nextDay:\"[明天]LT\",nextWeek:function(e){return e.week()!==this.week()?\"[下]dddLT\":\"[本]dddLT\"},lastDay:\"[昨天]LT\",lastWeek:function(e){return this.week()!==e.week()?\"[上]dddLT\":\"[本]dddLT\"},sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"日\";case\"M\":return e+\"月\";case\"w\":case\"W\":return e+\"周\";default:return e}},relativeTime:{future:\"%s后\",past:\"%s前\",s:\"几秒\",ss:\"%d 秒\",m:\"1 分钟\",mm:\"%d 分钟\",h:\"1 小时\",hh:\"%d 小时\",d:\"1 天\",dd:\"%d 天\",w:\"1 周\",ww:\"%d 周\",M:\"1 个月\",MM:\"%d 个月\",y:\"1 年\",yy:\"%d 年\"},week:{dow:1,doy:4}})}(n(381))},5726:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月\".split(\"_\"),monthsShort:\"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月\".split(\"_\"),weekdays:\"星期日_星期一_星期二_星期三_星期四_星期五_星期六\".split(\"_\"),weekdaysShort:\"週日_週一_週二_週三_週四_週五_週六\".split(\"_\"),weekdaysMin:\"日_一_二_三_四_五_六\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY年M月D日\",LLL:\"YYYY年M月D日 HH:mm\",LLLL:\"YYYY年M月D日dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY年M月D日\",lll:\"YYYY年M月D日 HH:mm\",llll:\"YYYY年M月D日dddd HH:mm\"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),\"凌晨\"===t||\"早上\"===t||\"上午\"===t?e:\"中午\"===t?e>=11?e:e+12:\"下午\"===t||\"晚上\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"凌晨\":i<900?\"早上\":i<1200?\"上午\":1200===i?\"中午\":i<1800?\"下午\":\"晚上\"},calendar:{sameDay:\"[今天]LT\",nextDay:\"[明天]LT\",nextWeek:\"[下]ddddLT\",lastDay:\"[昨天]LT\",lastWeek:\"[上]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"日\";case\"M\":return e+\"月\";case\"w\":case\"W\":return e+\"週\";default:return e}},relativeTime:{future:\"%s後\",past:\"%s前\",s:\"幾秒\",ss:\"%d 秒\",m:\"1 分鐘\",mm:\"%d 分鐘\",h:\"1 小時\",hh:\"%d 小時\",d:\"1 天\",dd:\"%d 天\",M:\"1 個月\",MM:\"%d 個月\",y:\"1 年\",yy:\"%d 年\"}})}(n(381))},9807:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-mo\",{months:\"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月\".split(\"_\"),monthsShort:\"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月\".split(\"_\"),weekdays:\"星期日_星期一_星期二_星期三_星期四_星期五_星期六\".split(\"_\"),weekdaysShort:\"週日_週一_週二_週三_週四_週五_週六\".split(\"_\"),weekdaysMin:\"日_一_二_三_四_五_六\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"YYYY年M月D日\",LLL:\"YYYY年M月D日 HH:mm\",LLLL:\"YYYY年M月D日dddd HH:mm\",l:\"D/M/YYYY\",ll:\"YYYY年M月D日\",lll:\"YYYY年M月D日 HH:mm\",llll:\"YYYY年M月D日dddd HH:mm\"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),\"凌晨\"===t||\"早上\"===t||\"上午\"===t?e:\"中午\"===t?e>=11?e:e+12:\"下午\"===t||\"晚上\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"凌晨\":i<900?\"早上\":i<1130?\"上午\":i<1230?\"中午\":i<1800?\"下午\":\"晚上\"},calendar:{sameDay:\"[今天] LT\",nextDay:\"[明天] LT\",nextWeek:\"[下]dddd LT\",lastDay:\"[昨天] LT\",lastWeek:\"[上]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"日\";case\"M\":return e+\"月\";case\"w\":case\"W\":return e+\"週\";default:return e}},relativeTime:{future:\"%s內\",past:\"%s前\",s:\"幾秒\",ss:\"%d 秒\",m:\"1 分鐘\",mm:\"%d 分鐘\",h:\"1 小時\",hh:\"%d 小時\",d:\"1 天\",dd:\"%d 天\",M:\"1 個月\",MM:\"%d 個月\",y:\"1 年\",yy:\"%d 年\"}})}(n(381))},4152:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月\".split(\"_\"),monthsShort:\"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月\".split(\"_\"),weekdays:\"星期日_星期一_星期二_星期三_星期四_星期五_星期六\".split(\"_\"),weekdaysShort:\"週日_週一_週二_週三_週四_週五_週六\".split(\"_\"),weekdaysMin:\"日_一_二_三_四_五_六\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY年M月D日\",LLL:\"YYYY年M月D日 HH:mm\",LLLL:\"YYYY年M月D日dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY年M月D日\",lll:\"YYYY年M月D日 HH:mm\",llll:\"YYYY年M月D日dddd HH:mm\"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),\"凌晨\"===t||\"早上\"===t||\"上午\"===t?e:\"中午\"===t?e>=11?e:e+12:\"下午\"===t||\"晚上\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"凌晨\":i<900?\"早上\":i<1130?\"上午\":i<1230?\"中午\":i<1800?\"下午\":\"晚上\"},calendar:{sameDay:\"[今天] LT\",nextDay:\"[明天] LT\",nextWeek:\"[下]dddd LT\",lastDay:\"[昨天] LT\",lastWeek:\"[上]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"日\";case\"M\":return e+\"月\";case\"w\":case\"W\":return e+\"週\";default:return e}},relativeTime:{future:\"%s後\",past:\"%s前\",s:\"幾秒\",ss:\"%d 秒\",m:\"1 分鐘\",mm:\"%d 分鐘\",h:\"1 小時\",hh:\"%d 小時\",d:\"1 天\",dd:\"%d 天\",M:\"1 個月\",MM:\"%d 個月\",y:\"1 年\",yy:\"%d 年\"}})}(n(381))},6700:(e,t,n)=>{var i={\"./af\":2786,\"./af.js\":2786,\"./ar\":867,\"./ar-dz\":4130,\"./ar-dz.js\":4130,\"./ar-kw\":6135,\"./ar-kw.js\":6135,\"./ar-ly\":6440,\"./ar-ly.js\":6440,\"./ar-ma\":7702,\"./ar-ma.js\":7702,\"./ar-sa\":6040,\"./ar-sa.js\":6040,\"./ar-tn\":7100,\"./ar-tn.js\":7100,\"./ar.js\":867,\"./az\":1083,\"./az.js\":1083,\"./be\":9808,\"./be.js\":9808,\"./bg\":8338,\"./bg.js\":8338,\"./bm\":7438,\"./bm.js\":7438,\"./bn\":8905,\"./bn-bd\":6225,\"./bn-bd.js\":6225,\"./bn.js\":8905,\"./bo\":1560,\"./bo.js\":1560,\"./br\":1278,\"./br.js\":1278,\"./bs\":622,\"./bs.js\":622,\"./ca\":2468,\"./ca.js\":2468,\"./cs\":5822,\"./cs.js\":5822,\"./cv\":877,\"./cv.js\":877,\"./cy\":7373,\"./cy.js\":7373,\"./da\":4780,\"./da.js\":4780,\"./de\":9740,\"./de-at\":217,\"./de-at.js\":217,\"./de-ch\":894,\"./de-ch.js\":894,\"./de.js\":9740,\"./dv\":5300,\"./dv.js\":5300,\"./el\":837,\"./el.js\":837,\"./en-au\":8348,\"./en-au.js\":8348,\"./en-ca\":7925,\"./en-ca.js\":7925,\"./en-gb\":2243,\"./en-gb.js\":2243,\"./en-ie\":6436,\"./en-ie.js\":6436,\"./en-il\":7207,\"./en-il.js\":7207,\"./en-in\":4175,\"./en-in.js\":4175,\"./en-nz\":6319,\"./en-nz.js\":6319,\"./en-sg\":1662,\"./en-sg.js\":1662,\"./eo\":2915,\"./eo.js\":2915,\"./es\":5655,\"./es-do\":5251,\"./es-do.js\":5251,\"./es-mx\":6112,\"./es-mx.js\":6112,\"./es-us\":1146,\"./es-us.js\":1146,\"./es.js\":5655,\"./et\":5603,\"./et.js\":5603,\"./eu\":7763,\"./eu.js\":7763,\"./fa\":6959,\"./fa.js\":6959,\"./fi\":1897,\"./fi.js\":1897,\"./fil\":2549,\"./fil.js\":2549,\"./fo\":4694,\"./fo.js\":4694,\"./fr\":4470,\"./fr-ca\":3049,\"./fr-ca.js\":3049,\"./fr-ch\":2330,\"./fr-ch.js\":2330,\"./fr.js\":4470,\"./fy\":5044,\"./fy.js\":5044,\"./ga\":9295,\"./ga.js\":9295,\"./gd\":2101,\"./gd.js\":2101,\"./gl\":8794,\"./gl.js\":8794,\"./gom-deva\":7884,\"./gom-deva.js\":7884,\"./gom-latn\":3168,\"./gom-latn.js\":3168,\"./gu\":5349,\"./gu.js\":5349,\"./he\":4206,\"./he.js\":4206,\"./hi\":94,\"./hi.js\":94,\"./hr\":316,\"./hr.js\":316,\"./hu\":2138,\"./hu.js\":2138,\"./hy-am\":1423,\"./hy-am.js\":1423,\"./id\":9218,\"./id.js\":9218,\"./is\":135,\"./is.js\":135,\"./it\":626,\"./it-ch\":150,\"./it-ch.js\":150,\"./it.js\":626,\"./ja\":9183,\"./ja.js\":9183,\"./jv\":4286,\"./jv.js\":4286,\"./ka\":2105,\"./ka.js\":2105,\"./kk\":7772,\"./kk.js\":7772,\"./km\":8758,\"./km.js\":8758,\"./kn\":9282,\"./kn.js\":9282,\"./ko\":3730,\"./ko.js\":3730,\"./ku\":1408,\"./ku.js\":1408,\"./ky\":3291,\"./ky.js\":3291,\"./lb\":6841,\"./lb.js\":6841,\"./lo\":5466,\"./lo.js\":5466,\"./lt\":7010,\"./lt.js\":7010,\"./lv\":7595,\"./lv.js\":7595,\"./me\":9861,\"./me.js\":9861,\"./mi\":5493,\"./mi.js\":5493,\"./mk\":5966,\"./mk.js\":5966,\"./ml\":7341,\"./ml.js\":7341,\"./mn\":5115,\"./mn.js\":5115,\"./mr\":370,\"./mr.js\":370,\"./ms\":9847,\"./ms-my\":1237,\"./ms-my.js\":1237,\"./ms.js\":9847,\"./mt\":2126,\"./mt.js\":2126,\"./my\":6165,\"./my.js\":6165,\"./nb\":4924,\"./nb.js\":4924,\"./ne\":6744,\"./ne.js\":6744,\"./nl\":3901,\"./nl-be\":9814,\"./nl-be.js\":9814,\"./nl.js\":3901,\"./nn\":3877,\"./nn.js\":3877,\"./oc-lnc\":2135,\"./oc-lnc.js\":2135,\"./pa-in\":5858,\"./pa-in.js\":5858,\"./pl\":4495,\"./pl.js\":4495,\"./pt\":9520,\"./pt-br\":7971,\"./pt-br.js\":7971,\"./pt.js\":9520,\"./ro\":6459,\"./ro.js\":6459,\"./ru\":1793,\"./ru.js\":1793,\"./sd\":950,\"./sd.js\":950,\"./se\":490,\"./se.js\":490,\"./si\":124,\"./si.js\":124,\"./sk\":4249,\"./sk.js\":4249,\"./sl\":4985,\"./sl.js\":4985,\"./sq\":1104,\"./sq.js\":1104,\"./sr\":9131,\"./sr-cyrl\":9915,\"./sr-cyrl.js\":9915,\"./sr.js\":9131,\"./ss\":5893,\"./ss.js\":5893,\"./sv\":8760,\"./sv.js\":8760,\"./sw\":1172,\"./sw.js\":1172,\"./ta\":7333,\"./ta.js\":7333,\"./te\":3110,\"./te.js\":3110,\"./tet\":2095,\"./tet.js\":2095,\"./tg\":7321,\"./tg.js\":7321,\"./th\":9041,\"./th.js\":9041,\"./tk\":9005,\"./tk.js\":9005,\"./tl-ph\":5768,\"./tl-ph.js\":5768,\"./tlh\":9444,\"./tlh.js\":9444,\"./tr\":2397,\"./tr.js\":2397,\"./tzl\":8254,\"./tzl.js\":8254,\"./tzm\":1106,\"./tzm-latn\":699,\"./tzm-latn.js\":699,\"./tzm.js\":1106,\"./ug-cn\":9288,\"./ug-cn.js\":9288,\"./uk\":7691,\"./uk.js\":7691,\"./ur\":3795,\"./ur.js\":3795,\"./uz\":6791,\"./uz-latn\":588,\"./uz-latn.js\":588,\"./uz.js\":6791,\"./vi\":5666,\"./vi.js\":5666,\"./x-pseudo\":4378,\"./x-pseudo.js\":4378,\"./yo\":5805,\"./yo.js\":5805,\"./zh-cn\":3839,\"./zh-cn.js\":3839,\"./zh-hk\":5726,\"./zh-hk.js\":5726,\"./zh-mo\":9807,\"./zh-mo.js\":9807,\"./zh-tw\":4152,\"./zh-tw.js\":4152};function s(e){var t=a(e);return n(t)}function a(e){if(!n.o(i,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return i[e]}s.keys=function(){return Object.keys(i)},s.resolve=a,e.exports=s,s.id=6700},381:function(e,t,n){(e=n.nmd(e)).exports=function(){\"use strict\";var t,i;function s(){return t.apply(null,arguments)}function a(e){t=e}function r(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function d(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(d(e,t))return!1;return!0}function u(e){return void 0===e}function c(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function h(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function m(e,t){var n,i=[];for(n=0;n<e.length;++n)i.push(t(e[n],n));return i}function _(e,t){for(var n in t)d(t,n)&&(e[n]=t[n]);return d(t,\"toString\")&&(e.toString=t.toString),d(t,\"valueOf\")&&(e.valueOf=t.valueOf),e}function p(e,t,n,i){return Vn(e,t,n,i,!0).utc()}function f(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidEra:null,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],era:null,meridiem:null,rfc2822:!1,weekdayMismatch:!1}}function y(e){return null==e._pf&&(e._pf=f()),e._pf}function g(e){if(null==e._isValid){var t=y(e),n=i.call(t.parsedDateParts,(function(e){return null!=e})),s=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict&&(s=s&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return s;e._isValid=s}return e._isValid}function M(e){var t=p(NaN);return null!=e?_(y(t),e):y(t).userInvalidated=!0,t}i=Array.prototype.some?Array.prototype.some:function(e){var t,n=Object(this),i=n.length>>>0;for(t=0;t<i;t++)if(t in n&&e.call(this,n[t],t,n))return!0;return!1};var v=s.momentProperties=[],L=!1;function Y(e,t){var n,i,s;if(u(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),u(t._i)||(e._i=t._i),u(t._f)||(e._f=t._f),u(t._l)||(e._l=t._l),u(t._strict)||(e._strict=t._strict),u(t._tzm)||(e._tzm=t._tzm),u(t._isUTC)||(e._isUTC=t._isUTC),u(t._offset)||(e._offset=t._offset),u(t._pf)||(e._pf=y(t)),u(t._locale)||(e._locale=t._locale),v.length>0)for(n=0;n<v.length;n++)u(s=t[i=v[n]])||(e[i]=s);return e}function k(e){Y(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===L&&(L=!0,s.updateOffset(this),L=!1)}function b(e){return e instanceof k||null!=e&&null!=e._isAMomentObject}function w(e){!1===s.suppressDeprecationWarnings&&\"undefined\"!=typeof console&&console.warn&&console.warn(\"Deprecation warning: \"+e)}function D(e,t){var n=!0;return _((function(){if(null!=s.deprecationHandler&&s.deprecationHandler(null,e),n){var i,a,r,o=[];for(a=0;a<arguments.length;a++){if(i=\"\",\"object\"==typeof arguments[a]){for(r in i+=\"\\n[\"+a+\"] \",arguments[0])d(arguments[0],r)&&(i+=r+\": \"+arguments[0][r]+\", \");i=i.slice(0,-2)}else i=arguments[a];o.push(i)}w(e+\"\\nArguments: \"+Array.prototype.slice.call(o).join(\"\")+\"\\n\"+(new Error).stack),n=!1}return t.apply(this,arguments)}),t)}var T,x={};function S(e,t){null!=s.deprecationHandler&&s.deprecationHandler(e,t),x[e]||(w(t),x[e]=!0)}function H(e){return\"undefined\"!=typeof Function&&e instanceof Function||\"[object Function]\"===Object.prototype.toString.call(e)}function j(e){var t,n;for(n in e)d(e,n)&&(H(t=e[n])?this[n]=t:this[\"_\"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)}function C(e,t){var n,i=_({},e);for(n in t)d(t,n)&&(o(e[n])&&o(t[n])?(i[n]={},_(i[n],e[n]),_(i[n],t[n])):null!=t[n]?i[n]=t[n]:delete i[n]);for(n in e)d(e,n)&&!d(t,n)&&o(e[n])&&(i[n]=_({},i[n]));return i}function E(e){null!=e&&this.set(e)}s.suppressDeprecationWarnings=!1,s.deprecationHandler=null,T=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)d(e,t)&&n.push(t);return n};var O={sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"};function P(e,t,n){var i=this._calendar[e]||this._calendar.sameElse;return H(i)?i.call(t,n):i}function A(e,t,n){var i=\"\"+Math.abs(e),s=t-i.length;return(e>=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,s)).toString().substr(1)+i}var I=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,W=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,N={},$={};function z(e,t,n,i){var s=i;\"string\"==typeof i&&(s=function(){return this[i]()}),e&&($[e]=s),t&&($[t[0]]=function(){return A(s.apply(this,arguments),t[1],t[2])}),n&&($[n]=function(){return this.localeData().ordinal(s.apply(this,arguments),e)})}function F(e){return e.match(/\\[[\\s\\S]/)?e.replace(/^\\[|\\]$/g,\"\"):e.replace(/\\\\/g,\"\")}function R(e){var t,n,i=e.match(I);for(t=0,n=i.length;t<n;t++)$[i[t]]?i[t]=$[i[t]]:i[t]=F(i[t]);return function(t){var s,a=\"\";for(s=0;s<n;s++)a+=H(i[s])?i[s].call(t,e):i[s];return a}}function U(e,t){return e.isValid()?(t=B(t,e.localeData()),N[t]=N[t]||R(t),N[t](e)):e.localeData().invalidDate()}function B(e,t){var n=5;function i(e){return t.longDateFormat(e)||e}for(W.lastIndex=0;n>=0&&W.test(e);)e=e.replace(W,i),W.lastIndex=0,n-=1;return e}var J={LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"};function q(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(I).map((function(e){return\"MMMM\"===e||\"MM\"===e||\"DD\"===e||\"dddd\"===e?e.slice(1):e})).join(\"\"),this._longDateFormat[e])}var V=\"Invalid date\";function G(){return this._invalidDate}var K=\"%d\",Z=/\\d{1,2}/;function Q(e){return this._ordinal.replace(\"%d\",e)}var X={future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",w:\"a week\",ww:\"%d weeks\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"};function ee(e,t,n,i){var s=this._relativeTime[n];return H(s)?s(e,t,n,i):s.replace(/%d/i,e)}function te(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return H(n)?n(t):n.replace(/%s/i,t)}var ne={};function ie(e,t){var n=e.toLowerCase();ne[n]=ne[n+\"s\"]=ne[t]=e}function se(e){return\"string\"==typeof e?ne[e]||ne[e.toLowerCase()]:void 0}function ae(e){var t,n,i={};for(n in e)d(e,n)&&(t=se(n))&&(i[t]=e[n]);return i}var re={};function oe(e,t){re[e]=t}function de(e){var t,n=[];for(t in e)d(e,t)&&n.push({unit:t,priority:re[t]});return n.sort((function(e,t){return e.priority-t.priority})),n}function le(e){return e%4==0&&e%100!=0||e%400==0}function ue(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function ce(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=ue(t)),n}function he(e,t){return function(n){return null!=n?(_e(this,e,n),s.updateOffset(this,t),this):me(this,e)}}function me(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function _e(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&le(e.year())&&1===e.month()&&29===e.date()?(n=ce(n),e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),et(n,e.month()))):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function pe(e){return H(this[e=se(e)])?this[e]():this}function fe(e,t){if(\"object\"==typeof e){var n,i=de(e=ae(e));for(n=0;n<i.length;n++)this[i[n].unit](e[i[n].unit])}else if(H(this[e=se(e)]))return this[e](t);return this}var ye,ge=/\\d/,Me=/\\d\\d/,ve=/\\d{3}/,Le=/\\d{4}/,Ye=/[+-]?\\d{6}/,ke=/\\d\\d?/,be=/\\d\\d\\d\\d?/,we=/\\d\\d\\d\\d\\d\\d?/,De=/\\d{1,3}/,Te=/\\d{1,4}/,xe=/[+-]?\\d{1,6}/,Se=/\\d+/,He=/[+-]?\\d+/,je=/Z|[+-]\\d\\d:?\\d\\d/gi,Ce=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,Ee=/[+-]?\\d+(\\.\\d{1,3})?/,Oe=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i;function Pe(e,t,n){ye[e]=H(t)?t:function(e,i){return e&&n?n:t}}function Ae(e,t){return d(ye,e)?ye[e](t._strict,t._locale):new RegExp(Ie(e))}function Ie(e){return We(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,i,s){return t||n||i||s})))}function We(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}ye={};var Ne={};function $e(e,t){var n,i=t;for(\"string\"==typeof e&&(e=[e]),c(t)&&(i=function(e,n){n[t]=ce(e)}),n=0;n<e.length;n++)Ne[e[n]]=i}function ze(e,t){$e(e,(function(e,n,i,s){i._w=i._w||{},t(e,i._w,i,s)}))}function Fe(e,t,n){null!=t&&d(Ne,e)&&Ne[e](t,n._a,n,e)}var Re,Ue=0,Be=1,Je=2,qe=3,Ve=4,Ge=5,Ke=6,Ze=7,Qe=8;function Xe(e,t){return(e%t+t)%t}function et(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=Xe(t,12);return e+=(t-n)/12,1===n?le(e)?29:28:31-n%7%2}Re=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t<this.length;++t)if(this[t]===e)return t;return-1},z(\"M\",[\"MM\",2],\"Mo\",(function(){return this.month()+1})),z(\"MMM\",0,0,(function(e){return this.localeData().monthsShort(this,e)})),z(\"MMMM\",0,0,(function(e){return this.localeData().months(this,e)})),ie(\"month\",\"M\"),oe(\"month\",8),Pe(\"M\",ke),Pe(\"MM\",ke,Me),Pe(\"MMM\",(function(e,t){return t.monthsShortRegex(e)})),Pe(\"MMMM\",(function(e,t){return t.monthsRegex(e)})),$e([\"M\",\"MM\"],(function(e,t){t[Be]=ce(e)-1})),$e([\"MMM\",\"MMMM\"],(function(e,t,n,i){var s=n._locale.monthsParse(e,i,n._strict);null!=s?t[Be]=s:y(n).invalidMonth=e}));var tt=\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),nt=\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),it=/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?/,st=Oe,at=Oe;function rt(e,t){return e?r(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||it).test(t)?\"format\":\"standalone\"][e.month()]:r(this._months)?this._months:this._months.standalone}function ot(e,t){return e?r(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[it.test(t)?\"format\":\"standalone\"][e.month()]:r(this._monthsShort)?this._monthsShort:this._monthsShort.standalone}function dt(e,t,n){var i,s,a,r=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],i=0;i<12;++i)a=p([2e3,i]),this._shortMonthsParse[i]=this.monthsShort(a,\"\").toLocaleLowerCase(),this._longMonthsParse[i]=this.months(a,\"\").toLocaleLowerCase();return n?\"MMM\"===t?-1!==(s=Re.call(this._shortMonthsParse,r))?s:null:-1!==(s=Re.call(this._longMonthsParse,r))?s:null:\"MMM\"===t?-1!==(s=Re.call(this._shortMonthsParse,r))||-1!==(s=Re.call(this._longMonthsParse,r))?s:null:-1!==(s=Re.call(this._longMonthsParse,r))||-1!==(s=Re.call(this._shortMonthsParse,r))?s:null}function lt(e,t,n){var i,s,a;if(this._monthsParseExact)return dt.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(s=p([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp(\"^\"+this.months(s,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[i]=new RegExp(\"^\"+this.monthsShort(s,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[i]||(a=\"^\"+this.months(s,\"\")+\"|^\"+this.monthsShort(s,\"\"),this._monthsParse[i]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[i].test(e))return i;if(n&&\"MMM\"===t&&this._shortMonthsParse[i].test(e))return i;if(!n&&this._monthsParse[i].test(e))return i}}function ut(e,t){var n;if(!e.isValid())return e;if(\"string\"==typeof t)if(/^\\d+$/.test(t))t=ce(t);else if(!c(t=e.localeData().monthsParse(t)))return e;return n=Math.min(e.date(),et(e.year(),t)),e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+\"Month\"](t,n),e}function ct(e){return null!=e?(ut(this,e),s.updateOffset(this,!0),this):me(this,\"Month\")}function ht(){return et(this.year(),this.month())}function mt(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||pt.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,\"_monthsShortRegex\")||(this._monthsShortRegex=st),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)}function _t(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||pt.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,\"_monthsRegex\")||(this._monthsRegex=at),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)}function pt(){function e(e,t){return t.length-e.length}var t,n,i=[],s=[],a=[];for(t=0;t<12;t++)n=p([2e3,t]),i.push(this.monthsShort(n,\"\")),s.push(this.months(n,\"\")),a.push(this.months(n,\"\")),a.push(this.monthsShort(n,\"\"));for(i.sort(e),s.sort(e),a.sort(e),t=0;t<12;t++)i[t]=We(i[t]),s[t]=We(s[t]);for(t=0;t<24;t++)a[t]=We(a[t]);this._monthsRegex=new RegExp(\"^(\"+a.join(\"|\")+\")\",\"i\"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp(\"^(\"+s.join(\"|\")+\")\",\"i\"),this._monthsShortStrictRegex=new RegExp(\"^(\"+i.join(\"|\")+\")\",\"i\")}function ft(e){return le(e)?366:365}z(\"Y\",0,0,(function(){var e=this.year();return e<=9999?A(e,4):\"+\"+e})),z(0,[\"YY\",2],0,(function(){return this.year()%100})),z(0,[\"YYYY\",4],0,\"year\"),z(0,[\"YYYYY\",5],0,\"year\"),z(0,[\"YYYYYY\",6,!0],0,\"year\"),ie(\"year\",\"y\"),oe(\"year\",1),Pe(\"Y\",He),Pe(\"YY\",ke,Me),Pe(\"YYYY\",Te,Le),Pe(\"YYYYY\",xe,Ye),Pe(\"YYYYYY\",xe,Ye),$e([\"YYYYY\",\"YYYYYY\"],Ue),$e(\"YYYY\",(function(e,t){t[Ue]=2===e.length?s.parseTwoDigitYear(e):ce(e)})),$e(\"YY\",(function(e,t){t[Ue]=s.parseTwoDigitYear(e)})),$e(\"Y\",(function(e,t){t[Ue]=parseInt(e,10)})),s.parseTwoDigitYear=function(e){return ce(e)+(ce(e)>68?1900:2e3)};var yt=he(\"FullYear\",!0);function gt(){return le(this.year())}function Mt(e,t,n,i,s,a,r){var o;return e<100&&e>=0?(o=new Date(e+400,t,n,i,s,a,r),isFinite(o.getFullYear())&&o.setFullYear(e)):o=new Date(e,t,n,i,s,a,r),o}function vt(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Lt(e,t,n){var i=7+t-n;return-(7+vt(e,0,i).getUTCDay()-t)%7+i-1}function Yt(e,t,n,i,s){var a,r,o=1+7*(t-1)+(7+n-i)%7+Lt(e,i,s);return o<=0?r=ft(a=e-1)+o:o>ft(e)?(a=e+1,r=o-ft(e)):(a=e,r=o),{year:a,dayOfYear:r}}function kt(e,t,n){var i,s,a=Lt(e.year(),t,n),r=Math.floor((e.dayOfYear()-a-1)/7)+1;return r<1?i=r+bt(s=e.year()-1,t,n):r>bt(e.year(),t,n)?(i=r-bt(e.year(),t,n),s=e.year()+1):(s=e.year(),i=r),{week:i,year:s}}function bt(e,t,n){var i=Lt(e,t,n),s=Lt(e+1,t,n);return(ft(e)-i+s)/7}function wt(e){return kt(e,this._week.dow,this._week.doy).week}z(\"w\",[\"ww\",2],\"wo\",\"week\"),z(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),ie(\"week\",\"w\"),ie(\"isoWeek\",\"W\"),oe(\"week\",5),oe(\"isoWeek\",5),Pe(\"w\",ke),Pe(\"ww\",ke,Me),Pe(\"W\",ke),Pe(\"WW\",ke,Me),ze([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,i){t[i.substr(0,1)]=ce(e)}));var Dt={dow:0,doy:6};function Tt(){return this._week.dow}function xt(){return this._week.doy}function St(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")}function Ht(e){var t=kt(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")}function jt(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}function Ct(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Et(e,t){return e.slice(t,7).concat(e.slice(0,t))}z(\"d\",0,\"do\",\"day\"),z(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),z(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),z(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),z(\"e\",0,0,\"weekday\"),z(\"E\",0,0,\"isoWeekday\"),ie(\"day\",\"d\"),ie(\"weekday\",\"e\"),ie(\"isoWeekday\",\"E\"),oe(\"day\",11),oe(\"weekday\",11),oe(\"isoWeekday\",11),Pe(\"d\",ke),Pe(\"e\",ke),Pe(\"E\",ke),Pe(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),Pe(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),Pe(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),ze([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,i){var s=n._locale.weekdaysParse(e,i,n._strict);null!=s?t.d=s:y(n).invalidWeekday=e})),ze([\"d\",\"e\",\"E\"],(function(e,t,n,i){t[i]=ce(e)}));var Ot=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Pt=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),At=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),It=Oe,Wt=Oe,Nt=Oe;function $t(e,t){var n=r(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Et(n,this._week.dow):e?n[e.day()]:n}function zt(e){return!0===e?Et(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Ft(e){return!0===e?Et(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Rt(e,t,n){var i,s,a,r=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)a=p([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(a,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(a,\"\").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(a,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(s=Re.call(this._weekdaysParse,r))?s:null:\"ddd\"===t?-1!==(s=Re.call(this._shortWeekdaysParse,r))?s:null:-1!==(s=Re.call(this._minWeekdaysParse,r))?s:null:\"dddd\"===t?-1!==(s=Re.call(this._weekdaysParse,r))||-1!==(s=Re.call(this._shortWeekdaysParse,r))||-1!==(s=Re.call(this._minWeekdaysParse,r))?s:null:\"ddd\"===t?-1!==(s=Re.call(this._shortWeekdaysParse,r))||-1!==(s=Re.call(this._weekdaysParse,r))||-1!==(s=Re.call(this._minWeekdaysParse,r))?s:null:-1!==(s=Re.call(this._minWeekdaysParse,r))||-1!==(s=Re.call(this._weekdaysParse,r))||-1!==(s=Re.call(this._shortWeekdaysParse,r))?s:null}function Ut(e,t,n){var i,s,a;if(this._weekdaysParseExact)return Rt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(s=p([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp(\"^\"+this.weekdays(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysShort(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysMin(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[i]||(a=\"^\"+this.weekdays(s,\"\")+\"|^\"+this.weekdaysShort(s,\"\")+\"|^\"+this.weekdaysMin(s,\"\"),this._weekdaysParse[i]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[i].test(e))return i;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[i].test(e))return i;if(n&&\"dd\"===t&&this._minWeekdaysParse[i].test(e))return i;if(!n&&this._weekdaysParse[i].test(e))return i}}function Bt(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=jt(e,this.localeData()),this.add(e-t,\"d\")):t}function Jt(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")}function qt(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=Ct(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Vt(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||Zt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,\"_weekdaysRegex\")||(this._weekdaysRegex=It),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Gt(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||Zt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=Wt),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Kt(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||Zt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=Nt),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Zt(){function e(e,t){return t.length-e.length}var t,n,i,s,a,r=[],o=[],d=[],l=[];for(t=0;t<7;t++)n=p([2e3,1]).day(t),i=We(this.weekdaysMin(n,\"\")),s=We(this.weekdaysShort(n,\"\")),a=We(this.weekdays(n,\"\")),r.push(i),o.push(s),d.push(a),l.push(i),l.push(s),l.push(a);r.sort(e),o.sort(e),d.sort(e),l.sort(e),this._weekdaysRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+d.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+r.join(\"|\")+\")\",\"i\")}function Qt(){return this.hours()%12||12}function Xt(){return this.hours()||24}function en(e,t){z(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function tn(e,t){return t._meridiemParse}function nn(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)}z(\"H\",[\"HH\",2],0,\"hour\"),z(\"h\",[\"hh\",2],0,Qt),z(\"k\",[\"kk\",2],0,Xt),z(\"hmm\",0,0,(function(){return\"\"+Qt.apply(this)+A(this.minutes(),2)})),z(\"hmmss\",0,0,(function(){return\"\"+Qt.apply(this)+A(this.minutes(),2)+A(this.seconds(),2)})),z(\"Hmm\",0,0,(function(){return\"\"+this.hours()+A(this.minutes(),2)})),z(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+A(this.minutes(),2)+A(this.seconds(),2)})),en(\"a\",!0),en(\"A\",!1),ie(\"hour\",\"h\"),oe(\"hour\",13),Pe(\"a\",tn),Pe(\"A\",tn),Pe(\"H\",ke),Pe(\"h\",ke),Pe(\"k\",ke),Pe(\"HH\",ke,Me),Pe(\"hh\",ke,Me),Pe(\"kk\",ke,Me),Pe(\"hmm\",be),Pe(\"hmmss\",we),Pe(\"Hmm\",be),Pe(\"Hmmss\",we),$e([\"H\",\"HH\"],qe),$e([\"k\",\"kk\"],(function(e,t,n){var i=ce(e);t[qe]=24===i?0:i})),$e([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),$e([\"h\",\"hh\"],(function(e,t,n){t[qe]=ce(e),y(n).bigHour=!0})),$e(\"hmm\",(function(e,t,n){var i=e.length-2;t[qe]=ce(e.substr(0,i)),t[Ve]=ce(e.substr(i)),y(n).bigHour=!0})),$e(\"hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[qe]=ce(e.substr(0,i)),t[Ve]=ce(e.substr(i,2)),t[Ge]=ce(e.substr(s)),y(n).bigHour=!0})),$e(\"Hmm\",(function(e,t,n){var i=e.length-2;t[qe]=ce(e.substr(0,i)),t[Ve]=ce(e.substr(i))})),$e(\"Hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[qe]=ce(e.substr(0,i)),t[Ve]=ce(e.substr(i,2)),t[Ge]=ce(e.substr(s))}));var sn=/[ap]\\.?m?\\.?/i,an=he(\"Hours\",!0);function rn(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"}var on,dn={calendar:O,longDateFormat:J,invalidDate:V,ordinal:K,dayOfMonthOrdinalParse:Z,relativeTime:X,months:tt,monthsShort:nt,week:Dt,weekdays:Ot,weekdaysMin:At,weekdaysShort:Pt,meridiemParse:sn},ln={},un={};function cn(e,t){var n,i=Math.min(e.length,t.length);for(n=0;n<i;n+=1)if(e[n]!==t[n])return n;return i}function hn(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function mn(e){for(var t,n,i,s,a=0;a<e.length;){for(t=(s=hn(e[a]).split(\"-\")).length,n=(n=hn(e[a+1]))?n.split(\"-\"):null;t>0;){if(i=_n(s.slice(0,t).join(\"-\")))return i;if(n&&n.length>=t&&cn(s,n)>=t-1)break;t--}a++}return on}function _n(t){var i=null;if(void 0===ln[t]&&e&&e.exports)try{i=on._abbr,n(6700)(\"./\"+t),pn(i)}catch(e){ln[t]=null}return ln[t]}function pn(e,t){var n;return e&&((n=u(t)?gn(e):fn(e,t))?on=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),on._abbr}function fn(e,t){if(null!==t){var n,i=dn;if(t.abbr=e,null!=ln[e])S(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),i=ln[e]._config;else if(null!=t.parentLocale)if(null!=ln[t.parentLocale])i=ln[t.parentLocale]._config;else{if(null==(n=_n(t.parentLocale)))return un[t.parentLocale]||(un[t.parentLocale]=[]),un[t.parentLocale].push({name:e,config:t}),null;i=n._config}return ln[e]=new E(C(i,t)),un[e]&&un[e].forEach((function(e){fn(e.name,e.config)})),pn(e),ln[e]}return delete ln[e],null}function yn(e,t){if(null!=t){var n,i,s=dn;null!=ln[e]&&null!=ln[e].parentLocale?ln[e].set(C(ln[e]._config,t)):(null!=(i=_n(e))&&(s=i._config),t=C(s,t),null==i&&(t.abbr=e),(n=new E(t)).parentLocale=ln[e],ln[e]=n),pn(e)}else null!=ln[e]&&(null!=ln[e].parentLocale?(ln[e]=ln[e].parentLocale,e===pn()&&pn(e)):null!=ln[e]&&delete ln[e]);return ln[e]}function gn(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return on;if(!r(e)){if(t=_n(e))return t;e=[e]}return mn(e)}function Mn(){return T(ln)}function vn(e){var t,n=e._a;return n&&-2===y(e).overflow&&(t=n[Be]<0||n[Be]>11?Be:n[Je]<1||n[Je]>et(n[Ue],n[Be])?Je:n[qe]<0||n[qe]>24||24===n[qe]&&(0!==n[Ve]||0!==n[Ge]||0!==n[Ke])?qe:n[Ve]<0||n[Ve]>59?Ve:n[Ge]<0||n[Ge]>59?Ge:n[Ke]<0||n[Ke]>999?Ke:-1,y(e)._overflowDayOfYear&&(t<Ue||t>Je)&&(t=Je),y(e)._overflowWeeks&&-1===t&&(t=Ze),y(e)._overflowWeekday&&-1===t&&(t=Qe),y(e).overflow=t),e}var Ln=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([+-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,Yn=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d|))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([+-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,kn=/Z|[+-]\\d\\d(?::?\\d\\d)?/,bn=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/],[\"YYYYMM\",/\\d{6}/,!1],[\"YYYY\",/\\d{4}/,!1]],wn=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],Dn=/^\\/?Date\\((-?\\d+)/i,Tn=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\\s)?(\\d{1,2})\\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\s(\\d{2,4})\\s(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\\d{4}))$/,xn={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function Sn(e){var t,n,i,s,a,r,o=e._i,d=Ln.exec(o)||Yn.exec(o);if(d){for(y(e).iso=!0,t=0,n=bn.length;t<n;t++)if(bn[t][1].exec(d[1])){s=bn[t][0],i=!1!==bn[t][2];break}if(null==s)return void(e._isValid=!1);if(d[3]){for(t=0,n=wn.length;t<n;t++)if(wn[t][1].exec(d[3])){a=(d[2]||\" \")+wn[t][0];break}if(null==a)return void(e._isValid=!1)}if(!i&&null!=a)return void(e._isValid=!1);if(d[4]){if(!kn.exec(d[4]))return void(e._isValid=!1);r=\"Z\"}e._f=s+(a||\"\")+(r||\"\"),zn(e)}else e._isValid=!1}function Hn(e,t,n,i,s,a){var r=[jn(e),nt.indexOf(t),parseInt(n,10),parseInt(i,10),parseInt(s,10)];return a&&r.push(parseInt(a,10)),r}function jn(e){var t=parseInt(e,10);return t<=49?2e3+t:t<=999?1900+t:t}function Cn(e){return e.replace(/\\([^)]*\\)|[\\n\\t]/g,\" \").replace(/(\\s\\s+)/g,\" \").replace(/^\\s\\s*/,\"\").replace(/\\s\\s*$/,\"\")}function En(e,t,n){return!e||Pt.indexOf(e)===new Date(t[0],t[1],t[2]).getDay()||(y(n).weekdayMismatch=!0,n._isValid=!1,!1)}function On(e,t,n){if(e)return xn[e];if(t)return 0;var i=parseInt(n,10),s=i%100;return(i-s)/100*60+s}function Pn(e){var t,n=Tn.exec(Cn(e._i));if(n){if(t=Hn(n[4],n[3],n[2],n[5],n[6],n[7]),!En(n[1],t,e))return;e._a=t,e._tzm=On(n[8],n[9],n[10]),e._d=vt.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),y(e).rfc2822=!0}else e._isValid=!1}function An(e){var t=Dn.exec(e._i);null===t?(Sn(e),!1===e._isValid&&(delete e._isValid,Pn(e),!1===e._isValid&&(delete e._isValid,e._strict?e._isValid=!1:s.createFromInputFallback(e)))):e._d=new Date(+t[1])}function In(e,t,n){return null!=e?e:null!=t?t:n}function Wn(e){var t=new Date(s.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}function Nn(e){var t,n,i,s,a,r=[];if(!e._d){for(i=Wn(e),e._w&&null==e._a[Je]&&null==e._a[Be]&&$n(e),null!=e._dayOfYear&&(a=In(e._a[Ue],i[Ue]),(e._dayOfYear>ft(a)||0===e._dayOfYear)&&(y(e)._overflowDayOfYear=!0),n=vt(a,0,e._dayOfYear),e._a[Be]=n.getUTCMonth(),e._a[Je]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=r[t]=i[t];for(;t<7;t++)e._a[t]=r[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[qe]&&0===e._a[Ve]&&0===e._a[Ge]&&0===e._a[Ke]&&(e._nextDay=!0,e._a[qe]=0),e._d=(e._useUTC?vt:Mt).apply(null,r),s=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[qe]=24),e._w&&void 0!==e._w.d&&e._w.d!==s&&(y(e).weekdayMismatch=!0)}}function $n(e){var t,n,i,s,a,r,o,d,l;null!=(t=e._w).GG||null!=t.W||null!=t.E?(a=1,r=4,n=In(t.GG,e._a[Ue],kt(Gn(),1,4).year),i=In(t.W,1),((s=In(t.E,1))<1||s>7)&&(d=!0)):(a=e._locale._week.dow,r=e._locale._week.doy,l=kt(Gn(),a,r),n=In(t.gg,e._a[Ue],l.year),i=In(t.w,l.week),null!=t.d?((s=t.d)<0||s>6)&&(d=!0):null!=t.e?(s=t.e+a,(t.e<0||t.e>6)&&(d=!0)):s=a),i<1||i>bt(n,a,r)?y(e)._overflowWeeks=!0:null!=d?y(e)._overflowWeekday=!0:(o=Yt(n,i,s,a,r),e._a[Ue]=o.year,e._dayOfYear=o.dayOfYear)}function zn(e){if(e._f!==s.ISO_8601)if(e._f!==s.RFC_2822){e._a=[],y(e).empty=!0;var t,n,i,a,r,o,d=\"\"+e._i,l=d.length,u=0;for(i=B(e._f,e._locale).match(I)||[],t=0;t<i.length;t++)a=i[t],(n=(d.match(Ae(a,e))||[])[0])&&((r=d.substr(0,d.indexOf(n))).length>0&&y(e).unusedInput.push(r),d=d.slice(d.indexOf(n)+n.length),u+=n.length),$[a]?(n?y(e).empty=!1:y(e).unusedTokens.push(a),Fe(a,n,e)):e._strict&&!n&&y(e).unusedTokens.push(a);y(e).charsLeftOver=l-u,d.length>0&&y(e).unusedInput.push(d),e._a[qe]<=12&&!0===y(e).bigHour&&e._a[qe]>0&&(y(e).bigHour=void 0),y(e).parsedDateParts=e._a.slice(0),y(e).meridiem=e._meridiem,e._a[qe]=Fn(e._locale,e._a[qe],e._meridiem),null!==(o=y(e).era)&&(e._a[Ue]=e._locale.erasConvertYear(o,e._a[Ue])),Nn(e),vn(e)}else Pn(e);else Sn(e)}function Fn(e,t,n){var i;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((i=e.isPM(n))&&t<12&&(t+=12),i||12!==t||(t=0),t):t}function Rn(e){var t,n,i,s,a,r,o=!1;if(0===e._f.length)return y(e).invalidFormat=!0,void(e._d=new Date(NaN));for(s=0;s<e._f.length;s++)a=0,r=!1,t=Y({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[s],zn(t),g(t)&&(r=!0),a+=y(t).charsLeftOver,a+=10*y(t).unusedTokens.length,y(t).score=a,o?a<i&&(i=a,n=t):(null==i||a<i||r)&&(i=a,n=t,r&&(o=!0));_(e,n||t)}function Un(e){if(!e._d){var t=ae(e._i),n=void 0===t.day?t.date:t.day;e._a=m([t.year,t.month,n,t.hour,t.minute,t.second,t.millisecond],(function(e){return e&&parseInt(e,10)})),Nn(e)}}function Bn(e){var t=new k(vn(Jn(e)));return t._nextDay&&(t.add(1,\"d\"),t._nextDay=void 0),t}function Jn(e){var t=e._i,n=e._f;return e._locale=e._locale||gn(e._l),null===t||void 0===n&&\"\"===t?M({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),b(t)?new k(vn(t)):(h(t)?e._d=t:r(n)?Rn(e):n?zn(e):qn(e),g(e)||(e._d=null),e))}function qn(e){var t=e._i;u(t)?e._d=new Date(s.now()):h(t)?e._d=new Date(t.valueOf()):\"string\"==typeof t?An(e):r(t)?(e._a=m(t.slice(0),(function(e){return parseInt(e,10)})),Nn(e)):o(t)?Un(e):c(t)?e._d=new Date(t):s.createFromInputFallback(e)}function Vn(e,t,n,i,s){var a={};return!0!==t&&!1!==t||(i=t,t=void 0),!0!==n&&!1!==n||(i=n,n=void 0),(o(e)&&l(e)||r(e)&&0===e.length)&&(e=void 0),a._isAMomentObject=!0,a._useUTC=a._isUTC=s,a._l=n,a._i=e,a._f=t,a._strict=i,Bn(a)}function Gn(e,t,n,i){return Vn(e,t,n,i,!1)}s.createFromInputFallback=D(\"value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.\",(function(e){e._d=new Date(e._i+(e._useUTC?\" UTC\":\"\"))})),s.ISO_8601=function(){},s.RFC_2822=function(){};var Kn=D(\"moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/\",(function(){var e=Gn.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:M()})),Zn=D(\"moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/\",(function(){var e=Gn.apply(null,arguments);return this.isValid()&&e.isValid()?e>this?this:e:M()}));function Qn(e,t){var n,i;if(1===t.length&&r(t[0])&&(t=t[0]),!t.length)return Gn();for(n=t[0],i=1;i<t.length;++i)t[i].isValid()&&!t[i][e](n)||(n=t[i]);return n}function Xn(){return Qn(\"isBefore\",[].slice.call(arguments,0))}function ei(){return Qn(\"isAfter\",[].slice.call(arguments,0))}var ti=function(){return Date.now?Date.now():+new Date},ni=[\"year\",\"quarter\",\"month\",\"week\",\"day\",\"hour\",\"minute\",\"second\",\"millisecond\"];function ii(e){var t,n,i=!1;for(t in e)if(d(e,t)&&(-1===Re.call(ni,t)||null!=e[t]&&isNaN(e[t])))return!1;for(n=0;n<ni.length;++n)if(e[ni[n]]){if(i)return!1;parseFloat(e[ni[n]])!==ce(e[ni[n]])&&(i=!0)}return!0}function si(){return this._isValid}function ai(){return xi(NaN)}function ri(e){var t=ae(e),n=t.year||0,i=t.quarter||0,s=t.month||0,a=t.week||t.isoWeek||0,r=t.day||0,o=t.hour||0,d=t.minute||0,l=t.second||0,u=t.millisecond||0;this._isValid=ii(t),this._milliseconds=+u+1e3*l+6e4*d+1e3*o*60*60,this._days=+r+7*a,this._months=+s+3*i+12*n,this._data={},this._locale=gn(),this._bubble()}function oi(e){return e instanceof ri}function di(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function li(e,t,n){var i,s=Math.min(e.length,t.length),a=Math.abs(e.length-t.length),r=0;for(i=0;i<s;i++)(n&&e[i]!==t[i]||!n&&ce(e[i])!==ce(t[i]))&&r++;return r+a}function ui(e,t){z(e,0,0,(function(){var e=this.utcOffset(),n=\"+\";return e<0&&(e=-e,n=\"-\"),n+A(~~(e/60),2)+t+A(~~e%60,2)}))}ui(\"Z\",\":\"),ui(\"ZZ\",\"\"),Pe(\"Z\",Ce),Pe(\"ZZ\",Ce),$e([\"Z\",\"ZZ\"],(function(e,t,n){n._useUTC=!0,n._tzm=hi(Ce,e)}));var ci=/([\\+\\-]|\\d\\d)/gi;function hi(e,t){var n,i,s=(t||\"\").match(e);return null===s?null:0===(i=60*(n=((s[s.length-1]||[])+\"\").match(ci)||[\"-\",0,0])[1]+ce(n[2]))?0:\"+\"===n[0]?i:-i}function mi(e,t){var n,i;return t._isUTC?(n=t.clone(),i=(b(e)||h(e)?e.valueOf():Gn(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+i),s.updateOffset(n,!1),n):Gn(e).local()}function _i(e){return-Math.round(e._d.getTimezoneOffset())}function pi(e,t,n){var i,a=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=hi(Ce,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=_i(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,\"m\"),a!==e&&(!t||this._changeInProgress?Ei(this,xi(e-a,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,s.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?a:_i(this)}function fi(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}function yi(e){return this.utcOffset(0,e)}function gi(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(_i(this),\"m\")),this}function Mi(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=hi(je,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this}function vi(e){return!!this.isValid()&&(e=e?Gn(e).utcOffset():0,(this.utcOffset()-e)%60==0)}function Li(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Yi(){if(!u(this._isDSTShifted))return this._isDSTShifted;var e,t={};return Y(t,this),(t=Jn(t))._a?(e=t._isUTC?p(t._a):Gn(t._a),this._isDSTShifted=this.isValid()&&li(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function ki(){return!!this.isValid()&&!this._isUTC}function bi(){return!!this.isValid()&&this._isUTC}function wi(){return!!this.isValid()&&this._isUTC&&0===this._offset}s.updateOffset=function(){};var Di=/^(-|\\+)?(?:(\\d*)[. ])?(\\d+):(\\d+)(?::(\\d+)(\\.\\d*)?)?$/,Ti=/^(-|\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function xi(e,t){var n,i,s,a=e,r=null;return oi(e)?a={ms:e._milliseconds,d:e._days,M:e._months}:c(e)||!isNaN(+e)?(a={},t?a[t]=+e:a.milliseconds=+e):(r=Di.exec(e))?(n=\"-\"===r[1]?-1:1,a={y:0,d:ce(r[Je])*n,h:ce(r[qe])*n,m:ce(r[Ve])*n,s:ce(r[Ge])*n,ms:ce(di(1e3*r[Ke]))*n}):(r=Ti.exec(e))?(n=\"-\"===r[1]?-1:1,a={y:Si(r[2],n),M:Si(r[3],n),w:Si(r[4],n),d:Si(r[5],n),h:Si(r[6],n),m:Si(r[7],n),s:Si(r[8],n)}):null==a?a={}:\"object\"==typeof a&&(\"from\"in a||\"to\"in a)&&(s=ji(Gn(a.from),Gn(a.to)),(a={}).ms=s.milliseconds,a.M=s.months),i=new ri(a),oi(e)&&d(e,\"_locale\")&&(i._locale=e._locale),oi(e)&&d(e,\"_isValid\")&&(i._isValid=e._isValid),i}function Si(e,t){var n=e&&parseFloat(e.replace(\",\",\".\"));return(isNaN(n)?0:n)*t}function Hi(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,\"M\").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,\"M\"),n}function ji(e,t){var n;return e.isValid()&&t.isValid()?(t=mi(t,e),e.isBefore(t)?n=Hi(e,t):((n=Hi(t,e)).milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Ci(e,t){return function(n,i){var s;return null===i||isNaN(+i)||(S(t,\"moment().\"+t+\"(period, number) is deprecated. Please use moment().\"+t+\"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.\"),s=n,n=i,i=s),Ei(this,xi(n,i),e),this}}function Ei(e,t,n,i){var a=t._milliseconds,r=di(t._days),o=di(t._months);e.isValid()&&(i=null==i||i,o&&ut(e,me(e,\"Month\")+o*n),r&&_e(e,\"Date\",me(e,\"Date\")+r*n),a&&e._d.setTime(e._d.valueOf()+a*n),i&&s.updateOffset(e,r||o))}xi.fn=ri.prototype,xi.invalid=ai;var Oi=Ci(1,\"add\"),Pi=Ci(-1,\"subtract\");function Ai(e){return\"string\"==typeof e||e instanceof String}function Ii(e){return b(e)||h(e)||Ai(e)||c(e)||Ni(e)||Wi(e)||null==e}function Wi(e){var t,n,i=o(e)&&!l(e),s=!1,a=[\"years\",\"year\",\"y\",\"months\",\"month\",\"M\",\"days\",\"day\",\"d\",\"dates\",\"date\",\"D\",\"hours\",\"hour\",\"h\",\"minutes\",\"minute\",\"m\",\"seconds\",\"second\",\"s\",\"milliseconds\",\"millisecond\",\"ms\"];for(t=0;t<a.length;t+=1)n=a[t],s=s||d(e,n);return i&&s}function Ni(e){var t=r(e),n=!1;return t&&(n=0===e.filter((function(t){return!c(t)&&Ai(e)})).length),t&&n}function $i(e){var t,n,i=o(e)&&!l(e),s=!1,a=[\"sameDay\",\"nextDay\",\"lastDay\",\"nextWeek\",\"lastWeek\",\"sameElse\"];for(t=0;t<a.length;t+=1)n=a[t],s=s||d(e,n);return i&&s}function zi(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"}function Fi(e,t){1===arguments.length&&(arguments[0]?Ii(arguments[0])?(e=arguments[0],t=void 0):$i(arguments[0])&&(t=arguments[0],e=void 0):(e=void 0,t=void 0));var n=e||Gn(),i=mi(n,this).startOf(\"day\"),a=s.calendarFormat(this,i)||\"sameElse\",r=t&&(H(t[a])?t[a].call(this,n):t[a]);return this.format(r||this.localeData().calendar(a,this,Gn(n)))}function Ri(){return new k(this)}function Ui(e,t){var n=b(e)?e:Gn(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=se(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())}function Bi(e,t){var n=b(e)?e:Gn(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=se(t)||\"millisecond\")?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())}function Ji(e,t,n,i){var s=b(e)?e:Gn(e),a=b(t)?t:Gn(t);return!!(this.isValid()&&s.isValid()&&a.isValid())&&(\"(\"===(i=i||\"()\")[0]?this.isAfter(s,n):!this.isBefore(s,n))&&(\")\"===i[1]?this.isBefore(a,n):!this.isAfter(a,n))}function qi(e,t){var n,i=b(e)?e:Gn(e);return!(!this.isValid()||!i.isValid())&&(\"millisecond\"===(t=se(t)||\"millisecond\")?this.valueOf()===i.valueOf():(n=i.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))}function Vi(e,t){return this.isSame(e,t)||this.isAfter(e,t)}function Gi(e,t){return this.isSame(e,t)||this.isBefore(e,t)}function Ki(e,t,n){var i,s,a;if(!this.isValid())return NaN;if(!(i=mi(e,this)).isValid())return NaN;switch(s=6e4*(i.utcOffset()-this.utcOffset()),t=se(t)){case\"year\":a=Zi(this,i)/12;break;case\"month\":a=Zi(this,i);break;case\"quarter\":a=Zi(this,i)/3;break;case\"second\":a=(this-i)/1e3;break;case\"minute\":a=(this-i)/6e4;break;case\"hour\":a=(this-i)/36e5;break;case\"day\":a=(this-i-s)/864e5;break;case\"week\":a=(this-i-s)/6048e5;break;default:a=this-i}return n?a:ue(a)}function Zi(e,t){if(e.date()<t.date())return-Zi(t,e);var n=12*(t.year()-e.year())+(t.month()-e.month()),i=e.clone().add(n,\"months\");return-(n+(t-i<0?(t-i)/(i-e.clone().add(n-1,\"months\")):(t-i)/(e.clone().add(n+1,\"months\")-i)))||0}function Qi(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")}function Xi(e){if(!this.isValid())return null;var t=!0!==e,n=t?this.clone().utc():this;return n.year()<0||n.year()>9999?U(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):H(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",U(n,\"Z\")):U(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")}function es(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e,t,n,i,s=\"moment\",a=\"\";return this.isLocal()||(s=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",a=\"Z\"),e=\"[\"+s+'(\"]',t=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\",n=\"-MM-DD[T]HH:mm:ss.SSS\",i=a+'[\")]',this.format(e+t+n+i)}function ts(e){e||(e=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)}function ns(e,t){return this.isValid()&&(b(e)&&e.isValid()||Gn(e).isValid())?xi({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function is(e){return this.from(Gn(),e)}function ss(e,t){return this.isValid()&&(b(e)&&e.isValid()||Gn(e).isValid())?xi({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function as(e){return this.to(Gn(),e)}function rs(e){var t;return void 0===e?this._locale._abbr:(null!=(t=gn(e))&&(this._locale=t),this)}s.defaultFormat=\"YYYY-MM-DDTHH:mm:ssZ\",s.defaultFormatUtc=\"YYYY-MM-DDTHH:mm:ss[Z]\";var os=D(\"moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.\",(function(e){return void 0===e?this.localeData():this.locale(e)}));function ds(){return this._locale}var ls=1e3,us=60*ls,cs=60*us,hs=3506328*cs;function ms(e,t){return(e%t+t)%t}function _s(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-hs:new Date(e,t,n).valueOf()}function ps(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-hs:Date.UTC(e,t,n)}function fs(e){var t,n;if(void 0===(e=se(e))||\"millisecond\"===e||!this.isValid())return this;switch(n=this._isUTC?ps:_s,e){case\"year\":t=n(this.year(),0,1);break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3,1);break;case\"month\":t=n(this.year(),this.month(),1);break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday());break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date());break;case\"hour\":t=this._d.valueOf(),t-=ms(t+(this._isUTC?0:this.utcOffset()*us),cs);break;case\"minute\":t=this._d.valueOf(),t-=ms(t,us);break;case\"second\":t=this._d.valueOf(),t-=ms(t,ls)}return this._d.setTime(t),s.updateOffset(this,!0),this}function ys(e){var t,n;if(void 0===(e=se(e))||\"millisecond\"===e||!this.isValid())return this;switch(n=this._isUTC?ps:_s,e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=cs-ms(t+(this._isUTC?0:this.utcOffset()*us),cs)-1;break;case\"minute\":t=this._d.valueOf(),t+=us-ms(t,us)-1;break;case\"second\":t=this._d.valueOf(),t+=ls-ms(t,ls)-1}return this._d.setTime(t),s.updateOffset(this,!0),this}function gs(){return this._d.valueOf()-6e4*(this._offset||0)}function Ms(){return Math.floor(this.valueOf()/1e3)}function vs(){return new Date(this.valueOf())}function Ls(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function Ys(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function ks(){return this.isValid()?this.toISOString():null}function bs(){return g(this)}function ws(){return _({},y(this))}function Ds(){return y(this).overflow}function Ts(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function xs(e,t){var n,i,a,r=this._eras||gn(\"en\")._eras;for(n=0,i=r.length;n<i;++n){switch(typeof r[n].since){case\"string\":a=s(r[n].since).startOf(\"day\"),r[n].since=a.valueOf()}switch(typeof r[n].until){case\"undefined\":r[n].until=1/0;break;case\"string\":a=s(r[n].until).startOf(\"day\").valueOf(),r[n].until=a.valueOf()}}return r}function Ss(e,t,n){var i,s,a,r,o,d=this.eras();for(e=e.toUpperCase(),i=0,s=d.length;i<s;++i)if(a=d[i].name.toUpperCase(),r=d[i].abbr.toUpperCase(),o=d[i].narrow.toUpperCase(),n)switch(t){case\"N\":case\"NN\":case\"NNN\":if(r===e)return d[i];break;case\"NNNN\":if(a===e)return d[i];break;case\"NNNNN\":if(o===e)return d[i]}else if([a,r,o].indexOf(e)>=0)return d[i]}function Hs(e,t){var n=e.since<=e.until?1:-1;return void 0===t?s(e.since).year():s(e.since).year()+(t-e.offset)*n}function js(){var e,t,n,i=this.localeData().eras();for(e=0,t=i.length;e<t;++e){if(n=this.clone().startOf(\"day\").valueOf(),i[e].since<=n&&n<=i[e].until)return i[e].name;if(i[e].until<=n&&n<=i[e].since)return i[e].name}return\"\"}function Cs(){var e,t,n,i=this.localeData().eras();for(e=0,t=i.length;e<t;++e){if(n=this.clone().startOf(\"day\").valueOf(),i[e].since<=n&&n<=i[e].until)return i[e].narrow;if(i[e].until<=n&&n<=i[e].since)return i[e].narrow}return\"\"}function Es(){var e,t,n,i=this.localeData().eras();for(e=0,t=i.length;e<t;++e){if(n=this.clone().startOf(\"day\").valueOf(),i[e].since<=n&&n<=i[e].until)return i[e].abbr;if(i[e].until<=n&&n<=i[e].since)return i[e].abbr}return\"\"}function Os(){var e,t,n,i,a=this.localeData().eras();for(e=0,t=a.length;e<t;++e)if(n=a[e].since<=a[e].until?1:-1,i=this.clone().startOf(\"day\").valueOf(),a[e].since<=i&&i<=a[e].until||a[e].until<=i&&i<=a[e].since)return(this.year()-s(a[e].since).year())*n+a[e].offset;return this.year()}function Ps(e){return d(this,\"_erasNameRegex\")||Fs.call(this),e?this._erasNameRegex:this._erasRegex}function As(e){return d(this,\"_erasAbbrRegex\")||Fs.call(this),e?this._erasAbbrRegex:this._erasRegex}function Is(e){return d(this,\"_erasNarrowRegex\")||Fs.call(this),e?this._erasNarrowRegex:this._erasRegex}function Ws(e,t){return t.erasAbbrRegex(e)}function Ns(e,t){return t.erasNameRegex(e)}function $s(e,t){return t.erasNarrowRegex(e)}function zs(e,t){return t._eraYearOrdinalRegex||Se}function Fs(){var e,t,n=[],i=[],s=[],a=[],r=this.eras();for(e=0,t=r.length;e<t;++e)i.push(We(r[e].name)),n.push(We(r[e].abbr)),s.push(We(r[e].narrow)),a.push(We(r[e].name)),a.push(We(r[e].abbr)),a.push(We(r[e].narrow));this._erasRegex=new RegExp(\"^(\"+a.join(\"|\")+\")\",\"i\"),this._erasNameRegex=new RegExp(\"^(\"+i.join(\"|\")+\")\",\"i\"),this._erasAbbrRegex=new RegExp(\"^(\"+n.join(\"|\")+\")\",\"i\"),this._erasNarrowRegex=new RegExp(\"^(\"+s.join(\"|\")+\")\",\"i\")}function Rs(e,t){z(0,[e,e.length],0,t)}function Us(e){return Ks.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Bs(e){return Ks.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)}function Js(){return bt(this.year(),1,4)}function qs(){return bt(this.isoWeekYear(),1,4)}function Vs(){var e=this.localeData()._week;return bt(this.year(),e.dow,e.doy)}function Gs(){var e=this.localeData()._week;return bt(this.weekYear(),e.dow,e.doy)}function Ks(e,t,n,i,s){var a;return null==e?kt(this,i,s).year:(t>(a=bt(e,i,s))&&(t=a),Zs.call(this,e,t,n,i,s))}function Zs(e,t,n,i,s){var a=Yt(e,t,n,i,s),r=vt(a.year,0,a.dayOfYear);return this.year(r.getUTCFullYear()),this.month(r.getUTCMonth()),this.date(r.getUTCDate()),this}function Qs(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}z(\"N\",0,0,\"eraAbbr\"),z(\"NN\",0,0,\"eraAbbr\"),z(\"NNN\",0,0,\"eraAbbr\"),z(\"NNNN\",0,0,\"eraName\"),z(\"NNNNN\",0,0,\"eraNarrow\"),z(\"y\",[\"y\",1],\"yo\",\"eraYear\"),z(\"y\",[\"yy\",2],0,\"eraYear\"),z(\"y\",[\"yyy\",3],0,\"eraYear\"),z(\"y\",[\"yyyy\",4],0,\"eraYear\"),Pe(\"N\",Ws),Pe(\"NN\",Ws),Pe(\"NNN\",Ws),Pe(\"NNNN\",Ns),Pe(\"NNNNN\",$s),$e([\"N\",\"NN\",\"NNN\",\"NNNN\",\"NNNNN\"],(function(e,t,n,i){var s=n._locale.erasParse(e,i,n._strict);s?y(n).era=s:y(n).invalidEra=e})),Pe(\"y\",Se),Pe(\"yy\",Se),Pe(\"yyy\",Se),Pe(\"yyyy\",Se),Pe(\"yo\",zs),$e([\"y\",\"yy\",\"yyy\",\"yyyy\"],Ue),$e([\"yo\"],(function(e,t,n,i){var s;n._locale._eraYearOrdinalRegex&&(s=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[Ue]=n._locale.eraYearOrdinalParse(e,s):t[Ue]=parseInt(e,10)})),z(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),z(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),Rs(\"gggg\",\"weekYear\"),Rs(\"ggggg\",\"weekYear\"),Rs(\"GGGG\",\"isoWeekYear\"),Rs(\"GGGGG\",\"isoWeekYear\"),ie(\"weekYear\",\"gg\"),ie(\"isoWeekYear\",\"GG\"),oe(\"weekYear\",1),oe(\"isoWeekYear\",1),Pe(\"G\",He),Pe(\"g\",He),Pe(\"GG\",ke,Me),Pe(\"gg\",ke,Me),Pe(\"GGGG\",Te,Le),Pe(\"gggg\",Te,Le),Pe(\"GGGGG\",xe,Ye),Pe(\"ggggg\",xe,Ye),ze([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,i){t[i.substr(0,2)]=ce(e)})),ze([\"gg\",\"GG\"],(function(e,t,n,i){t[i]=s.parseTwoDigitYear(e)})),z(\"Q\",0,\"Qo\",\"quarter\"),ie(\"quarter\",\"Q\"),oe(\"quarter\",7),Pe(\"Q\",ge),$e(\"Q\",(function(e,t){t[Be]=3*(ce(e)-1)})),z(\"D\",[\"DD\",2],\"Do\",\"date\"),ie(\"date\",\"D\"),oe(\"date\",9),Pe(\"D\",ke),Pe(\"DD\",ke,Me),Pe(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),$e([\"D\",\"DD\"],Je),$e(\"Do\",(function(e,t){t[Je]=ce(e.match(ke)[0])}));var Xs=he(\"Date\",!0);function ea(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")}z(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),ie(\"dayOfYear\",\"DDD\"),oe(\"dayOfYear\",4),Pe(\"DDD\",De),Pe(\"DDDD\",ve),$e([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=ce(e)})),z(\"m\",[\"mm\",2],0,\"minute\"),ie(\"minute\",\"m\"),oe(\"minute\",14),Pe(\"m\",ke),Pe(\"mm\",ke,Me),$e([\"m\",\"mm\"],Ve);var ta=he(\"Minutes\",!1);z(\"s\",[\"ss\",2],0,\"second\"),ie(\"second\",\"s\"),oe(\"second\",15),Pe(\"s\",ke),Pe(\"ss\",ke,Me),$e([\"s\",\"ss\"],Ge);var na,ia,sa=he(\"Seconds\",!1);for(z(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),z(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),z(0,[\"SSS\",3],0,\"millisecond\"),z(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),z(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),z(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),z(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),z(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),z(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),ie(\"millisecond\",\"ms\"),oe(\"millisecond\",16),Pe(\"S\",De,ge),Pe(\"SS\",De,Me),Pe(\"SSS\",De,ve),na=\"SSSS\";na.length<=9;na+=\"S\")Pe(na,Se);function aa(e,t){t[Ke]=ce(1e3*(\"0.\"+e))}for(na=\"S\";na.length<=9;na+=\"S\")$e(na,aa);function ra(){return this._isUTC?\"UTC\":\"\"}function oa(){return this._isUTC?\"Coordinated Universal Time\":\"\"}ia=he(\"Milliseconds\",!1),z(\"z\",0,0,\"zoneAbbr\"),z(\"zz\",0,0,\"zoneName\");var da=k.prototype;function la(e){return Gn(1e3*e)}function ua(){return Gn.apply(null,arguments).parseZone()}function ca(e){return e}da.add=Oi,da.calendar=Fi,da.clone=Ri,da.diff=Ki,da.endOf=ys,da.format=ts,da.from=ns,da.fromNow=is,da.to=ss,da.toNow=as,da.get=pe,da.invalidAt=Ds,da.isAfter=Ui,da.isBefore=Bi,da.isBetween=Ji,da.isSame=qi,da.isSameOrAfter=Vi,da.isSameOrBefore=Gi,da.isValid=bs,da.lang=os,da.locale=rs,da.localeData=ds,da.max=Zn,da.min=Kn,da.parsingFlags=ws,da.set=fe,da.startOf=fs,da.subtract=Pi,da.toArray=Ls,da.toObject=Ys,da.toDate=vs,da.toISOString=Xi,da.inspect=es,\"undefined\"!=typeof Symbol&&null!=Symbol.for&&(da[Symbol.for(\"nodejs.util.inspect.custom\")]=function(){return\"Moment<\"+this.format()+\">\"}),da.toJSON=ks,da.toString=Qi,da.unix=Ms,da.valueOf=gs,da.creationData=Ts,da.eraName=js,da.eraNarrow=Cs,da.eraAbbr=Es,da.eraYear=Os,da.year=yt,da.isLeapYear=gt,da.weekYear=Us,da.isoWeekYear=Bs,da.quarter=da.quarters=Qs,da.month=ct,da.daysInMonth=ht,da.week=da.weeks=St,da.isoWeek=da.isoWeeks=Ht,da.weeksInYear=Vs,da.weeksInWeekYear=Gs,da.isoWeeksInYear=Js,da.isoWeeksInISOWeekYear=qs,da.date=Xs,da.day=da.days=Bt,da.weekday=Jt,da.isoWeekday=qt,da.dayOfYear=ea,da.hour=da.hours=an,da.minute=da.minutes=ta,da.second=da.seconds=sa,da.millisecond=da.milliseconds=ia,da.utcOffset=pi,da.utc=yi,da.local=gi,da.parseZone=Mi,da.hasAlignedHourOffset=vi,da.isDST=Li,da.isLocal=ki,da.isUtcOffset=bi,da.isUtc=wi,da.isUTC=wi,da.zoneAbbr=ra,da.zoneName=oa,da.dates=D(\"dates accessor is deprecated. Use date instead.\",Xs),da.months=D(\"months accessor is deprecated. Use month instead\",ct),da.years=D(\"years accessor is deprecated. Use year instead\",yt),da.zone=D(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",fi),da.isDSTShifted=D(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",Yi);var ha=E.prototype;function ma(e,t,n,i){var s=gn(),a=p().set(i,t);return s[n](a,e)}function _a(e,t,n){if(c(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return ma(e,t,n,\"month\");var i,s=[];for(i=0;i<12;i++)s[i]=ma(e,i,n,\"month\");return s}function pa(e,t,n,i){\"boolean\"==typeof e?(c(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,c(t)&&(n=t,t=void 0),t=t||\"\");var s,a=gn(),r=e?a._week.dow:0,o=[];if(null!=n)return ma(t,(n+r)%7,i,\"day\");for(s=0;s<7;s++)o[s]=ma(t,(s+r)%7,i,\"day\");return o}function fa(e,t){return _a(e,t,\"months\")}function ya(e,t){return _a(e,t,\"monthsShort\")}function ga(e,t,n){return pa(e,t,n,\"weekdays\")}function Ma(e,t,n){return pa(e,t,n,\"weekdaysShort\")}function va(e,t,n){return pa(e,t,n,\"weekdaysMin\")}ha.calendar=P,ha.longDateFormat=q,ha.invalidDate=G,ha.ordinal=Q,ha.preparse=ca,ha.postformat=ca,ha.relativeTime=ee,ha.pastFuture=te,ha.set=j,ha.eras=xs,ha.erasParse=Ss,ha.erasConvertYear=Hs,ha.erasAbbrRegex=As,ha.erasNameRegex=Ps,ha.erasNarrowRegex=Is,ha.months=rt,ha.monthsShort=ot,ha.monthsParse=lt,ha.monthsRegex=_t,ha.monthsShortRegex=mt,ha.week=wt,ha.firstDayOfYear=xt,ha.firstDayOfWeek=Tt,ha.weekdays=$t,ha.weekdaysMin=Ft,ha.weekdaysShort=zt,ha.weekdaysParse=Ut,ha.weekdaysRegex=Vt,ha.weekdaysShortRegex=Gt,ha.weekdaysMinRegex=Kt,ha.isPM=nn,ha.meridiem=rn,pn(\"en\",{eras:[{since:\"0001-01-01\",until:1/0,offset:1,name:\"Anno Domini\",narrow:\"AD\",abbr:\"AD\"},{since:\"0000-12-31\",until:-1/0,offset:1,name:\"Before Christ\",narrow:\"BC\",abbr:\"BC\"}],dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===ce(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),s.lang=D(\"moment.lang is deprecated. Use moment.locale instead.\",pn),s.langData=D(\"moment.langData is deprecated. Use moment.localeData instead.\",gn);var La=Math.abs;function Ya(){var e=this._data;return this._milliseconds=La(this._milliseconds),this._days=La(this._days),this._months=La(this._months),e.milliseconds=La(e.milliseconds),e.seconds=La(e.seconds),e.minutes=La(e.minutes),e.hours=La(e.hours),e.months=La(e.months),e.years=La(e.years),this}function ka(e,t,n,i){var s=xi(t,n);return e._milliseconds+=i*s._milliseconds,e._days+=i*s._days,e._months+=i*s._months,e._bubble()}function ba(e,t){return ka(this,e,t,1)}function wa(e,t){return ka(this,e,t,-1)}function Da(e){return e<0?Math.floor(e):Math.ceil(e)}function Ta(){var e,t,n,i,s,a=this._milliseconds,r=this._days,o=this._months,d=this._data;return a>=0&&r>=0&&o>=0||a<=0&&r<=0&&o<=0||(a+=864e5*Da(Sa(o)+r),r=0,o=0),d.milliseconds=a%1e3,e=ue(a/1e3),d.seconds=e%60,t=ue(e/60),d.minutes=t%60,n=ue(t/60),d.hours=n%24,r+=ue(n/24),o+=s=ue(xa(r)),r-=Da(Sa(s)),i=ue(o/12),o%=12,d.days=r,d.months=o,d.years=i,this}function xa(e){return 4800*e/146097}function Sa(e){return 146097*e/4800}function Ha(e){if(!this.isValid())return NaN;var t,n,i=this._milliseconds;if(\"month\"===(e=se(e))||\"quarter\"===e||\"year\"===e)switch(t=this._days+i/864e5,n=this._months+xa(t),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(Sa(this._months)),e){case\"week\":return t/7+i/6048e5;case\"day\":return t+i/864e5;case\"hour\":return 24*t+i/36e5;case\"minute\":return 1440*t+i/6e4;case\"second\":return 86400*t+i/1e3;case\"millisecond\":return Math.floor(864e5*t)+i;default:throw new Error(\"Unknown unit \"+e)}}function ja(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*ce(this._months/12):NaN}function Ca(e){return function(){return this.as(e)}}var Ea=Ca(\"ms\"),Oa=Ca(\"s\"),Pa=Ca(\"m\"),Aa=Ca(\"h\"),Ia=Ca(\"d\"),Wa=Ca(\"w\"),Na=Ca(\"M\"),$a=Ca(\"Q\"),za=Ca(\"y\");function Fa(){return xi(this)}function Ra(e){return e=se(e),this.isValid()?this[e+\"s\"]():NaN}function Ua(e){return function(){return this.isValid()?this._data[e]:NaN}}var Ba=Ua(\"milliseconds\"),Ja=Ua(\"seconds\"),qa=Ua(\"minutes\"),Va=Ua(\"hours\"),Ga=Ua(\"days\"),Ka=Ua(\"months\"),Za=Ua(\"years\");function Qa(){return ue(this.days()/7)}var Xa=Math.round,er={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function tr(e,t,n,i,s){return s.relativeTime(t||1,!!n,e,i)}function nr(e,t,n,i){var s=xi(e).abs(),a=Xa(s.as(\"s\")),r=Xa(s.as(\"m\")),o=Xa(s.as(\"h\")),d=Xa(s.as(\"d\")),l=Xa(s.as(\"M\")),u=Xa(s.as(\"w\")),c=Xa(s.as(\"y\")),h=a<=n.ss&&[\"s\",a]||a<n.s&&[\"ss\",a]||r<=1&&[\"m\"]||r<n.m&&[\"mm\",r]||o<=1&&[\"h\"]||o<n.h&&[\"hh\",o]||d<=1&&[\"d\"]||d<n.d&&[\"dd\",d];return null!=n.w&&(h=h||u<=1&&[\"w\"]||u<n.w&&[\"ww\",u]),(h=h||l<=1&&[\"M\"]||l<n.M&&[\"MM\",l]||c<=1&&[\"y\"]||[\"yy\",c])[2]=t,h[3]=+e>0,h[4]=i,tr.apply(null,h)}function ir(e){return void 0===e?Xa:\"function\"==typeof e&&(Xa=e,!0)}function sr(e,t){return void 0!==er[e]&&(void 0===t?er[e]:(er[e]=t,\"s\"===e&&(er.ss=t-1),!0))}function ar(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,i,s=!1,a=er;return\"object\"==typeof e&&(t=e,e=!1),\"boolean\"==typeof e&&(s=e),\"object\"==typeof t&&(a=Object.assign({},er,t),null!=t.s&&null==t.ss&&(a.ss=t.s-1)),i=nr(this,!s,a,n=this.localeData()),s&&(i=n.pastFuture(+this,i)),n.postformat(i)}var rr=Math.abs;function or(e){return(e>0)-(e<0)||+e}function dr(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,i,s,a,r,o,d=rr(this._milliseconds)/1e3,l=rr(this._days),u=rr(this._months),c=this.asSeconds();return c?(e=ue(d/60),t=ue(e/60),d%=60,e%=60,n=ue(u/12),u%=12,i=d?d.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",s=c<0?\"-\":\"\",a=or(this._months)!==or(c)?\"-\":\"\",r=or(this._days)!==or(c)?\"-\":\"\",o=or(this._milliseconds)!==or(c)?\"-\":\"\",s+\"P\"+(n?a+n+\"Y\":\"\")+(u?a+u+\"M\":\"\")+(l?r+l+\"D\":\"\")+(t||e||d?\"T\":\"\")+(t?o+t+\"H\":\"\")+(e?o+e+\"M\":\"\")+(d?o+i+\"S\":\"\")):\"P0D\"}var lr=ri.prototype;return lr.isValid=si,lr.abs=Ya,lr.add=ba,lr.subtract=wa,lr.as=Ha,lr.asMilliseconds=Ea,lr.asSeconds=Oa,lr.asMinutes=Pa,lr.asHours=Aa,lr.asDays=Ia,lr.asWeeks=Wa,lr.asMonths=Na,lr.asQuarters=$a,lr.asYears=za,lr.valueOf=ja,lr._bubble=Ta,lr.clone=Fa,lr.get=Ra,lr.milliseconds=Ba,lr.seconds=Ja,lr.minutes=qa,lr.hours=Va,lr.days=Ga,lr.weeks=Qa,lr.months=Ka,lr.years=Za,lr.humanize=ar,lr.toISOString=dr,lr.toString=dr,lr.toJSON=dr,lr.locale=rs,lr.localeData=ds,lr.toIsoString=D(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",dr),lr.lang=os,z(\"X\",0,0,\"unix\"),z(\"x\",0,0,\"valueOf\"),Pe(\"x\",He),Pe(\"X\",Ee),$e(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),$e(\"x\",(function(e,t,n){n._d=new Date(ce(e))})),s.version=\"2.29.1\",a(Gn),s.fn=da,s.min=Xn,s.max=ei,s.now=ti,s.utc=p,s.unix=la,s.months=fa,s.isDate=h,s.locale=pn,s.invalid=M,s.duration=xi,s.isMoment=b,s.weekdays=ga,s.parseZone=ua,s.localeData=gn,s.isDuration=oi,s.monthsShort=ya,s.weekdaysMin=va,s.defineLocale=fn,s.updateLocale=yn,s.locales=Mn,s.weekdaysShort=Ma,s.normalizeUnits=se,s.relativeTimeRounding=ir,s.relativeTimeThreshold=sr,s.calendarFormat=zi,s.prototype=da,s.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},s}()}},n={};function i(t){if(n[t])return n[t].exports;var s=n[t]={id:t,loaded:!1,exports:{}};return e[t].call(s.exports,s,s.exports,i),s.loaded=!0,s.exports}i.g=function(){if(\"object\"==typeof globalThis)return globalThis;try{return this||new Function(\"return this\")()}catch(e){if(\"object\"==typeof window)return window}}(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),i.p=\"/bundles/adminlte/\",(()=>{var e=i(9755);i.g.$=i.g.jQuery=e,i(6891),i(3002),i(1402),i(300);var t=i(381);i.g.moment=t,i(932),i(6979),i(958),i(157),i(1980),i.g.$.AdminLTE={},i.g.$.AdminLTE.options={},i(3752),i(9261),i(9303),i(3638)})()})();"
  },
  {
    "path": "Resources/public/adminlte.js.LICENSE.txt",
    "content": "/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under the MIT license\n */\n\n/*!\n * Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select)\n *\n * Copyright 2012-2020 SnapAppointments, LLC\n * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)\n */\n\n/*!\n * Sizzle CSS Selector Engine v2.3.5\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2020-03-14\n */\n\n/*!\n * iCheck v1.0.2, http://git.io/arlzeA\n * ===================================\n * Powerful jQuery and Zepto plugin for checkboxes and radio buttons customization\n *\n * (c) 2013 Damir Sultanov, http://fronteed.com\n * MIT Licensed\n */\n\n/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n\n/*!\n * jQuery UI Widget 1.12.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/*! AdminLTE app.js\n* ================\n* Main JS application file for AdminLTE v2. This file\n* should be included in all pages. It controls some layout\n* options and implements exclusive AdminLTE plugins.\n*\n* @author Colorlib\n* @support <https://github.com/ColorlibHQ/AdminLTE/issues>\n* @version v2.4.18\n* @repository git://github.com/ColorlibHQ/AdminLTE.git\n* @license MIT <http://opensource.org/licenses/MIT>\n*/\n\n/*! Copyright (c) 2011 Piotr Rochala (http://rocha.la)\n * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)\n * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.\n *\n * Version: 1.3.8\n *\n */\n\n/**\n* @version: 3.1\n* @author: Dan Grossman http://www.dangrossman.info/\n* @copyright: Copyright (c) 2012-2019 Dan Grossman. All rights reserved.\n* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php\n* @website: http://www.daterangepicker.com/\n*/\n\n//! moment.js\n\n//! moment.js locale configuration\n"
  },
  {
    "path": "Resources/public/entrypoints.json",
    "content": "{\n  \"entrypoints\": {\n    \"adminlte\": {\n      \"js\": [\n        \"/bundles/adminlte/adminlte.js?4e5af81e7a2186622a4e\"\n      ],\n      \"css\": [\n        \"/bundles/adminlte/adminlte.css?195959b6dfb680a63ade\"\n      ]\n    }\n  }\n}"
  },
  {
    "path": "Resources/public/manifest.json",
    "content": "{\n  \"bundles/adminlte/adminlte.js\": \"/bundles/adminlte/adminlte.js?4e5af81e7a2186622a4e\",\n  \"bundles/adminlte/adminlte.css\": \"/bundles/adminlte/adminlte.css?195959b6dfb680a63ade\",\n  \"bundles/adminlte/adminlte.png\": \"/bundles/adminlte/images/default_avatar.png?0f50fed9\",\n  \"bundles/adminlte/adminlte.eot\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.eot?5be1347c\",\n  \"bundles/adminlte/adminlte.svg\": \"/bundles/adminlte/images/glyphicons-halflings-regular.svg?060b2710\",\n  \"bundles/adminlte/adminlte.ttf\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.ttf?4692b9ec\",\n  \"bundles/adminlte/adminlte.woff\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.woff?82b1212e\",\n  \"bundles/adminlte/adminlte.woff2\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.woff2?be810be3\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg\": \"/bundles/adminlte/images/fa-solid-900.svg?0454203f\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg\": \"/bundles/adminlte/images/fa-brands-400.svg?991c1c76\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot\": \"/bundles/adminlte/fonts/fa-solid-900.eot?6606667d\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf\": \"/bundles/adminlte/fonts/fa-solid-900.ttf?915a0b79\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg\": \"/bundles/adminlte/images/fa-regular-400.svg?f3187c74\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot\": \"/bundles/adminlte/fonts/fa-brands-400.eot?98f20b9e\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf\": \"/bundles/adminlte/fonts/fa-brands-400.ttf?330e879a\",\n  \"bundles/adminlte/node_modules/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.svg\": \"/bundles/adminlte/images/glyphicons-halflings-regular.svg?060b2710\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff\": \"/bundles/adminlte/fonts/fa-solid-900.woff?f4f93856\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff\": \"/bundles/adminlte/fonts/fa-brands-400.woff?5f63cb7f\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2\": \"/bundles/adminlte/fonts/fa-solid-900.woff2?3eb06c70\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2\": \"/bundles/adminlte/fonts/fa-brands-400.woff2?6e63bd22\",\n  \"bundles/adminlte/node_modules/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.ttf?4692b9ec\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot\": \"/bundles/adminlte/fonts/fa-regular-400.eot?62a07ffe\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf\": \"/bundles/adminlte/fonts/fa-regular-400.ttf?ac236764\",\n  \"bundles/adminlte/node_modules/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.woff?82b1212e\",\n  \"bundles/adminlte/node_modules/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.eot?5be1347c\",\n  \"bundles/adminlte/node_modules/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2\": \"/bundles/adminlte/fonts/glyphicons-halflings-regular.woff2?be810be3\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff\": \"/bundles/adminlte/fonts/fa-regular-400.woff?ea5a41ec\",\n  \"bundles/adminlte/node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2\": \"/bundles/adminlte/fonts/fa-regular-400.woff2?2c154b0f\",\n  \"bundles/adminlte/Resources/assets/default_avatar.png\": \"/bundles/adminlte/images/default_avatar.png?0f50fed9\",\n  \"bundles/adminlte/node_modules/icheck/skins/square/blue@2x.png\": \"/bundles/adminlte/images/blue@2x.png?eb5592d0\",\n  \"bundles/adminlte/node_modules/icheck/skins/square/blue.png\": \"/bundles/adminlte/images/blue.png?47dfe954\"\n}"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.ar.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"ar\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>تبديل التنقل</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>تذكرنى</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>تسجيل الدخول</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>تسجيل الدخول</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>الخروج</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>تسجيل</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>ملفك الشخصي</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>عضو منذ %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>اسم المستخدم</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>إسم المستخدم او البريد الالكتروني</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>اسم المستخدم</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>عرض الصفحة الرئيسية</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>العودة إلى تسجيل الدخول</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>اعد ضبط كلمه السر</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>لقد نسيت كلمة المرور</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>تسجيل حساب جديد</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>عرض الكل</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>لديك %count% إشعارات</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>لديك %count% رسائل</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>لديك %count% مهام</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% منجز</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>تهانينا %username%، لقد تم تفعيل حسابك.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.cs.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"cs\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Přepnout navigaci</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Zůstat přihlášen</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Přihlaste se k zahájení relace</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Přihlásit se</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Odhlásit se</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrovat se</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Členem od %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Uživatelské jméno</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Uživatelské jméno nebo e-mail</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Heslo</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Domů</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Zpět na přihlášení</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Obnovit heslo</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Obnovit zapomenuté heslo</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Vytvořit účet</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Zobrazit vše</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>{1} Máte 1 notifikaci|[2,4] Máte %count% notifikace|[5,Inf[ Máte %count% notifikací</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>{1} Máte 1 zprávu|[2,4] Máte %count% zprávy|[5,Inf[ Máte %count% zpráv</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>{1} Máte 1 úkol|[2,4] Máte %count% úkoly|[5,Inf[ Máte %count% úkolů</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% hotovo</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Toto je povinné pole</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Gratulujeme, %username%, Váš účet je nyní aktivní.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.da.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"da\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Skift navigation</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Husk mig</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Log ind</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Log ind</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Log ud</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrer</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Din profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Medlem siden %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Brugernavn</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Brugernavn eller e-mailadresse</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Kodeord</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Vis hjemmeside</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Tilbage til login</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Nulstil dit kodeord</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Glemt kodeord?</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Opret ny bruger</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Vis alle</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Du har 1 notifikation|Du har %count% notifikationer</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Du har 1 besked|Du har %count% beskeder</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Du har 1 opgave|Du har %count% opgaver</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% færdiggjort</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Dette er et obligatorisk felt</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Tillykke %username%, din konto er nu aktiveret</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.de.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"de\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Ansicht der Seitenleiste umschalten</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Dauerhaft anmelden</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Anmelden</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Anmelden</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Abmelden</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrieren</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Dein Profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Mitglied seit %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Benutzername</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Benutzername oder E-Mail-Adresse</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Passwort</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Zur Startseite</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Zurück zur Anmeldung</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Passwort zurücksetzen</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Passwort vergessen</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Neuen Benutzer registrieren</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Alle anzeigen</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Du hast 1 Benachrichtigung|Du hast %count% Benachrichtigungen</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Du hast 1 Nachricht|Du hast %count% Nachrichten</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Du hast 1 Aufgabe|Du hast %count% Aufgaben</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% erledigt</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Dies ist ein Pflichtfeld</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Glückwunsch %username%, Ihr Benutzerkonto ist jetzt bestätigt.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.el.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"el\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Εναλλαγή πλοήγησης</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Αποθήκευση συνεδρίας</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Συνδεθείτε για εκίνηση συνεδρίας</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Σύνδεση</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Αποσύνδεση</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Εγγραφή</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Το προφίλ μου</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Μέλος από %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Όνομα Χρήστη</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Επαναφορά του κωδικού πρόσβασης</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Κωδικός πρόσβασης</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Εμφάνιση αρχικής σελίδας</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Πίσω στη σελίδα σύνδεσης</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Επαναπροσδιορισμός κωδικού πρόσβασης</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Ξέχασα τον κωδικό πρόσβασης μου</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Δημιουργία νέου λογαριασμού</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Προβολή  όλων</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Έχετε 1 ειδοποίηση|Έχετε %count% ειδοποιήσεις</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Έχετε 1 μήνυμα|Έχετε %count% μηνύματα</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Έχετε 1 ανάθεση|Έχετε %count% αναθέσεις</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% Ολοκληρώθηκε</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Αυτό είναι υποχρεωτικό πεδίο</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Συγχαρητήρια %username%, ο λογαριασμός μόλις ενεργοποιήθηκε.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.en.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"en\" datatype=\"plaintext\" original=\"none\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Toggle navigation</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Remember Me</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Login</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Login</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Logout</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Register</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Your profile</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Member since %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Username</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Username or email address</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Password</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Show homepage</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Back to login</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Reset your password</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>I forgot my password</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Register a new account</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>View all</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>You have 1 notification|You have %count% notifications</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>You have 1 message|You have %count% messages</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>You have 1 task|You have %count% tasks</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% completed</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>This is a mandatory field</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Congratulations %username%, your account is now activated.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.eo.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"eo\" datatype=\"plaintext\" original=\"none\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Baskuligi navigadon</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Resti ensalutinta</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Ensaluti</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Ensaluti</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Elsaluti</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registriĝi</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Via profilo</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Membro ekde %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Uzantnomo</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Uzantnomo aŭ retpoŝtadreso</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Pasvorto</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Montri hejmpaĝon</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Reen al ensaluto</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Restarigi vian pasvorton</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Mi forgesis mian pasvorton</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Registri novan konton</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Vidi ĉiujn</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Vi havas unu sciigon|Vi havas %count% sciigojn</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Vi havas 1 mesaĝon|Vi havas %count% mesaĝojn</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Vi havas 1 taskon|Vi havas %count% taskojn</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% kompleta</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Tio ĉi estas deviga kampo</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Gratulon %username%, via konto estas aktiva.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.es.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"es\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Activar la navegación</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Recuérdame</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Iniciar sesión</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Iniciar sesión</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Cerrar sesión</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrar</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Tu perfil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Miembro desde %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Nombre de usuario</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Nombre de usuario o correo electrónico</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Contraseña</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Mostrar página de inicio</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Atrás para iniciar sesión</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Restablecer su contraseña</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Olvidé mi contraseña</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Registre una nueva cuenta</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Ver todo</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Tiene 1 notificación|Tiene %count% notificaciones</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Tiene un mensaje|Tiene %count% mensajes</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Tiene 1 tarea|Tiene %count% tareas</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% realizado</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Este es un campo obligatorio</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Felicidades %username%, tu cuenta está ahora confirmada.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.eu.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"eu\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Nabigazioa aktibatu</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Gogora nazazu</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Izena ta pasahitza sartu saioa hasteko</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Saioa hasi</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Saioa itxi</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Izena eman</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Nire kontua</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>%date%-tik erabiltzailea </target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Erabiltzailea</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Erabiltzaile izena</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Pasahitza</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Hasierako orria</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Saio hasierara itzuli</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Pasahitza berrezarri</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Pasahitza ahaztu dut</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Kontu berria sortu</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Dena ikusi</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Jakinarazpen bat daukazu|%count% jakinarazpen dauzkazu</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Mezu bat daukazu|%count% mezu dauzkazu</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Lan bat daukazu|%count% lan dauzkazu</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%%progress% egina</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Derrigorezko sarrera</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Zorionak %username%, zure kontua aktibatua dago.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.fi.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"fi\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target state=\"translated\">Vaihda navigoinnin tilaa</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target state=\"translated\">Muista minut</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target state=\"translated\">Kirjaudu sisään aloittaaksesi</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target state=\"translated\">Kirjaudu</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target state=\"translated\">Kirjaudu ulos</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Luo tunnus</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target state=\"translated\">Profiili</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target state=\"translated\">Jäsen lähtien %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target state=\"translated\">Käyttäjätunnus</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Käyttäjätunnus tai sähköpostiosoite</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target state=\"translated\">Salasana</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target state=\"translated\">Kotisivu</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target state=\"translated\">Takaisin</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target state=\"translated\">Nollaa salasanasi</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target state=\"translated\">Unohtuiko salasana</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target state=\"translated\">Rekisteröi uusi tili</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target state=\"translated\">Näytä kaikki</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target state=\"translated\">Sinulla on 1 uusi ilmoitus|Sinulla on %count% uutta ilmoitusta</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target state=\"translated\">Sinulla on 1 uusi viesti|Sinulla on %count% uutta viestiä</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target state=\"translated\">Sinulla on 1 tehtävä|Sinulla on %count% tehtävää</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target state=\"translated\">%progress%% Suoritettu</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target state=\"translated\">Tämä on pakollinen kenttä</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Onnittelut %username%, tunnuksesi on nyt aktivoitu.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.fr.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"fr\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Changer le mode de navigation</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Se souvenir de moi</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Connexion</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Connexion</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Déconnexion</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Créer un compte</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Mon profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Membre depuis %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Identifiant</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Nom d'utilisateur ou adresse e-mail</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Mot de passe</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Page d'accueil</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Retour à la page de connexion</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Réinitialiser mon mot de passe</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>J'ai oublié mon mot de passe</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Créer un compte</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Voir tout</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Vous avez une notification|Vous avez %count% notifications</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Vous avez un message|Vous avez %count% messages</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Vous avez une tâche|Vous avez %count% tâches</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% réussi</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Ce champ est obligatoire</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Félicitations %username%, votre compte est maintenant activé.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.he.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"he\" datatype=\"plaintext\" original=\"none\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Toggle navigation</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>זכור אותי</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>כניסה</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>התחבר</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>התנתק</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>הרשם</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>הפרופיל שלך</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>חבר מאז %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>שם משתמש</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>שם משתמש או דואר אלקטרוני</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>סיסמה</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>הצג את דף הבית</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>חזרה למסך הכניסה</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>איפוס סיסמה</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>שכחתי סיסמה</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>הירשם למערכת</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>צפה בהכל</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>יש לך תזכורת 1|יש לך %count% תזכורות</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>יש לך הודעה 1|יש לך %count% הודעות</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>יש לך משימה 1|יש לך %count% משימות</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% הושלם</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>זהו שדה חובה</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>ברוכים הבאים %username%, חשבון שלך הופעל.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.hr.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"hr\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Uključi/isključi navigaciju</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Zapamti me</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Prijavi se</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Prijavi se</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Odjavi se</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registriraj se</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Tvoj profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Član od %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Korisničko ime</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Korisničko ime ili e-mail adresa</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Lozinka</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Pokaži web-stranicu</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Natrag na prijavu</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Obnovi lozinku</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Ne sjećam se lozinke</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Registriraj novi račun</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Prikaži sve</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Imaš %count% obavijest|Imaš %count% obavijesti|Imaš %count% obavijesti</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Imaš %count% poruku|Imaš %count% poruke|Imaš %count% poruka</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Imaš %count% zadatak|Imaš %count% zadatka|Imaš %count% zadataka</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress% % završeno</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Ovo je obavezno polje</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Čestitamo %username%, tvoj je račun sada aktiviran.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.it.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"it\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Cambia visualizzazione della barra laterale</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Ricordami</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Accedi per iniziare la sessione</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Accedi</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Disconnetti</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registra</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Il tuo profilo</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Membro da %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Nome utente</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Username o indirizzo email</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Password</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Mostra la homepage</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Torna al login</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Ripristina la password</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Ho dimenticato la mia password</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Registra un nuovo account</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Guarda tutto</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Hai 1 notifica|Hai %count% notifiche</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Hai 1 messaggio|Hai %count% messaggi</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Hai 1 compito|Hai %count% compiti</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% completato</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Congratulazioni %username%, il tuo account è confermato.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.ja.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"ja\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>ナビゲーションを切り替える</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>ログインを記憶する</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>ログイン</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>ログインする</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>ログアウトする</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>登録</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>あなたのプロフィール</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>%date% からのメンバーです</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>ユーザー名</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>ユーザー名またはメールアドレス</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>パスワード</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>ホームページを表示する</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>ログイン画面に戻る</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n\t\t<target>パスワードをリセットする</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>パスワードを忘れた場合</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>新しいアカウントを登録する</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>すべて見る</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>通知が 1 件あります|通知が %count% 件あります</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>メッセージが 1 件あります|メッセージが %count% 件あります</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>タスクが 1 個あります|タスクが %count% 個あります</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% 完了</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>これは必須項目です</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>%username% さんのアカウントの確認が完了しました。</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.nl.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"nl\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target state=\"translated\">Navigatie in- of uitklappen</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target state=\"translated\">Onthoud mij</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target state=\"translated\">Log in om uw sessie te starten</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target state=\"translated\">Inloggen</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target state=\"translated\">Uitloggen</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registreer</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target state=\"translated\">Profiel</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target state=\"translated\">Lid sinds %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target state=\"translated\">Gebruikersnaam</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Gebruikersnaam of e-mailadres</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target state=\"translated\">Wachtwoord</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target state=\"translated\">Toon startpagina</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target state=\"translated\">Terug naar Inloggen</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target state=\"translated\">Stel je wachtwoord opnieuw in</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target state=\"translated\">Ik ben mijn wachtwoord vergeten</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target state=\"translated\">Maak een nieuw account aan</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target state=\"translated\">Bekijk alles</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target state=\"translated\">Je hebt 1 melding|Je hebt %count% meldingen</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Je hebt 1 bericht|Je hebt %count% berichten</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Je hebt 1 taak|Je hebt %count% taken</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target state=\"translated\">%progress%% voltooid</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target state=\"translated\">Dit is een verplicht veld</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Gefeliciteerd %username%, uw account is nu geactiveerd.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.pl.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"pl\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Przełącz nawigację</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Zapamiętaj mnie</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Login</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Login</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Logout</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Zarejestruj</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Twój profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Konto utworzone  %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Nazwa użytkownika</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Nazwa użytkownika lub e-mail</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Hasło</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Pokaż stronę startową</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Powrót do strony logowania</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Reset hasła</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Zapomniałem mojego hasła</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Zarejestruj nowe konto</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Pokaż wszystko</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Masz 1 powiadomienie|Masz %count% powiadomień|Masz %count% powiadomień</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Masz  1 wiadomość|Masz %count% wiadomości|Masz %count% wiadomości</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Masz 1 zadanie|Masz %count% zadań|Masz %count% zadań</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% ukończenia</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>To pole jest obowiązkowe</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Gratulacje %username%, Twoje konto zostało aktywowane.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.pt_BR.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"pt-BR\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Fechar menu</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Lembrar de mim</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Login</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Entrar</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Sair</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrar</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Meu perfil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Membro desde %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Usuário</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Usuário ou email</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Senha</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Mostrar homepage</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Voltar para o login</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Resetar sua senha</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Esqueci minha senha</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Cadastrar</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Ver todos</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Você tem 1 notificação|Você tem %count% notificações</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Você tem 1 mensagem|Você tem %count% mensagens</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Você tem 1 tarefa|Você tem %count% tarefas</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% completo</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Este é um campo obrigatório</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Parabéns, %username%. A sua conta foi ativada.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.ro.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"ro\" datatype=\"plaintext\" original=\"none\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Comută navigația</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Amintește-ți de mine</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Conectare</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Autentificare</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Deconectare</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Înregistrează-te</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Profilul tău</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Membru din data de %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Nume de utilizator</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Numele de utilizator sau adresa de email</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Parola</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Mergi la pagina de pornire</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Înapoi la pagina de autentificare</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Resetare parolă</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Mi-am uitat parola</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Înregistrază un cont nou de utilizator</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Vezi tot</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Ai o notificare|Ai %count% notificări</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Ai un mesaj nou|Ai %count% mesaje</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Ai un task|Ai %count% task-uri</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% completat</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Acesta este un câmp obligatoriu</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Felicitări %username%, contul tău a fost activat.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.ru.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"ru\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Переключить отображение боковой панели</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Запомнить меня</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Логин</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Войти</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Logout</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Зарегистрироваться</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Your profile</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Member since %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Имя пользователя</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Имя пользователя или электронная почта</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Пароль</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Показать главную</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Вернуться на страницу входа</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Восстановить пароль</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Я забыл свой пароль</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Регистрация новой учетной записи</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>View all</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>You have 1 notification|You have %count% notifications</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>You have 1 message|You have %count% messages</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>You have 1 task|You have %count% tasks</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% completed</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Поздравляем %username%, ваш аккаунт подтвержден.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.sk.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"sk\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Prepnúť navigáciu</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Pamätať si ma</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Prihláste sa pre začatie sedenia</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Prihlásiť sa</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Odhlásiť sa</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrácia</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>Členom od %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Používateľ</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Používateľské meno alebo emailová adresa</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Heslo</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Hlavná stránka</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Späť na prihlásenie</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Resetovať heslo</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Zabudol som heslo</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Zaregistrovať nové konto</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Zobraziť všetky</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>Máte jednu notifikáciu|Máte %count% notifikácie|Máte %count% notifikácie</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>Máte 1 správu|Máte %count% správ|Máte %count% správ</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>Máte 1 úlohu|Máte %count% úloh|Máte %count% úloh</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% hotovo</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Toto pole je povinné</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Gratulujeme %username%, Vaše konto bolo aktivované.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.sv.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"sv\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target state=\"translated\">Växla navigering</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target state=\"translated\">Kom ihåg mig</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target state=\"translated\">Logga in</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target state=\"translated\">Logga in</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target state=\"translated\">logga ut</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Registrera</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target state=\"translated\">Din profil</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target state=\"translated\">Medlem sedan %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target state=\"translated\">Användarnamn</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Användarnamn eller epost-adress</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target state=\"translated\">Lösenord</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target state=\"translated\">Visa hemsida</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target state=\"translated\">Tillbaka till inloggingssidan</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target state=\"translated\">Nollställ lösenordet</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target state=\"translated\">Glömt lösenordet</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target state=\"translated\">Skapa ett nytt konto</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target state=\"translated\">Visa alla</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target state=\"translated\">Du har en anmälan|Du har %count% anmälningar</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target state=\"translated\">Du har ett meddelande|Du har %count% meddelanden</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target state=\"translated\">Du har en uppgift|Du har %count% uppgifter</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target state=\"translated\">%progress%% klart</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target state=\"translated\">Detta är ett obligatoriskt fält</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Grattis %username%, ditt konto är nu aktiverat.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.tr.xliff",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff xmlns=\"urn:oasis:names:tc:xliff:document:1.2\" version=\"1.2\">\n    <file source-language=\"en\" target-language=\"tr\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>Menüyü Aç/Kapa</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>Beni Hatırla</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>Giriş</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>Giriş</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>Çıkış</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>Kayıt ol</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>Profilim</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>%date% tarihinden beri üye</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>Kullanıcı adı</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>Kullanıcı adı ya da e-posta adresi</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>Şifre</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>Anasayfayı göster</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>Giriş sayfasına dön</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>Şifreyi sıfırla</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>Şifremi unuttum</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>Yeni hesap aç</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>Tümünü göster</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>1 yeni bildiriminiz var|%count% bildiriminiz var</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>1 yeni mesajınız var|%count% yeni mesajınız var</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>1 göreviniz var|%count% göreviniz var</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% tamamlandı</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>Zorunlu alan</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>Tebrikler %username%. Hesabınız şu anda aktifleştirildi.</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/translations/AdminLTEBundle.zh_CN.xliff",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xliff version=\"1.2\" xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n    <file source-language=\"en\" target-language=\"zh-CN\" datatype=\"plaintext\" original=\"AdminLTEBundle.en.xliff\">\n        <body>\n            <trans-unit id=\"Toggle navigation\">\n                <source>Toggle navigation</source>\n                <target>切换导航</target>\n            </trans-unit>\n            <trans-unit id=\"Remember Me\">\n                <source>Remember Me</source>\n                <target>记住我</target>\n            </trans-unit>\n            <trans-unit id=\"Sign in to start your session\">\n                <source>Sign in to start your session</source>\n                <target>登录</target>\n            </trans-unit>\n            <trans-unit id=\"Sign In\">\n                <source>Sign In</source>\n                <target>登录</target>\n            </trans-unit>\n            <trans-unit id=\"Sign out\">\n                <source>Sign out</source>\n                <target>注销</target>\n            </trans-unit>\n            <trans-unit id=\"Register\">\n                <source>Register</source>\n                <target>注册</target>\n            </trans-unit>\n            <trans-unit id=\"Profile\">\n                <source>Profile</source>\n                <target>个人资料</target>\n            </trans-unit>\n            <trans-unit id=\"Member since %date%\">\n                <source>Member since %date%</source>\n                <target>会员资格始于 %date%</target>\n            </trans-unit>\n            <trans-unit id=\"Username\">\n                <source>Username</source>\n                <target>用户名</target>\n            </trans-unit>\n            <trans-unit id=\"Username or email address\">\n                <source>Username or email address</source>\n                <target>用户名或邮箱</target>\n            </trans-unit>\n            <trans-unit id=\"Password\">\n                <source>Password</source>\n                <target>密码</target>\n            </trans-unit>\n            <trans-unit id=\"Show homepage\">\n                <source>Show homepage</source>\n                <target>显示主页</target>\n            </trans-unit>\n            <trans-unit id=\"Back to login\">\n                <source>Back to login</source>\n                <target>返回登录</target>\n            </trans-unit>\n            <trans-unit id=\"Reset your password\">\n                <source>Reset your password</source>\n                <target>重置密码</target>\n            </trans-unit>\n            <trans-unit id=\"I forgot my password\">\n                <source>I forgot my password</source>\n                <target>忘记密码</target>\n            </trans-unit>\n            <trans-unit id=\"Register a new account\">\n                <source>Register a new account</source>\n                <target>注册新帐户</target>\n            </trans-unit>\n            <trans-unit id=\"View all\">\n                <source>View all</source>\n                <target>查看所有</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% notifications\">\n                <source>You have %count% notifications</source>\n                <target>您有 %count% 个通知</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% messages\">\n                <source>You have %count% messages</source>\n                <target>您有 %count% 条消息</target>\n            </trans-unit>\n            <trans-unit id=\"You have %count% tasks\">\n                <source>You have %count% tasks</source>\n                <target>您有 %count% 项任务</target>\n            </trans-unit>\n            <trans-unit id=\"%progress%% Complete\">\n                <source>%progress%% Complete</source>\n                <target>%progress%% 完成</target>\n            </trans-unit>\n            <trans-unit id=\"This is a mandatory field\">\n                <source>This is a mandatory field</source>\n                <target>该处为必填项</target>\n            </trans-unit>\n            <trans-unit id=\"registration.confirmed\">\n                <source>registration.confirmed</source>\n                <target>%username%，恭喜你，你的帐户已启用！</target>\n            </trans-unit>\n        </body>\n    </file>\n</xliff>\n"
  },
  {
    "path": "Resources/views/Breadcrumb/breadcrumb.html.twig",
    "content": "{% if active is not defined or adminlte_direct_include is defined %}\n    {% set active = adminlte_breadcrumbs(app.request) %}\n{% endif %}\n{% if active is defined and active is not null %}\n<ol class=\"breadcrumb\">\n    <li>\n        <a href=\"{{ path('adminlte_welcome'|route_alias) }}\">\n            <i class=\"fas fa-tachometer-alt\"></i>\n            {{ 'Home'|trans({}, 'AdminLTEBundle') }}\n        </a>\n    </li>\n    {% if active %}\n        {% for item in active %}\n            <li><a href=\"{{ item.route is empty ? '#' : '/' in item.route ? item.route : path(item.route|route_alias, item.routeArgs) }}\">{{ item.label|trans }}</a></li>\n        {% endfor %}\n    {% endif %}\n</ol>\n{% endif %}"
  },
  {
    "path": "Resources/views/Breadcrumb/knp-breadcrumb.html.twig",
    "content": "{% if admin_lte_context.knp_menu.breadcrumb_menu is not same as(false) %}\n    <ol class=\"breadcrumb\">\n        {% apply spaceless %}\n            {% set breadcrumbMenu = admin_lte_context.knp_menu.breadcrumb_menu %}\n            {% if admin_lte_context.knp_menu.breadcrumb_menu is same as(true) %}\n                {% set breadcrumbMenu = admin_lte_context.knp_menu.main_menu %}\n            {% endif %}\n            {% set items = knp_menu_get_breadcrumbs_array(knp_menu_get_current_item(breadcrumbMenu)) %}\n            {% for item in items %}\n                {% if not loop.first %}\n                <li class=\"{{ loop.last ? 'active' : '' }}\">\n                    <a href=\"{{ item.uri }}\">{{ item.label | trans }}</a>\n                </li>\n                {% endif %}\n            {% endfor %}\n        {% endapply %}\n    </ol>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Exception/exception_full.html.twig",
    "content": "{% extends '@AdminLTE/layout/base-layout.html.twig' %}\n{% block page_title %} Error {% endblock %}\n{% block page_subtitle %} {{ status_code }} {% endblock %}\n\n{% block page_content %}\n    <div class=\"error-page\">\n        <h2 class=\"headline\">{{ status_code }}</h2>\n\n        <div class=\"error-content\">\n            <h3>{{ 'Something seems to have gone wrong'|trans() }}</h3>\n\n            <p>{{ exception.message }}</p>\n        </div>\n    </div>\n\n    <div class=\"\">\n\n    {% for n, position in exception.toarray %}\n\n        <div class=\"box box-danger\">\n            <div class=\"box-header\">\n                <i class=\"fas fa-exclamation-triangle\"></i>\n\n                <h3 class=\"box-title\">{{ position.class|abbr_class }}</h3>\n            </div>\n            <div class=\"box-body\">\n\n                <div class=\"callout callout-danger\">\n                    {{ position.message|nl2br|format_file_from_text }}\n                </div>\n\n                <div class=\"box-group\" id=\"box-{{ n }}\">\n\n\n                    <!-- trace -->\n                    <div class=\"panel box box-warning\">\n                        <div class=\"box-header\">\n                            <h4 class=\"box-title\">\n                                <a data-toggle=\"collapse\" data-parent=\"box-{{ n }}\"\n                                   href=\"#trace-{{ n }}\">\n                                    {{ 'Stack Trace'|trans() }}\n                                </a>\n                            </h4>\n                        </div>\n                        <div id=\"trace-{{ n }}\" class=\"panel-collapse collapse\">\n                            <div class=\"box-body\">\n                                <div class=\"panel\">\n                                <ul class=\"timeline\">\n                                    {% for i, trace in position.trace %}\n                                        <li class=\"time-label\">\n                                                    <span class=\"bg-red\">\n                                                        Stack #{{ i }}\n                                                    </span>\n                                        </li>\n                                        <li>\n                                            <i class=\"fas fa-code bg-blue\"></i>\n\n                                            <div class=\"timeline-item\">\n                                                <h3 class=\"timeline-header\">\n                                                    {{ trace.file }}\n                                                </h3>\n\n                                                <div class=\"timeline-body\">\n                                                    {% if trace.function %}\n                                                        at\n                                                        <strong>\n                                                            <abbr title=\"{{ trace.class }}\">{{ trace.short_class }}</abbr>\n                                                            {{ trace.type ~ trace.function }}\n                                                        </strong>\n                                                        ({{ trace.args|format_args }})\n                                                    {% endif %}\n\n                                                    {% if trace.file is defined and trace.file and trace.line is defined and trace.line %}\n                                                        {{ trace.function ? '<br />' : '' }}\n                                                        in {{ trace.file|format_file(trace.line) }}&nbsp;\n                                                        {{ trace.file|file_excerpt(trace.line) }}\n\n                                                    {% endif %}\n                                                </div>\n                                            </div>\n                                        </li>\n                                    {% endfor %}\n                                </ul>\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        </div>\n    {% endfor %}\n\n{% endblock %}\n"
  },
  {
    "path": "Resources/views/FOSUserBundle/Registration/confirmed.html.twig",
    "content": "{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n\n{% block login_social_auth %}{% endblock %}\n\n{% block login_form %}\n    {% block fos_user_content %}\n        <p>{{ 'registration.confirmed'|trans({'%username%': user.username}, 'AdminLTEBundle') }}</p>\n    {% endblock fos_user_content %}\n{% endblock %}\n\n{% block login_actions %}\n    <br>\n    <a href=\"{{ path('adminlte_welcome'|route_alias) }}\">\n        {{ 'Show homepage'|trans({}, 'AdminLTEBundle') }}\n    </a>\n{% endblock %}\n"
  },
  {
    "path": "Resources/views/FOSUserBundle/Registration/register.html.twig",
    "content": "{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n\n{% block login_social_auth %}{% endblock %}\n\n{% block login_box_msg %}\n    {{ 'Register a new account'|trans({}, 'AdminLTEBundle') }}\n{% endblock %}\n\n{% block login_form %}\n    {% form_theme form '@AdminLTE/layout/form-theme-security.html.twig' %}\n    {{ form_start(form, {'method': 'post', 'action': path('fos_user_registration_register'), 'attr': {'class': 'fos_user_registration_register'}}) }}\n    {{ form_widget(form) }}\n    <div class=\"form-group\">\n        <button type=\"submit\" class=\"btn btn-primary btn-block btn-flat\">{{ 'Register'|trans({}, 'AdminLTEBundle') }}</button>\n    </div>\n    {{ form_end(form) }}\n{% endblock %}\n\n{% block login_actions %}\n    <br>\n    <a href=\"{{ path('adminlte_login'|route_alias) }}\">\n        {{ 'Back to login'|trans({}, 'AdminLTEBundle') }}\n    </a>\n{% endblock %}\n"
  },
  {
    "path": "Resources/views/FOSUserBundle/Resetting/request.html.twig",
    "content": "{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n\n{% block login_social_auth %}{% endblock %}\n\n{% block login_box_msg %}\n    {{ 'Reset your password'|trans({}, 'AdminLTEBundle') }}\n{% endblock %}\n\n{% block login_form %}\n    <form action=\"{{ path('fos_user_resetting_send_email') }}\" method=\"POST\" class=\"fos_user_resetting_request\">\n        <div class=\"form-group has-feedback\">\n            <input type=\"text\" id=\"username\" name=\"username\" required=\"required\" class=\"form-control\" placeholder=\"{{ 'Username or email address'|trans({}, 'AdminLTEBundle') }}\">\n            <span class=\"glyphicon glyphicon-envelope form-control-feedback\"></span>\n        </div>\n        <div class=\"row\">\n            <div class=\"col-xs-12\">\n            <button type=\"submit\" class=\"btn btn-primary btn-block btn-flat\">{{ 'Reset your password'|trans({}, 'AdminLTEBundle') }}</button>\n            </div>\n        </div>\n    </form>\n{% endblock %}\n\n{% block login_actions %}\n    <br>\n    <a href=\"{{ path('adminlte_login'|route_alias) }}\">\n        {{ 'Back to login'|trans({}, 'AdminLTEBundle') }}\n    </a>\n{% endblock %}\n"
  },
  {
    "path": "Resources/views/FOSUserBundle/Security/login.html.twig",
    "content": "{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n\n{% block login_social_auth %}{% endblock %}\n\n{% block login_box_icon %}\n    <span class=\"glyphicon glyphicon-user\"></span>\n{% endblock %}\n\n{% block login_box_msg %}\n    {{ 'Sign in to start your session'|trans({}, 'AdminLTEBundle') }}\n{% endblock %}"
  },
  {
    "path": "Resources/views/FOSUserBundle/layout.html.twig",
    "content": "{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n\n{% block login_social_auth %}{% endblock %}\n\n{% block login_form %}\n    {% block fos_user_content %}{% endblock %}\n{% endblock %}\n\n{% block login_actions %}\n    <br>\n    <a href=\"{{ path('adminlte_login'|route_alias) }}\">\n        {{ 'Back to login'|trans({}, 'AdminLTEBundle') }}\n    </a>\n{% endblock %}\n"
  },
  {
    "path": "Resources/views/Macros/buttons.html.twig",
    "content": "{% macro action_toolbutton(icon, action, label) %}\n    <button class=\"btn btn-box-tool\" data-widget=\"{{ action }}\" data-toggle=\"tooltip\" title=\"{{ label|default('') }}\">\n        <i class=\"{{ icon|default('times') }}\"></i>\n    </button>\n{% endmacro %}\n\n{% macro link_toolbutton(icon, href, label) %}\n    <a href=\"{{ href }}\" class=\"btn btn-box-tool\" data-toggle=\"tooltip\" title=\"{{ label|default('') }}\">\n        <i class=\"{{ icon|default('times') }}\"></i>\n    </a>\n{% endmacro %}\n\n{% macro link_button(label, href, icon, type, size) %}\n    {% set _size = size|default(admin_lte_context.button.size) %}\n    {% set _type = type|default(admin_lte_context.button.type) %}\n    <a href=\"{{ href|default('#') }}\" class=\"btn btn-{{ _type }}{% if _size %} btn-{{ _size }}{% endif %}\">\n        {% if icon %}\n            <i class=\"{{ icon }}\"></i>\n        {% endif %}\n        {% if label %}\n            <span>{{ label }}</span>\n        {% endif %}\n    </a>\n{% endmacro %}\n\n{% macro action_button(label, action, icon, type, size) %}\n    {% set _size = size|default(admin_lte_context.button.size) %}\n    {% set _type = type|default(admin_lte_context.button.type) %}\n    <button data-action=\"{{ action }}\" class=\"btn btn-{{ _type }}{% if _size %} btn-{{ _size }}{% endif %}\">\n        {% if icon %}\n            <i class=\"{{ icon }}\"></i>\n        {% endif %}\n        {% if label %}\n            <span>{{ label }}</span>\n        {% endif %}\n    </button>\n{% endmacro %}\n"
  },
  {
    "path": "Resources/views/Macros/default.html.twig",
    "content": "{% macro avatar(image, alt, class) %}\n    {% if image %}\n        <img src=\"{{ asset(image) }}\" class=\"{{ class|default('img-circle') }}\" alt=\"{{ alt }}\" />\n    {% else %}\n        <img src=\"{{ asset(admin_lte_context.default_avatar) }}\" class=\"{{ class|default('img-circle') }}\" alt=\"{{ alt }}\" />\n    {% endif %}\n{% endmacro %}\n\n{#\n  the following code is based on phiamo/MopaBootstrapBundle\n  https://github.com/phiamo/MopaBootstrapBundle/blob/88b104b3efd4c3c3bfff1df4525a53bc3596010b/Resources/views/flash.html.twig\n#}\n{% macro flash(type, message, close, use_raw, class, domain) %}\n    <div class=\"alert{{ type ? ' alert-'~type : '' }} fade in {{ class|default('') }} {% if close|default(false) %}alert-dismissible{% endif %}\">\n        {% if close|default(false) %}\n            <button type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-hidden=\"true\">&times;</button>\n        {% endif %}\n        {% if use_raw|default(false) %}\n            {{ message|trans({}, domain|default('AdminLTEBundle'))|raw }}\n        {% else %}\n            {{ message|trans({}, domain|default('AdminLTEBundle')) }}\n        {% endif %}\n    </div>\n{% endmacro %}\n\n{% macro session_flash(close, use_raw, class, domain) %}\n    {% import _self as flash_messages %}\n\n    {% if app.session.flashbag.peekAll|length > 0 %}\n        {% for type, messages in app.session.flashbag.all %}\n            {% for message in messages %}\n                {% if type == 'fos_user_success' %}\n                    {% set type = 'success' %}\n                    {% set domain = 'FOSUserBundle' %}\n                {% endif %}\n                {{ flash_messages.flash(type, message, close, use_raw, class, domain) }}\n            {% endfor %}\n        {% endfor %}\n    {% endif %}\n{% endmacro %}\n"
  },
  {
    "path": "Resources/views/Macros/menu.html.twig",
    "content": "{% macro menu_item(item) %}\n    {% import _self as menu %}\n    {% if item.route or item.hasChildren %}\n        <li id=\"{{ item.identifier }}\" class=\" {{ item.isActive ? 'active' : '' }} {{ item.hasChildren? 'treeview' : '' }}\">\n            <a href=\"{{ item.hasChildren ? '#': '/' in item.route ? item.route : path(item.route|route_alias, item.routeArgs) }}\">\n                {% if item.icon %} <i class=\"{{ item.icon }}\"></i> {% endif %}\n                {% if item.badge is not same as(false) %}\n                <span class=\"pull-right-container\">\n                    <small class=\"label pull-right bg-{{ item.badgeColor }}\">{{ item.badge }}</small>\n                </span>\n                {% endif %}\n                {% if item.hasChildren %}<i class=\"fas fa-angle-left pull-right\"></i>{% endif %}\n                <span>{{ item.label|trans }}</span>\n            </a>\n\n            {% if item.hasChildren %}\n                <ul class=\"treeview-menu\">\n                    {% for child in item.children %}\n                        {% if child.hasChildren %}\n                           {{ menu.menu_item(child) }}\n                        {% else %}\n                            <li class=\"{{ child.isActive ? 'active':'' }}\" id=\"{{ child.identifier }}\">\n                                <a href=\"{{ '/' in child.route ? child.route : path(child.route|route_alias, child.routeArgs) }}\">\n                                    {{ menu.menu_item_content(child, '') }}\n                                </a>\n                            </li>\n                        {% endif %}\n                    {% endfor %}\n                </ul>\n            {% endif %}\n        </li>\n    {% else %}\n        <li id=\"{{ item.identifier }}\" class=\"header\">\n            {{ menu.menu_item_content(item, '') }}\n        </li>\n    {% endif %}\n{% endmacro %}\n\n{% macro menu_item_content(item, defaultIcon) %}\n    <i class=\"{{ item.icon|default(defaultIcon) }}\"></i>\n    <span>{{ item.label|trans }}</span>\n    {% if item.badge is not same as(false) %}\n    <span class=\"pull-right-container\">\n        <small class=\"label pull-right bg-{{ item.badgeColor }}\">{{ item.badge }}</small>\n    </span>\n    {% endif %}\n{% endmacro %}\n"
  },
  {
    "path": "Resources/views/Navbar/messages.html.twig",
    "content": "{% import \"@AdminLTE/Macros/default.html.twig\" as macro %}\n{% if messages is not defined or adminlte_direct_include is defined %}\n    {% set messages = null %}\n    {% set adminlte_messages = adminlte_messages() %}\n    {% if adminlte_messages is not null %}\n        {% set messages = adminlte_messages.messages %}\n        {% set total = adminlte_messages.total %}\n    {% endif %}\n{% endif %}\n{% if messages is defined and messages is not null %}\n<li class=\"dropdown messages-menu\">\n    <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n        <i class=\"far fa-envelope\"></i>\n        <span class=\"label label-success\">{{ total }}</span>\n    </a>\n    <ul class=\"dropdown-menu\">\n        <li class=\"header\">{{ 'You have %count% messages'|trans({'%count%': total}, 'AdminLTEBundle') }}</li>\n        <li>\n            <ul class=\"menu\">\n                {% for msg in messages %}\n                    <li>\n                        <a href=\"{{ path('adminlte_message'|route_alias, {'id': msg.identifier}) }}\">\n                            <div class=\"pull-left\">\n                                {{ macro.avatar(msg.from.avatar, msg.from.username) }}\n                            </div>\n                            <h4>\n                                {{ msg.from.username }}\n                                <small><i class=\"far fa-clock\"></i> {{ msg.sentAt|date('d.m.Y H:i') }}</small>\n                            </h4>\n                            <p>{{ msg.subject }}</p>\n                        </a>\n                    </li>\n                {% endfor %}\n            </ul>\n        </li>\n        <li class=\"footer\"><a href=\"{{ path('adminlte_messages'|route_alias) }}\">{{'View all'|trans({}, 'AdminLTEBundle')}}</a></li>\n    </ul>\n</li>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Navbar/notifications.html.twig",
    "content": "{% if notifications is not defined or adminlte_direct_include is defined %}\n    {% set notifications = null %}\n    {% set adminlte_notifications = adminlte_notifications() %}\n    {% if adminlte_notifications is not null %}\n        {% set notifications = adminlte_notifications.notifications %}\n        {% set total = adminlte_notifications.total %}\n    {% endif %}\n{% endif %}\n{% if notifications is defined and notifications is not null %}\n<li class=\"dropdown notifications-menu\">\n    <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n        <i class=\"far fa-bell\"></i>\n        <span class=\"label label-warning\">{{ total }}</span>\n    </a>\n    <ul class=\"dropdown-menu\">\n        <li class=\"header\">{{ 'You have %count% notifications'|trans({'%count%': total}, 'AdminLTEBundle') }}</li>\n        <li>\n            <ul class=\"menu\">\n                {% for notice in notifications %}\n                    <li>\n                        <a href=\"{{ path('adminlte_notification'|route_alias, {'id': notice.identifier}) }}\">\n                            <i class=\"{{ notice.icon }} {{ notice.type|text_type }}\"></i> {{ notice.message }}\n                        </a>\n                    </li>\n                {% endfor %}\n            </ul>\n        </li>\n        <li class=\"footer\"><a href=\"{{ path('adminlte_notifications'|route_alias) }}\">{{'View all'|trans({}, 'AdminLTEBundle')}}</a></li>\n    </ul>\n</li>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Navbar/tasks.html.twig",
    "content": "{% if tasks is not defined or adminlte_direct_include is defined %}\n    {% set tasks = null %}\n    {% set adminlte_tasks = adminlte_tasks() %}\n    {% if adminlte_tasks is not null %}\n        {% set tasks = adminlte_tasks.tasks %}\n        {% set total = adminlte_tasks.total %}\n    {% endif %}\n{% endif %}\n{% if tasks is defined and tasks is not null %}\n<li class=\"dropdown tasks-menu\">\n    <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n        <i class=\"far fa-flag\"></i>\n        <span class=\"label label-danger\">{{ total }}</span>\n    </a>\n    <ul class=\"dropdown-menu\">\n        <li class=\"header\">{{ 'You have %count% tasks' |trans({'%count%': total}, 'AdminLTEBundle') }}</li>\n        <li>\n            <ul class=\"menu\">\n                {% for task in tasks %}\n                    <li>\n                        <a href=\"{{ path('adminlte_task'|route_alias, {'id': task.identifier}) }}\">\n                            <h3>\n                                {{ task.title }}\n                                <small class=\"pull-right\">{{ task.progress }}%</small>\n                            </h3>\n                            <div class=\"progress xs\">\n                                <div class=\"progress-bar progress-bar-{{ task.color }}\"\n                                     style=\"width: {{ task.progress }}%\"\n                                     role=\"progressbar\"\n                                     aria-valuenow=\"{{ task.progress }}\"\n                                     aria-valuemin=\"0\"\n                                     aria-valuemax=\"100\">\n                                    <span class=\"sr-only\">{{ '%progress%% Complete'|trans({'%progress%':task.progress}, 'AdminLTEBundle') }}</span>\n                                </div>\n                            </div>\n                        </a>\n                    </li>\n                {%  endfor  %}\n            </ul>\n        <li class=\"footer\">\n            <a href=\"{{ path('adminlte_tasks'|route_alias) }}\">{{'View all'|trans({}, 'AdminLTEBundle')}}</a>\n        </li>\n    </ul>\n</li>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Navbar/user.html.twig",
    "content": "{% import \"@AdminLTE/Macros/default.html.twig\" as macro %}\n{% if user is not defined or adminlte_direct_include is defined %}\n    {% set user = null %}\n    {% set adminlte_userdetails = adminlte_user() %}\n    {% if adminlte_userdetails is not null %}\n        {% set user = adminlte_userdetails.user %}\n        {% set links = adminlte_userdetails.links %}\n        {% set showProfileLink = adminlte_userdetails.showProfileLink %}\n        {% set showLogoutLink = adminlte_userdetails.showLogoutLink %}\n    {% endif %}\n{% endif %}\n{% if user is defined and user is not null %}\n<li class=\"dropdown user user-menu\">\n    <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\">\n        {{ macro.avatar(user.avatar, user.username, 'user-image') }}\n        <span class=\"hidden-xs\">{{ user.name }}</span>\n    </a>\n    <ul class=\"dropdown-menu\">\n        <!-- User image -->\n        <li class=\"user-header\">\n            {{ macro.avatar(user.avatar, user.username) }}\n            <p>\n                {{ user.name }} - {{ user.title }}\n                {% block member_since %}\n                <small>{{ 'Member since %date%'|trans({'%date%': user.memberSince|date('m.Y') }, 'AdminLTEBundle') }}</small>\n                {% endblock %}\n            </p>\n        </li>\n        {% if links %}\n            <!-- Menu Body -->\n            <li class=\"user-body\">\n                {% for link in links %}\n                    <div class=\"col-xs-4 text-center\">\n                        <a href=\"{{ path(link.path|route_alias, link.parameters) }}\">{{ link.title }}</a>\n                    </div>\n                {% endfor %}\n            </li>\n        {% endif %}\n        {% if showLogoutLink or showProfileLink %}\n            <!-- Menu Footer-->\n            <li class=\"user-footer\">\n                {% if showProfileLink %}\n                    <div class=\"pull-left\">\n                        <a href=\"{{ path('adminlte_profile'|route_alias, {'id' : user.identifier}) }}\"\n                           class=\"btn btn-default btn-flat\">{{ 'Profile'|trans({}, 'AdminLTEBundle') }}</a>\n                    </div>\n                {% endif %}\n                {% if showLogoutLink %}\n                    <div class=\"pull-right\">\n                        <a href=\"{{ logout_path() }}\"\n                           class=\"btn btn-default btn-flat\">{{ 'Sign out'|trans({}, 'AdminLTEBundle') }}</a>\n                    </div>\n                {% endif %}\n            </li>\n        {% endif %}\n    </ul>\n</li>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Partials/_control-sidebar.html.twig",
    "content": "{% if admin_lte_context.control_sidebar is defined and admin_lte_context.control_sidebar is not empty %}\n<aside class=\"control-sidebar control-sidebar-dark\">\n    <ul class=\"nav nav-tabs nav-justified control-sidebar-tabs\">\n            {% for name, tab in admin_lte_context.control_sidebar %}\n                <li{% if loop.first %} class=\"active\"{% endif %}><a href=\"#control-sidebar-{{ name }}-tab\" data-toggle=\"tab\"><i class=\"{{ tab.icon }}\"></i></a></li>\n            {% endfor %}\n    </ul>\n    <div class=\"tab-content\">\n            {% for name, tab in admin_lte_context.control_sidebar %}\n                <div class=\"tab-pane {% if loop.first %}active{% endif %}\" id=\"control-sidebar-{{ name }}-tab\">\n                    {% if tab.controller is defined %}\n                        {{ render(controller(tab.controller, {'originalRequest': app.request})) }}\n                    {% elseif tab.template is defined %}\n                        {% include tab.template %}\n                    {% endif %}\n                </div>\n            {% endfor %}\n    </div>\n</aside>\n<div class=\"control-sidebar-bg\"></div>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Partials/_flash_messages.html.twig",
    "content": "{% import \"@AdminLTE/Macros/default.html.twig\" as macro %}\n\n{% if app.session and app.session.started and app.session.flashbag.peekAll|length > 0 %}\n    <div class=\"row\">\n        <div class=\"col-sm-12\">\n            {{ macro.session_flash(adminlte_close_alert|default(true), false, '', 'flashmessages') }}\n        </div>\n    </div>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Partials/_footer.html.twig",
    "content": "<footer class=\"main-footer\">\n    <!-- To the right -->\n    <div class=\"pull-right hidden-xs\">\n        Anything you want\n    </div>\n    <!-- Default to the left -->\n    <strong>Copyright &copy; 2018 <a href=\"#\">Company</a>.</strong> All rights reserved.\n</footer>"
  },
  {
    "path": "Resources/views/Partials/_menu.html.twig",
    "content": "{% extends 'knp_menu.html.twig' %}\n\n{% block label %}\n    {% if item.labelAttribute('icon') %}<i class=\"{{ item.labelAttribute('icon') }}\"></i>{% endif %}\n    {% if not item.labelAttribute('iconOnly') %}\n        <span>{% if options.allow_safe_labels and item.getExtra('safe_label', false) %}{{ item.label|trans|raw }}{% else %}{{ item.label|trans }}{% endif %}</span>\n    {% endif %}\n    {% if item.labelAttribute('data-image') %}<img src=\"{{ item.labelAttribute('data-image') }}\" alt=\"{{ item.name }}\" class=\"menu-thumbnail\"/>{% endif %}\n    \n    {% import _self as selfMacros %}\n    {% if item.hasChildren and options.depth is not same as(0) and item.displayChildren %}\n        <span class=\"pull-right-container\">\n            {{ selfMacros.badges(item) }}\n            <i class=\"fas fa-angle-left pull-right\"></i>\n        </span>\n    {% else %}\n        {{ selfMacros.badges(item) }}\n    {% endif %}\n{% endblock %}\n\n{% macro badges(item) %}\n    {% import _self as selfMacros %}\n    {% if item.getExtra('badge') is not null %}\n        <span class=\"pull-right-container\">\n            {{ selfMacros.badge(item.getExtra('badge')) }}\n        </span>\n    {% elseif item.getExtra('badges') is not null %}\n        <span class=\"pull-right-container\">\n            {% for badge in item.getExtra('badges') %}\n                {{ selfMacros.badge(badge) }}\n            {% endfor %}\n        </span>\n    {% endif %}\n{% endmacro %}\n\n{% macro badge(badge) %}\n    <small class=\"label pull-right bg-{{ badge.color|default('green') }}\">{{ badge.value }}</small>\n{% endmacro %}\n\n{% block list %}\n    {% if item.hasChildren and options.depth is not same as(0) and item.displayChildren %}\n        {% import \"knp_menu.html.twig\" as macros %}\n\n        {% if matcher.isAncestor(item) %}\n            {%- set listAttributes = listAttributes|merge({class: (listAttributes.class|default('') ~ ' in')|trim}) -%}\n        {% endif %}\n        {% if not item.isRoot %}\n            {%- set listAttributes = listAttributes|merge({class: (listAttributes.class|default('') ~ ' treeview-menu')|trim}) -%}\n        {% endif %} \n        <ul{{ macros.attributes(listAttributes) }}>\n            {{ block('children') }}\n        </ul>\n    {% endif %}\n{% endblock %}\n\n{% macro attributes(attributes) %}\n    {% for name, value in attributes %}\n        {%- if value is not none and value is not same as(false) -%}\n            {{- ' %s=\"%s\"'|format(name, value is same as(true) ? name|e : value|e)|raw -}}\n        {%- endif -%}\n    {%- endfor -%}\n{% endmacro %}\n\n{% block spanElement %}\n    {% import \"knp_menu.html.twig\" as macros %}\n    {% if item.attribute('class') matches '/(^|\\s+)header(\\s+|$)/' %}\n        {{ block('label') }}\n    {% else %}\n        <a{{ macros.attributes(item.labelAttributes) }}>\n            {{ block('label') }}\n        </a>\n    {% endif %}\n{% endblock %}\n"
  },
  {
    "path": "Resources/views/Sidebar/knp-menu.html.twig",
    "content": "{{\n    knp_menu_render(admin_lte_context.knp_menu.main_menu, {\n        \"template\"      : \"@AdminLTE/Partials/_menu.html.twig\",\n        \"currentClass\"  : \"active\",\n        \"ancestorClass\" : \"active\",\n        \"branch_class\"  : \"treeview\",\n        \"allow_safe_labels\": true\n    })\n}}\n"
  },
  {
    "path": "Resources/views/Sidebar/menu.html.twig",
    "content": "{% from \"@AdminLTE/Macros/menu.html.twig\" import menu_item %}\n{% if menu is not defined or adminlte_direct_include is defined %}\n    {% set menu = adminlte_menu(app.request) %}\n{% endif %}\n{% if menu is defined and menu is not null %}\n<ul class=\"sidebar-menu\" data-widget=\"tree\">\n    {% for item in menu %}\n        {{ menu_item(item) }}\n    {% endfor %}\n</ul>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Sidebar/search-form.html.twig",
    "content": "<form action=\"#\" method=\"get\" class=\"sidebar-form\">\n    <div class=\"input-group\">\n        <input type=\"text\" name=\"q\" class=\"form-control\" placeholder=\"{{ 'Search'|trans({}, 'AdminLTEBundle') }}...\"/>\n        <span class=\"input-group-btn\">\n            <button type='submit' name='search' id='search-btn' class=\"btn btn-flat\"><i class=\"fas fa-search\"></i></button>\n        </span>\n    </div>\n</form>\n"
  },
  {
    "path": "Resources/views/Sidebar/user-panel.html.twig",
    "content": "{% import \"@AdminLTE/Macros/default.html.twig\" as macro %}\n{% if user is not defined or adminlte_direct_include is defined %}\n    {% set user = adminlte_sidebar_user() %}\n{% endif %}\n{% if user is defined and user is not null %}\n<div class=\"user-panel\">\n    <div class=\"pull-left image\">\n    {{ macro.avatar(user.avatar, user.username)  }}\n    </div>\n    <div class=\"pull-left info\">\n        <p>{{ user.name }}</p>\n\n        <a href=\"#\"><i class=\"fas fa-circle text-success\"></i> {{ 'Online'|trans({}, 'AdminLTEBundle') }}</a>\n    </div>\n</div>\n{% endif %}\n"
  },
  {
    "path": "Resources/views/Widgets/box-widget.html.twig",
    "content": "{% import '@AdminLTE/Macros/buttons.html.twig' as button %}\n{% if block('box_before') is defined %}{{ block('box_before') }}{% endif %}\n\n{% set _collapsed = collapsed|default(false) %}\n{% set _solid     = solid|default(admin_lte_context.widget.solid)  %}\n{% set _border    = border|default(admin_lte_context.widget.bordered)  %}\n{% set _footer    = use_footer|default(admin_lte_context.widget.use_footer) or block('box_footer') is defined %}\n\n{% if removable is not defined %}\n    {% set removable = admin_lte_context.widget.removable %}\n{% endif %}\n{% if collapsible is not defined %}\n    {% set collapsible =  (_collapsed or admin_lte_context.widget.collapsible) %}\n{% endif %}\n<div class=\"box box-{{ boxtype|default(admin_lte_context.widget.type) }}{{ _solid ? ' box-solid' : '' }}{{ _collapsed ? ' collapsed-box' : '' }}\"{% if block('box_attributes') is defined %} {{ block('box_attributes') }}{% endif %}>\n    {% if block('box_title') is defined or collapsible or removable %}\n    <div class=\"box-header{{ _border ? ' with-border' : '' }}\">\n        {% if block('box_title') is defined %}<h3 class=\"box-title\">{{ block('box_title') }}</h3>{% endif %}\n        <div class=\"box-tools pull-right\"{% if block('box_tools_attributes') is defined %} {{ block('box_tools_attributes') }}{% endif %}>\n            {# Buttons, labels, and many other things can be placed here! #}\n            {% if block('box_tools') is defined %}{{ block('box_tools') }}{% endif %}\n            {% if collapsible %}\n                {{ button.action_toolbutton(\n                    _collapsed ? 'fas fa-plus'  : 'fas fa-minus' ,\n                    'collapse',\n                    collapsible_title|default(admin_lte_context.widget.collapsible_title|default()|trans({}, 'AdminLTEBundle'))\n                ) }}\n            {% endif %}\n\n            {% if removable %}\n                {{ button.action_toolbutton(\n                'fas fa-times',\n                'remove',\n                removable_title|default(admin_lte_context.widget.removable_title|default()|trans({}, 'AdminLTEBundle'))\n                ) }}\n            {% endif %}\n        </div>\n    </div>\n    {% endif %}\n    <div class=\"box-body{% if block('box_body_class') is defined %} {{ block('box_body_class') }}{% endif %}\">{{ block('box_body') }}</div>\n    {% if _footer and block('box_footer') is defined %}\n        {# \n            If there is a form in the block_footer, it will be rendered when checking \"is not empty\". \n            Therefor we have to cache the output first and then perform the checks. \n        #}\n        {% set boxFooter = block('box_footer') %}\n        {% if boxFooter is not empty %}\n            <div class=\"box-footer\">{{ boxFooter|raw }}</div>\n        {% endif %}\n    {% endif %}\n</div>\n{% if block('box_after') is defined %}{{ block('box_after') }}{% endif %}\n"
  },
  {
    "path": "Resources/views/Widgets/infobox-widget.html.twig",
    "content": "{% if block('box_before') is defined %}{{ block('box_before') }}{% endif %}\n<div class=\"info-box{% if solid is defined %} bg-{{ solid }}{% endif %}\">\n    <span class=\"info-box-icon{% if color is defined %} bg-{{ color }}{% endif %}\"><i class=\"{{ icon|default('info-circle') }}\"></i></span>\n    <div class=\"info-box-content\">\n        <span class=\"info-box-text\">\n            {{ block('box_text') }}\n        </span>\n        <span class=\"info-box-number\">\n            {% if block('box_number') is defined %}\n                {{ block('box_number') }}\n            {% endif %}\n        </span>\n        <!-- The progress section is optional -->\n        {% if progress is defined %}\n        <div class=\"progress\">\n            <div class=\"progress-bar\" style=\"width: {{ progress }}%\"></div>\n        </div>\n        {% endif %}\n        {% if block('progress_description') is defined %}\n    <span class=\"progress-description\">\n      {{ block('progress_description') }}\n    </span>\n        {% endif %}\n    </div><!-- /.info-box-content -->\n</div><!-- /.info-box -->\n{% if block('box_after') is defined %}{{ block('box_after') }}{% endif %}\n"
  },
  {
    "path": "Resources/views/layout/default-layout-avanzu.html.twig",
    "content": "{#\n    Do not use this layout if you are starting a fresh project with this bundle.\n    This file is ONLY meant for migrating from AvanzuAdminTheme to AdminLTE bundle!\n    More infos can be found in Resources/docs/migration_guide.md\n\n    Use it by adding this code to your own base template:\n\n    {% extends '@AdminLTE/layout/default-layout-avanzu.html.twig' %}\n#}\n{% extends '@AdminLTE/layout/default-layout.html.twig' %}\n\n{% block html_start %}{% if block('avanzu_html_start') is defined %}{{ block('avanzu_html_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block title %}{% if block('avanzu_document_title') is defined %}{{ block('avanzu_document_title') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block head %}{% if block('avanzu_head') is defined %}{{ block('avanzu_head') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block body_start %}{% if block('avanzu_body_start') is defined %}{{ block('avanzu_body_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block after_body_start %}{% if block('avanzu_after_body_start') is defined %}{{ block('avanzu_after_body_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block logo_path %}{% if block('avanzu_logo_path') is defined %}{{ block('avanzu_logo_path') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block logo_mini %}{% if block('avanzu_logo_mini') is defined %}{{ block('avanzu_logo_mini') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block logo_large %}{% if block('avanzu_logo_lg') is defined %}{{ block('avanzu_logo_lg') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block navbar_toggle %}{% if block('avanzu_navbar_toggle') is defined %}{{ block('avanzu_navbar_toggle') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block navbar_messages %}{% if block('avanzu_navbar_messages') is defined %}{{ block('avanzu_navbar_messages') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block navbar_notifications %}{% if block('avanzu_navbar_notifications') is defined %}{{ block('avanzu_navbar_notifications') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block navbar_tasks %}{% if block('avanzu_navbar_tasks') is defined %}{{ block('avanzu_navbar_tasks') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block navbar_user %}{% if block('avanzu_navbar_user') is defined %}{{ block('avanzu_navbar_user') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block navbar_control_sidebar_toggle %}{% if block('avanzu_navbar_control_sidebar_toggle') is defined %}{{ block('avanzu_navbar_control_sidebar_toggle') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block sidebar_user %}{% if block('avanzu_sidebar_user') is defined %}{{ block('avanzu_sidebar_user') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block sidebar_search %}{% if block('avanzu_sidebar_search') is defined %}{{ block('avanzu_sidebar_search') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block sidebar_nav %}{% if block('avanzu_sidebar_nav') is defined %}{{ block('avanzu_sidebar_nav') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_title %}{% if block('avanzu_page_title') is defined %}{{ block('avanzu_page_title') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_subtitle %}{% if block('avanzu_page_subtitle') is defined %}{{ block('avanzu_page_subtitle') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block breadcrumb %}{% if block('avanzu_breadcrumb') is defined %}{{ block('avanzu_breadcrumb') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_content_before %}{% if block('avanzu_page_content_before') is defined %}{{ block('avanzu_page_content_before') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_content_class %}{% if block('avanzu_page_content_class') is defined %}{{ block('avanzu_page_content_class') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_content_start %}{% if block('avanzu_page_content_start') is defined %}{{ block('avanzu_page_content_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_content %}{% if block('avanzu_page_content') is defined %}{{ block('avanzu_page_content') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_content_end %}{% if block('avanzu_page_content_end') is defined %}{{ block('avanzu_page_content_end') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block page_content_after %}{% if block('avanzu_page_content_after') is defined %}{{ block('avanzu_page_content_after') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block footer %}{% if block('avanzu_footer') is defined %}{{ block('avanzu_footer') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block control_sidebar %}{% if block('avanzu_control_sidebar') is defined %}{{ block('avanzu_control_sidebar') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n"
  },
  {
    "path": "Resources/views/layout/default-layout.html.twig",
    "content": "{#\n    Use this as your new starter template page, use it to start your new project,\n    by adding this code to your own base template:\n\n    {% extends '@AdminLTE/layout/default-layout.html.twig' %}\n\n    Enjoy your AdminLTE theme!\n#}\n<!DOCTYPE html{% block html_start %}{% endblock %}>\n<html lang=\"{{ app.request.locale }}\">\n<head>\n    {% block head %}\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\" name=\"viewport\">\n    {% endblock %}\n    <title>{% block title %}{{ block('page_title') }}{% endblock %}</title>\n    {% block stylesheets %}\n    <link rel=\"stylesheet\" href=\"{{ asset('bundles/adminlte/adminlte.css') }}\">\n    {% endblock %}\n</head>\n{#\nApply one of the following classes for the skin:\nskin-blue, skin-black, skin-purple, skin-yellow, skin-red, skin-green\n\nApply one or more of the following classes for the layout options:\nfixed, layout-boxed, layout-top-nav, sidebar-collapse, sidebar-mini\n#}\n<body{% block body_start %}{% endblock %} class=\"hold-transition {{ admin_lte_context.skin|default(\"\")|body_class }}\">\n{% block after_body_start %}{% endblock %}\n<div class=\"wrapper\">\n\n    <header class=\"main-header\">\n        <a href=\"{% block logo_path %}{{ path('adminlte_welcome'|route_alias) }}{% endblock %}\" class=\"logo\">\n            <span class=\"logo-mini\">\n                {% block logo_mini %}<b>A</b>LT{% endblock %}\n            </span>\n            <span class=\"logo-lg\">\n               {% block logo_large %} <b>Admin</b>LTE {% endblock %}\n            </span>\n        </a>\n\n        <nav class=\"navbar navbar-static-top\" role=\"navigation\">\n            {% block navbar_toggle %}\n            <a href=\"#\" class=\"sidebar-toggle\" data-toggle=\"push-menu\" role=\"button\">\n                <span class=\"sr-only\">{{ 'Toggle navigation'|trans({}, 'AdminLTEBundle')  }}</span>\n            </a>\n            {% endblock %}\n            <div class=\"navbar-custom-menu\">\n                <ul class=\"nav navbar-nav\">\n                    {% block navbar_start %}{% endblock %}\n                    {% block navbar_messages %}\n                        {% include '@AdminLTE/Navbar/messages.html.twig' with {'adminlte_direct_include': true} %}\n                    {% endblock %}\n                    {% block navbar_notifications %}\n                        {% include '@AdminLTE/Navbar/notifications.html.twig' with {'adminlte_direct_include': true} %}\n                    {% endblock %}\n                    {% block navbar_tasks %}\n                        {% include '@AdminLTE/Navbar/tasks.html.twig' with {'adminlte_direct_include': true} %}\n                    {% endblock %}\n                    {% block navbar_user %}\n                        {% include '@AdminLTE/Navbar/user.html.twig' with {'adminlte_direct_include': true} %}\n                    {% endblock %}\n                    {% block navbar_end %}{% endblock %}\n                    {% block navbar_control_sidebar_toggle %}\n                        {% if admin_lte_context.control_sidebar is defined and admin_lte_context.control_sidebar is not empty %}\n                        <li>\n                            <a href=\"#\" data-toggle=\"control-sidebar\"><i class=\"fas fa-cogs\"></i></a>\n                        </li>\n                        {% endif %}\n                    {% endblock %}\n                </ul>\n            </div>\n        </nav>\n    </header>\n\n    <aside class=\"main-sidebar\">\n        <section class=\"sidebar\">\n            {% block sidebar_user %}\n                {% if app.user is not null and is_granted('IS_AUTHENTICATED_FULLY') %}\n                    {% include '@AdminLTE/Sidebar/user-panel.html.twig' with {'adminlte_direct_include': true} %}\n                {% endif %}\n            {% endblock %}\n\n            {% block sidebar_search %}\n                {% include '@AdminLTE/Sidebar/search-form.html.twig' with {'adminlte_direct_include': true} %}\n            {% endblock %}\n\n            {% block sidebar_nav %}\n                {% if admin_lte_context.knp_menu.enable %}\n                    {% include '@AdminLTE/Sidebar/knp-menu.html.twig' %}\n                {% else %}\n                    {% include '@AdminLTE/Sidebar/menu.html.twig' with {'adminlte_direct_include': true} %}\n                {% endif %}\n            {% endblock %}\n        </section>\n    </aside>\n\n    <div class=\"content-wrapper\">\n        <section class=\"content-header\">\n            <h1>\n                {% block page_title %}{{ 'Admin LTE'|trans({}, 'AdminLTEBundle') }}{% endblock %}\n                <small>{% block page_subtitle %}{{ 'A short subtitle for your page'|trans({}, 'AdminLTEBundle') }}{% endblock %}</small>\n            </h1>\n\n            {% block breadcrumb %}\n                {% if admin_lte_context.knp_menu.enable %}\n                    {% include '@AdminLTE/Breadcrumb/knp-breadcrumb.html.twig' %}\n                {% else %}\n                    {% include '@AdminLTE/Breadcrumb/breadcrumb.html.twig' with {'adminlte_direct_include': true} %}\n                {% endif %}\n            {% endblock %}\n        </section>\n\n        {% block page_content_before %}{% endblock %}\n\n        <section class=\"{% block page_content_class %}content{% endblock %}\">\n            {% block page_content_start %}{{ include('@AdminLTE/Partials/_flash_messages.html.twig') }}{% endblock %}\n            {% block page_content %}{% endblock %}\n            {% block page_content_end %}{% endblock %}\n        </section>\n\n        {% block page_content_after %}{% endblock %}\n    </div>\n\n    {% block footer %}\n        {% include '@AdminLTE/Partials/_footer.html.twig' %}\n    {% endblock %}\n    {% block control_sidebar %}\n        {% if admin_lte_context.control_sidebar %}\n            {% include '@AdminLTE/Partials/_control-sidebar.html.twig' %}\n        {% endif %}\n    {% endblock %}\n\n</div>\n\n{% block javascripts %}\n    <script src=\"{{ asset('bundles/adminlte/adminlte.js') }}\"></script>\n{% endblock %}\n\n</body>\n</html>\n"
  },
  {
    "path": "Resources/views/layout/form-theme-base.html.twig",
    "content": "{% extends 'bootstrap_3_layout.html.twig' %}\n\n{#\n    ATTENTION:\n    when changing anything in this file, check if the changes need to be applied to form-theme-horizontal.html.twig as well\n#}\n\n{% block form_errors %}\n    {% apply spaceless %}\n        {% if errors|length > 0 %}\n            <ul class=\"list-unstyled\">\n                {% for error in errors %}\n                    <li class=\"text-danger\">{{ error.message }}</li>\n                {% endfor %}\n            </ul>\n        {% endif %}\n    {% endapply %}\n{% endblock form_errors %}\n\n{% block widget_attributes %}\n    {% set types = form.vars.block_prefixes %}\n     {% set _class = '' %}\n    {% if 'checkbox' in types %}\n        {% set _class = ' checkbox' %}\n    {% elseif 'radio' in types%}\n        {% set _class = ' radio' %}\n    {% endif%}\n    {# % else %}\n        {% set _class = ' form-control' %}\n    {% endif %#}\n\n    {% if attr.class is defined %}\n        {% set class = attr.class ~ _class %}\n    {% else %}\n        {% set class = _class %}\n    {% endif %}\n    {% if 'checkbox' not in types and 'form-control' not in class  %}\n        {%  set class = class ~ ' form-control' %}\n    {% endif %}\n    {% set attr = attr|merge({'class' : class}) %}\n    {{ parent () }}\n{% endblock widget_attributes %}\n\n{% block choice_widget_expanded %}\n    {% apply spaceless %}\n        <div {{ block('widget_container_attributes') }}>\n            {% for child in form %}\n                {{ form_widget(child) }}\n            {% endfor %}\n        </div>\n    {% endapply %}\n{% endblock choice_widget_expanded %}\n\n{% block choice_widget_collapsed %}\n    {% for att, val in attr %}\n        {% if att == 'class' %}\n            {% set att = val ~ ' form-control' %}\n        {% endif %}\n    {% endfor %}\n\n    {{ parent() }}\n{% endblock %}\n\n{% block checkbox_widget %}\n    <div class=\"checkbox\">\n        {% apply spaceless %}\n            {% if not compound %}\n                {% set label_attr = label_attr|merge({'for': id}) %}\n            {% endif %}\n            {% if required %}\n                {% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}\n            {% endif %}\n            {% if label is not same as(false) and label is empty %}\n                {% set label = name|humanize %}\n            {% endif %}\n\n            <label{% for attrname, attrvalue in label_attr %} {{ attrname }}=\"{{ attrvalue }}\"{% endfor %}>\n            <input type=\"checkbox\" {{ block('widget_attributes') }}{% if value is defined %} value=\"{{ value }}\"{% endif %}{% if checked %} checked=\"checked\"{% endif %} />\n            {% if label is not same as(false) %}\n                {{ label|trans({}, translation_domain) }}\n            {% endif %}\n            </label>\n        {% endapply %}\n    </div>\n{% endblock checkbox_widget %}\n\n{% block radio_widget %}\n    <div class=\"radio\">\n        {% apply spaceless %}\n            {% if not compound %}\n                {% set label_attr = label_attr|merge({'for': id}) %}\n            {% endif %}\n            {% if required %}\n                {% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}\n            {% endif %}\n            {% if label is not same as(false) and label is empty %}\n                {% set label = name|humanize %}\n            {% endif %}\n            <label{% for attrname, attrvalue in label_attr %} {{ attrname }}=\"{{ attrvalue }}\"{% endfor %}>\n            <input type=\"radio\" {{ block('widget_attributes') }}{% if value is defined %} value=\"{{ value }}\"{% endif %}{% if checked %} checked=\"checked\"{% endif %} />\n            {% if label is not same as(false) %}\n                {{ label|trans({}, translation_domain) }}\n            {% endif %}\n            </label>\n        {% endapply %}\n    </div>\n{% endblock radio_widget %}\n\n{% block date_widget %}\n    {% if widget == 'single_text' %}\n        <div class=\"input-group\">\n            <div class=\"input-group-addon\">\n                <i class=\"far fa-calendar-alt\"></i>\n            </div>\n\n            {% if type is not defined or type != 'date' %}\n                {% if attr.class is defined %}\n                    {% set class = attr.class ~ ' timepicker' %}\n                {% else %}\n                    {% set class = ' timepicker' %}\n                {% endif %}\n                {% set attr = attr|merge({'class' : class, 'data-datepickerenable':'on'}) %}\n            {% endif %}\n\n            {{ block('form_widget_simple') }}\n        </div>\n    {% else %}\n        {% set date_pattern = '<div class=\"row\">' ~ date_pattern ~ '</div>'|raw %}\n        {{ date_pattern|replace({\n        '{{ year }}' : '<div class=\"col-xs-4\">{{ year }}</div>',\n        '{{ month }}' : '<div class=\"col-xs-4\">{{ month }}</div>',\n        '{{ day }}' : '<div class=\"col-xs-4\">{{ day }}</div>',\n        })|raw|replace({\n        '{{ year }}':  form_widget(form.year),\n        '{{ month }}': form_widget(form.month),\n        '{{ day }}':   form_widget(form.day),\n        })|raw }}\n\n    {% endif %}\n{% endblock %}\n\n{% block time_widget %}\n    {% if widget == 'single_text' %}\n        <div class=\"bootstrap-timepicker\">\n            <div class=\"input-group\">\n                <div class=\"input-group-addon add-on\">\n                    <i class=\"far fa-clock\"></i>\n                </div>\n                {% if type is not defined or type != 'time' %}\n                    {% if attr.class is defined %}\n                        {% set class = attr.class ~ ' timepicker' %}\n                    {% else %}\n                        {% set class = ' timepicker' %}\n                    {% endif %}\n                    {% set attr = attr|merge({'class' : class, 'data-timepicker':'on'}) %}\n                {% endif %}\n                {{ block('form_widget_simple') }}\n            </div>\n        </div>\n    {% else %}\n        {{ parent() }}\n    {% endif %}\n{% endblock %}\n\n{% block datetime_widget -%}\n    {%- if widget == 'single_text' -%}\n        <div class=\"input-group\">\n            <div class=\"input-group-addon\">\n                <i class=\"fa fa-calendar-alt\"></i>\n            </div>\n            {{- parent() -}}\n        </div>\n    {%- else -%}\n        {{- parent() -}}\n    {%- endif -%}\n{%- endblock datetime_widget %}\n\n{% block tel_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            {% set icon = 'phone' %}\n            {% if 'icon' in attr|keys %}\n                {% set icon = attr.icon %}\n            {% endif %}\n            <i class=\"fas fa-{{ icon }}\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock tel_widget %}\n\n{% block url_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            <i class=\"fas fa-home\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock url_widget %}\n"
  },
  {
    "path": "Resources/views/layout/form-theme-horizontal.html.twig",
    "content": "{% extends 'bootstrap_3_horizontal_layout.html.twig' %}\n\n{#\n    ATTENTION:\n    when changing anything in this file, check if the changes need to be applied to form-theme.html.twig as well\n#}\n\n{% block form_errors %}\n    {% apply spaceless %}\n        {% if errors|length > 0 %}\n            <ul class=\"list-unstyled\">\n                {% for error in errors %}\n                    <li class=\"text-danger\">{{ error.message }}</li>\n                {% endfor %}\n            </ul>\n        {% endif %}\n    {% endapply %}\n{% endblock form_errors %}\n\n{% block widget_attributes %}\n    {% set types = form.vars.block_prefixes %}\n     {% set _class = '' %}\n    {% if 'checkbox' in types %}\n        {% set _class = ' checkbox' %}\n    {% elseif 'radio' in types%}\n        {% set _class = ' radio' %}\n    {% endif%}\n    {# % else %}\n        {% set _class = ' form-control' %}\n    {% endif %#}\n\n    {% if attr.class is defined %}\n        {% set class = attr.class ~ _class %}\n    {% else %}\n        {% set class = _class %}\n    {% endif %}\n    {% if 'checkbox' not in types and 'form-control' not in class  %}\n        {%  set class = class ~ ' form-control' %}\n    {% endif %}\n    {% set attr = attr|merge({'class' : class}) %}\n    {{ parent () }}\n{% endblock widget_attributes %}\n\n{% block choice_widget_expanded %}\n    {% apply spaceless %}\n        <div {{ block('widget_container_attributes') }}>\n            {% for child in form %}\n                {{ form_widget(child) }}\n            {% endfor %}\n        </div>\n    {% endapply %}\n{% endblock choice_widget_expanded %}\n\n{% block choice_widget_collapsed %}\n    {% for att, val in attr %}\n        {% if att == 'class' %}\n            {% set att = val ~ ' form-control' %}\n        {% endif %}\n    {% endfor %}\n\n    {{ parent() }}\n{% endblock %}\n\n{% block checkbox_widget %}\n    <div class=\"checkbox\">\n        {% apply spaceless %}\n            {% if not compound %}\n                {% set label_attr = label_attr|merge({'for': id}) %}\n            {% endif %}\n            {% if required %}\n                {% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}\n            {% endif %}\n            {% if label is not same as(false) and label is empty %}\n                {% set label = name|humanize %}\n            {% endif %}\n\n            <label{% for attrname, attrvalue in label_attr %} {{ attrname }}=\"{{ attrvalue }}\"{% endfor %}>\n            <input type=\"checkbox\" {{ block('widget_attributes') }}{% if value is defined %} value=\"{{ value }}\"{% endif %}{% if checked %} checked=\"checked\"{% endif %} />\n            {% if label is not same as(false) %}\n                {{ label|trans({}, translation_domain) }}\n            {% endif %}\n            </label>\n        {% endapply %}\n    </div>\n{% endblock checkbox_widget %}\n\n{% block radio_widget %}\n    <div class=\"radio\">\n        {% apply spaceless %}\n            {% if not compound %}\n                {% set label_attr = label_attr|merge({'for': id}) %}\n            {% endif %}\n            {% if required %}\n                {% set label_attr = label_attr|merge({'class': (label_attr.class|default('') ~ ' required')|trim}) %}\n            {% endif %}\n            {% if label is not same as(false) and label is empty %}\n                {% set label = name|humanize %}\n            {% endif %}\n            <label{% for attrname, attrvalue in label_attr %} {{ attrname }}=\"{{ attrvalue }}\"{% endfor %}>\n            <input type=\"radio\" {{ block('widget_attributes') }}{% if value is defined %} value=\"{{ value }}\"{% endif %}{% if checked %} checked=\"checked\"{% endif %} />\n            {% if label is not same as(false) %}\n                {{ label|trans({}, translation_domain) }}\n            {% endif %}\n            </label>\n        {% endapply %}\n    </div>\n{% endblock radio_widget %}\n\n{% block date_widget %}\n    {% if widget == 'single_text' %}\n        <div class=\"input-group\">\n            <div class=\"input-group-addon\">\n                <i class=\"far fa-calendar-alt\"></i>\n            </div>\n\n            {% if type is not defined or type != 'date' %}\n                {% if attr.class is defined %}\n                    {% set class = attr.class ~ ' timepicker' %}\n                {% else %}\n                    {% set class = ' timepicker' %}\n                {% endif %}\n                {% set attr = attr|merge({'class' : class, 'data-datepickerenable':'on'}) %}\n            {% endif %}\n\n            {{ block('form_widget_simple') }}\n        </div>\n    {% else %}\n        {% set date_pattern = '<div class=\"row\">' ~ date_pattern ~ '</div>'|raw %}\n        {{ date_pattern|replace({\n        '{{ year }}' : '<div class=\"col-xs-4\">{{ year }}</div>',\n        '{{ month }}' : '<div class=\"col-xs-4\">{{ month }}</div>',\n        '{{ day }}' : '<div class=\"col-xs-4\">{{ day }}</div>',\n        })|raw|replace({\n        '{{ year }}':  form_widget(form.year),\n        '{{ month }}': form_widget(form.month),\n        '{{ day }}':   form_widget(form.day),\n        })|raw }}\n\n    {% endif %}\n{% endblock %}\n\n{% block time_widget %}\n    {% if widget == 'single_text' %}\n        <div class=\"bootstrap-timepicker\">\n            <div class=\"input-group\">\n                <div class=\"input-group-addon add-on\">\n                    <i class=\"far fa-clock\"></i>\n                </div>\n                {% if type is not defined or type != 'time' %}\n                    {% if attr.class is defined %}\n                        {% set class = attr.class ~ ' timepicker' %}\n                    {% else %}\n                        {% set class = ' timepicker' %}\n                    {% endif %}\n                    {% set attr = attr|merge({'class' : class, 'data-timepicker':'on'}) %}\n                {% endif %}\n                {{ block('form_widget_simple') }}\n            </div>\n        </div>\n    {% else %}\n        {{ parent() }}\n    {% endif %}\n{% endblock %}\n\n{% block datetime_widget -%}\n    {%- if widget == 'single_text' -%}\n        <div class=\"input-group\">\n            <div class=\"input-group-addon\">\n                <i class=\"fa fa-calendar-alt\"></i>\n            </div>\n            {{- parent() -}}\n        </div>\n    {%- else -%}\n        {{- parent() -}}\n    {%- endif -%}\n{%- endblock datetime_widget %}\n\n{% block email_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            <i class=\"fa fa-at\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock email_widget %}\n\n{% block password_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            <i class=\"fas fa-key\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock password_widget %}\n\n{% block tel_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            {% set icon = 'phone' %}\n            {% if 'icon' in attr|keys %}\n                {% set icon = attr.icon %}\n            {% endif %}\n            <i class=\"fas fa-{{ icon }}\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock tel_widget %}\n\n{% block url_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            <i class=\"fas fa-home\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock url_widget %}\n"
  },
  {
    "path": "Resources/views/layout/form-theme-security.html.twig",
    "content": "{% extends '@AdminLTE/layout/form-theme-base.html.twig' %}\n\n{%- block form_widget_simple -%}\n    {% if label is defined and label is not null and label is not same as (false) %}\n        {% set attr = attr|merge({'placeholder': label|trans({}, translation_domain)}) %}\n    {% endif %}\n    {% set label = false %}\n    {% if not attr.icon is defined %}\n        {% set attr = attr|merge({'icon': 'user'}) %}\n    {% endif %}\n    {% if type is defined and type == 'hidden' %}\n        {{- parent() -}}\n    {% else %}\n        <div class=\"form-group has-feedback\">\n            {{- parent() -}}\n            <span class=\"glyphicon glyphicon-{{ attr.icon }} form-control-feedback\"></span>\n        </div>\n    {% endif %}\n{%- endblock form_widget_simple -%}\n\n{% block email_widget -%}\n    {% set attr = attr|merge({'icon': 'envelope'}) %}\n    {{- parent() -}}\n{%- endblock email_widget %}\n\n{% block password_widget -%}\n    {% set attr = attr|merge({'icon': 'lock'}) %}\n    {{- parent() -}}\n{%- endblock password_widget %}\n\n{%- block form_label -%}\n{%- endblock form_label %}\n"
  },
  {
    "path": "Resources/views/layout/form-theme.html.twig",
    "content": "{% extends '@AdminLTE/layout/form-theme-base.html.twig' %}\n\n{#\n    ATTENTION:\n    when changing anything in this file, check if the changes need to be applied to form-theme-horizontal.html.twig as well\n#}\n\n{% block email_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            <i class=\"fa fa-at\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock email_widget %}\n\n{% block password_widget -%}\n    <div class=\"input-group\">\n        <div class=\"input-group-addon\">\n            <i class=\"fas fa-key\"></i>\n        </div>\n        {{- parent() -}}\n    </div>\n{%- endblock password_widget %}\n"
  },
  {
    "path": "Resources/views/layout/login-layout-avanzu.html.twig",
    "content": "{% extends '@AdminLTE/layout/security-layout.html.twig' %}\n{#\n    Do not use this layout if you are starting a fresh project with this bundle.\n    This file is ONLY meant for migrating from AvanzuAdminTheme to AdminLTE bundle!\n\n    More infos can be found in Resources/docs/migration_guide.md\n#}\n{% block html_start %}{% if block('avanzu_html_start') is defined %}{{ block('avanzu_html_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block title %}{% if block('avanzu_login_title') is defined %}{{ block('avanzu_login_title') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block stylesheets %}{% if block('avanzu_stylesheets') is defined %}{{ block('avanzu_stylesheets') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block head %}{% if block('avanzu_head') is defined %}{{ block('avanzu_head') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block body_start %}{% if block('avanzu_body_start') is defined %}{{ block('avanzu_body_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block after_body_start %}{% if block('avanzu_after_body_start') is defined %}{{ block('avanzu_after_body_start') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block login_box %}{% if block('avanzu_login_box') is defined %}{{ block('avanzu_login_box') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block logo_login %}{% if block('avanzu_logo_login') is defined %}{{ block('avanzu_logo_login') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block login_box_msg %}{% if block('avanzu_login_box_msg') is defined %}{{ block('avanzu_login_box_msg') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block login_form %}{% if block('avanzu_login_form') is defined %}{{ block('avanzu_login_form') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block login_social_auth %}{% if block('avanzu_login_social_auth') is defined %}{{ block('avanzu_login_social_auth') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n{% block login_actions %}{% if block('avanzu_login_actions') is defined %}{{ block('avanzu_login_actions') }}{% else %}{{ parent() }}{% endif %}{% endblock %}\n"
  },
  {
    "path": "Resources/views/layout/security-layout.html.twig",
    "content": "<!DOCTYPE html{% block html_start %}{% endblock %}>\n<html>\n<head>\n    {% block head %}\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\" name=\"viewport\">\n    {% endblock %}\n    <title>{% block title %}AdminLTE 2 | Log in{% endblock %}</title>\n    {% block stylesheets %}\n    <link rel=\"stylesheet\" href=\"{{ asset('bundles/adminlte/adminlte.css') }}\">\n    {% endblock %}\n</head>\n<body{% block body_start %}{% endblock %} class=\"hold-transition login-page\">\n{% block after_body_start %}{% endblock %}\n{% block login_box %}\n    <div class=\"login-box\">\n        <div class=\"login-logo\">\n            {% block logo_login %}<b>Admin</b>LTE{% endblock %}\n        </div>\n        <div class=\"login-box-body\">\n            <div class=\"login-box-msg\">\n                <h3 class=\"login-head\">\n                    {% block login_box_icon %}{% endblock %}\n                    {% block login_box_msg %}{% endblock %}\n                </h3>\n                {% block login_box_error %}\n                    {% if error|default(false) %}\n                        <div class=\"alert alert-danger\">{{ error.messageKey|trans(error.messageData, 'security') }}</div>\n                    {% endif %}\n                {% endblock %}\n            </div>\n\n            {% block login_form %}\n            <form action=\"{{ path('adminlte_login_check'|route_alias) }}\" method=\"post\">\n                {% block login_form_start %}{% endblock %}\n                <div class=\"form-group has-feedback\">\n                    <input type=\"text\" name=\"_username\" class=\"form-control\" placeholder=\"{{ 'Username'|trans({}, 'AdminLTEBundle') }}\" value=\"{{ last_username|default('') }}\">\n                    <span class=\"glyphicon glyphicon-envelope form-control-feedback\"></span>\n                </div>\n                <div class=\"form-group has-feedback\">\n                    <input name=\"_password\" type=\"password\" class=\"form-control\" placeholder=\"{{ 'Password'|trans({}, 'AdminLTEBundle') }}\">\n                    <span class=\"glyphicon glyphicon-lock form-control-feedback\"></span>\n                </div>\n                <div class=\"form-group\">\n                    <input id=\"remember_me\" name=\"_remember_me\" type=\"checkbox\">\n                    <label for=\"remember_me\">{{ 'Remember Me'|trans({}, 'AdminLTEBundle') }}</label>\n                </div>\n                <div class=\"form-group\">\n                    <button type=\"submit\" class=\"btn btn-primary btn-block\">{{ 'Sign In'|trans({}, 'AdminLTEBundle') }}</button>\n                </div>\n                {% if csrf_token %}\n                    <input type=\"hidden\" name=\"_csrf_token\" value=\"{{ csrf_token('authenticate') }}\"/>\n                {% endif %}\n                {% block login_form_end %}{% endblock %}\n            </form>\n            {% endblock %}\n            {% block login_social_auth %}\n            <div class=\"social-auth-links text-center\">\n                <p>{{ '- OR -'|trans({}, 'AdminLTEBundle') }}</p>\n                <a href=\"#\" class=\"btn btn-block btn-social btn-facebook btn-flat\"><i class=\"fab fa-facebook\"></i>\n                    {{ 'Sign in using Facebook'|trans({}, 'AdminLTEBundle') }}\n                </a>\n                <a href=\"#\" class=\"btn btn-block btn-social btn-google btn-flat\"><i class=\"fab fa-google-plus\"></i>\n                    {{ 'Sign in using Google+'|trans({}, 'AdminLTEBundle') }}\n                </a>\n            </div>\n            {% endblock %}\n            {% block login_actions %}\n                {% if 'adminlte_password_reset'|route_alias != 'adminlte_password_reset' %}\n                    <a href=\"{{ path('adminlte_password_reset'|route_alias) }}\">\n                        {{ 'I forgot my password'|trans({}, 'AdminLTEBundle') }}\n                    </a>\n                    <br>\n                {% endif %}\n                {% if 'adminlte_registration'|route_alias != 'adminlte_registration' %}\n                    <a href=\"{{ path('adminlte_registration'|route_alias) }}\" class=\"text-center\">\n                        {{ 'Register a new account'|trans({}, 'AdminLTEBundle') }}\n                    </a>\n                {% endif %}\n            {% endblock %}\n        </div>\n    </div>\n{% endblock %}\n\n{% block javascripts %}\n    <script src=\"{{ asset('bundles/adminlte/adminlte.js') }}\"></script>\n{% endblock %}\n\n</body>\n</html>\n"
  },
  {
    "path": "Tests/Controller/NavbarControllerTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Controller;\n\nuse KevinPapst\\AdminLTEBundle\\Controller\\NavbarController;\nuse KevinPapst\\AdminLTEBundle\\Event\\MessageListEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\NotificationListEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\TaskListEvent;\nuse KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper;\nuse PHPUnit\\Framework\\TestCase;\nuse Symfony\\Component\\DependencyInjection\\Container;\nuse Symfony\\Component\\EventDispatcher\\EventDispatcher;\nuse Symfony\\Contracts\\EventDispatcher\\Event;\nuse Twig\\Environment;\n\nclass NavbarControllerTest extends TestCase\n{\n    protected function getContainerMock()\n    {\n        $container = $this->getMockBuilder(Container::class)->setMethods(['get', 'has', 'hasListeners'])->getMock();\n        $container->method('has')->willReturnCallback(function ($serviceName) {\n            return $serviceName === 'twig';\n        });\n        $twig = $this->getMockBuilder(Environment::class)->setMethods(['render'])->disableOriginalConstructor()->getMock();\n        $twig->expects(self::once())->method('render')->willReturnCallback(function ($templateName, $values) {\n            return json_encode($values);\n        });\n        $container->expects(self::once())->method('get')->willReturn($twig);\n\n        return $container;\n    }\n\n    /**\n     * @param int $notifications\n     * @param int $messages\n     * @param int $tasks\n     * @return ContextHelper\n     */\n    protected function getContextHelper($notifications, $messages, $tasks)\n    {\n        return new ContextHelper([\n            'max_navbar_notifications' => $notifications,\n            'max_navbar_messages' => $messages,\n            'max_navbar_tasks' => $tasks,\n        ]);\n    }\n\n    public function getTestData()\n    {\n        yield [$this->getContextHelper(7, 23, 2), 7, NotificationListEvent::class, 'notificationsAction', null, 'notifications'];\n        yield [$this->getContextHelper(7, 23, 2), 23, MessageListEvent::class, 'messagesAction', null, 'messages'];\n        yield [$this->getContextHelper(7, 23, 2), 2, TaskListEvent::class, 'tasksAction', null, 'tasks'];\n        yield [$this->getContextHelper(1, 20, 30), 7, NotificationListEvent::class, 'notificationsAction', 7, 'notifications'];\n        yield [$this->getContextHelper(1, 20, 30), 23, MessageListEvent::class, 'messagesAction', 23, 'messages'];\n        yield [$this->getContextHelper(1, 20, 30), 2, TaskListEvent::class, 'tasksAction', 2, 'tasks'];\n    }\n\n    /**\n     * @dataProvider getTestData\n     */\n    public function testMessagesAction(Contexthelper $helper, $expectedMax, $expectedEventClass, $action, $actionParam, $responseKey)\n    {\n        $dispatcher = $this->getMockBuilder(EventDispatcher::class)->setMethods(['dispatch', 'hasListeners'])->getMock();\n        $dispatcher->expects(self::once())->method('hasListeners')->willReturnCallback(\n            function ($eventName) use ($expectedEventClass) {\n                self::assertEquals($expectedEventClass, $eventName);\n\n                return true;\n            }\n        );\n\n        $dispatcher->expects(self::once())->method('dispatch')->willReturnCallback(\n            /** @var Event $event */\n            function ($event) use ($expectedMax, $expectedEventClass) {\n                self::assertInstanceOf($expectedEventClass, $event);\n                self::assertEquals($expectedMax, $event->getMax());\n\n                return $event;\n            }\n        );\n\n        $sut = new NavbarController($dispatcher, $helper);\n        $sut->setContainer($this->getContainerMock());\n        $response = $sut->{$action}($actionParam);\n        $result = json_decode($response->getContent(), true);\n        $this->assertEquals([$responseKey => [], 'total' => 0], $result);\n    }\n}\n"
  },
  {
    "path": "Tests/DependencyInjection/ConfigurationTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\DependencyInjection;\n\nuse KevinPapst\\AdminLTEBundle\\DependencyInjection\\Configuration;\nuse PHPUnit\\Framework\\TestCase;\nuse Symfony\\Component\\Config\\Definition\\Processor;\n\nclass ConfigurationTest extends TestCase\n{\n    public function testDefaultConfiguration()\n    {\n        $configuration = new Configuration();\n        $processor = new Processor();\n        $node = $configuration->getConfigTreeBuilder()->buildTree();\n\n        $config = ['admin_lte' => []];\n        $processedConfig = $processor->process($node, $config);\n\n        $expected = $this->getDefaultConfig()['admin_lte'];\n        $expected['control_sidebar'] = [];\n\n        $this->assertEquals($expected, $processedConfig);\n    }\n\n    public function testFullConfiguration()\n    {\n        $configuration = new Configuration();\n        $processor = new Processor();\n        $node = $configuration->getConfigTreeBuilder()->buildTree();\n\n        $config = $this->getDefaultConfig();\n        $processedConfig = $processor->process($node, $config);\n\n        $this->assertEquals($config['admin_lte'], $processedConfig);\n    }\n\n    protected function getDefaultConfig()\n    {\n        return [\n            'admin_lte' => [\n                'options' => [\n                    'default_avatar' => 'bundles/adminlte/images/default_avatar.png',\n                    'skin' => 'skin-blue',\n                    'fixed_layout' => false,\n                    'boxed_layout' => false,\n                    'collapsed_sidebar' => false,\n                    'mini_sidebar' => false,\n                    'max_navbar_notifications' => 10,\n                    'max_navbar_tasks' => 10,\n                    'max_navbar_messages' => 10,\n                    'form_theme' => 'default'\n                ],\n                'control_sidebar' => [\n                    'home' => [\n                        'icon' => 'fas fa-home',\n                        'template' => 'control-sidebar/home.html.twig',\n                    ],\n                    'settings' => [\n                        'icon' => 'fas fa-cogs',\n                        'controller' => 'App\\Controller\\DefaultController::controlSidebarSettings',\n                    ],\n                ],\n                'theme' => [\n                    'widget' => [\n                        'type' => 'primary',\n                        'bordered' => true,\n                        'collapsible' => false,\n                        'collapsible_title' => 'Collapse',\n                        'removable' => false,\n                        'removable_title' => 'Remove',\n                        'solid' => false,\n                        'use_footer' => true,\n                    ],\n                    'button' => [\n                        'type' => 'primary',\n                        'size' => false,\n                    ],\n                ],\n                'knp_menu' => [\n                    'enable' => false,\n                    'main_menu' => 'adminlte_main',\n                    'breadcrumb_menu' => false,\n                ],\n                'routes' => [\n                    'adminlte_welcome' => 'home',\n                    'adminlte_login' => 'login',\n                    'adminlte_login_check' => 'login_check',\n                    'adminlte_registration' => null,\n                    'adminlte_password_reset' => null,\n                    'adminlte_message' => 'message',\n                    'adminlte_messages' => 'messages',\n                    'adminlte_notification' => 'notification',\n                    'adminlte_notifications' => 'notifications',\n                    'adminlte_task' => 'task',\n                    'adminlte_tasks' => 'tasks',\n                    'adminlte_profile' => 'profile',\n                ],\n            ]\n        ];\n    }\n}\n"
  },
  {
    "path": "Tests/Event/MessageListEventTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\MessageListEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageModel;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass MessageListEventTest extends TestCase\n{\n    /**\n     * @test\n     */\n    public function total_should_be_zero_and_max_null_when_there_are_no_messages()\n    {\n        $event = new MessageListEvent();\n        $this->assertEquals(0, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n    }\n\n    /**\n     * @test\n     */\n    public function total_should_be_equal_the_number_of_messages_if_max_is_greater_then_the_number_of_messages()\n    {\n        $event = new MessageListEvent(10);\n        $messages = $this->generateNbMessages(7);\n\n        foreach ($messages as $message) {\n            $event->addMessage($message);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(10, $event->getMax());\n        $this->assertEquals(7, count($event->getMessages()));\n    }\n\n    /**\n     * @test\n     */\n    public function total_should_be_equal_the_number_of_messages_and_count_message_should_equal_max_when_max_is_lower_then_the_number_of_messages()\n    {\n        $event = new MessageListEvent(5);\n        $messages = $this->generateNbMessages(7);\n\n        foreach ($messages as $message) {\n            $event->addMessage($message);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(5, $event->getMax());\n        $this->assertEquals(5, count($event->getMessages()));\n    }\n\n    /**\n     * @test\n     */\n    public function total_is_equal_the_number_of_messages_when_max_is_null()\n    {\n        $event = new MessageListEvent();\n        $messages = $this->generateNbMessages(7);\n\n        foreach ($messages as $message) {\n            $event->addMessage($message);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n        $this->assertEquals(7, count($event->getMessages()));\n    }\n\n    /**\n     * @test\n     */\n    public function you_can_set_total_to_be_different_from_the_number_of_messages()\n    {\n        $event = new MessageListEvent();\n        $messages = $this->generateNbMessages(7);\n\n        foreach ($messages as $message) {\n            $event->addMessage($message);\n        }\n        $event->setTotal(15);\n\n        $this->assertEquals(15, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n        $this->assertEquals(7, count($event->getMessages()));\n    }\n\n    /**\n     * @test\n     */\n    public function you_can_set_total_to_be_different_from_the_number_of_messages_and_set_max_to_another_value()\n    {\n        $event = new MessageListEvent(3);\n        $messages = $this->generateNbMessages(7);\n\n        foreach ($messages as $message) {\n            $event->addMessage($message);\n        }\n        $event->setTotal(15);\n\n        $this->assertEquals(15, $event->getTotal());\n        $this->assertEquals(3, $event->getMax());\n        $this->assertEquals(3, count($event->getMessages()));\n    }\n\n    /**\n     * Generate an array of nb messages\n     * @param int $number\n     * @return array|MessageModel[]\n     */\n    private function generateNbMessages($number)\n    {\n        $messages = [];\n        for ($i = 0; $i < $number; $i++) {\n            $messages[] = new MessageModel(\n                $this->generateUser('User' . $i),\n                'Subject ' . $i\n            );\n        }\n\n        return $messages;\n    }\n\n    /**\n     * Generate a ModelUser with the given username\n     * @param string $username\n     * @return UserModel\n     */\n    private function generateUser($username)\n    {\n        $user = new UserModel();\n        $user->setUsername($username);\n\n        return $user;\n    }\n}\n"
  },
  {
    "path": "Tests/Event/NotificationListEventTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\NotificationListEvent;\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass NotificationListEventTest extends TestCase\n{\n    /**\n     * @test\n     */\n    public function total_should_be_zero_and_max_null_when_there_are_no_notification()\n    {\n        $event = new NotificationListEvent();\n        $this->assertEquals(0, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n    }\n\n    /**\n     * @test\n     */\n    public function total_should_be_equal_the_number_of_notifications_if_max_is_greater_then_the_number_of_notifications()\n    {\n        $event = new NotificationListEvent(10);\n        $notifications = $this->generateNbNotifications(7);\n\n        foreach ($notifications as $notification) {\n            $event->addNotification($notification);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(10, $event->getMax());\n        $this->assertEquals(7, count($event->getNotifications()));\n    }\n\n    /**\n     * @test\n     */\n    public function total_should_equal_the_number_of_notifications_and_count_notifications_should_equal_max_when_max_is_lower_then_the_number_of_notifications()\n    {\n        $event = new NotificationListEvent(5);\n        $notifications = $this->generateNbNotifications(7);\n\n        foreach ($notifications as $notification) {\n            $event->addNotification($notification);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(5, $event->getMax());\n        $this->assertEquals(5, count($event->getNotifications()));\n    }\n\n    /**\n     * @test\n     */\n    public function total_equal_the_number_of_notifications_when_max_is_null()\n    {\n        $event = new NotificationListEvent();\n        $notifications = $this->generateNbNotifications(7);\n\n        foreach ($notifications as $notification) {\n            $event->addNotification($notification);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n        $this->assertEquals(7, count($event->getNotifications()));\n    }\n\n    /**\n     * @test\n     */\n    public function you_can_set_total_to_be_different_from_the_number_of_notifications()\n    {\n        $event = new NotificationListEvent();\n        $notifications = $this->generateNbNotifications(7);\n\n        foreach ($notifications as $notification) {\n            $event->addNotification($notification);\n        }\n        $event->setTotal(15);\n\n        $this->assertEquals(15, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n        $this->assertEquals(7, count($event->getNotifications()));\n    }\n\n    /**\n     * @test\n     */\n    public function you_can_set_total_to_be_different_from_the_number_of_notifications_and_set_max_to_another_value()\n    {\n        $event = new NotificationListEvent(3);\n        $notifications = $this->generateNbNotifications(7);\n\n        foreach ($notifications as $notification) {\n            $event->addNotification($notification);\n        }\n        $event->setTotal(15);\n\n        $this->assertEquals(15, $event->getTotal());\n        $this->assertEquals(3, $event->getMax());\n        $this->assertEquals(3, count($event->getNotifications()));\n    }\n\n    /**\n     * Generate an array of nb tasks\n     * @param int $number\n     * @param string $type\n     * @return array|NotificationModel[]\n     */\n    private function generateNbNotifications($number, $type = Constants::TYPE_INFO)\n    {\n        $tasks = [];\n        for ($i = 0; $i < $number; $i++) {\n            $tasks[] = new NotificationModel(\n                'Message ' . $i,\n                $type\n            );\n        }\n\n        return $tasks;\n    }\n}\n"
  },
  {
    "path": "Tests/Event/TaskListEventTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Event;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\TaskListEvent;\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass TaskListEventTest extends TestCase\n{\n    /**\n     * @test\n     */\n    public function total_should_be_zero_and_max_null_when_there_are_no_tasks()\n    {\n        $event = new TaskListEvent();\n        $this->assertEquals(0, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n    }\n\n    /**\n     * @test\n     */\n    public function total_should_be_equal_the_number_of_tasks_if_max_is_greater_then_the_number_of_tasks()\n    {\n        $event = new TaskListEvent(10);\n        $tasks = $this->generateNbTasks(7);\n\n        foreach ($tasks as $task) {\n            $event->addTask($task);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(10, $event->getMax());\n        $this->assertEquals(7, count($event->getTasks()));\n    }\n\n    /**\n     * @test\n     */\n    public function total_should_equal_the_number_of_tasks_and_count_tasks_should_equal_max_when_max_is_lower_then_the_number_of_tasks()\n    {\n        $event = new TaskListEvent(5);\n        $tasks = $this->generateNbTasks(7);\n\n        foreach ($tasks as $task) {\n            $event->addTask($task);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(5, $event->getMax());\n        $this->assertEquals(5, count($event->getTasks()));\n    }\n\n    /**\n     * @test\n     */\n    public function total_equal_the_number_of_tasks_when_max_is_null()\n    {\n        $event = new TaskListEvent();\n        $tasks = $this->generateNbTasks(7);\n\n        foreach ($tasks as $task) {\n            $event->addTask($task);\n        }\n\n        $this->assertEquals(7, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n        $this->assertEquals(7, count($event->getTasks()));\n    }\n\n    /**\n     * @test\n     */\n    public function you_can_set_total_to_be_different_from_the_number_of_tasks()\n    {\n        $event = new TaskListEvent();\n        $tasks = $this->generateNbTasks(7);\n\n        foreach ($tasks as $task) {\n            $event->addTask($task);\n        }\n        $event->setTotal(15);\n\n        $this->assertEquals(15, $event->getTotal());\n        $this->assertEquals(null, $event->getMax());\n        $this->assertEquals(7, count($event->getTasks()));\n    }\n\n    /**\n     * @test\n     */\n    public function you_can_set_total_to_be_different_from_the_number_of_tasks_and_set_max_to_another_value()\n    {\n        $event = new TaskListEvent(3);\n        $tasks = $this->generateNbTasks(7);\n\n        foreach ($tasks as $task) {\n            $event->addTask($task);\n        }\n        $event->setTotal(15);\n\n        $this->assertEquals(15, $event->getTotal());\n        $this->assertEquals(3, $event->getMax());\n        $this->assertEquals(3, count($event->getTasks()));\n    }\n\n    /**\n     * Generate an array of nb tasks\n     * @param int $number\n     * @return array|TaskModel[]\n     */\n    private function generateNbTasks($number)\n    {\n        $tasks = [];\n        for ($i = 0; $i < $number; $i++) {\n            $tasks[] = new TaskModel(\n                'Title ' . $i,\n                $i\n            );\n        }\n\n        return $tasks;\n    }\n}\n"
  },
  {
    "path": "Tests/Helper/ContextHelperTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Helper;\n\nuse KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper;\nuse PHPUnit\\Framework\\TestCase;\n\nclass ContextHelperTest extends TestCase\n{\n    public function testOptions()\n    {\n        $context = new ContextHelper([\n            'foo' => 'bar',\n        ]);\n\n        $this->assertFalse($context->hasOption('test'));\n        $this->assertNull($context->getOption('test'));\n\n        $this->assertTrue($context->hasOption('foo'));\n        $this->assertEquals('bar', $context->getOption('foo'));\n        $this->assertEquals(['foo' => 'bar'], $context->getOptions());\n\n        $context->setOption('test', 'bla');\n        $this->assertTrue($context->hasOption('test'));\n        $this->assertEquals('bla', $context->getOption('test'));\n    }\n}\n"
  },
  {
    "path": "Tests/Model/MessageModelTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\MessageModel;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass MessageModelTest extends TestCase\n{\n    public function testGetIdentifier()\n    {\n        $sut = new MessageModel(new UserModel(), 'foo');\n        $this->assertEquals('foo', $sut->getIdentifier());\n        $sut->setId('42');\n        $this->assertEquals('42', $sut->getIdentifier());\n    }\n}\n"
  },
  {
    "path": "Tests/Model/NotificationModelTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\NotificationModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass NotificationModelTest extends TestCase\n{\n    public function testGetIdentifier()\n    {\n        $sut = new NotificationModel('foo');\n        $this->assertEquals('foo', $sut->getIdentifier());\n        $sut->setId('42');\n        $this->assertEquals('42', $sut->getIdentifier());\n    }\n}\n"
  },
  {
    "path": "Tests/Model/TaskModelTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\TaskModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass TaskModelTest extends TestCase\n{\n    public function testGetIdentifier()\n    {\n        $sut = new TaskModel('foo');\n        $this->assertEquals('foo', $sut->getIdentifier());\n        $sut->setId('42');\n        $this->assertEquals('42', $sut->getIdentifier());\n    }\n}\n"
  },
  {
    "path": "Tests/Model/UserModelTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Model;\n\nuse KevinPapst\\AdminLTEBundle\\Model\\UserModel;\nuse PHPUnit\\Framework\\TestCase;\n\nclass UserModelTest extends TestCase\n{\n    public function testGetIdentifier()\n    {\n        $sut = new UserModel('foo bar');\n        $this->assertEquals('foo-bar', $sut->getIdentifier());\n        $sut->setId('42');\n        $this->assertEquals('42', $sut->getIdentifier());\n    }\n}\n"
  },
  {
    "path": "Tests/Twig/AdminExtensionTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Twig;\n\nuse KevinPapst\\AdminLTEBundle\\Twig\\AdminExtension;\nuse PHPUnit\\Framework\\TestCase;\n\nclass AdminExtensionTest extends TestCase\n{\n    public function testGetFilters()\n    {\n        $sut = new AdminExtension();\n        $this->assertEquals(3, count($sut->getFilters()));\n        $result = array_map(function ($filter) {\n            return $filter->getName();\n        }, $sut->getFilters());\n        $this->assertEquals(['body_class', 'route_alias', 'text_type'], $result);\n    }\n\n    public function testGetFunctions()\n    {\n        $sut = new AdminExtension();\n        $this->assertEquals(7, count($sut->getFunctions()));\n        $result = array_map(function ($function) {\n            return $function->getName();\n        }, $sut->getFunctions());\n        $this->assertEquals(['adminlte_menu', 'adminlte_sidebar_user', 'adminlte_breadcrumbs', 'adminlte_notifications', 'adminlte_messages', 'adminlte_tasks', 'adminlte_user'], $result);\n    }\n}\n"
  },
  {
    "path": "Tests/Twig/RuntimeExtensionTest.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Tests\\Twig;\n\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\nuse KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper;\nuse KevinPapst\\AdminLTEBundle\\Twig\\RuntimeExtension;\nuse PHPUnit\\Framework\\TestCase;\n\nclass RuntimeExtensionTest extends TestCase\n{\n    /**\n     * @param array $options\n     * @return RuntimeExtension\n     */\n    protected function getSut(array $options = [])\n    {\n        $contextHelper = new ContextHelper();\n        foreach ($options as $key => $value) {\n            $contextHelper->setOption($key, $value);\n        }\n\n        $routes = [\n            'foo' => 'bar',\n            'hello' => null,\n        ];\n\n        return new RuntimeExtension($contextHelper, $routes);\n    }\n\n    public function testGetRouteByAlias()\n    {\n        $sut = $this->getSut();\n        $this->assertEquals('bar', $sut->getRouteByAlias('foo'));\n        $this->assertEquals('hello', $sut->getRouteByAlias('hello'));\n        $this->assertEquals('test1', $sut->getRouteByAlias('test1'));\n    }\n\n    public function testBodyClass()\n    {\n        $sut = $this->getSut([]);\n        $this->assertEquals('test', $sut->bodyClass('test'));\n\n        $sut = $this->getSut(['skin' => 'green']);\n        $this->assertEquals('test green', $sut->bodyClass('test'));\n\n        $sut = $this->getSut([\n            'skin' => 'green',\n            'fixed_layout' => true,\n            'boxed_layout' => true,\n            'collapsed_sidebar' => true,\n            'mini_sidebar' => true,\n        ]);\n        $this->assertEquals('test green fixed layout-boxed sidebar-collapse sidebar-mini', $sut->bodyClass('test'));\n    }\n\n    public function testGetTextType()\n    {\n        $sut = $this->getSut();\n\n        $this->assertEquals('text-', $sut->getTextType(''));\n        $this->assertEquals('text-foo-bar', $sut->getTextType('foo-bar'));\n        $this->assertEquals('text-blub', $sut->getTextType('blub'));\n        $this->assertEquals('text-aqua', $sut->getTextType(Constants::TYPE_INFO));\n        $this->assertEquals('text-green', $sut->getTextType(Constants::TYPE_SUCCESS));\n        $this->assertEquals('text-yellow', $sut->getTextType(Constants::TYPE_WARNING));\n        $this->assertEquals('text-red', $sut->getTextType(Constants::TYPE_ERROR));\n    }\n}\n"
  },
  {
    "path": "Tests/phpstan.neon",
    "content": "includes:\n    - ../vendor/phpstan/phpstan-phpunit/extension.neon\n"
  },
  {
    "path": "Twig/AdminExtension.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Twig;\n\nuse Twig\\Extension\\AbstractExtension;\nuse Twig\\TwigFilter;\nuse Twig\\TwigFunction;\n\nclass AdminExtension extends AbstractExtension\n{\n    /**\n     * @return TwigFilter[]\n     */\n    public function getFilters()\n    {\n        return [\n            new TwigFilter('body_class', [RuntimeExtension::class, 'bodyClass']),\n            new TwigFilter('route_alias', [RuntimeExtension::class, 'getRouteByAlias']),\n            new TwigFilter('text_type', [RuntimeExtension::class, 'getTextType']),\n        ];\n    }\n\n    public function getFunctions()\n    {\n        return [\n            new TwigFunction('adminlte_menu', [EventsExtension::class, 'getMenu']),\n            new TwigFunction('adminlte_sidebar_user', [EventsExtension::class, 'getSidebarUser']),\n            new TwigFunction('adminlte_breadcrumbs', [EventsExtension::class, 'getBreadcrumbs']),\n            new TwigFunction('adminlte_notifications', [EventsExtension::class, 'getNotifications']),\n            new TwigFunction('adminlte_messages', [EventsExtension::class, 'getMessages']),\n            new TwigFunction('adminlte_tasks', [EventsExtension::class, 'getTasks']),\n            new TwigFunction('adminlte_user', [EventsExtension::class, 'getUserDetails']),\n        ];\n    }\n}\n"
  },
  {
    "path": "Twig/EventsExtension.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Twig;\n\nuse KevinPapst\\AdminLTEBundle\\Event\\BreadcrumbMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\MessageListEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\NavbarUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\NotificationListEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\ShowUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarMenuEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\SidebarUserEvent;\nuse KevinPapst\\AdminLTEBundle\\Event\\TaskListEvent;\nuse KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper;\nuse KevinPapst\\AdminLTEBundle\\Model\\MenuItemInterface;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserDetailsInterface;\nuse KevinPapst\\AdminLTEBundle\\Model\\UserInterface;\nuse KevinPapst\\AdminLTEBundle\\Repository\\MessageRepositoryInterface;\nuse KevinPapst\\AdminLTEBundle\\Repository\\NotificationRepositoryInterface;\nuse KevinPapst\\AdminLTEBundle\\Repository\\TaskRepositoryInterface;\nuse Symfony\\Component\\EventDispatcher\\EventDispatcherInterface;\nuse Symfony\\Component\\HttpFoundation\\Request;\nuse Twig\\Extension\\RuntimeExtensionInterface;\n\nfinal class EventsExtension implements RuntimeExtensionInterface\n{\n    /**\n     * @var EventDispatcherInterface\n     */\n    private $eventDispatcher;\n    /**\n     * @var ContextHelper\n     */\n    private $helper;\n\n    public function __construct(EventDispatcherInterface $dispatcher, ContextHelper $helper)\n    {\n        $this->eventDispatcher = $dispatcher;\n        $this->helper = $helper;\n    }\n\n    /**\n     * @param Request $request\n     * @return MenuItemInterface[]\n     */\n    public function getMenu(Request $request): ?array\n    {\n        if (!$this->eventDispatcher->hasListeners(SidebarMenuEvent::class)) {\n            return null;\n        }\n\n        /** @var SidebarMenuEvent $event */\n        $event = $this->eventDispatcher->dispatch(new SidebarMenuEvent($request));\n\n        return $event->getItems();\n    }\n\n    public function getSidebarUser(): ?UserInterface\n    {\n        if (!$this->eventDispatcher->hasListeners(SidebarUserEvent::class)) {\n            return null;\n        }\n\n        /** @var SidebarUserEvent $event */\n        $event = $this->eventDispatcher->dispatch(new SidebarUserEvent());\n\n        return $event->getUser();\n    }\n\n    public function getBreadcrumbs(Request $request): ?array\n    {\n        if (!$this->eventDispatcher->hasListeners(BreadcrumbMenuEvent::class)) {\n            return null;\n        }\n\n        /** @var BreadcrumbMenuEvent $event */\n        $event = $this->eventDispatcher->dispatch(new BreadcrumbMenuEvent($request));\n\n        /** @var MenuItemInterface $active */\n        $active = $event->getActive();\n        $list = [];\n        if (null !== $active) {\n            $list[] = $active;\n            while (null !== ($item = $active->getActiveChild())) {\n                $list[] = $item;\n                $active = $item;\n            }\n        }\n\n        return $list;\n    }\n\n    public function getNotifications(?int $max = null): ?NotificationRepositoryInterface\n    {\n        if (!$this->eventDispatcher->hasListeners(NotificationListEvent::class)) {\n            return null;\n        }\n\n        if (null === $max) {\n            $max = (int) $this->helper->getOption('max_navbar_notifications');\n        }\n\n        /** @var NotificationListEvent $listEvent */\n        $listEvent = $this->eventDispatcher->dispatch(new NotificationListEvent($max));\n\n        return $listEvent;\n    }\n\n    public function getMessages(?int $max = null): ?MessageRepositoryInterface\n    {\n        if (!$this->eventDispatcher->hasListeners(MessageListEvent::class)) {\n            return null;\n        }\n\n        if (null === $max) {\n            $max = (int) $this->helper->getOption('max_navbar_messages');\n        }\n\n        /** @var MessageListEvent $listEvent */\n        $listEvent = $this->eventDispatcher->dispatch(new MessageListEvent($max));\n\n        return $listEvent;\n    }\n\n    public function getTasks(?int $max = null): ?TaskRepositoryInterface\n    {\n        if (!$this->eventDispatcher->hasListeners(TaskListEvent::class)) {\n            return null;\n        }\n\n        if (null === $max) {\n            $max = (int) $this->helper->getOption('max_navbar_tasks');\n        }\n\n        /** @var TaskListEvent $listEvent */\n        $listEvent = $this->eventDispatcher->dispatch(new TaskListEvent($max));\n\n        return $listEvent;\n    }\n\n    public function getUserDetails(): ?UserDetailsInterface\n    {\n        if (!$this->eventDispatcher->hasListeners(NavbarUserEvent::class)) {\n            return null;\n        }\n\n        /** @var ShowUserEvent $userEvent */\n        $userEvent = $this->eventDispatcher->dispatch(new NavbarUserEvent());\n\n        if ($userEvent instanceof ShowUserEvent && null !== $userEvent->getUser()) {\n            return $userEvent;\n        }\n\n        return null;\n    }\n}\n"
  },
  {
    "path": "Twig/RuntimeExtension.php",
    "content": "<?php\n\n/*\n * This file is part of the AdminLTE bundle.\n *\n * For the full copyright and license information, please view the LICENSE\n * file that was distributed with this source code.\n */\n\nnamespace KevinPapst\\AdminLTEBundle\\Twig;\n\nuse KevinPapst\\AdminLTEBundle\\Helper\\Constants;\nuse KevinPapst\\AdminLTEBundle\\Helper\\ContextHelper;\nuse Twig\\Extension\\RuntimeExtensionInterface;\n\nfinal class RuntimeExtension implements RuntimeExtensionInterface\n{\n    /**\n     * @var ContextHelper<string, mixed>\n     */\n    private $context;\n    /**\n     * @var array<string, string|null>\n     */\n    private $routes;\n\n    /**\n     * @param ContextHelper<string, mixed> $contextHelper\n     * @param array<string, string|null> $routes\n     */\n    public function __construct(ContextHelper $contextHelper, array $routes)\n    {\n        $this->context = $contextHelper;\n        $this->routes = $routes;\n    }\n\n    /**\n     * @param string $routeName\n     * @return string\n     */\n    public function getRouteByAlias($routeName)\n    {\n        return $this->routes[$routeName] ?? $routeName;\n    }\n\n    /**\n     * @param string $type\n     * @return string\n     */\n    public function getTextType($type)\n    {\n        switch ($type) {\n            case Constants::TYPE_INFO:\n                $type = Constants::COLOR_AQUA;\n                break;\n            case Constants::TYPE_WARNING:\n                $type = Constants::COLOR_YELLOW;\n                break;\n            case Constants::TYPE_SUCCESS:\n                $type = Constants::COLOR_GREEN;\n                break;\n            case Constants::TYPE_ERROR:\n                $type = Constants::COLOR_RED;\n                break;\n        }\n\n        return 'text-' . $type;\n    }\n\n    /**\n     * @param string $classes\n     * @return string\n     */\n    public function bodyClass($classes = '')\n    {\n        $classList = [$classes];\n        $options = $this->context->getOptions();\n\n        if (isset($options['skin'])) {\n            $classList[] = $options['skin'];\n        }\n        if (isset($options['fixed_layout']) && true == $options['fixed_layout']) {\n            $classList[] = 'fixed';\n        }\n        if (isset($options['boxed_layout']) && true == $options['boxed_layout']) {\n            $classList[] = 'layout-boxed';\n        }\n        if (isset($options['collapsed_sidebar']) && true == $options['collapsed_sidebar']) {\n            $classList[] = 'sidebar-collapse';\n        }\n        if (isset($options['mini_sidebar']) && true == $options['mini_sidebar']) {\n            $classList[] = 'sidebar-mini';\n        }\n\n        return implode(' ', array_values($classList));\n    }\n}\n"
  },
  {
    "path": "UPGRADING.md",
    "content": "# Upgrading\n\n## From v3 to v4 (unreleased)\n\nRead the changelogs at https://github.com/kevinpapst/AdminLTEBundle/releases\n\nRemoved all Controller: already replaced with Twig functions for performance reasons in v3. \nTemplates will be now included directly.\nCheck that overwritten templates/partials in your project still work (see `templates/bundles/AdminLTEBundle/`). \n\nMade public API stricter by adding typehints and adding the final keyword to several classes. \n\nInlined some FOSUserBundle translations, to reduce coupling (check your self-registration and password-reset screens).\n\n## From v2 to v3\n\n- Raised minimum requirement to Symfony 4.3\n- Deprecated all Event identifier strings from `ThemeEvents::XYZ`, use respective Event classes directly \n- Removed deprecated config `admin_lte.options.control_sidebar`, use `admin_lte.control_sidebar` instead\n- Removed deprecated file `AdminLTE/layout/login-layout.html.twig`, use `AdminLTE/layout/security-layout.html.twig` instead"
  },
  {
    "path": "composer.json",
    "content": "{\n    \"name\": \"kevinpapst/adminlte-bundle\",\n    \"type\": \"symfony-bundle\",\n    \"description\": \"Admin theme bundle for Symfony 4+ based on AdminLTE 2.4 with FOSUserBundle support\",\n    \"license\": \"MIT\",\n    \"authors\": [\n        {\n            \"name\": \"Kevin Papst\",\n            \"homepage\": \"https://www.kevinpapst.de\"\n        },\n        {\n            \"name\": \"Marc Bach\",\n            \"homepage\": \"http://www.avanzu.de\"\n        },\n        {\n            \"name\": \"Ángel Guzmán Maeso\",\n            \"homepage\": \"https://shakaran.net/blog\"\n        }\n    ],\n    \"require\": {\n        \"php\": \">=7.1.3\",\n        \"symfony/asset\": \">4.3\",\n        \"symfony/config\": \">4.3\",\n        \"symfony/dependency-injection\": \">4.3\",\n        \"symfony/event-dispatcher\": \">4.3\",\n        \"symfony/http-foundation\": \">4.3\",\n        \"symfony/http-kernel\": \">4.3\",\n        \"symfony/options-resolver\": \">4.3\",\n        \"symfony/security-core\": \">4.3\",\n        \"symfony/translation\": \">4.3\",\n        \"symfony/twig-bridge\": \">4.3\",\n        \"twig/twig\": \">2.0\"\n    },\n    \"require-dev\": {\n        \"phpspec/prophecy\": \"^1.6\",\n        \"symfony/framework-bundle\" : \">4.3\",\n        \"friendsofphp/php-cs-fixer\": \"^2.10\",\n        \"phpunit/phpunit\": \"^7.3\",\n        \"phpstan/phpstan\": \"^0.12\",\n        \"knplabs/knp-menu-bundle\": \"^2.2\",\n        \"phpstan/phpstan-phpunit\": \"^0.12\"\n    },\n    \"suggest\" : {\n        \"knplabs/knp-menu-bundle\" : \"Allows easy menu integration\"\n    },\n    \"autoload\": {\n        \"psr-4\": { \"KevinPapst\\\\AdminLTEBundle\\\\\": \"\" }\n    },\n    \"scripts\": {\n        \"tests\": \"vendor/bin/phpunit Tests/\",\n        \"phpstan\": [\n            \"vendor/bin/phpstan analyse . --level=5\",\n            \"vendor/bin/phpstan analyse -c Tests/phpstan.neon Tests --level=5\"\n        ],\n        \"codestyle\": \"vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress=none\",\n        \"codestyle-fix\": \"vendor/bin/php-cs-fixer fix\"\n    }\n}\n"
  },
  {
    "path": "config/packages/admin_lte.yaml",
    "content": "#\n# Configuration file for the AdminLTE bundle\n#\n# For more information about the bundle settings visit:\n# https://github.com/kevinpapst/AdminLTEBundle/blob/master/Resources/docs/configurations.md\n#\nadmin_lte:\n    options:\n        # default image for missing user avatar images\n        default_avatar: bundles/adminlte/images/default_avatar.png\n        # the color skin\n        skin: skin-blue\n        # if activated, the boxed_layout will be deactivated\n        fixed_layout: false\n        # boxed layout (true) or full-screen (false)\n        boxed_layout: false\n        # initial collapsed state of the sidebar\n        collapsed_sidebar: false\n        # whether the logo collapses or not\n        mini_sidebar: false\n        # max number of notifications displayed\n        max_navbar_notifications: 10\n        # max number of tasks displayed\n        max_navbar_tasks: 10\n        # max number of messages displayed\n        max_navbar_messages: 10\n\n    # configurable tabs in the control_sidebar (right screen), see:\n    # https://github.com/kevinpapst/AdminLTEBundle/blob/master/Resources/docs/control_sidebar.md\n    # control_sidebar:\n    #    home:\n    #        icon: fas fa-home\n    #        template: control-sidebar/home.html.twig\n    #    settings:\n    #        icon: fas fa-cogs\n    #        controller: 'App\\Controller\\DefaultController::controlSidebarSettings'\n\n\n    theme:\n        widget:\n            type: 'primary'\n            bordered: true\n            collapsible: false\n            collapsible_title: 'Collapse'\n            removable: false\n            removable_title: 'Remove'\n            solid: false\n            use_footer: true\n        button:\n            type: 'primary'\n            size: false\n\n    knp_menu:\n        enable: false\n        main_menu: adminlte_main\n        breadcrumb_menu: false\n\n    routes:\n        adminlte_welcome: home\n        adminlte_login: login\n        adminlte_login_check: login_check\n        #adminlte_registration: registration\n        #adminlte_password_reset: password_reset\n        adminlte_message: message\n        adminlte_messages: messages\n        adminlte_notification: notification\n        adminlte_notifications: notifications\n        adminlte_task: task\n        adminlte_tasks: tasks\n        adminlte_profile: profile\n"
  },
  {
    "path": "package.json",
    "content": "{\n    \"devDependencies\": {\n        \"@fortawesome/fontawesome-free\": \"~5.15.2\",\n        \"@symfony/webpack-encore\": \"^1.0.5\",\n        \"admin-lte\": \"^2.4\",\n        \"bootstrap-sass\": \"^3.4\",\n        \"bootstrap-select\": \"^1.13.18\",\n        \"daterangepicker\": \"^3.1.0\",\n        \"icheck\": \"^1.0\",\n        \"jquery\": \"^3.4\",\n        \"jquery-slimscroll\": \"^1.3\",\n        \"jquery-ui\": \"^1.12\",\n        \"js-cookie\": \"^2.2\",\n        \"node-sass\": \"^4.13\",\n        \"sass-loader\": \"^10.0\",\n        \"webpack-notifier\": \"^1.13.0\"\n    },\n    \"license\": \"MIT\",\n    \"private\": true,\n    \"scripts\": {\n        \"dev-server\": \"encore dev-server\",\n        \"dev\": \"encore dev\",\n        \"watch\": \"encore dev --watch\",\n        \"build\": \"encore production\"\n    },\n    \"dependencies\": {}\n}\n"
  },
  {
    "path": "phpstan.neon",
    "content": "includes:\n    - vendor/phpstan/phpstan-phpunit/extension.neon\n\nparameters:\n    excludes_analyse:\n        - %rootDir%/../../\n    ignoreErrors:\n        - '#Call to an undefined method Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\NodeParentInterface::scalarNode\\(\\).#'\n"
  },
  {
    "path": "phpunit.xml.dist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<phpunit xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:noNamespaceSchemaLocation=\"http://schema.phpunit.de/6.1/phpunit.xsd\"\n         backupGlobals=\"false\"\n         colors=\"true\"\n         bootstrap=\"vendor/autoload.php\"\n         failOnRisky=\"true\"\n         failOnWarning=\"true\"\n>\n    <php>\n        <ini name=\"error_reporting\" value=\"-1\" />\n    </php>\n\n    <testsuites>\n        <testsuite name=\"AdminLTEBundle Test Suite\">\n            <directory>Tests/</directory>\n        </testsuite>\n    </testsuites>\n\n    <filter>\n        <whitelist>\n            <directory>./</directory>\n            <exclude>\n                <directory>./Tests</directory>\n                <directory>./vendor</directory>\n            </exclude>\n        </whitelist>\n    </filter>\n</phpunit>"
  },
  {
    "path": "webpack.config.js",
    "content": "var Encore = require('@symfony/webpack-encore');\n\nEncore\n// the project directory where compiled assets will be stored\n    .setOutputPath('Resources/public/')\n\n    // the public path used by the web server to access the previous directory\n    .setPublicPath('/bundles/adminlte/')\n\n    // make sure the manifest prefix matches the structure in the real application\n    .setManifestKeyPrefix('bundles/adminlte/')\n\n    // delete old files before creating them\n    .cleanupOutputBeforeBuild()\n\n    // add debug data in development\n    .enableSourceMaps(!Encore.isProduction())\n\n    // uncomment to create hashed filenames (e.g. app.abc123.css)\n    .enableVersioning(Encore.isProduction())\n\n    // generate only two files: app.js and app.css\n    .addEntry('adminlte', './Resources/assets/admin-lte.js')\n\n    // show OS notifications when builds finish/fail\n    .enableBuildNotifications()\n\n    // don't use a runtime.js\n    .disableSingleRuntimeChunk()\n\n    // empty the outputPath dir before each build\n    .cleanupOutputBeforeBuild()\n\n    // because we need $/jQuery as a global variable\n    .autoProvidejQuery()\n\n    // enable sass/scss parser\n    // see https://symfony.com/doc/current/frontend/encore/bootstrap.html\n    .enableSassLoader(function(sassOptions) {}, {\n        resolveUrlLoader: false\n    })\n\n    // add hash after file name\n    .configureImageRule({\n        filename: 'images/[name][ext]?[hash:8]',\n    })\n    .configureFontRule({\n        filename: 'fonts/[name][ext]?[hash:8]'\n    })\n    .configureFilenames({\n        js: '[name].js?[chunkhash]',\n        css: '[name].css?[contenthash]',\n    })\n;\n\nmodule.exports = Encore.getWebpackConfig();\n"
  }
]