diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index a36bf04..86cca06 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.7, 3.8, 3.9] + python-version: [3.9] steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/doc.yaml b/.github/workflows/doc.yaml deleted file mode 100644 index 929bf83..0000000 --- a/.github/workflows/doc.yaml +++ /dev/null @@ -1,68 +0,0 @@ -name: "doc" - -on: - push: - branches: - - "main" - pull_request: - branches: - - "main" - -jobs: - doc: - name: Build docs on ${{ matrix.os }}, Python ${{ matrix.python-version }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] - python-version: [3.7] - - steps: - - uses: actions/checkout@v1 - - - name: Additional info about the build - shell: bash - run: | - uname -a - df -h - ulimit -a - - # More info on options: https://github.com/conda-incubator/setup-miniconda - - uses: conda-incubator/setup-miniconda@v2 - with: - python-version: ${{ matrix.python-version }} - environment-file: devtools/conda-envs/test_env.yaml - - activate-environment: test - auto-update-conda: false - auto-activate-base: false - show-channel-urls: true - - - name: Install package - # conda setup requires this special shell - shell: bash -l {0} - run: | - python -m pip install . --no-deps - conda list - - - name: Build docs - shell: bash -l {0} - run: | - cd docs/src && bash build.sh - - - name: Commit documentation changes - shell: bash -l {0} - run: | - cp -r docs/src/_build/html/* docs/ - git config --local user.email "action@github.com" - git config --local user.name "github-actions[bot]" - git add . - git commit -m "Update documentation" -a || true - # The above command will fail if no changes were present, so we ignore - # the return code. - - - name: Push changes - uses: ad-m/github-push-action@master - with: - branch: ${{ github.ref }} - github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/devtools/conda-envs/test_env.yaml b/devtools/conda-envs/test_env.yaml index 63535be..f8ce4b3 100644 --- a/devtools/conda-envs/test_env.yaml +++ b/devtools/conda-envs/test_env.yaml @@ -19,7 +19,6 @@ dependencies: - sphinx - asteroid-sphinx-theme - codecov + - cmselemental + - mmelemental - git+https://github.com/MolSSI/mmic - - git+https://github.com/MolSSI/mmelemental - - git+https://github.com/Andrew-AbiMansour/qcengine@execute - - git+https://github.com/MolSSI/cmselemental@dev diff --git a/docs/_modules/index.html b/docs/_modules/index.html deleted file mode 100644 index cca33d9..0000000 --- a/docs/_modules/index.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - - - - - Overview: module code — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/_modules/mmic_cmd/components/cmd_component.html b/docs/_modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 7c75cb6..0000000 --- a/docs/_modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_track=inputs.outfiles_track, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/_modules/mmic_cmd/models/input.html b/docs/_modules/mmic_cmd/models/input.html deleted file mode 100644 index 7515918..0000000 --- a/docs/_modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """Input model for command-line execution.""" - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_track: Optional[List[str]] = Field( - [], - description="Specifies which output files (by name) are tracked and not loaded in memory. The posix paths " - "(instead of file contents) are returned instead in `outfiles`.", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/_modules/mmic_cmd/models/output.html b/docs/_modules/mmic_cmd/models/output.html deleted file mode 100644 index 7d27413..0000000 --- a/docs/_modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """Output model for commend-line execution.""" - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/_sources/components.rst.txt b/docs/_sources/components.rst.txt deleted file mode 100644 index 8df25d7..0000000 --- a/docs/_sources/components.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Components -###### -.. automodule:: mmic_cmd.components - :members: diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt deleted file mode 100644 index e87765c..0000000 --- a/docs/_sources/index.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -.. mmic_cmd documentation master file, created by - sphinx-quickstart on Thu Mar 15 13:55:56 2018. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mmic_cmd's documentation! -========================================================= - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - components - models - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/_sources/models.rst.txt b/docs/_sources/models.rst.txt deleted file mode 100644 index 1b5db97..0000000 --- a/docs/_sources/models.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Models -###### -.. automodule:: mmic_cmd.models - :members: diff --git a/docs/_static/README.md b/docs/_static/README.md deleted file mode 100644 index 2f0cf84..0000000 --- a/docs/_static/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Static Doc Directory - -Add any paths that contain custom static files (such as style sheets) here, -relative to the `conf.py` file's directory. -They are copied after the builtin static files, -so a file named "default.css" will overwrite the builtin "default.css". - -The path to this folder is set in the Sphinx `conf.py` file in the line: -```python -templates_path = ['_static'] -``` - -## Examples of file to add to this directory -* Custom Cascading Style Sheets -* Custom JavaScript code -* Static logo images diff --git a/docs/_static/basic.css b/docs/_static/basic.css deleted file mode 100644 index b3bdc00..0000000 --- a/docs/_static/basic.css +++ /dev/null @@ -1,861 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -div.section::after { - display: block; - content: ''; - clear: left; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, figure.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, figure.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, figure.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, figure.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar, -aside.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px; - background-color: #ffe; - width: 40%; - float: right; - clear: right; - overflow-x: auto; -} - -p.sidebar-title { - font-weight: bold; -} - -div.admonition, div.topic, blockquote { - clear: left; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- content of sidebars/topics/admonitions -------------------------------- */ - -div.sidebar > :last-child, -aside.sidebar > :last-child, -div.topic > :last-child, -div.admonition > :last-child { - margin-bottom: 0; -} - -div.sidebar::after, -aside.sidebar::after, -div.topic::after, -div.admonition::after, -blockquote::after { - display: block; - content: ''; - clear: both; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - margin-top: 10px; - margin-bottom: 10px; - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > :first-child, -td > :first-child { - margin-top: 0px; -} - -th > :last-child, -td > :last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure, figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption, figcaption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number, -figcaption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text, -figcaption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist { - margin: 1em 0; -} - -table.hlist td { - vertical-align: top; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -:not(li) > ol > li:first-child > :first-child, -:not(li) > ul > li:first-child > :first-child { - margin-top: 0px; -} - -:not(li) > ol > li:last-child > :last-child, -:not(li) > ul > li:last-child > :last-child { - margin-bottom: 0px; -} - -ol.simple ol p, -ol.simple ul p, -ul.simple ol p, -ul.simple ul p { - margin-top: 0; -} - -ol.simple > li:not(:first-child) > p, -ul.simple > li:not(:first-child) > p { - margin-top: 0; -} - -ol.simple p, -ul.simple p { - margin-bottom: 0; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: grid; - grid-template-columns: fit-content(30%) auto; -} - -dl.field-list > dt { - font-weight: bold; - word-break: break-word; - padding-left: 0.5em; - padding-right: 5px; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - padding-left: 0.5em; - margin-top: 0em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > :first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dl > dd:last-child, -dl > dd:last-child > :last-child { - margin-bottom: 0; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -pre, div[class*="highlight-"] { - clear: both; -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -div[class*="highlight-"] { - margin: 1em 0; -} - -td.linenos pre { - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - display: block; -} - -table.highlighttable tbody { - display: block; -} - -table.highlighttable tr { - display: flex; -} - -table.highlighttable td { - margin: 0; - padding: 0; -} - -table.highlighttable td.linenos { - padding-right: 0.5em; -} - -table.highlighttable td.code { - flex: 1; - overflow: hidden; -} - -.highlight .hll { - display: block; -} - -div.highlight pre, -table.highlighttable pre { - margin: 0; -} - -div.code-block-caption + div { - margin-top: 0; -} - -div.code-block-caption { - margin-top: 1em; - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -table.highlighttable td.linenos, -span.linenos, -div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ - user-select: none; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - margin: 1em 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: absolute; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/_static/css/theme.css b/docs/_static/css/theme.css deleted file mode 100644 index 798e6ea..0000000 --- a/docs/_static/css/theme.css +++ /dev/null @@ -1,11990 +0,0 @@ -/*! - * Bootstrap v4.0.0 (https://getbootstrap.com) - * Copyright 2011-2018 The Bootstrap Authors - * Copyright 2011-2018 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -ms-overflow-style: scrollbar; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -@-ms-viewport { - width: device-width; -} -article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus { - outline: 0 !important; -} - -hr { - -webkit-box-sizing: content-box; - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: .5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -dfn { - font-style: italic; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; - -webkit-text-decoration-skip: objects; -} -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([tabindex]) { - color: inherit; - text-decoration: none; -} -a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { - color: inherit; - text-decoration: none; -} -a:not([href]):not([tabindex]):focus { - outline: 0; -} - -pre, -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: .5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding: 0; -} - -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-family: inherit; - font-weight: 500; - line-height: 1.2; - color: inherit; -} - -h1, .h1 { - font-size: 2.5rem; -} - -h2, .h2 { - font-size: 2rem; -} - -h3, .h3 { - font-size: 1.75rem; -} - -h4, .h4 { - font-size: 1.5rem; -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer::before { - content: "\2014 \00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-break: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -.row { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .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-sm, -.col-sm-auto, .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-md, -.col-md-auto, .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-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; -} - -.col-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; -} - -.col-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; -} - -.col-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; -} - -.col-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; -} - -.col-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; -} - -.col-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; -} - -.col-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; -} - -.col-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; -} - -.col-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; -} - -.col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; -} - -.order-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; -} - -.order-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; -} - -.order-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; -} - -.order-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; -} - -.order-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; -} - -.order-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; -} - -.order-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; -} - -.order-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; -} - -.order-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; -} - -.order-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; -} - -.order-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; -} - -.order-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; -} - -.order-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; -} - -.order-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; -} - -.offset-1 { - margin-left: 8.3333333333%; -} - -.offset-2 { - margin-left: 16.6666666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.3333333333%; -} - -.offset-5 { - margin-left: 41.6666666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.3333333333%; -} - -.offset-8 { - margin-left: 66.6666666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.3333333333%; -} - -.offset-11 { - margin-left: 91.6666666667%; -} - -@media (min-width: 576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-sm-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-sm-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-sm-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-sm-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-sm-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-sm-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-sm-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-sm-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-sm-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-sm-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-sm-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-sm-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-sm-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-sm-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-sm-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-sm-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-sm-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-sm-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-sm-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-sm-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-sm-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-sm-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-sm-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-sm-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-sm-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-sm-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-sm-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-sm-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-sm-0 { - margin-left: 0; - } - - .offset-sm-1 { - margin-left: 8.3333333333%; - } - - .offset-sm-2 { - margin-left: 16.6666666667%; - } - - .offset-sm-3 { - margin-left: 25%; - } - - .offset-sm-4 { - margin-left: 33.3333333333%; - } - - .offset-sm-5 { - margin-left: 41.6666666667%; - } - - .offset-sm-6 { - margin-left: 50%; - } - - .offset-sm-7 { - margin-left: 58.3333333333%; - } - - .offset-sm-8 { - margin-left: 66.6666666667%; - } - - .offset-sm-9 { - margin-left: 75%; - } - - .offset-sm-10 { - margin-left: 83.3333333333%; - } - - .offset-sm-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-md-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-md-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-md-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-md-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-md-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-md-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-md-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-md-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-md-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-md-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-md-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-md-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-md-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-md-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-md-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-md-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-md-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-md-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-md-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-md-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-md-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-md-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-md-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-md-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-md-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-md-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-md-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-md-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-md-0 { - margin-left: 0; - } - - .offset-md-1 { - margin-left: 8.3333333333%; - } - - .offset-md-2 { - margin-left: 16.6666666667%; - } - - .offset-md-3 { - margin-left: 25%; - } - - .offset-md-4 { - margin-left: 33.3333333333%; - } - - .offset-md-5 { - margin-left: 41.6666666667%; - } - - .offset-md-6 { - margin-left: 50%; - } - - .offset-md-7 { - margin-left: 58.3333333333%; - } - - .offset-md-8 { - margin-left: 66.6666666667%; - } - - .offset-md-9 { - margin-left: 75%; - } - - .offset-md-10 { - margin-left: 83.3333333333%; - } - - .offset-md-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-lg-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-lg-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-lg-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-lg-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-lg-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-lg-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-lg-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-lg-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-lg-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-lg-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-lg-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-lg-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-lg-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-lg-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-lg-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-lg-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-lg-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-lg-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-lg-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-lg-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-lg-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-lg-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-lg-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-lg-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-lg-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-lg-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-lg-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-lg-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-lg-0 { - margin-left: 0; - } - - .offset-lg-1 { - margin-left: 8.3333333333%; - } - - .offset-lg-2 { - margin-left: 16.6666666667%; - } - - .offset-lg-3 { - margin-left: 25%; - } - - .offset-lg-4 { - margin-left: 33.3333333333%; - } - - .offset-lg-5 { - margin-left: 41.6666666667%; - } - - .offset-lg-6 { - margin-left: 50%; - } - - .offset-lg-7 { - margin-left: 58.3333333333%; - } - - .offset-lg-8 { - margin-left: 66.6666666667%; - } - - .offset-lg-9 { - margin-left: 75%; - } - - .offset-lg-10 { - margin-left: 83.3333333333%; - } - - .offset-lg-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-xl-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-xl-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-xl-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-xl-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-xl-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-xl-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-xl-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-xl-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-xl-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-xl-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-xl-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-xl-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-xl-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-xl-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-xl-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-xl-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-xl-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-xl-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-xl-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-xl-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-xl-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-xl-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-xl-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-xl-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-xl-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-xl-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-xl-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-xl-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-xl-0 { - margin-left: 0; - } - - .offset-xl-1 { - margin-left: 8.3333333333%; - } - - .offset-xl-2 { - margin-left: 16.6666666667%; - } - - .offset-xl-3 { - margin-left: 25%; - } - - .offset-xl-4 { - margin-left: 33.3333333333%; - } - - .offset-xl-5 { - margin-left: 41.6666666667%; - } - - .offset-xl-6 { - margin-left: 50%; - } - - .offset-xl-7 { - margin-left: 58.3333333333%; - } - - .offset-xl-8 { - margin-left: 66.6666666667%; - } - - .offset-xl-9 { - margin-left: 75%; - } - - .offset-xl-10 { - margin-left: 83.3333333333%; - } - - .offset-xl-11 { - margin-left: 91.6666666667%; - } -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 1rem; - background-color: transparent; -} -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; -} -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; -} -.table tbody + tbody { - border-top: 2px solid #dee2e6; -} -.table .table { - background-color: #fff; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dee2e6; -} -.table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6; -} -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; -} - -.table-hover .table-primary:hover { - background-color: #9fcdff; -} -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #9fcdff; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; -} -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #c8cbcf; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; -} - -.table-hover .table-success:hover { - background-color: #b1dfbb; -} -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #b1dfbb; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; -} - -.table-hover .table-info:hover { - background-color: #abdde5; -} -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #abdde5; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1; -} -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffe8a1; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7; -} -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f1b0b7; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; -} - -.table-hover .table-light:hover { - background-color: #ececf6; -} -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #ececf6; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe; -} -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #b9bbbe; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #212529; - border-color: #32383e; -} -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.table-dark { - color: #fff; - background-color: #212529; -} -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #32383e; -} -.table-dark.table-bordered { - border: 0; -} -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} -.table-dark.table-hover tbody tr:hover { - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; -} -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -select.form-control:not([size]):not([multiple]) { - height: calc(2.25rem + 2px); -} -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding-top: 0.375rem; - padding-bottom: 0.375rem; - margin-bottom: 0; - line-height: 1.5; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, -.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, -.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, -.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, -.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, -.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, -.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, -.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, -.input-group-lg > .input-group-append > .form-control-plaintext.btn { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), -.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), -.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), -.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), -.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { - height: calc(1.8125rem + 2px); -} - -.form-control-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), -.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), -.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), -.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), -.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { - height: calc(2.875rem + 2px); -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1; - color: #fff; - background-color: rgba(40, 167, 69, 0.8); - border-radius: .2rem; -} - -.was-validated .form-control:valid, .form-control.is-valid, -.was-validated .custom-select:valid, -.custom-select.is-valid { - border-color: #28a745; -} -.was-validated .form-control:valid:focus, .form-control.is-valid:focus, -.was-validated .custom-select:valid:focus, -.custom-select.is-valid:focus { - border-color: #28a745; - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} -.was-validated .form-control:valid ~ .valid-feedback, -.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip, -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, -.custom-select.is-valid ~ .valid-feedback, -.custom-select.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; -} -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; -} -.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - background-color: #71dd8a; -} -.was-validated .custom-control-input:valid ~ .valid-feedback, -.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, -.custom-control-input.is-valid ~ .valid-tooltip { - display: block; -} -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - background-color: #34ce57; -} -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; -} -.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { - border-color: inherit; -} -.was-validated .custom-file-input:valid ~ .valid-feedback, -.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, -.custom-file-input.is-valid ~ .valid-tooltip { - display: block; -} -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1; - color: #fff; - background-color: rgba(220, 53, 69, 0.8); - border-radius: .2rem; -} - -.was-validated .form-control:invalid, .form-control.is-invalid, -.was-validated .custom-select:invalid, -.custom-select.is-invalid { - border-color: #dc3545; -} -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, -.was-validated .custom-select:invalid:focus, -.custom-select.is-invalid:focus { - border-color: #dc3545; - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} -.was-validated .form-control:invalid ~ .invalid-feedback, -.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip, -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, -.custom-select.is-invalid ~ .invalid-feedback, -.custom-select.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; -} -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - background-color: #efa2a9; -} -.was-validated .custom-control-input:invalid ~ .invalid-feedback, -.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, -.custom-control-input.is-invalid ~ .invalid-tooltip { - display: block; -} -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - background-color: #e4606d; -} -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; -} -.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { - border-color: inherit; -} -.was-validated .custom-file-input:invalid ~ .invalid-feedback, -.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, -.custom-file-input.is-invalid ~ .invalid-tooltip { - display: block; -} -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.form-inline { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group { - width: auto; - } - .form-inline .form-check { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.btn { - display: inline-block; - font-weight: 400; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -} -.btn:hover, .btn:focus { - text-decoration: none; -} -.btn:focus, .btn.focus { - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.btn.disabled, .btn:disabled { - opacity: 0.65; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active { - background-image: none; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; -} -.btn-primary:focus, .btn-primary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; -} -.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; -} -.btn-secondary:focus, .btn-secondary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; -} -.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; -} -.btn-success:focus, .btn-success.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; -} -.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; -} -.btn-info:focus, .btn-info.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; -} -.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; -} -.btn-warning:focus, .btn-warning.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; -} -.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; -} -.btn-danger:focus, .btn-danger.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; -} -.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; -} -.btn-light:focus, .btn-light.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; -} -.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; -} -.btn-dark:focus, .btn-dark.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; -} -.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-outline-primary { - color: #007bff; - background-color: transparent; - background-image: none; - border-color: #007bff; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:focus, .btn-outline-primary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-secondary { - color: #6c757d; - background-color: transparent; - background-image: none; - border-color: #6c757d; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:focus, .btn-outline-secondary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-success { - color: #28a745; - background-color: transparent; - background-image: none; - border-color: #28a745; -} -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-outline-success:focus, .btn-outline-success.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-info { - color: #17a2b8; - background-color: transparent; - background-image: none; - border-color: #17a2b8; -} -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:focus, .btn-outline-info.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-warning { - color: #ffc107; - background-color: transparent; - background-image: none; - border-color: #ffc107; -} -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:focus, .btn-outline-warning.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-danger { - color: #dc3545; - background-color: transparent; - background-image: none; - border-color: #dc3545; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:focus, .btn-outline-danger.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-light { - color: #f8f9fa; - background-color: transparent; - background-image: none; - border-color: #f8f9fa; -} -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:focus, .btn-outline-light.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-dark { - color: #343a40; - background-color: transparent; - background-image: none; - border-color: #343a40; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:focus, .btn-outline-dark.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-link { - font-weight: 400; - color: #007bff; - background-color: transparent; -} -.btn-link:hover { - color: #0056b3; - text-decoration: underline; - background-color: transparent; - border-color: transparent; -} -.btn-link:focus, .btn-link.focus { - text-decoration: underline; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.show { - opacity: 1; -} - -.collapse { - display: none; -} -.collapse.show { - display: block; -} - -tr.collapse.show { - display: table-row; -} - -tbody.collapse.show { - display: table-row-group; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition: height 0.35s ease; - transition: height 0.35s ease; -} - -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.dropup .dropdown-menu { - margin-top: 0; - margin-bottom: 0.125rem; -} -.dropup .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - margin-top: 0; - margin-left: 0.125rem; -} -.dropright .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - margin-top: 0; - margin-right: 0.125rem; -} -.dropleft .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} -.dropleft .dropdown-toggle::after { - display: none; -} -.dropleft .dropdown-toggle::before { - display: inline-block; - width: 0; - height: 0; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; -} -.dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} -.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group, -.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-left: -1px; -} - -.btn-toolbar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after { - margin-left: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} -.btn-group-vertical .btn, -.btn-group-vertical .btn-group { - width: 100%; -} -.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(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - width: 100%; -} -.input-group > .form-control, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - margin-bottom: 0; -} -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file:focus { - z-index: 3; -} -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .custom-file { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.input-group-text input[type="radio"], -.input-group-text input[type="checkbox"] { - margin-top: 0; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; -} - -.custom-control-inline { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - z-index: -1; - opacity: 0; -} -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - background-color: #007bff; -} -.custom-control-input:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-control-input:active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; -} -.custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} -.custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - margin-bottom: 0; -} -.custom-control-label::before { - position: absolute; - top: 0.25rem; - left: 0; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #dee2e6; -} -.custom-control-label::after { - position: absolute; - top: 0.25rem; - left: 0; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background-repeat: no-repeat; - background-position: center center; - background-size: 50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); -} -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); -} -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; - background-size: 8px 10px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} -.custom-select:focus { - border-color: #80bdff; - outline: 0; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); -} -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} -.custom-select::-ms-expand { - opacity: 0; -} - -.custom-select-sm { - height: calc(1.8125rem + 2px); - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 75%; -} - -.custom-select-lg { - height: calc(2.875rem + 2px); - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 125%; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(2.25rem + 2px); - margin: 0; - opacity: 0; -} -.custom-file-input:focus ~ .custom-file-control { - border-color: #80bdff; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-file-input:focus ~ .custom-file-control::before { - border-color: #80bdff; -} -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(2.25rem + 2px); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(calc(2.25rem + 2px) - 1px * 2); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: 1px solid #ced4da; - border-radius: 0 0.25rem 0.25rem 0; -} - -.nav { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:hover, .nav-link:focus { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 0.25rem; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; -} - -.nav-fill .nav-item { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 0.5rem 1rem; -} -.navbar > .container, -.navbar > .container-fluid { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; -} -.navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; -} -.navbar-toggler:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 576px) { - .navbar-expand-sm { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } - .navbar-expand-sm .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 768px) { - .navbar-expand-md { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } - .navbar-expand-md .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 992px) { - .navbar-expand-lg { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } - .navbar-expand-lg .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 1200px) { - .navbar-expand-xl { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } - .navbar-expand-xl .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -.navbar-expand { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} -.navbar-expand .dropup .dropdown-menu { - top: auto; - bottom: 100%; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-text a { - color: #fff; -} -.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group:first-child .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.card > .list-group:last-child .list-group-item:last-child { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.card-body { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} - -.card-img { - width: 100%; - border-radius: calc(0.25rem - 1px); -} - -.card-img-top { - width: 100%; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img-bottom { - width: 100%; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-deck { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.card-deck .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-deck { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.card-group > .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-group { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - } - .card-group > .card { - -webkit-box-flex: 1; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:first-child .card-img-top, - .card-group > .card:first-child .card-header { - border-top-right-radius: 0; - } - .card-group > .card:first-child .card-img-bottom, - .card-group > .card:first-child .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:last-child .card-img-top, - .card-group > .card:last-child .card-header { - border-top-left-radius: 0; - } - .card-group > .card:last-child .card-img-bottom, - .card-group > .card:last-child .card-footer { - border-bottom-left-radius: 0; - } - .card-group > .card:only-child { - border-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-top, - .card-group > .card:only-child .card-header { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-bottom, - .card-group > .card:only-child .card-footer { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { - border-radius: 0; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { - border-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} -@media (min-width: 576px) { - .card-columns { - -webkit-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - column-gap: 1.25rem; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.breadcrumb { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - padding-left: 0.5rem; - color: #6c757d; - content: "/"; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; -} -.page-link:hover { - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; -} -.page-link:focus { - z-index: 2; - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.page-link:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} -.page-item.active .page-link { - z-index: 1; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; -} -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; -} -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; -} -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #007bff; -} -.badge-primary[href]:hover, .badge-primary[href]:focus { - color: #fff; - text-decoration: none; - background-color: #0062cc; -} - -.badge-secondary { - color: #fff; - background-color: #6c757d; -} -.badge-secondary[href]:hover, .badge-secondary[href]:focus { - color: #fff; - text-decoration: none; - background-color: #545b62; -} - -.badge-success { - color: #fff; - background-color: #28a745; -} -.badge-success[href]:hover, .badge-success[href]:focus { - color: #fff; - text-decoration: none; - background-color: #1e7e34; -} - -.badge-info { - color: #fff; - background-color: #17a2b8; -} -.badge-info[href]:hover, .badge-info[href]:focus { - color: #fff; - text-decoration: none; - background-color: #117a8b; -} - -.badge-warning { - color: #212529; - background-color: #ffc107; -} -.badge-warning[href]:hover, .badge-warning[href]:focus { - color: #212529; - text-decoration: none; - background-color: #d39e00; -} - -.badge-danger { - color: #fff; - background-color: #dc3545; -} -.badge-danger[href]:hover, .badge-danger[href]:focus { - color: #fff; - text-decoration: none; - background-color: #bd2130; -} - -.badge-light { - color: #212529; - background-color: #f8f9fa; -} -.badge-light[href]:hover, .badge-light[href]:focus { - color: #212529; - text-decoration: none; - background-color: #dae0e5; -} - -.badge-dark { - color: #fff; - background-color: #343a40; -} -.badge-dark[href]:hover, .badge-dark[href]:focus { - color: #fff; - text-decoration: none; - background-color: #1d2124; -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; -} -@media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 4rem; -} -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; -} -.alert-primary hr { - border-top-color: #9fcdff; -} -.alert-primary .alert-link { - color: #002752; -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; -} -.alert-secondary hr { - border-top-color: #c8cbcf; -} -.alert-secondary .alert-link { - color: #202326; -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; -} -.alert-success hr { - border-top-color: #b1dfbb; -} -.alert-success .alert-link { - color: #0b2e13; -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; -} -.alert-info hr { - border-top-color: #abdde5; -} -.alert-info .alert-link { - color: #062c33; -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; -} -.alert-warning hr { - border-top-color: #ffe8a1; -} -.alert-warning .alert-link { - color: #533f03; -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; -} -.alert-danger hr { - border-top-color: #f1b0b7; -} -.alert-danger .alert-link { - color: #491217; -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; -} -.alert-light hr { - border-top-color: #ececf6; -} -.alert-light .alert-link { - color: #686868; -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; -} -.alert-dark hr { - border-top-color: #b9bbbe; -} -.alert-dark .alert-link { - color: #040505; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} -.progress { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - color: #fff; - text-align: center; - background-color: #007bff; - -webkit-transition: width 0.6s ease; - transition: width 0.6s ease; -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite; -} - -.media { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; -} - -.media-body { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.list-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:hover, .list-group-item-action:focus { - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.list-group-item:hover, .list-group-item:focus { - z-index: 1; - text-decoration: none; -} -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.list-group-flush .list-group-item { - border-right: 0; - border-left: 0; - border-radius: 0; -} -.list-group-flush:first-child .list-group-item:first-child { - border-top: 0; -} -.list-group-flush:last-child .list-group-item:last-child { - border-bottom: 0; -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; -} -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; -} -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; -} -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; -} -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; -} -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; -} -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; -} -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; -} -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - opacity: .75; -} -.close:not(:disabled):not(.disabled) { - cursor: pointer; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; - -webkit-appearance: none; -} - -.modal-open { - overflow: hidden; -} - -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - outline: 0; -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - -webkit-transition: -webkit-transform 0.3s ease-out; - transition: -webkit-transform 0.3s ease-out; - transition: transform 0.3s ease-out; - transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.show .modal-dialog { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); -} - -.modal-dialog-centered { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - (0.5rem * 2)); -} - -.modal-content { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem; - border-bottom: 1px solid #e9ecef; - border-top-left-radius: 0.3rem; - border-top-right-radius: 0.3rem; -} -.modal-header .close { - padding: 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 1rem; - border-top: 1px solid #e9ecef; -} -.modal-footer > :not(:first-child) { - margin-left: .25rem; -} -.modal-footer > :not(:last-child) { - margin-right: .25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - - .modal-dialog-centered { - min-height: calc(100% - (1.75rem * 2)); - } - - .modal-sm { - max-width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - max-width: 800px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; -} -.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; -} -.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; -} -.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; -} -.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; -} -.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; -} -.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; -} -.popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, .bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; -} -.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { - bottom: calc((0.5rem + 1px) * -1); -} -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, -.bs-popover-top .arrow::after, -.bs-popover-auto[x-placement^="top"] .arrow::after { - border-width: 0.5rem 0.5rem 0; -} -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { - bottom: 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { - bottom: 1px; - border-top-color: #fff; -} - -.bs-popover-right, .bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; -} -.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { - left: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, -.bs-popover-right .arrow::after, -.bs-popover-auto[x-placement^="right"] .arrow::after { - border-width: 0.5rem 0.5rem 0.5rem 0; -} -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { - left: 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { - left: 1px; - border-right-color: #fff; -} - -.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; -} -.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { - top: calc((0.5rem + 1px) * -1); -} -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, -.bs-popover-bottom .arrow::after, -.bs-popover-auto[x-placement^="bottom"] .arrow::after { - border-width: 0 0.5rem 0.5rem 0.5rem; -} -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { - top: 0; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { - top: 1px; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, .bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; -} -.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { - right: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, -.bs-popover-left .arrow::after, -.bs-popover-auto[x-placement^="left"] .arrow::after { - border-width: 0.5rem 0 0.5rem 0.5rem; -} -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { - right: 0; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { - right: 1px; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - color: inherit; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} - -.carousel-item { - position: relative; - display: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 100%; - -webkit-transition: -webkit-transform 0.6s ease; - transition: -webkit-transform 0.6s ease; - transition: transform 0.6s ease; - transition: transform 0.6s ease, -webkit-transform 0.6s ease; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next, -.carousel-item-prev { - position: absolute; - top: 0; -} - -.carousel-item-next.carousel-item-left, -.carousel-item-prev.carousel-item-right { - -webkit-transform: translateX(0); - transform: translateX(0); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-next.carousel-item-left, - .carousel-item-prev.carousel-item-right { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.carousel-item-next, -.active.carousel-item-right { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-next, - .active.carousel-item-right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -.carousel-item-prev, -.active.carousel-item-left { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-prev, - .active.carousel-item-left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; -} -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: transparent no-repeat center center; - background-size: 100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 10px; - left: 0; - z-index: 15; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} -.carousel-indicators li { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - background-color: rgba(255, 255, 255, 0.5); -} -.carousel-indicators li::before { - position: absolute; - top: -10px; - left: 0; - display: inline-block; - width: 100%; - height: 10px; - content: ""; -} -.carousel-indicators li::after { - position: absolute; - bottom: -10px; - left: 0; - display: inline-block; - width: 100%; - height: 10px; - content: ""; -} -.carousel-indicators .active { - 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; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - background-color: #007bff !important; -} - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; -} - -.bg-secondary { - background-color: #6c757d !important; -} - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; -} - -.bg-success { - background-color: #28a745 !important; -} - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; -} - -.bg-info { - background-color: #17a2b8 !important; -} - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; -} - -.bg-warning { - background-color: #ffc107 !important; -} - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; -} - -.bg-danger { - background-color: #dc3545 !important; -} - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; -} - -.bg-light { - background-color: #f8f9fa !important; -} - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; -} - -.bg-dark { - background-color: #343a40 !important; -} - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-right { - border-right: 1px solid #dee2e6 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-left { - border-left: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #007bff !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #28a745 !important; -} - -.border-info { - border-color: #17a2b8 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #343a40 !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; -} - -.d-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - - .d-sm-inline { - display: inline !important; - } - - .d-sm-inline-block { - display: inline-block !important; - } - - .d-sm-block { - display: block !important; - } - - .d-sm-table { - display: table !important; - } - - .d-sm-table-row { - display: table-row !important; - } - - .d-sm-table-cell { - display: table-cell !important; - } - - .d-sm-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-sm-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - - .d-md-inline { - display: inline !important; - } - - .d-md-inline-block { - display: inline-block !important; - } - - .d-md-block { - display: block !important; - } - - .d-md-table { - display: table !important; - } - - .d-md-table-row { - display: table-row !important; - } - - .d-md-table-cell { - display: table-cell !important; - } - - .d-md-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-md-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - - .d-lg-inline { - display: inline !important; - } - - .d-lg-inline-block { - display: inline-block !important; - } - - .d-lg-block { - display: block !important; - } - - .d-lg-table { - display: table !important; - } - - .d-lg-table-row { - display: table-row !important; - } - - .d-lg-table-cell { - display: table-cell !important; - } - - .d-lg-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-lg-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - - .d-xl-inline { - display: inline !important; - } - - .d-xl-inline-block { - display: inline-block !important; - } - - .d-xl-block { - display: block !important; - } - - .d-xl-table { - display: table !important; - } - - .d-xl-table-row { - display: table-row !important; - } - - .d-xl-table-cell { - display: table-cell !important; - } - - .d-xl-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-xl-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media print { - .d-print-none { - display: none !important; - } - - .d-print-inline { - display: inline !important; - } - - .d-print-inline-block { - display: inline-block !important; - } - - .d-print-block { - display: block !important; - } - - .d-print-table { - display: table !important; - } - - .d-print-table-row { - display: table-row !important; - } - - .d-print-table-cell { - display: table-cell !important; - } - - .d-print-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-print-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive::before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.8571428571%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.flex-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.flex-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.justify-content-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.justify-content-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.justify-content-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.justify-content-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.align-items-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.align-items-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.align-items-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; -} - -.align-items-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.align-items-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-sm-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-sm-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-sm-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-sm-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-sm-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-sm-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-sm-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-sm-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-sm-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-sm-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-sm-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-sm-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 768px) { - .flex-md-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-md-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-md-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-md-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-md-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-md-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-md-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-md-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-md-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-md-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-md-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-md-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-md-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 992px) { - .flex-lg-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-lg-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-lg-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-lg-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-lg-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-lg-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-lg-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-lg-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-lg-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-lg-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-lg-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-lg-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-lg-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 1200px) { - .flex-xl-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-xl-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-xl-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-xl-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-xl-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-xl-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-xl-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-xl-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-xl-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-xl-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-xl-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-xl-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-xl-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - - .float-sm-right { - float: right !important; - } - - .float-sm-none { - float: none !important; - } -} -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - - .float-md-right { - float: right !important; - } - - .float-md-none { - float: none !important; - } -} -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - - .float-lg-right { - float: right !important; - } - - .float-lg-none { - float: none !important; - } -} -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - - .float-xl-right { - float: right !important; - } - - .float-xl-none { - float: none !important; - } -} -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports ((position: -webkit-sticky) or (position: sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; - -webkit-clip-path: none; - clip-path: none; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - - .m-sm-1 { - margin: 0.25rem !important; - } - - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - - .m-sm-2 { - margin: 0.5rem !important; - } - - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - - .m-sm-3 { - margin: 1rem !important; - } - - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - - .m-sm-4 { - margin: 1.5rem !important; - } - - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - - .m-sm-5 { - margin: 3rem !important; - } - - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - - .p-sm-0 { - padding: 0 !important; - } - - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - - .p-sm-1 { - padding: 0.25rem !important; - } - - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - - .p-sm-2 { - padding: 0.5rem !important; - } - - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - - .p-sm-3 { - padding: 1rem !important; - } - - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - - .p-sm-4 { - padding: 1.5rem !important; - } - - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - - .p-sm-5 { - padding: 3rem !important; - } - - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - - .m-sm-auto { - margin: auto !important; - } - - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - - .m-md-1 { - margin: 0.25rem !important; - } - - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - - .m-md-2 { - margin: 0.5rem !important; - } - - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - - .m-md-3 { - margin: 1rem !important; - } - - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - - .m-md-4 { - margin: 1.5rem !important; - } - - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - - .m-md-5 { - margin: 3rem !important; - } - - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - - .p-md-0 { - padding: 0 !important; - } - - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - - .p-md-1 { - padding: 0.25rem !important; - } - - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - - .p-md-2 { - padding: 0.5rem !important; - } - - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - - .p-md-3 { - padding: 1rem !important; - } - - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - - .p-md-4 { - padding: 1.5rem !important; - } - - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - - .p-md-5 { - padding: 3rem !important; - } - - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - - .m-md-auto { - margin: auto !important; - } - - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - - .m-lg-1 { - margin: 0.25rem !important; - } - - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - - .m-lg-2 { - margin: 0.5rem !important; - } - - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - - .m-lg-3 { - margin: 1rem !important; - } - - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - - .m-lg-4 { - margin: 1.5rem !important; - } - - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - - .m-lg-5 { - margin: 3rem !important; - } - - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - - .p-lg-0 { - padding: 0 !important; - } - - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - - .p-lg-1 { - padding: 0.25rem !important; - } - - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - - .p-lg-2 { - padding: 0.5rem !important; - } - - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - - .p-lg-3 { - padding: 1rem !important; - } - - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - - .p-lg-4 { - padding: 1.5rem !important; - } - - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - - .p-lg-5 { - padding: 3rem !important; - } - - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - - .m-lg-auto { - margin: auto !important; - } - - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - - .m-xl-1 { - margin: 0.25rem !important; - } - - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - - .m-xl-2 { - margin: 0.5rem !important; - } - - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - - .m-xl-3 { - margin: 1rem !important; - } - - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - - .m-xl-4 { - margin: 1.5rem !important; - } - - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - - .m-xl-5 { - margin: 3rem !important; - } - - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - - .p-xl-0 { - padding: 0 !important; - } - - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - - .p-xl-1 { - padding: 0.25rem !important; - } - - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - - .p-xl-2 { - padding: 0.5rem !important; - } - - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - - .p-xl-3 { - padding: 1rem !important; - } - - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - - .p-xl-4 { - padding: 1.5rem !important; - } - - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - - .p-xl-5 { - padding: 3rem !important; - } - - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - - .m-xl-auto { - margin: auto !important; - } - - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} -.text-justify { - text-align: justify !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - - .text-sm-right { - text-align: right !important; - } - - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - - .text-md-right { - text-align: right !important; - } - - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - - .text-lg-right { - text-align: right !important; - } - - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - - .text-xl-right { - text-align: right !important; - } - - .text-xl-center { - text-align: center !important; - } -} -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #007bff !important; -} - -a.text-primary:hover, a.text-primary:focus { - color: #0062cc !important; -} - -.text-secondary { - color: #6c757d !important; -} - -a.text-secondary:hover, a.text-secondary:focus { - color: #545b62 !important; -} - -.text-success { - color: #28a745 !important; -} - -a.text-success:hover, a.text-success:focus { - color: #1e7e34 !important; -} - -.text-info { - color: #17a2b8 !important; -} - -a.text-info:hover, a.text-info:focus { - color: #117a8b !important; -} - -.text-warning { - color: #ffc107 !important; -} - -a.text-warning:hover, a.text-warning:focus { - color: #d39e00 !important; -} - -.text-danger { - color: #dc3545 !important; -} - -a.text-danger:hover, a.text-danger:focus { - color: #bd2130 !important; -} - -.text-light { - color: #f8f9fa !important; -} - -a.text-light:hover, a.text-light:focus { - color: #dae0e5 !important; -} - -.text-dark { - color: #343a40 !important; -} - -a.text-dark:hover, a.text-dark:focus { - color: #1d2124 !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - a:not(.btn) { - text-decoration: underline; - } - - abbr[title]::after { - content: " (" attr(title) ")"; - } - - pre { - white-space: pre-wrap !important; - } - - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, - img { - page-break-inside: avoid; - } - - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - @page { - size: a3; - } - body { - min-width: 992px !important; - } - - .container { - min-width: 992px !important; - } - - .navbar { - display: none; - } - - .badge { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -/*Github syntax highlighting theme via Rouge*/ -.highlight table td { - padding: 5px; -} - -.highlight table pre { - margin: 0; -} - -.highlight .cm { - color: #999988; - font-style: italic; -} - -.highlight .cp { - color: #999999; - font-weight: bold; -} - -.highlight .c1 { - color: #999988; - font-style: italic; -} - -.highlight .cs { - color: #999999; - font-weight: bold; - font-style: italic; -} - -.highlight .c, .highlight .cd { - color: #999988; - font-style: italic; -} - -.highlight .err { - color: #a61717; - background-color: #e3d2d2; -} - -.highlight .gd { - color: #000000; - background-color: #ffdddd; -} - -.highlight .ge { - color: #000000; - font-style: italic; -} - -.highlight .gr { - color: #aa0000; -} - -.highlight .gh { - color: #999999; -} - -.highlight .gi { - color: #000000; - background-color: #ddffdd; -} - -.highlight .go { - color: #888888; -} - -.highlight .gp { - color: #555555; -} - -.highlight .gs { - font-weight: bold; -} - -.highlight .gu { - color: #aaaaaa; -} - -.highlight .gt { - color: #aa0000; -} - -.highlight .kc { - color: #000000; - font-weight: bold; -} - -.highlight .kd { - color: #000000; - font-weight: bold; -} - -.highlight .kn { - color: #000000; - font-weight: bold; -} - -.highlight .kp { - color: #000000; - font-weight: bold; -} - -.highlight .kr { - color: #000000; - font-weight: bold; -} - -.highlight .kt { - color: #445588; - font-weight: bold; -} - -.highlight .k, .highlight .kv { - color: #000000; - font-weight: bold; -} - -.highlight .mf { - color: #009999; -} - -.highlight .mh { - color: #009999; -} - -.highlight .il { - color: #009999; -} - -.highlight .mi { - color: #009999; -} - -.highlight .mo { - color: #009999; -} - -.highlight .m, .highlight .mb, .highlight .mx { - color: #009999; -} - -.highlight .sb { - color: #d14; -} - -.highlight .sc { - color: #d14; -} - -.highlight .sd { - color: #d14; -} - -.highlight .s2 { - color: #d14; -} - -.highlight .se { - color: #d14; -} - -.highlight .sh { - color: #d14; -} - -.highlight .si { - color: #d14; -} - -.highlight .sx { - color: #d14; -} - -.highlight .sr { - color: #009926; -} - -.highlight .s1 { - color: #d14; -} - -.highlight .ss { - color: #990073; -} - -.highlight .s { - color: #d14; -} - -.highlight .na { - color: #008080; -} - -.highlight .bp { - color: #999999; -} - -.highlight .nb { - color: #0086B3; -} - -.highlight .nc { - color: #445588; - font-weight: bold; -} - -.highlight .no { - color: #008080; -} - -.highlight .nd { - color: #3c5d5d; - font-weight: bold; -} - -.highlight .ni { - color: #800080; -} - -.highlight .ne { - color: #990000; - font-weight: bold; -} - -.highlight .nf { - color: #990000; - font-weight: bold; -} - -.highlight .nl { - color: #990000; - font-weight: bold; -} - -.highlight .nn { - color: #555555; -} - -.highlight .nt { - color: #000080; -} - -.highlight .vc { - color: #008080; -} - -.highlight .vg { - color: #008080; -} - -.highlight .vi { - color: #008080; -} - -.highlight .nv { - color: #008080; -} - -.highlight .ow { - color: #000000; - font-weight: bold; -} - -.highlight .o { - color: #000000; - font-weight: bold; -} - -.highlight .w { - color: #bbbbbb; -} - -@font-face { - font-family: FreightSans; - font-weight: 700; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-bold.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-bold.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 700; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-bold-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-bold-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 500; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-medium.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-medium.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 500; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-medium-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-medium-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 100; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-light.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-light.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 100; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-light-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-light-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 400; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-book-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-book-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 400; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-book.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-book.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 600; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-SemiBold"), url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 500; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Medium"), url("../fonts/IBMPlexMono/IBMPlexMono-Medium.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Medium.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 400; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Regular"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 300; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Light"), url("../fonts/IBMPlexMono/IBMPlexMono-Light.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Light.woff") format("woff"); -} -html { - position: relative; - min-height: 100%; - font-size: 12px; -} -@media screen and (min-width: 768px) { - html { - font-size: 16px; - } -} - -* { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -body { - font-family: FreightSans, Helvetica Neue, Helvetica, Arial, sans-serif; -} - -a:link, -a:visited, -a:hover { - text-decoration: none; - color: #e44c2c; -} - -a.with-right-arrow, .btn.with-right-arrow { - padding-right: 1.375rem; - position: relative; - background-image: url("../images/chevron-right-orange.svg"); - background-size: 6px 13px; - background-position: center right 5px; - background-repeat: no-repeat; -} -@media screen and (min-width: 768px) { - a.with-right-arrow, .btn.with-right-arrow { - background-size: 8px 14px; - background-position: center right 12px; - padding-right: 2rem; - } -} - -::-webkit-input-placeholder { - color: #e44c2c; -} - -::-moz-placeholder { - color: #e44c2c; -} - -:-ms-input-placeholder { - color: #e44c2c; -} - -:-moz-placeholder { - color: #e44c2c; -} - -.email-subscribe-form input.email { - color: #e44c2c; - border: none; - border-bottom: 1px solid #939393; - width: 100%; - background-color: transparent; - outline: none; - font-size: 1.125rem; - letter-spacing: 0.25px; - line-height: 2.25rem; -} -.email-subscribe-form input[type="submit"] { - position: absolute; - right: 0; - top: 10px; - height: 15px; - width: 15px; - background-image: url("../images/arrow-right-with-tail.svg"); - background-color: transparent; - background-repeat: no-repeat; - background-size: 15px 15px; - background-position: center center; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: 0; -} - -.email-subscribe-form-fields-wrapper { - position: relative; -} - -.anchorjs-link { - color: #6c6c6d !important; -} -@media screen and (min-width: 768px) { - .anchorjs-link:hover { - color: inherit; - text-decoration: none !important; - } -} - -.pytorch-article #table-of-contents { - display: none; -} - -code, kbd, pre, samp { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} -code span, kbd span, pre span, samp span { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} - -pre { - padding: 1.125rem; - background-color: #f3f4f7; -} -pre code { - font-size: 0.875rem; -} -pre.highlight { - background-color: #f3f4f7; - line-height: 1.3125rem; -} - -code.highlighter-rouge { - color: #6c6c6d; - background-color: #f3f4f7; - padding: 2px 6px; -} - -a:link code.highlighter-rouge, -a:visited code.highlighter-rouge, -a:hover code.highlighter-rouge { - color: #4974D1; -} -a:link.has-code, -a:visited.has-code, -a:hover.has-code { - color: #4974D1; -} - -p code, -h1 code, -h2 code, -h3 code, -h4 code, -h5 code, -h6 code { - font-size: 78.5%; -} - -pre { - white-space: pre-wrap; - white-space: -moz-pre-wrap; - white-space: -pre-wrap; - white-space: -o-pre-wrap; - word-wrap: break-word; -} - -.header-holder { - height: 68px; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - left: 0; - margin-left: auto; - margin-right: auto; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 9999; - background-color: #ffffff; - border-bottom: 1px solid #e2e2e2; -} -@media screen and (min-width: 1100px) { - .header-holder { - height: 90px; - } -} - -.header-container { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.header-container:before, .header-container:after { - content: ""; - display: table; -} -.header-container:after { - clear: both; -} -.header-container { - *zoom: 1; -} -@media screen and (min-width: 1100px) { - .header-container { - display: block; - } -} - -.header-logo { - height: 23px; - width: 93px; - background-repeat: no-repeat; - background-size: 93px 23px; - display: block; - float: left; - z-index: 10; - margin-left: 2.5rem; - margin-top: -1rem; -} -@media screen and (min-width: 1100px) { - .header-logo { - background-size: 155px 50px; - position: absolute; - height: 50px; - width: 155px; - top: 4px; - float: none; - } -} - -.main-menu-open-button { - background-image: url("../images/icon-menu-dots.svg"); - background-position: center center; - background-size: 25px 7px; - background-repeat: no-repeat; - width: 25px; - height: 17px; - position: absolute; - right: 0; - top: 4px; -} -@media screen and (min-width: 1100px) { - .main-menu-open-button { - display: none; - } -} - -.header-holder .main-menu { - display: none; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} -.header-holder .main-menu ul { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; -} -.header-holder .main-menu ul li { - display: inline-block; - margin-right: 40px; - position: relative; -} -.header-holder .main-menu ul li.active:after { - color: #e44c2c; -} -.header-holder .main-menu ul li.active a { - color: #e44c2c; -} -.header-holder .main-menu ul li:last-of-type { - margin-right: 0; -} -.header-holder .main-menu ul li a { - color: #ffffff; - font-size: 1.125rem; - letter-spacing: 0; - line-height: 2.125rem; - text-align: center; - text-decoration: none; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu ul li a:hover { - color: #e44c2c; - } -} - -.mobile-main-menu { - display: none; -} -.mobile-main-menu.open { - background-color: #262626; - display: block; - height: 100%; - left: 0; - margin-left: auto; - margin-right: auto; - min-height: 100%; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 99999; -} - -.mobile-main-menu .container-fluid { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 68px; - position: relative; -} -.mobile-main-menu .container-fluid:before, .mobile-main-menu .container-fluid:after { - content: ""; - display: table; -} -.mobile-main-menu .container-fluid:after { - clear: both; -} -.mobile-main-menu .container-fluid { - *zoom: 1; -} - -.mobile-main-menu.open ul { - list-style-type: none; - padding: 0; -} -.mobile-main-menu.open ul li a { - font-size: 2rem; - color: #ffffff; - letter-spacing: 0; - line-height: 4rem; - text-decoration: none; -} -.mobile-main-menu.open ul li.active a { - color: #e44c2c; -} - -.main-menu-close-button { - background-image: url("../images/icon-close.svg"); - background-position: center center; - background-repeat: no-repeat; - background-size: 24px 24px; - height: 24px; - position: absolute; - right: 0; - width: 24px; - top: -4px; -} - -.mobile-main-menu-header-container { - position: relative; -} - -.mobile-main-menu-links-container { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding-left: 2.8125rem; - height: 100%; - min-height: 100%; - margin-top: -68px; -} - -.site-footer { - padding: 2.5rem 0; - width: 100%; - background-image: url("../images/home-footer-background.jpg"); - background-size: 100%; - margin-left: 0; - margin-right: 0; - position: relative; - z-index: 201; -} -@media screen and (min-width: 768px) { - .site-footer { - padding: 5rem 0; - } -} -.site-footer p { - color: #ffffff; -} -.site-footer ul { - list-style-type: none; - padding-left: 0; - margin-bottom: 0; -} -.site-footer ul li { - font-size: 1.125rem; - line-height: 2rem; - color: #6c6c6d; - padding-bottom: 0.375rem; -} -.site-footer ul li.list-title { - padding-bottom: 0.75rem; - color: #ffffff; -} -.site-footer a:link, -.site-footer a:visited { - color: inherit; -} -@media screen and (min-width: 768px) { - .site-footer a:hover { - color: #e44c2c; - } -} - -.docs-tutorials-resources { - background-color: #262626; - color: #ffffff; - padding-top: 2.5rem; - padding-bottom: 2.5rem; - position: relative; - z-index: 201; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources { - padding-top: 5rem; - padding-bottom: 5rem; - } -} -.docs-tutorials-resources p { - color: #929292; - font-size: 1.125rem; -} -.docs-tutorials-resources h2 { - font-size: 1.5rem; - letter-spacing: -0.25px; - text-transform: none; - margin-bottom: 0.25rem; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources h2 { - margin-bottom: 1.25rem; - } -} -.docs-tutorials-resources .col-md-4 { - margin-bottom: 2rem; - text-align: center; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources .col-md-4 { - margin-bottom: 0; - } -} -.docs-tutorials-resources .with-right-arrow { - margin-left: 12px; -} -.docs-tutorials-resources .with-right-arrow:hover { - background-image: url("../images/chevron-right-white.svg"); -} -.docs-tutorials-resources p { - font-size: 1rem; - line-height: 1.5rem; - letter-spacing: 0.22px; - color: #939393; - margin-bottom: 0; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources p { - margin-bottom: 1.25rem; - } -} -.docs-tutorials-resources a { - font-size: 1.125rem; - color: #e44c2c; -} -.docs-tutorials-resources a:hover { - color: #ffffff; -} - -.footer-container { - position: relative; -} - -@media screen and (min-width: 768px) { - .footer-logo-wrapper { - position: absolute; - top: 0; - left: 30px; - } -} - -.footer-logo { - background-image: url("../images/logo-icon.svg"); - background-position: center; - background-repeat: no-repeat; - background-size: 20px 24px; - display: block; - height: 24px; - margin-bottom: 2.8125rem; - width: 20px; -} -@media screen and (min-width: 768px) { - .footer-logo { - background-size: 29px 36px; - height: 36px; - margin-bottom: 0; - margin-bottom: 0; - width: 29px; - } -} - -.footer-links-wrapper { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} -@media screen and (min-width: 768px) { - .footer-links-wrapper { - -ms-flex-wrap: initial; - flex-wrap: initial; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} - -.footer-links-col { - margin-bottom: 3.75rem; - width: 50%; -} -@media screen and (min-width: 768px) { - .footer-links-col { - margin-bottom: 0; - width: 14%; - margin-right: 23px; - } - .footer-links-col.follow-us-col { - width: 18%; - margin-right: 0; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .footer-links-col { - width: 18%; - margin-right: 30px; - } -} - -.footer-social-icons { - margin: 8.5625rem 0 2.5rem 0; -} -.footer-social-icons a { - height: 32px; - width: 32px; - display: inline-block; - background-color: #CCCDD1; - border-radius: 50%; - margin-right: 5px; -} -.footer-social-icons a.facebook { - background-image: url("../images/logo-facebook-dark.svg"); - background-position: center center; - background-size: 9px 18px; - background-repeat: no-repeat; -} -.footer-social-icons a.twitter { - background-image: url("../images/logo-twitter-dark.svg"); - background-position: center center; - background-size: 17px 17px; - background-repeat: no-repeat; -} - -.site-footer .mc-field-group { - margin-top: -2px; -} - -article.pytorch-article { - max-width: 920px; - margin: 0 auto; -} -article.pytorch-article h2, -article.pytorch-article h3, -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - margin: 1.375rem 0; - color: #262626; -} -article.pytorch-article h2 { - font-size: 1.625rem; - letter-spacing: 1.33px; - line-height: 2rem; - text-transform: none; -} -article.pytorch-article h3 { - font-size: 1.5rem; - letter-spacing: -0.25px; - line-height: 1.875rem; - text-transform: none; -} -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - font-size: 1.125rem; - letter-spacing: -0.19px; - line-height: 1.875rem; -} -article.pytorch-article p { - margin-bottom: 1.125rem; -} -article.pytorch-article p, -article.pytorch-article ul li, -article.pytorch-article ol li, -article.pytorch-article dl dt, -article.pytorch-article dl dd, -article.pytorch-article blockquote { - font-size: 1rem; - line-height: 1.375rem; - color: #262626; - letter-spacing: 0.01px; - font-weight: 500; -} -article.pytorch-article table { - margin-bottom: 2.5rem; - width: 100%; -} -article.pytorch-article table thead { - border-bottom: 1px solid #cacaca; -} -article.pytorch-article table th { - padding: 0.625rem; - color: #262626; -} -article.pytorch-article table td { - padding: 0.3125rem; -} -article.pytorch-article table tr th:first-of-type, -article.pytorch-article table tr td:first-of-type { - padding-left: 0; -} -article.pytorch-article table.docutils.field-list th.field-name { - padding: 0.3125rem; - padding-left: 0; -} -article.pytorch-article table.docutils.field-list td.field-body { - padding: 0.3125rem; -} -article.pytorch-article table.docutils.field-list td.field-body p:last-of-type { - margin-bottom: 0; -} -article.pytorch-article ul, -article.pytorch-article ol { - margin: 1.5rem 0 3.125rem 0; -} -@media screen and (min-width: 768px) { - article.pytorch-article ul, - article.pytorch-article ol { - padding-left: 6.25rem; - } -} -article.pytorch-article ul li, -article.pytorch-article ol li { - margin-bottom: 0.625rem; -} -article.pytorch-article dl { - margin-bottom: 1.5rem; -} -article.pytorch-article dl dt { - margin-bottom: 0.75rem; -} -article.pytorch-article pre { - margin-bottom: 2.5rem; -} -article.pytorch-article hr { - margin-top: 4.6875rem; - margin-bottom: 4.6875rem; -} -article.pytorch-article blockquote { - margin: 0 auto; - margin-bottom: 2.5rem; - width: 65%; -} -article.pytorch-article img { - width: 100%; -} - -html { - height: 100%; -} -@media screen and (min-width: 768px) { - html { - font-size: 16px; - } -} - -body { - background: #ffffff; - height: 100%; - margin: 0; -} -body.no-scroll { - height: 100%; - overflow: hidden; -} - -p { - margin-top: 0; - margin-bottom: 1.125rem; -} -p a:link, -p a:visited, -p a:hover { - color: #e44c2c; - text-decoration: none; -} -@media screen and (min-width: 768px) { - p a:hover { - text-decoration: underline; - } -} -p a:link, -p a:visited, -p a:hover { - color: #ee4c2c; -} - -.wy-breadcrumbs li a { - color: #ee4c2c; -} - -ul.pytorch-breadcrumbs { - padding-left: 0; - list-style-type: none; -} -ul.pytorch-breadcrumbs li { - display: inline-block; - font-size: 0.875rem; -} -ul.pytorch-breadcrumbs a { - color: #ee4c2c; - text-decoration: none; -} - -.table-of-contents-link-wrapper { - display: block; - margin-top: 0; - padding: 1.25rem 1.875rem; - background-color: #f3f4f7; - position: relative; - color: #262626; - font-size: 1.25rem; -} -.table-of-contents-link-wrapper.is-open .toggle-table-of-contents { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -@media screen and (min-width: 1100px) { - .table-of-contents-link-wrapper { - display: none; - } -} - -.toggle-table-of-contents { - background-image: url("../images/chevron-down-grey.svg"); - background-position: center center; - background-repeat: no-repeat; - background-size: 18px 18px; - height: 100%; - position: absolute; - right: 21px; - width: 30px; - top: 0; -} - -.tutorials-header .header-logo { - background-image: url("../images/asteroid_logo_dark.svg"); -} -.tutorials-header .main-menu ul li a { - color: #262626; -} -.tutorials-header .main-menu-open-button { - background-image: url("../images/icon-menu-dots-dark.svg"); -} - -.rst-content dl:not(.docutils) dl dt { - background: #f3f4f7; - font-weight: bold; -} - -.rst-content .viewcode-link, .rst-content .viewcode-back { - display: block; - color: #4974d1; - font-size: 90%; - padding-left: 24px; - float: right; -} - -.rst-content footer .helpful-hr.hr-top { - margin-bottom: -0.0625rem; -} -.rst-content footer .helpful-hr.hr-bottom { - margin-top: -0.0625rem; -} -.rst-content footer .helpful-container { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 1.125rem; -} -.rst-content footer .helpful-container .helpful-question, .rst-content footer .helpful-container .was-helpful-thank-you { - padding: 0.625rem 1.25rem 0.625rem 1.25rem; -} -.rst-content footer .helpful-container .was-helpful-thank-you { - display: none; -} -.rst-content footer .helpful-container .helpful-question.yes-link, .rst-content footer .helpful-container .helpful-question.no-link { - color: #e44c2c; - cursor: pointer; -} -.rst-content footer .helpful-container .helpful-question.yes-link:hover, .rst-content footer .helpful-container .helpful-question.no-link:hover { - background-color: #e44c2c; - color: #ffffff; -} -.rst-content footer div[role="contentinfo"] { - padding-top: 2.5rem; -} -.rst-content footer div[role="contentinfo"] p { - margin-bottom: 0; -} - -h1 { - font-size: 2rem; - letter-spacing: 1.78px; - line-height: 2.5rem; - text-transform: uppercase; - margin: 1.375rem 0; -} - -span.pre { - color: #ee4c2c; - background-color: #f3f4f7; - padding: 2px 6px; -} - -pre { - background-color: #f3f4f7; - padding: 1.375rem; -} - -div.highlight pre { - border-radius: 20px; - background: #f1fff3; -} - -.highlight .c1 { - color: #6c6c6d; -} - -.headerlink { - display: none !important; -} - -a:link.has-code, -a:hover.has-code, -a:visited.has-code { - color: #4974D1; -} -a:link.has-code span, -a:hover.has-code span, -a:visited.has-code span { - color: #4974D1; -} - -article.pytorch-article ul, -article.pytorch-article ol { - padding-left: 1.875rem; - margin: 0; -} -article.pytorch-article ul li, -article.pytorch-article ol li { - margin: 0; - line-height: 1.75rem; -} -article.pytorch-article ul p, -article.pytorch-article ol p { - line-height: 1.75rem; - margin-bottom: 0; -} -article.pytorch-article ul ul, -article.pytorch-article ul ol, -article.pytorch-article ol ul, -article.pytorch-article ol ol { - margin: 0; -} -article.pytorch-article h1, -article.pytorch-article h2, -article.pytorch-article h3, -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - font-weight: normal; -} -article.pytorch-article h1 a, -article.pytorch-article h2 a, -article.pytorch-article h3 a, -article.pytorch-article h4 a, -article.pytorch-article h5 a, -article.pytorch-article h6 a { - color: #262626; -} -article.pytorch-article p.caption { - margin-top: 1.25rem; -} - -article.pytorch-article .section:first-of-type h1:first-of-type { - margin-top: 0; -} - -article.pytorch-article .sphx-glr-thumbcontainer { - margin: 0; - border: 1px solid #d6d7d8; - border-radius: 0; - width: 45%; - text-align: center; - margin-bottom: 5%; -} -@media screen and (max-width: 1100px) { - article.pytorch-article .sphx-glr-thumbcontainer:nth-child(odd) { - margin-left: 0; - margin-right: 2.5%; - } - article.pytorch-article .sphx-glr-thumbcontainer:nth-child(even) { - margin-right: 0; - margin-left: 2.5%; - } - article.pytorch-article .sphx-glr-thumbcontainer .figure { - width: 40%; - } -} -@media screen and (min-width: 1101px) { - article.pytorch-article .sphx-glr-thumbcontainer { - margin-right: 3%; - margin-bottom: 3%; - width: 30%; - } -} -article.pytorch-article .sphx-glr-thumbcontainer .caption-text a { - font-size: 1rem; - color: #262626; - letter-spacing: 0; - line-height: 1.5rem; - text-decoration: none; -} -article.pytorch-article .sphx-glr-thumbcontainer:hover { - -webkit-box-shadow: none; - box-shadow: none; - border-bottom-color: #ffffff; -} -article.pytorch-article .sphx-glr-thumbcontainer:hover .figure:before { - bottom: 100%; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure { - width: 80%; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure:before { - content: ""; - display: block; - position: absolute; - top: 0; - bottom: 35%; - left: 0; - right: 0; - background: #8A94B3; - opacity: 0.10; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure a.reference.internal { - text-align: left; -} -@media screen and (min-width: 768px) { - article.pytorch-article .sphx-glr-thumbcontainer:after { - content: ""; - display: block; - width: 0; - height: 1px; - position: absolute; - bottom: 0; - left: 0; - background-color: #e44c2c; - -webkit-transition: width .250s ease-in-out; - transition: width .250s ease-in-out; - } - article.pytorch-article .sphx-glr-thumbcontainer:hover:after { - width: 100%; - } -} -@media screen and (min-width: 768px) { - article.pytorch-article .sphx-glr-thumbcontainer:after { - background-color: #ee4c2c; - } -} - -.footer-logo-col { - margin: 2.5rem; -} - -article.pytorch-article .section :not(dt) > code { - color: #262626; - padding: 0px 3px; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} -article.pytorch-article .section :not(dt) > code .pre { - outline: 0px; - padding: 0px; -} -article.pytorch-article .function dt, article.pytorch-article .attribute dt, article.pytorch-article .class .attribute dt, article.pytorch-article .class dt { - position: relative; - background: #fae7e7; - padding: 0.5rem; - word-wrap: break-word; - padding-right: 100px; - border-radius: 10px; -} -article.pytorch-article .function dt em.property, article.pytorch-article .attribute dt em.property, article.pytorch-article .class dt em.property { - font-family: inherit; -} -article.pytorch-article .function dt em, article.pytorch-article .attribute dt em, article.pytorch-article .class .attribute dt em, article.pytorch-article .class dt em, article.pytorch-article .function dt .sig-paren, article.pytorch-article .attribute dt .sig-paren, article.pytorch-article .class dt .sig-paren { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; - font-size: 87.5%; - color: #ee4c2c; -} -article.pytorch-article .function dt a, article.pytorch-article .attribute dt a, article.pytorch-article .class .attribute dt a, article.pytorch-article .class dt a { - position: absolute; - right: 30px; - padding-right: 0; - top: 50%; - -webkit-transform: perspective(1px) translateY(-50%); - transform: perspective(1px) translateY(-50%); -} -article.pytorch-article .function dt:hover .viewcode-link, article.pytorch-article .attribute dt:hover .viewcode-link, article.pytorch-article .class dt:hover .viewcode-link { - color: #ee4c2c; -} -article.pytorch-article .function .anchorjs-link, article.pytorch-article .attribute .anchorjs-link, article.pytorch-article .class .anchorjs-link { - display: inline; - position: absolute; - right: 8px; - font-size: 1.5625rem !important; - padding-left: 0; -} -article.pytorch-article .function dt > code, article.pytorch-article .attribute dt > code, article.pytorch-article .class .attribute dt > code, article.pytorch-article .class dt > code { - color: #262626; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} -article.pytorch-article .function .viewcode-link, article.pytorch-article .attribute .viewcode-link, article.pytorch-article .class .viewcode-link { - font-size: 0.875rem; - color: #979797; - letter-spacing: 0; - line-height: 1.5rem; - text-transform: uppercase; -} -article.pytorch-article .function dd, article.pytorch-article .attribute dd, article.pytorch-article .class .attribute dd, article.pytorch-article .class dd { - padding-left: 3.75rem; -} -article.pytorch-article .function dd p, article.pytorch-article .attribute dd p, article.pytorch-article .class .attribute dd p, article.pytorch-article .class dd p { - color: #262626; -} -article.pytorch-article .function table tbody tr th.field-name, article.pytorch-article .attribute table tbody tr th.field-name, article.pytorch-article .class table tbody tr th.field-name { - white-space: nowrap; - color: #262626; - width: 20%; -} -@media screen and (min-width: 768px) { - article.pytorch-article .function table tbody tr th.field-name, article.pytorch-article .attribute table tbody tr th.field-name, article.pytorch-article .class table tbody tr th.field-name { - width: 15%; - } -} -article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - padding: 0.625rem; - width: 80%; - color: #262626; -} -@media screen and (min-width: 768px) { - article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - width: 85%; - } -} -@media screen and (min-width: 1600px) { - article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - padding-left: 1.25rem; - } -} -article.pytorch-article .function table tbody tr td.field-body p, article.pytorch-article .attribute table tbody tr td.field-body p, article.pytorch-article .class table tbody tr td.field-body p { - padding-left: 0px; -} -article.pytorch-article .function table tbody tr td.field-body p:last-of-type, article.pytorch-article .attribute table tbody tr td.field-body p:last-of-type, article.pytorch-article .class table tbody tr td.field-body p:last-of-type { - margin-bottom: 0; -} -article.pytorch-article .function table tbody tr td.field-body ol, article.pytorch-article .attribute table tbody tr td.field-body ol, article.pytorch-article .class table tbody tr td.field-body ol, article.pytorch-article .function table tbody tr td.field-body ul, article.pytorch-article .attribute table tbody tr td.field-body ul, article.pytorch-article .class table tbody tr td.field-body ul { - padding-left: 1rem; - padding-bottom: 0; -} -article.pytorch-article .function table.docutils.field-list, article.pytorch-article .attribute table.docutils.field-list, article.pytorch-article .class table.docutils.field-list { - margin-bottom: 0.75rem; -} -article.pytorch-article .attribute .has-code { - float: none; -} -article.pytorch-article .class dt { - border-left: none; - padding-left: 4em; -} -article.pytorch-article .class dt em.property { - position: absolute; - left: 0.5rem; -} -article.pytorch-article .class dd .docutils dt { - padding-left: 0.5rem; -} -article.pytorch-article .class em.property { - text-transform: uppercase; - font-style: normal; - color: #ee4c2c; - font-size: 1rem; - letter-spacing: 0; - padding-right: 0.75rem; -} -article.pytorch-article .class dl dt em.property { - position: static; - left: 0; - padding-right: 0; -} -article.pytorch-article .class .method dt, -article.pytorch-article .class .staticmethod dt, article.pytorch-article .class .classmethod dt { - border-top: none; - background: #fae7e7; -} -article.pytorch-article .class .method dt, -article.pytorch-article .class .staticmethod dt, article.pytorch-article .class .classmethod dt { - padding-left: 0.5rem; -} -article.pytorch-article .class .method dd dl dt, -article.pytorch-article .class .staticmethod dd dl dt, article.pytorch-article .class .classmethod dd dl dt { - background: #f3f4f7; - font-weight: bold; -} -article.pytorch-article .class .classmethod dt, article.pytorch-article .class .staticmethod dt { - padding-left: 1em; - font-weight: 500; -} -article.pytorch-article .class .attribute dt { - border-top: none; -} -article.pytorch-article .class .attribute dt em.property { - position: relative; - left: 0; -} -article.pytorch-article table { - table-layout: fixed; -} - -article.pytorch-article .note, -article.pytorch-article .warning, -article.pytorch-article .tip, -article.pytorch-article .hint, -article.pytorch-article .important, -article.pytorch-article .caution, -article.pytorch-article .danger, -article.pytorch-article .attention, -article.pytorch-article .error { - background: #f3f4f7; - margin-top: 1.875rem; - margin-bottom: 1.125rem; - border-radius: 20px; -} -article.pytorch-article .note .admonition-title, -article.pytorch-article .warning .admonition-title, -article.pytorch-article .tip .admonition-title, -article.pytorch-article .hint .admonition-title, -article.pytorch-article .important .admonition-title, -article.pytorch-article .caution .admonition-title, -article.pytorch-article .danger .admonition-title, -article.pytorch-article .attention .admonition-title, -article.pytorch-article .error .admonition-title { - color: #ffffff; - letter-spacing: 1px; - text-transform: uppercase; - margin-bottom: 1.125rem; - padding: 3px 0 3px 1.375rem; - position: relative; - font-size: 0.875rem; -} -article.pytorch-article .note p:nth-child(n + 2), -article.pytorch-article .warning p:nth-child(n + 2), -article.pytorch-article .tip p:nth-child(n + 2), -article.pytorch-article .hint p:nth-child(n + 2), -article.pytorch-article .important p:nth-child(n + 2), -article.pytorch-article .caution p:nth-child(n + 2), -article.pytorch-article .danger p:nth-child(n + 2), -article.pytorch-article .attention p:nth-child(n + 2), -article.pytorch-article .error p:nth-child(n + 2) { - padding: 0 1.375rem; -} -article.pytorch-article .note table, -article.pytorch-article .warning table, -article.pytorch-article .tip table, -article.pytorch-article .hint table, -article.pytorch-article .important table, -article.pytorch-article .caution table, -article.pytorch-article .danger table, -article.pytorch-article .attention table, -article.pytorch-article .error table { - margin: 0 2rem; - width: auto; -} -article.pytorch-article .note .pre, -article.pytorch-article .note pre, -article.pytorch-article .warning .pre, -article.pytorch-article .warning pre, -article.pytorch-article .tip .pre, -article.pytorch-article .tip pre, -article.pytorch-article .hint .pre, -article.pytorch-article .hint pre, -article.pytorch-article .important .pre, -article.pytorch-article .important pre, -article.pytorch-article .caution .pre, -article.pytorch-article .caution pre, -article.pytorch-article .danger .pre, -article.pytorch-article .danger pre, -article.pytorch-article .attention .pre, -article.pytorch-article .attention pre, -article.pytorch-article .error .pre, -article.pytorch-article .error pre { - background: #ffffff; - outline: 1px solid #e9e9e9; -} -article.pytorch-article .note :not(dt) > code, -article.pytorch-article .warning :not(dt) > code, -article.pytorch-article .tip :not(dt) > code, -article.pytorch-article .hint :not(dt) > code, -article.pytorch-article .important :not(dt) > code, -article.pytorch-article .caution :not(dt) > code, -article.pytorch-article .danger :not(dt) > code, -article.pytorch-article .attention :not(dt) > code, -article.pytorch-article .error :not(dt) > code { - padding: 0px 3px; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; - outline: 1px solid #e9e9e9; -} -article.pytorch-article .note :not(dt) > code .pre, -article.pytorch-article .warning :not(dt) > code .pre, -article.pytorch-article .tip :not(dt) > code .pre, -article.pytorch-article .hint :not(dt) > code .pre, -article.pytorch-article .important :not(dt) > code .pre, -article.pytorch-article .caution :not(dt) > code .pre, -article.pytorch-article .danger :not(dt) > code .pre, -article.pytorch-article .attention :not(dt) > code .pre, -article.pytorch-article .error :not(dt) > code .pre { - outline: 0px; - padding: 0px; -} -article.pytorch-article .note pre, -article.pytorch-article .warning pre, -article.pytorch-article .tip pre, -article.pytorch-article .hint pre, -article.pytorch-article .important pre, -article.pytorch-article .caution pre, -article.pytorch-article .danger pre, -article.pytorch-article .attention pre, -article.pytorch-article .error pre { - margin-bottom: 0; -} -article.pytorch-article .note .highlight, -article.pytorch-article .warning .highlight, -article.pytorch-article .tip .highlight, -article.pytorch-article .hint .highlight, -article.pytorch-article .important .highlight, -article.pytorch-article .caution .highlight, -article.pytorch-article .danger .highlight, -article.pytorch-article .attention .highlight, -article.pytorch-article .error .highlight { - margin: 0 2rem 1.125rem 2rem; -} -article.pytorch-article .note ul, -article.pytorch-article .note ol, -article.pytorch-article .warning ul, -article.pytorch-article .warning ol, -article.pytorch-article .tip ul, -article.pytorch-article .tip ol, -article.pytorch-article .hint ul, -article.pytorch-article .hint ol, -article.pytorch-article .important ul, -article.pytorch-article .important ol, -article.pytorch-article .caution ul, -article.pytorch-article .caution ol, -article.pytorch-article .danger ul, -article.pytorch-article .danger ol, -article.pytorch-article .attention ul, -article.pytorch-article .attention ol, -article.pytorch-article .error ul, -article.pytorch-article .error ol { - padding-left: 3.25rem; -} -article.pytorch-article .note ul li, -article.pytorch-article .note ol li, -article.pytorch-article .warning ul li, -article.pytorch-article .warning ol li, -article.pytorch-article .tip ul li, -article.pytorch-article .tip ol li, -article.pytorch-article .hint ul li, -article.pytorch-article .hint ol li, -article.pytorch-article .important ul li, -article.pytorch-article .important ol li, -article.pytorch-article .caution ul li, -article.pytorch-article .caution ol li, -article.pytorch-article .danger ul li, -article.pytorch-article .danger ol li, -article.pytorch-article .attention ul li, -article.pytorch-article .attention ol li, -article.pytorch-article .error ul li, -article.pytorch-article .error ol li { - color: #262626; -} -article.pytorch-article .note p, -article.pytorch-article .warning p, -article.pytorch-article .tip p, -article.pytorch-article .hint p, -article.pytorch-article .important p, -article.pytorch-article .caution p, -article.pytorch-article .danger p, -article.pytorch-article .attention p, -article.pytorch-article .error p { - margin-top: 1.125rem; -} -article.pytorch-article .note .admonition-title { - background: #54c7ec; -} -article.pytorch-article .warning .admonition-title { - background: #e94f3b; -} -article.pytorch-article .tip .admonition-title { - background: #6bcebb; -} -article.pytorch-article .hint .admonition-title { - background: #a2cdde; -} -article.pytorch-article .important .admonition-title { - background: #5890ff; -} -article.pytorch-article .caution .admonition-title { - background: #f7923a; -} -article.pytorch-article .danger .admonition-title { - background: #db2c49; -} -article.pytorch-article .attention .admonition-title { - background: #f5a623; -} -article.pytorch-article .error .admonition-title { - background: #cc2f90; -} -article.pytorch-article .sphx-glr-download-link-note.admonition.note, -article.pytorch-article .reference.download.internal, article.pytorch-article .sphx-glr-signature { - display: none; -} -article.pytorch-article .admonition > p:last-of-type { - margin-bottom: 0; - padding-bottom: 1.125rem !important; -} - -article.pytorch-article .note { - background: #e7f2fa; -} - -article.pytorch-article .note .admonition-title { - background: none; - color: #2980B9; - font-weight: bold; -} - -.pytorch-article div.sphx-glr-download a { - background-color: #f3f4f7; - background-image: url("../images/arrow-down-orange.svg"); - background-repeat: no-repeat; - background-position: left 10px center; - background-size: 15px 15px; - border-radius: 0; - border: none; - display: block; - text-align: left; - padding: 0.9375rem 3.125rem; - position: relative; - margin: 1.25rem auto; -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a:after { - content: ""; - display: block; - width: 0; - height: 1px; - position: absolute; - bottom: 0; - left: 0; - background-color: #e44c2c; - -webkit-transition: width .250s ease-in-out; - transition: width .250s ease-in-out; - } - .pytorch-article div.sphx-glr-download a:hover:after { - width: 100%; - } -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a:after { - background-color: #ee4c2c; - } -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a { - background-position: left 20px center; - } -} -.pytorch-article div.sphx-glr-download a:hover { - -webkit-box-shadow: none; - box-shadow: none; - text-decoration: none; - background-image: url("../images/arrow-down-orange.svg"); - background-color: #f3f4f7; -} -.pytorch-article div.sphx-glr-download a span.pre { - background-color: transparent; - font-size: 1.125rem; - padding: 0; - color: #262626; -} -.pytorch-article div.sphx-glr-download a code, .pytorch-article div.sphx-glr-download a kbd, .pytorch-article div.sphx-glr-download a pre, .pytorch-article div.sphx-glr-download a samp, .pytorch-article div.sphx-glr-download a span.pre { - font-family: FreightSans, Helvetica Neue, Helvetica, Arial, sans-serif; -} - -.pytorch-article p.sphx-glr-script-out { - margin-bottom: 1.125rem; -} - -.pytorch-article div.sphx-glr-script-out { - margin-bottom: 2.5rem; -} -.pytorch-article div.sphx-glr-script-out .highlight { - margin-left: 0; - margin-top: 0; -} -.pytorch-article div.sphx-glr-script-out .highlight pre { - background-color: #fdede9; - padding: 1.5625rem; - color: #837b79; -} -.pytorch-article div.sphx-glr-script-out + p { - margin-top: unset; -} - -article.pytorch-article .wy-table-responsive table { - border: none; - border-color: #ffffff !important; - table-layout: fixed; -} -article.pytorch-article .wy-table-responsive table thead tr { - border-bottom: 2px solid #6c6c6d; -} -article.pytorch-article .wy-table-responsive table thead th { - line-height: 1.75rem; - padding-left: 0.9375rem; - padding-right: 0.9375rem; -} -article.pytorch-article .wy-table-responsive table tbody .row-odd { - background-color: #f3f4f7; -} -article.pytorch-article .wy-table-responsive table tbody td { - color: #6c6c6d; - white-space: normal; - padding: 0.9375rem; - font-size: 1rem; - line-height: 1.375rem; -} -article.pytorch-article .wy-table-responsive table tbody td .pre { - background: #ffffff; - outline: 1px solid #e9e9e9; - color: #ee4c2c; - font-size: 87.5%; -} -article.pytorch-article .wy-table-responsive table tbody td code { - font-size: 87.5%; -} - -a[rel~="prev"], a[rel~="next"] { - padding: 0.375rem 0 0 0; -} - -img.next-page, -img.previous-page { - width: 8px; - height: 10px; - position: relative; - top: -1px; -} - -img.previous-page { - -webkit-transform: scaleX(-1); - transform: scaleX(-1); -} - -.rst-footer-buttons { - margin-top: 1.875rem; - margin-bottom: 1.875rem; -} -.rst-footer-buttons .btn:focus, -.rst-footer-buttons .btn.focus { - -webkit-box-shadow: none; - box-shadow: none; -} - -article.pytorch-article blockquote { - margin-left: 3.75rem; - color: #6c6c6d; -} - -article.pytorch-article .caption { - color: #6c6c6d; - letter-spacing: 0.25px; - line-height: 2.125rem; -} - -article.pytorch-article .math { - color: #262626; - width: auto; - text-align: center; -} -article.pytorch-article .math img { - width: auto; -} - -.pytorch-breadcrumbs-wrapper { - width: 100%; -} -@media screen and (min-width: 1101px) { - .pytorch-breadcrumbs-wrapper { - float: left; - margin-left: 3%; - width: 75%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-breadcrumbs-wrapper { - width: 850px; - margin-left: 1.875rem; - } -} -.pytorch-breadcrumbs-wrapper .pytorch-breadcrumbs-aside { - float: right; -} - -.pytorch-article .container { - padding-left: 0; - padding-right: 0; - max-width: none; -} - -a:link, -a:visited, -a:hover { - color: #ee4c2c; -} - -::-webkit-input-placeholder { - color: #ee4c2c; -} - -::-moz-placeholder { - color: #ee4c2c; -} - -:-ms-input-placeholder { - color: #ee4c2c; -} - -:-moz-placeholder { - color: #ee4c2c; -} - -@media screen and (min-width: 768px) { - .site-footer a:hover { - color: #ee4c2c; - } -} - -.docs-tutorials-resources a { - color: #ee4c2c; -} - -.header-holder { - position: relative; - z-index: 201; -} - -.header-holder .main-menu ul li.active:after { - color: #ee4c2c; -} -.header-holder .main-menu ul li.active a { - color: #ee4c2c; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu ul li a:hover { - color: #ee4c2c; - } -} - -.mobile-main-menu.open ul li.active a { - color: #ee4c2c; -} - -.version { - padding-bottom: 1rem; -} - -.pytorch-call-to-action-links { - padding-top: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links { - padding-top: 2.5rem; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .pytorch-call-to-action-links { - padding-top: 0; - } -} -@media (min-width: 1100px) and (max-width: 1239px) { - .pytorch-call-to-action-links { - padding-top: 2.5rem; - } -} -.pytorch-call-to-action-links #tutorial-type { - display: none; -} -.pytorch-call-to-action-links .call-to-action-img, .pytorch-call-to-action-links .call-to-action-notebook-img { - height: 1.375rem; - width: 1.375rem; - margin-right: 10px; -} -.pytorch-call-to-action-links .call-to-action-notebook-img { - height: 1rem; -} -.pytorch-call-to-action-links a { - padding-right: 1.25rem; - color: #000000; - cursor: pointer; -} -.pytorch-call-to-action-links a:hover { - color: #e44c2c; -} -.pytorch-call-to-action-links a .call-to-action-desktop-view { - display: none; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links a .call-to-action-desktop-view { - display: block; - } -} -.pytorch-call-to-action-links a .call-to-action-mobile-view { - display: block; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links a .call-to-action-mobile-view { - display: none; - } -} -.pytorch-call-to-action-links a #google-colab-link, .pytorch-call-to-action-links a #download-notebook-link, -.pytorch-call-to-action-links a #github-view-link { - padding-bottom: 0.625rem; - border-bottom: 1px solid #f3f4f7; - padding-right: 2.5rem; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.pytorch-call-to-action-links a #google-colab-link:hover, .pytorch-call-to-action-links a #download-notebook-link:hover, -.pytorch-call-to-action-links a #github-view-link:hover { - border-bottom-color: #e44c2c; - color: #e44c2c; -} - -.pytorch-container { - margin: 0 auto; - padding: 0 1.875rem; - width: auto; - position: relative; -} -@media screen and (min-width: 1100px) { - .pytorch-container { - padding: 0; - } -} -@media screen and (min-width: 1101px) { - .pytorch-container { - margin-left: 25%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-container { - margin-left: 350px; - } -} -.pytorch-container:before, .pytorch-container:after { - content: ""; - display: table; -} -.pytorch-container:after { - clear: both; -} -.pytorch-container { - *zoom: 1; -} - -.pytorch-content-wrap { - background-color: #ffffff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - position: relative; - padding-top: 0; -} -.pytorch-content-wrap:before, .pytorch-content-wrap:after { - content: ""; - display: table; -} -.pytorch-content-wrap:after { - clear: both; -} -.pytorch-content-wrap { - *zoom: 1; -} -@media screen and (min-width: 1101px) { - .pytorch-content-wrap { - padding-top: 45px; - float: left; - width: 100%; - display: block; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-wrap { - width: 100%; - } -} - -.pytorch-content { - background: #ffffff; - width: 100%; - max-width: 700px; - position: relative; -} - -.pytorch-content-left { - margin-top: 2.5rem; - width: 100%; - margin-bottom: 2.5rem; -} -@media screen and (min-width: 1101px) { - .pytorch-content-left { - margin-top: 0; - margin-left: 3%; - width: 75%; - float: left; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-left { - width: 850px; - margin-left: 30px; - } -} -.pytorch-content-left .main-content { - padding-top: 0.9375rem; -} -.pytorch-content-left .main-content ul.simple { - padding-bottom: 1.25rem; -} -.pytorch-content-left .main-content .note:nth-child(1), .pytorch-content-left .main-content .warning:nth-child(1) { - margin-top: 0; -} - -.pytorch-content-right { - display: none; - position: relative; - overflow-x: hidden; - overflow-y: hidden; -} -@media screen and (min-width: 1101px) { - .pytorch-content-right { - display: block; - margin-left: 0; - width: 19%; - float: left; - height: 100%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-right { - width: 280px; - } -} - -@media screen and (min-width: 1101px) { - .pytorch-side-scroll { - position: relative; - overflow-x: hidden; - overflow-y: scroll; - height: 100%; - } -} - -.pytorch-menu-vertical { - padding: 1.25rem 1.875rem 2.5rem 1.875rem; -} -@media screen and (min-width: 1101px) { - .pytorch-menu-vertical { - display: block; - padding-top: 0; - padding-right: 13.5%; - padding-bottom: 5.625rem; - } -} -@media screen and (min-width: 1600px) { - .pytorch-menu-vertical { - padding-left: 0; - padding-right: 1.5625rem; - } -} - -.pytorch-left-menu { - display: none; - background-color: #262626; - color: #262626; -} -@media screen and (min-width: 1101px) { - .pytorch-left-menu { - display: block; - overflow-x: hidden; - overflow-y: hidden; - padding-bottom: 110px; - padding: 0 1.875rem 0 0; - width: 25%; - z-index: 200; - float: left; - } - .pytorch-left-menu.make-fixed { - position: fixed; - top: 0; - bottom: 0; - left: 0; - float: none; - } -} -@media screen and (min-width: 1600px) { - .pytorch-left-menu { - padding: 0 0 0 1.875rem; - width: 350px; - } -} - -.pytorch-left-menu p.caption { - color: #ffffff; - display: block; - display: inline-block; - font-size: 1rem; - line-height: 1.375rem; - margin-bottom: 1rem; - padding: 0; - text-transform: none; - white-space: nowrap; -} - -.pytorch-left-menu-search { - margin-bottom: 2.5rem; -} -@media screen and (min-width: 1101px) { - .pytorch-left-menu-search { - margin: 1.25rem 0.625rem 1.875rem 0; - } -} - -.pytorch-left-menu-search ::-webkit-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search :-ms-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search ::-ms-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search ::placeholder { - color: #262626; -} - -.pytorch-left-menu-search input[type=text] { - border-radius: 20px; - padding: 0.5rem 0.75rem; - border-color: #ffffff; - color: #262626; - border-style: solid; - font-size: 1rem; - width: 100%; - background-color: #f3f4f7; - background-image: url("../images/search-icon.svg"); - background-repeat: no-repeat; - background-size: 18px 18px; - background-position: 12px 10px; - padding-left: 40px; - background-color: #ffffff; -} -.pytorch-left-menu-search input[type=text]:focus { - outline: 0; -} - -@media screen and (min-width: 1101px) { - .pytorch-left-menu .pytorch-side-scroll { - width: 120%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-left-menu .pytorch-side-scroll { - width: 340px; - } -} - -.pytorch-right-menu { - min-height: 100px; - overflow-x: hidden; - overflow-y: hidden; - left: 0; - z-index: 200; - padding-top: 0; - position: relative; -} -@media screen and (min-width: 1101px) { - .pytorch-right-menu { - width: 100%; - } - .pytorch-right-menu.scrolling-fixed { - position: fixed; - top: 45px; - left: 83.5%; - width: 14%; - } - .pytorch-right-menu.scrolling-absolute { - position: absolute; - left: 0; - } -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu { - left: 0; - width: 380px; - } - .pytorch-right-menu.scrolling-fixed { - position: fixed; - top: 45px; - left: 1230px; - } - .pytorch-right-menu.scrolling-absolute { - position: absolute; - left: 0; - } -} - -.pytorch-left-menu ul, -.pytorch-right-menu ul { - list-style-type: none; - padding-left: 0; - margin-bottom: 2.5rem; -} -.pytorch-left-menu > ul, -.pytorch-right-menu > ul { - margin-bottom: 2.5rem; -} -.pytorch-left-menu a:link, -.pytorch-left-menu a:visited, -.pytorch-left-menu a:hover, -.pytorch-right-menu a:link, -.pytorch-right-menu a:visited, -.pytorch-right-menu a:hover { - color: #6c6c6d; - font-size: 0.875rem; - line-height: 1rem; - padding: 0; - text-decoration: none; -} -.pytorch-left-menu a:link.reference.internal, -.pytorch-left-menu a:visited.reference.internal, -.pytorch-left-menu a:hover.reference.internal, -.pytorch-right-menu a:link.reference.internal, -.pytorch-right-menu a:visited.reference.internal, -.pytorch-right-menu a:hover.reference.internal { - margin-bottom: 0.3125rem; - position: relative; -} -.pytorch-left-menu li code, -.pytorch-right-menu li code { - border: none; - background: inherit; - color: inherit; - padding-left: 0; - padding-right: 0; -} -.pytorch-left-menu li span.toctree-expand, -.pytorch-right-menu li span.toctree-expand { - display: block; - float: left; - margin-left: -1.2em; - font-size: 0.8em; - line-height: 1.6em; -} -.pytorch-left-menu li.on a, .pytorch-left-menu li.current > a, -.pytorch-right-menu li.on a, -.pytorch-right-menu li.current > a { - position: relative; - border: none; -} -.pytorch-left-menu li.on a span.toctree-expand, .pytorch-left-menu li.current > a span.toctree-expand, -.pytorch-right-menu li.on a span.toctree-expand, -.pytorch-right-menu li.current > a span.toctree-expand { - display: block; - font-size: 0.8em; - line-height: 1.6em; -} -.pytorch-left-menu li.toctree-l1.current > a, -.pytorch-right-menu li.toctree-l1.current > a { - color: #ee4c2c; -} -.pytorch-left-menu li.toctree-l1.current li.toctree-l2 > ul, .pytorch-left-menu li.toctree-l2.current li.toctree-l3 > ul, -.pytorch-right-menu li.toctree-l1.current li.toctree-l2 > ul, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3 > ul { - display: none; -} -.pytorch-left-menu li.toctree-l1.current li.toctree-l2.current > ul, .pytorch-left-menu li.toctree-l2.current li.toctree-l3.current > ul, -.pytorch-right-menu li.toctree-l1.current li.toctree-l2.current > ul, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3.current > ul { - display: block; -} -.pytorch-left-menu li.toctree-l2.current li.toctree-l3 > a, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3 > a { - display: block; -} -.pytorch-left-menu li.toctree-l3, -.pytorch-right-menu li.toctree-l3 { - font-size: 0.9em; -} -.pytorch-left-menu li.toctree-l3.current li.toctree-l4 > a, -.pytorch-right-menu li.toctree-l3.current li.toctree-l4 > a { - display: block; -} -.pytorch-left-menu li.toctree-l4, -.pytorch-right-menu li.toctree-l4 { - font-size: 0.9em; -} -.pytorch-left-menu li.current ul, -.pytorch-right-menu li.current ul { - display: block; -} -.pytorch-left-menu li ul, -.pytorch-right-menu li ul { - margin-bottom: 0; - display: none; -} -.pytorch-left-menu li ul li a, -.pytorch-right-menu li ul li a { - margin-bottom: 0; -} -.pytorch-left-menu a, -.pytorch-right-menu a { - display: inline-block; - position: relative; -} -.pytorch-left-menu a:hover, -.pytorch-right-menu a:hover { - cursor: pointer; -} -.pytorch-left-menu a:active, -.pytorch-right-menu a:active { - cursor: pointer; -} - -.pytorch-left-menu ul { - padding-left: 0; -} - -.pytorch-right-menu a:link, -.pytorch-right-menu a:visited, -.pytorch-right-menu a:hover { - color: #6c6c6d; -} -.pytorch-right-menu a:link span.pre, -.pytorch-right-menu a:visited span.pre, -.pytorch-right-menu a:hover span.pre { - color: #6c6c6d; -} -.pytorch-right-menu a.reference.internal.expanded:before { - content: "-"; - font-family: monospace; - position: absolute; - left: -12px; -} -.pytorch-right-menu a.reference.internal.not-expanded:before { - content: "+"; - font-family: monospace; - position: absolute; - left: -12px; -} -.pytorch-right-menu li.active > a { - color: #ee4c2c; -} -.pytorch-right-menu li.active > a span.pre, .pytorch-right-menu li.active > a:before { - color: #ee4c2c; -} -.pytorch-right-menu li.active > a:after { - content: "\2022"; - color: #e44c2c; - display: inline-block; - font-size: 1.375rem; - left: -17px; - position: absolute; - top: 1px; -} -.pytorch-right-menu .pytorch-side-scroll > ul > li > ul > li { - margin-bottom: 0; -} -.pytorch-right-menu ul ul { - padding-left: 0; -} -.pytorch-right-menu ul ul li { - padding-left: 0px; -} -.pytorch-right-menu ul ul li a.reference.internal { - padding-left: 0; -} -.pytorch-right-menu ul ul li ul { - display: none; - padding-left: 10px; -} -.pytorch-right-menu ul ul li li a.reference.internal { - padding-left: 0; -} -.pytorch-right-menu li ul { - display: block; -} - -.pytorch-right-menu .pytorch-side-scroll { - padding-top: 20px; -} -@media screen and (min-width: 1101px) { - .pytorch-right-menu .pytorch-side-scroll { - width: 120%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu .pytorch-side-scroll { - width: 400px; - } -} -.pytorch-right-menu .pytorch-side-scroll > ul { - padding-left: 10%; - padding-right: 10%; - margin-bottom: 0; -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu .pytorch-side-scroll > ul { - padding-left: 25px; - } -} -.pytorch-right-menu .pytorch-side-scroll > ul > li > a.reference.internal { - color: #262626; - font-weight: 500; -} -.pytorch-right-menu .pytorch-side-scroll ul li { - position: relative; -} - -.header-container { - max-width: none; - margin-top: 4px; -} -@media screen and (min-width: 1101px) { - .header-container { - margin-top: 0; - } -} -@media screen and (min-width: 1600px) { - .header-container { - margin-top: 0; - } -} - -.container-fluid.header-holder { - padding-right: 0; - padding-left: 0; -} - -.header-holder .container { - max-width: none; - padding-right: 1.875rem; - padding-left: 1.875rem; -} -@media screen and (min-width: 1101px) { - .header-holder .container { - padding-right: 1.875rem; - padding-left: 1.875rem; - } -} - -.header-holder .main-menu { - -webkit-box-pack: unset; - -ms-flex-pack: unset; - justify-content: unset; - position: relative; -} -@media screen and (min-width: 1101px) { - .header-holder .main-menu ul { - padding-left: 0; - margin-left: 26%; - } -} -@media screen and (min-width: 1600px) { - .header-holder .main-menu ul { - padding-left: 38px; - margin-left: 310px; - } -} - -.pytorch-page-level-bar { - display: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: #ffffff; - border-bottom: 1px solid #e2e2e2; - width: 100%; - z-index: 201; -} -@media screen and (min-width: 1101px) { - .pytorch-page-level-bar { - left: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 45px; - padding-left: 0; - width: 100%; - position: absolute; - z-index: 1; - } - .pytorch-page-level-bar.left-menu-is-fixed { - position: fixed; - top: 0; - left: 25%; - padding-left: 0; - right: 0; - width: 75%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-page-level-bar { - left: 0; - right: 0; - width: auto; - z-index: 1; - } - .pytorch-page-level-bar.left-menu-is-fixed { - left: 350px; - right: 0; - width: auto; - } -} -.pytorch-page-level-bar ul, .pytorch-page-level-bar li { - margin: 0; -} - -.pytorch-shortcuts-wrapper { - display: none; -} -@media screen and (min-width: 1101px) { - .pytorch-shortcuts-wrapper { - font-size: 0.875rem; - float: left; - margin-left: 2%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-shortcuts-wrapper { - margin-left: 1.875rem; - } -} - -.cookie-banner-wrapper { - display: none; -} -.cookie-banner-wrapper .container { - padding-left: 1.875rem; - padding-right: 1.875rem; - max-width: 1240px; -} -.cookie-banner-wrapper.is-visible { - display: block; - position: fixed; - bottom: 0; - background-color: #f3f4f7; - min-height: 100px; - width: 100%; - z-index: 401; - border-top: 3px solid #ededee; -} -.cookie-banner-wrapper .gdpr-notice { - color: #6c6c6d; - margin-top: 1.5625rem; - text-align: left; - max-width: 1440px; -} -@media screen and (min-width: 768px) { - .cookie-banner-wrapper .gdpr-notice { - width: 77%; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .cookie-banner-wrapper .gdpr-notice { - width: inherit; - } -} -.cookie-banner-wrapper .gdpr-notice .cookie-policy-link { - color: #343434; -} -.cookie-banner-wrapper .close-button { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: transparent; - border: 1px solid #f3f4f7; - height: 1.3125rem; - position: absolute; - bottom: 42px; - right: 0; - top: 0; - cursor: pointer; - outline: none; -} -@media screen and (min-width: 768px) { - .cookie-banner-wrapper .close-button { - right: 20%; - top: inherit; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .cookie-banner-wrapper .close-button { - right: 0; - top: 0; - } -} - -.main-menu ul li .ecosystem-dropdown, .main-menu ul li .resources-dropdown a { - cursor: pointer; -} -.main-menu ul li .dropdown-menu { - border-radius: 0; - padding: 0; -} -.main-menu ul li .dropdown-menu .dropdown-item { - color: #6c6c6d; - border-bottom: 1px solid #e2e2e2; -} -.main-menu ul li .dropdown-menu .dropdown-item:last-of-type { - border-bottom-color: transparent; -} -.main-menu ul li .dropdown-menu .dropdown-item:hover { - background-color: #e44c2c; -} -.main-menu ul li .dropdown-menu .dropdown-item p { - font-size: 1rem; - color: #979797; -} -.main-menu ul li .dropdown-menu a.dropdown-item:hover { - color: #ffffff; -} -.main-menu ul li .dropdown-menu a.dropdown-item:hover p { - color: #ffffff; -} - -.ecosystem-dropdown-menu, .resources-dropdown-menu { - left: -75px; - width: 226px; - display: none; - position: absolute; - top: 3.125rem; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #ffffff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.ecosystem-dropdown-menu.show-menu, .resources-dropdown-menu.show-menu { - display: block; -} - -.main-menu ul li .ecosystem-dropdown-menu, .main-menu ul li .resources-dropdown-menu { - border-radius: 0; - padding: 0; -} - -.main-menu ul li .ecosystem-dropdown-menu .dropdown-item, .main-menu ul li .resources-dropdown-menu .dropdown-item { - color: #6c6c6d; - border-bottom: 1px solid #e2e2e2; -} - -.header-holder .main-menu ul li a.nav-dropdown-item { - display: block; - font-size: 1rem; - line-height: 1.3125rem; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #979797; - text-align: center; - background-color: transparent; - border-bottom: 1px solid #e2e2e2; -} -.header-holder .main-menu ul li a.nav-dropdown-item:last-of-type { - border-bottom-color: transparent; -} -.header-holder .main-menu ul li a.nav-dropdown-item:hover { - background-color: #e44c2c; - color: white; -} -.header-holder .main-menu ul li a.nav-dropdown-item .dropdown-title { - font-size: 1.125rem; - color: #6c6c6d; - letter-spacing: 0; - line-height: 34px; -} - -.header-holder .main-menu ul li a.nav-dropdown-item:hover .dropdown-title { - background-color: #e44c2c; - color: white; -} - -/*# sourceMappingURL=theme.css.map */ \ No newline at end of file diff --git a/docs/_static/css/theme.css.map b/docs/_static/css/theme.css.map deleted file mode 100644 index 8300d6d..0000000 --- a/docs/_static/css/theme.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../scss/vendor/bootstrap/bootstrap.scss","../../../scss/vendor/bootstrap/_root.scss","theme.css","../../../scss/vendor/bootstrap/_reboot.scss","../../../scss/vendor/bootstrap/_variables.scss","../../../scss/vendor/bootstrap/mixins/_hover.scss","../../../scss/vendor/bootstrap/_type.scss","../../../scss/vendor/bootstrap/mixins/_lists.scss","../../../scss/vendor/bootstrap/_images.scss","../../../scss/vendor/bootstrap/mixins/_image.scss","../../../scss/vendor/bootstrap/mixins/_border-radius.scss","../../../scss/vendor/bootstrap/_code.scss","../../../scss/vendor/bootstrap/_grid.scss","../../../scss/vendor/bootstrap/mixins/_grid.scss","../../../scss/vendor/bootstrap/mixins/_breakpoints.scss","../../../scss/vendor/bootstrap/_functions.scss","../../../scss/vendor/bootstrap/mixins/_grid-framework.scss","../../../scss/vendor/bootstrap/_tables.scss","../../../scss/vendor/bootstrap/mixins/_table-row.scss","../../../scss/vendor/bootstrap/_forms.scss","../../../scss/vendor/bootstrap/mixins/_transition.scss","../../../scss/vendor/bootstrap/mixins/_forms.scss","../../../scss/vendor/bootstrap/mixins/_gradients.scss","../../../scss/vendor/bootstrap/_buttons.scss","../../../scss/vendor/bootstrap/mixins/_buttons.scss","../../../scss/vendor/bootstrap/_transitions.scss","../../../scss/vendor/bootstrap/_dropdown.scss","../../../scss/vendor/bootstrap/mixins/_caret.scss","../../../scss/vendor/bootstrap/mixins/_nav-divider.scss","../../../scss/vendor/bootstrap/_button-group.scss","../../../scss/vendor/bootstrap/_input-group.scss","../../../scss/vendor/bootstrap/_custom-forms.scss","../../../scss/vendor/bootstrap/_nav.scss","../../../scss/vendor/bootstrap/_navbar.scss","../../../scss/vendor/bootstrap/_card.scss","../../../scss/vendor/bootstrap/_breadcrumb.scss","../../../scss/vendor/bootstrap/_pagination.scss","../../../scss/vendor/bootstrap/mixins/_pagination.scss","../../../scss/vendor/bootstrap/_badge.scss","../../../scss/vendor/bootstrap/mixins/_badge.scss","../../../scss/vendor/bootstrap/_jumbotron.scss","../../../scss/vendor/bootstrap/_alert.scss","../../../scss/vendor/bootstrap/mixins/_alert.scss","../../../scss/vendor/bootstrap/_progress.scss","../../../scss/vendor/bootstrap/_media.scss","../../../scss/vendor/bootstrap/_list-group.scss","../../../scss/vendor/bootstrap/mixins/_list-group.scss","../../../scss/vendor/bootstrap/_close.scss","../../../scss/vendor/bootstrap/_modal.scss","../../../scss/vendor/bootstrap/_tooltip.scss","../../../scss/vendor/bootstrap/mixins/_reset-text.scss","../../../scss/vendor/bootstrap/_popover.scss","../../../scss/vendor/bootstrap/_carousel.scss","../../../scss/vendor/bootstrap/utilities/_align.scss","../../../scss/vendor/bootstrap/mixins/_background-variant.scss","../../../scss/vendor/bootstrap/utilities/_background.scss","../../../scss/vendor/bootstrap/utilities/_borders.scss","../../../scss/vendor/bootstrap/mixins/_clearfix.scss","../../../scss/vendor/bootstrap/utilities/_display.scss","../../../scss/vendor/bootstrap/utilities/_embed.scss","../../../scss/vendor/bootstrap/utilities/_flex.scss","../../../scss/vendor/bootstrap/utilities/_float.scss","../../../scss/vendor/bootstrap/mixins/_float.scss","../../../scss/vendor/bootstrap/utilities/_position.scss","../../../scss/vendor/bootstrap/utilities/_screenreaders.scss","../../../scss/vendor/bootstrap/mixins/_screen-reader.scss","../../../scss/vendor/bootstrap/utilities/_sizing.scss","../../../scss/vendor/bootstrap/utilities/_spacing.scss","../../../scss/vendor/bootstrap/utilities/_text.scss","../../../scss/vendor/bootstrap/mixins/_text-truncate.scss","../../../scss/vendor/bootstrap/mixins/_text-emphasis.scss","../../../scss/vendor/bootstrap/mixins/_text-hide.scss","../../../scss/vendor/bootstrap/utilities/_visibility.scss","../../../scss/vendor/bootstrap/mixins/_visibility.scss","../../../scss/vendor/bootstrap/_print.scss","../../../scss/shared/_syntax-highlighting.scss","../../../scss/shared/_fonts.scss","../../../scss/shared/_base_styles.scss","../../../scss/shared/_variables.scss","../../../scss/shared/_code.scss","../../../scss/shared/_navigation.scss","../../../scss/shared/_footer.scss","../../../scss/shared/_article.scss","../../../scss/_sphinx_base.scss","../../../scss/_sphinx_layout.scss"],"names":[],"mappings":"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Cd,oBAAmB;CD3GpB;;AC8GD;EACE,yBAAwB;CD3GzB;;AC+GD;;EAEE,aAAY;CD5Gb;;AC+GD;EAKE,qBAAoB;EACpB,yBAAwB;CDhHzB;;ACuHD;;EAEE,yBAAwB;CDpHzB;;AC4HD;EACE,cAAa;EACb,2BAA0B;CDzH3B;;ACgID;EACE,sBAAqB;CD7HtB;;ACgID;EACE,mBAAkB;EAClB,gBAAe;CD7HhB;;ACgID;EACE,cAAa;CD7Hd;;ACkID;EACE,yBAAwB;CD/HzB;;AI3VD;;EAEE,sBFmPwC;EElPxC,qBFmPmC;EElPnC,iBFmP+B;EElP/B,iBFmP+B;EElP/B,eForBiD;CFtVlD;;AI3VD;EAAU,kBFqOyC;CF0HlD;;AI9VD;EAAU,gBFqOuC;CF6HhD;;AIjWD;EAAU,mBFqO0C;CFgInD;;AIpWD;EAAU,kBFqOyC;CFmIlD;;AIvWD;EAAU,mBFqO0C;CFsInD;;AI1WD;EAAU,gBFqOmC;CFyI5C;;AI5WD;EACE,mBFqPmD;EEpPnD,iBFqP+B;CF0HhC;;AI3WD;EACE,gBFoOgC;EEnOhC,iBFwO+B;EEvO/B,iBF2OiD;CFmIlD;;AI5WD;EACE,kBFgOkC;EE/NlC,iBFoO+B;EEnO/B,iBFsOiD;CFyIlD;;AI7WD;EACE,kBF4NkC;EE3NlC,iBFgO+B;EE/N/B,iBFiOiD;CF+IlD;;AI9WD;EACE,kBFwNkC;EEvNlC,iBF4N+B;EE3N/B,iBF4NiD;CFqJlD;;AIzWD;EACE,iBF6OmC;EE5OnC,oBF4OmC;EE3OnC,UAAS;EACT,yCAAmD;CJ4WpD;;AIpWD;;EAEE,eF2M+B;EE1M/B,iBFyK+B;CF8LhC;;AIpWD;;EAEE,eF+MgC;EE9MhC,0BFuNmC;CFgJpC;;AI/VD;EC/EE,gBAAe;EACf,iBAAgB;CLkbjB;;AI/VD;ECpFE,gBAAe;EACf,iBAAgB;CLubjB;;AIjWD;EACE,sBAAqB;CJoWtB;AIlWC;EACE,qBFiM+B;CFmKlC;;AI1VD;EACE,eAAc;EACd,0BAAyB;CJ6V1B;;AIzVD;EACE,oBFKW;EEJX,mBFmKmD;CFyLpD;;AIzVD;EACE,eAAc;EACd,eAAc;EACd,eFotB2C;CFxX5C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AwB,8BAAS;QAAT,kBAAS;YAAT,SAAS;Gdo3CtC;;Ecp3CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdw3CtC;;Ecx3CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gd43CtC;;Ec53CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdg4CtC;;Ec13CO;IHTR,eAA4B;GXu4C3B;;Ec93CO;IHTR,2BAA+C;GX24C9C;;Ecl4CO;IHTR,4BAA+C;GX+4C9C;;Ect4CO;IHTR,iBAA+C;GXm5C9C;;Ec14CO;IHTR,4BAA+C;GXu5C9C;;Ec94CO;IHTR,4BAA+C;GX25C9C;;Ecl5CO;IHTR,iBAA+C;GX+5C9C;;Ect5CO;IHTR,4BAA+C;GXm6C9C;;Ec15CO;IHTR,4BAA+C;GXu6C9C;;Ec95CO;IHTR,iBAA+C;GX26C9C;;Ecl6CO;IHTR,4BAA+C;GX+6C9C;;Ect6CO;IHTR,4BAA+C;GXm7C9C;CACF;Ael+CD;EACE,YAAW;EACX,gBAAe;EACf,oBb8GW;Ea7GX,8BbsSuC;CF8rCxC;Ael+CC;;EAEE,iBb+RgC;Ea9RhC,oBAAmB;EACnB,8BAAyD;Cfo+C5D;Aej+CC;EACE,uBAAsB;EACtB,iCAAkE;Cfm+CrE;Aeh+CC;EACE,8BAA+D;Cfk+ClE;Ae/9CC;EACE,uBby1BsC;CFwoBzC;;Aev9CC;;EAEE,gBbqQ+B;CFqtClC;;Aej9CD;EACE,0BAAqD;Cfo9CtD;Ael9CC;;EAEE,0BAAqD;Cfo9CxD;Aeh9CG;;EAEE,yBAA8C;Cfk9CnD;;Aev8CC;EACE,sCbwO2C;CFkuC9C;;AGngDC;EYqEI,uCb8NuC;CFouC5C;;AgB/gDG;;;EAGE,0BAA6B;ChBkhDlC;;AG7gDC;EaMM,0BAJsC;ChB+gD7C;AgBzgDO;;EAEE,0BARoC;ChBmhD7C;;AgB7hDG;;;EAGE,0BAA6B;ChBgiDlC;;AG3hDC;EaMM,0BAJsC;ChB6hD7C;AgBvhDO;;EAEE,0BARoC;ChBiiD7C;;AgB3iDG;;;EAGE,0BAA6B;ChB8iDlC;;AGziDC;EaMM,0BAJsC;ChB2iD7C;AgBriDO;;EAEE,0BARoC;ChB+iD7C;;AgBzjDG;;;EAGE,0BAA6B;ChB4jDlC;;AGvjDC;EaMM,0BAJsC;ChByjD7C;AgBnjDO;;EAEE,0BARoC;ChB6jD7C;;AgBvkDG;;;EAGE,0BAA6B;ChB0kDlC;;AGrkDC;EaMM,0BAJsC;ChBukD7C;AgBjkDO;;EAEE,0BARoC;ChB2kD7C;;AgBrlDG;;;EAGE,0BAA6B;ChBwlDlC;;AGnlDC;EaMM,0BAJsC;ChBqlD7C;AgB/kDO;;EAEE,0BARoC;ChBylD7C;;AgBnmDG;;;EAGE,0BAA6B;ChBsmDlC;;AGjmDC;EaMM,0BAJsC;ChBmmD7C;AgB7lDO;;EAEE,0BARoC;ChBumD7C;;AgBjnDG;;;EAGE,0BAA6B;ChBonDlC;;AG/mDC;EaMM,0BAJsC;ChBinD7C;AgB3mDO;;EAEE,0BARoC;ChBqnD7C;;AgB/nDG;;;EAGE,uCdwSuC;CF01C5C;;AG7nDC;EaMM,uCAJsC;ChB+nD7C;AgBznDO;;EAEE,uCARoC;ChBmoD7C;;AeviDG;EACE,YbuwBoC;EatwBpC,0BbywBuC;EaxwBvC,sBb6MgD;CF61CrD;AeriDG;EACE,ebsrBsD;EarrBtD,0BbmtBuC;EaltBvC,sBb+rBuC;CFw2B5C;;AeliDD;EACE,YbuvBwC;EatvBxC,0BbyvB2C;CF4yB5C;AeniDC;;;EAGE,sBbyLkD;CF42CrD;AeliDC;EACE,UAAS;CfoiDZ;AehiDG;EACE,4Cb8KyC;CFo3C9C;AGhqDC;EYqIM,6CbwKwC;CFs3C/C;;AYxmDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GfghDjD;Ee7gDK;IACE,UAAS;Gf+gDhB;CACF;AYrnDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;Gf4hDjD;EezhDK;IACE,UAAS;Gf2hDhB;CACF;AYjoDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GfwiDjD;EeriDK;IACE,UAAS;GfuiDhB;CACF;AY7oDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;I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BAAsB;CrB4nEzB;;AqBlnED;;EAEE,qBAAoB;CrBqnErB;;AqB5mEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbimEjC;AGnqEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBwqE9B;AsBrqEC;EAMI,wDAAoD;UAApD,gDAAoD;CtBkqEzD;AsB7pEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb8mEjC;AsB3pEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBwpE/B;AsBtpEG;EAKI,wDAAoD;UAApD,gDAAoD;CtBopE3D;;AqBvoEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;Cb4nEjC;AG9rEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBmsE9B;AsBhsEC;EAMI,0DAAoD;UAApD,kDAAoD;CtB6rEzD;AsBxrEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CbyoEjC;AsBtrEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBmrE/B;AsBjrEG;EAKI,0DAAoD;UAApD,kDAAoD;CtB+qE3D;;AqBlqEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbupEjC;AGztEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtB8tE9B;AsB3tEC;EAMI,wDAAoD;UAApD,gDAAoD;CtBwtEzD;AsBntEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CboqEjC;AsBjtEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtB8sE/B;AsB5sEG;EAKI,wDAAoD;UAApD,gDAAoD;CtB0sE3D;;AqB7rEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbkrEjC;AGpvEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtByvE9B;AsBtvEC;EAMI,yDAAoD;UAApD,iDAAoD;CtBmvEzD;AsB9uEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb+rEjC;AsB5uEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtByuE/B;AsBvuEG;EAKI,yDAAoD;UAApD,iDAAoD;CtBquE3D;;AqBxtEC;ECzDA,epBi3B2C;EkBj3BzC,0BP0E8B;ESxEhC,sBTwEgC;Cb6sEjC;AG/wEC;EmBFE,epB22ByC;EkBj3BzC,0BAAwB;EEQxB,sBAA2B;CtBoxE9B;AsBjxEC;EAMI,wDAAoD;UAApD,gDAAoD;CtB8wEzD;AsBzwEC;EAEE,epBy1ByC;EoBx1BzC,0BTiD8B;EShD9B,sBTgD8B;Cb0tEjC;AsBvwEC;EAGE,epBi1ByC;EoBh1BzC,0BAAoC;EAIpC,sBAA4B;CtBowE/B;AsBlwEG;EAKI,wDAAoD;UAApD,gDAAoD;CtBgwE3D;;AqBnvEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbwuEjC;AG1yEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtB+yE9B;AsB5yEC;EAMI,wDAAoD;UAApD,gDAAoD;CtByyEzD;AsBpyEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CbqvEjC;AsBlyEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtB+xE/B;AsB7xEG;EAKI,wDAAoD;UAApD,gDAAoD;CtB2xE3D;;AqB9wEC;ECzDA,epBi3B2C;EkBj3BzC,0BP0E8B;ESxEhC,sBTwEgC;CbmwEjC;AGr0EC;EmBFE,epB22ByC;EkBj3BzC,0BAAwB;EEQxB,sBAA2B;CtB00E9B;AsBv0EC;EAMI,0DAAoD;UAApD,kDAAoD;CtBo0EzD;AsB/zEC;EAEE,epBy1ByC;EoBx1BzC,0BTiD8B;EShD9B,sBTgD8B;CbgxEjC;AsB7zEC;EAGE,epBi1ByC;EoBh1BzC,0BAAoC;EAIpC,sBAA4B;CtB0zE/B;AsBxzEG;EAKI,0DAAoD;UAApD,kDAAoD;CtBszE3D;;AqBzyEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;Cb8xEjC;AGh2EC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBq2E9B;AsBl2EC;EAMI,uDAAoD;UAApD,+CAAoD;CtB+1EzD;AsB11EC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb2yEjC;AsBx1EC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBq1E/B;AsBn1EG;EAKI,uDAAoD;UAApD,+CAAoD;CtBi1E3D;;AqB9zEC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb0zEjC;AsB50EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb+zEjC;AsB30EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtB40EtD;AsBz0EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB00EhC;AsBv0EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cb20EjC;AsBr0EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtBm0E1D;;AqBz1EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbq1EjC;AsBv2EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb01EjC;AsBt2EC;EAEE,0DAAmD;UAAnD,kDAAmD;CtBu2EtD;AsBp2EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBq2EhC;AsBl2EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbs2EjC;AsBh2EG;EAKI,0DAAmD;UAAnD,kDAAmD;CtB81E1D;;AqBp3EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbg3EjC;AsBl4EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbq3EjC;AsBj4EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBk4EtD;AsB/3EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBg4EhC;AsB73EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbi4EjC;AsB33EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtBy3E1D;;AqB/4EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb24EjC;AsB75EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbg5EjC;AsB55EC;EAEE,yDAAmD;UAAnD,iDAAmD;CtB65EtD;AsB15EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB25EhC;AsBx5EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cb45EjC;AsBt5EG;EAKI,yDAAmD;UAAnD,iDAAmD;CtBo5E1D;;AqB16EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbs6EjC;AsBx7EC;EACE,epBwzByC;EoBvzBzC,0BTgB8B;ESf9B,sBTe8B;Cb26EjC;AsBv7EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBw7EtD;AsBr7EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBs7EhC;AsBn7EC;EAGE,epBqyByC;EoBpyBzC,0BTH8B;ESI9B,sBTJ8B;Cbu7EjC;AsBj7EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtB+6E1D;;AqBr8EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbi8EjC;AsBn9EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbs8EjC;AsBl9EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBm9EtD;AsBh9EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBi9EhC;AsB98EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbk9EjC;AsB58EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtB08E1D;;AqBh+EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb49EjC;AsB9+EC;EACE,epBwzByC;EoBvzBzC,0BTgB8B;ESf9B,sBTe8B;Cbi+EjC;AsB7+EC;EAEE,0DAAmD;UAAnD,kDAAmD;CtB8+EtD;AsB3+EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB4+EhC;AsBz+EC;EAGE,epBqyByC;EoBpyBzC,0BTH8B;ESI9B,sBTJ8B;Cb6+EjC;AsBv+EG;EAKI,0DAAmD;UAAnD,kDAAmD;CtBq+E1D;;AqB3/EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbu/EjC;AsBzgFC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb4/EjC;AsBxgFC;EAEE,uDAAmD;UAAnD,+CAAmD;CtBygFtD;AsBtgFC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBugFhC;AsBpgFC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;CbwgFjC;AsBlgFG;EAKI,uDAAmD;UAAnD,+CAAmD;CtBggF1D;;AqB3gFD;EACE,iBnB6J+B;EmB5J/B,eRFgC;EQGhC,8BAA6B;CrB8gF9B;AGnlFC;EkBwEE,enBsiBiD;EmBriBjD,2BnBiEiC;EmBhEjC,8BAA6B;EAC7B,0BAAyB;CrB8gF5B;AqB3gFC;EAEE,2BnB0DiC;EmBzDjC,0BAAyB;EACzB,yBAAgB;UAAhB,iBAAgB;CrB4gFnB;AqBzgFC;EAEE,eRrB8B;Cb+hFjC;;AqB//ED;ECbE,qBAA8B;EAC9B,mBpBsf+C;EoBrf/C,iBpBmS+D;EoBhS7D,sBpB8Q2C;CFgwE9C;;AqBlgFD;ECjBE,wBAA8B;EAC9B,oBpBmlB+C;EoBllB/C,iBpB+R+D;EoB5R7D,sBpB+Q2C;CFswE9C;;AqBhgFD;EACE,eAAc;EACd,YAAW;CrBmgFZ;AqBhgFC;EACE,mBnB+O+B;CFmxElC;;AqB1/EC;;;EACE,YAAW;CrB+/Ed;;AuBzoFD;EACE,WAAU;ELEN,yCAAuB;EAAvB,iCAAuB;ClB2oF5B;AuB1oFC;EACE,WAAU;CvB4oFb;;AuBxoFD;EACE,cAAa;CvB2oFd;AuB1oFC;EACE,eAAc;CvB4oFjB;;AuBvoFC;EACE,mBAAkB;CvB0oFrB;;AuBroFC;EACE,yBAAwB;CvBwoF3B;;AuBpoFD;EACE,mBAAkB;EAClB,UAAS;EACT,iBAAgB;EL5BZ,sCAAuB;EAAvB,8BAAuB;ClBoqF5B;;AwBxqFD;;EAEE,mBAAkB;CxB2qFnB;;AyBlpFG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAjCf,wBAA8B;EAC9B,sCAA4C;EAC5C,iBAAgB;EAChB,qCAA2C;CzBurF5C;AyB/nFG;EACE,eAAc;CzBioFnB;;AwBlrFD;EACE,mBAAkB;EAClB,UAAS;EACT,QAAO;EACP,ctBiiBsC;EsBhiBtC,cAAa;EACb,YAAW;EACX,iBtBggBuC;EsB/fvC,kBAA8B;EAC9B,qBAA4B;EAC5B,gBtBmNgC;EsBlNhC,etBg2B2C;EsB/1B3C,iBAAgB;EAChB,iBAAgB;EAChB,uBtB01BwC;EsBz1BxC,6BAA4B;EAC5B,sCAA2D;EhBxBzD,uBNohB8C;CF0rEjD;;AwB9qFC;EACE,cAAa;EACb,wBtB+euC;CFksE1C;AyB3rFG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EA1Bf,cAAa;EACb,sCAA4C;EAC5C,2BAAiC;EACjC,qCAA2C;CzBwtF5C;AyBvqFG;EACE,eAAc;CzByqFnB;;AwBvrFC;EACE,cAAa;EACb,sBtBoeuC;CFstE1C;AyB/sFG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAnBf,oCAA0C;EAC1C,uCAA6C;EAC7C,yBAA+B;CzBquFhC;AyB1rFG;EACE,eAAc;CzB4rFnB;AwBnsFG;EACE,kBAAiB;CxBqsFtB;;AwB/rFC;EACE,cAAa;EACb,uBtBsduC;CF4uE1C;AyBruFG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;CzBuuFhB;AyB5tFK;EACE,cAAa;CzB8tFpB;AyB3tFK;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,sBAAgC;EAChC,wBAAkC;EAClC,YAAW;EAlCjB,oCAA0C;EAC1C,0BAAgC;EAChC,uCAA6C;CzBgwF9C;AyB3tFG;EACE,eAAc;CzB6tFnB;AwBttFG;EACE,kBAAiB;CxBwtFtB;;AwBltFD;EEtEE,UAAS;EACT,iBAAuB;EACvB,iBAAgB;EAChB,8BAA4B;C1B4xF7B;;AwBltFD;EACE,eAAc;EACd,YAAW;EACX,wBAA0D;EAC1D,YAAW;EACX,iBtBuJ+B;EsBtJ/B,etB+xB2C;EsB9xB3C,oBAAmB;EACnB,oBAAmB;EACnB,8BAA6B;EAC7B,UAAS;CxBqtFV;AG/xFC;EqB6EE,etB+bqD;EsB9brD,sBAAqB;EJ1FrB,0BP0E8B;CbsuFjC;AwBltFC;EAEE,YtB8wBsC;EsB7wBtC,sBAAqB;EJjGrB,0BP0E8B;Cb2uFjC;AwBhtFC;EAEE,eX7B8B;EW8B9B,8BAA6B;CxBitFhC;;AwBzsFD;EACE,eAAc;CxB4sFf;;AwBxsFD;EACE,eAAc;EACd,uBAAqD;EACrD,iBAAgB;EAChB,oBtBwjB+C;EsBvjB/C,eXhDgC;EWiDhC,oBAAmB;CxB2sFpB;;A2Bz0FD;;EAEE,mBAAkB;EAClB,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,uBAAsB;C3B40FvB;A2B10FC;;EACE,mBAAkB;EAClB,oBAAc;MAAd,mBAAc;UAAd,eAAc;C3B60FjB;AG10FC;;EwBEI,WAAU;C3B40Ff;A2B10FG;;;;EAGE,WAAU;C3B60Ff;A2Bx0FC;;;;;;;;EAIE,kBAA+B;C3B80FlC;;A2Bz0FD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;MAAf,gBAAe;EACf,wBAA2B;MAA3B,qBAA2B;UAA3B,4BAA2B;C3B40F5B;A2B10FC;EACE,YAAW;C3B40Fd;;A2Bv0FC;EACE,eAAc;C3B00FjB;A2Bt0FC;;EnBlCE,2BmBoC8B;EnBnC9B,8BmBmC8B;C3By0FjC;A2Bt0FC;;EnBzBE,0BmB2B6B;EnB1B7B,6BmB0B6B;C3By0FhC;;A2BzzFD;EACE,yBAAmC;EACnC,wBAAkC;C3B4zFnC;A2B1zFC;EACE,eAAc;C3B4zFjB;;A2BxzFD;EACE,wBAAsC;EACtC,uBAAqC;C3B2zFtC;;A2BxzFD;EACE,uBAAsC;EACtC,sBAAqC;C3B2zFtC;;A2BvyFD;EACE,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EACtB,yBAAuB;MAAvB,sBAAuB;UAAvB,wBAAuB;EACvB,yBAAuB;MAAvB,sBAAuB;UAAvB,wBAAuB;C3B0yFxB;A2BxyFC;;EAEE,YAAW;C3B0yFd;A2BvyFC;;;;EAIE,iBAA8B;EAC9B,eAAc;C3ByyFjB;A2BryFC;;EnBzGE,8BmB2G+B;EnB1G/B,6BmB0G+B;C3BwyFlC;A2BryFC;;EnB5HE,0BmB8H4B;EnB7H5B,2BmB6H4B;C3BwyF/B;;A2BtxFC;;EAEE,iBAAgB;C3ByxFnB;A2BvxFG;;;;EAEE,mBAAkB;EAClB,uBAAsB;EACtB,qBAAoB;C3B2xFzB;;A4Bv7FD;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;MAAf,gBAAe;EACf,2BAAoB;MAApB,wBAAoB;UAApB,qBAAoB;EACpB,YAAW;C5B07FZ;A4Bx7FC;;;EAGE,mBAAkB;EAClB,oBAAc;MAAd,mBAAc;UAAd,eAAc;EAGd,UAAS;EACT,iBAAgB;C5Bw7FnB;A4Br7FG;;;EACE,WAAU;C5By7Ff;A4Bt7FG;;;;;;;;;EAGE,kBAAiC;C5B87FtC;A4Bx7FG;;EpBpBA,2BoBoBmD;EpBnBnD,8BoBmBmD;C5B67FtD;A4B57FG;;EpBPA,0BoBOmD;EpBNnD,6BoBMmD;C5Bi8FtD;A4B57FC;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;MAAnB,uBAAmB;UAAnB,oBAAmB;C5B87FtB;A4B57FG;EpB9BA,2BoB+B8E;EpB9B9E,8BoB8B8E;C5B+7FjF;A4B97FG;EpBlBA,0BoBmB8E;EpBlB9E,6BoBkB8E;C5Bi8FjF;;A4Bt7FD;;EAEE,qBAAa;EAAb,qBAAa;EAAb,cAAa;C5By7Fd;A4Bp7FC;;EACE,mBAAkB;EAClB,WAAU;C5Bu7Fb;A4Bp7FC;;;;;;;;EAIE,kBAAiC;C5B07FpC;;A4Bt7FD;EAAuB,mBAAkC;C5B07FxD;;A4Bz7FD;EAAsB,kBAAiC;C5B67FtD;;A4Br7FD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;MAAnB,uBAAmB;UAAnB,oBAAmB;EACnB,0BAA0C;EAC1C,iBAAgB;EAChB,gB1B0IgC;E0BzIhC,iB1B8I+B;E0B7I/B,iB1ByZwD;E0BxZxD,e1BysB0D;E0BxsB1D,mBAAkB;EAClB,oBAAmB;EACnB,0B1BouB2C;E0BnuB3C,0BAAiE;EpBlG/D,uBN2foD;CFgiFvD;A4Br7FC;;EAEE,cAAa;C5Bu7FhB;;A4Br5FD;;;;;;EpB7HI,2BoBmI4B;EpBlI5B,8BoBkI4B;C5By5F/B;;A4Bt5FD;;;;;;EpBxHI,0BoB8H2B;EpB7H3B,6BoB6H2B;C5B05F9B;;A6B9iGD;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAsC;EACtC,qB3B6a4C;CFooF7C;;A6B9iGD;EACE,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,mB3Bya0C;CFwoF3C;;A6B9iGD;EACE,mBAAkB;EAClB,YAAW;EACX,WAAU;C7BijGX;A6B/iGC;EACE,Y3By1BsC;EkB92BtC,0BP0E8B;Cb6/FjC;A6B7iGC;EAEE,yE3Bwa2F;U2Bxa3F,iE3Bwa2F;CFsoF9F;A6B3iGC;EACE,Y3B80BsC;E2B70BtC,0B3Bsa8E;CFuoFjF;A6BxiGG;EACE,ehBmC4B;CbugGjC;A6BxiGK;EACE,0B3ByxBqC;CFixE5C;;A6BhiGD;EACE,iBAAgB;C7BmiGjB;A6BhiGC;EACE,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B0XwC;E2BzXxC,a3ByXwC;E2BxXxC,qBAAoB;EACpB,YAAW;EACX,0BAAiB;KAAjB,uBAAiB;MAAjB,sBAAiB;UAAjB,kBAAiB;EACjB,0B3B8uByC;CFozE5C;A6B7hGC;EACE,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B2WwC;E2B1WxC,a3B0WwC;E2BzWxC,YAAW;EACX,6BAA4B;EAC5B,mCAAkC;EAClC,yB3BwW4C;CFurF/C;;A6BrhGC;ErB7FE,uBN4c0D;CF0qF7D;A6BphGG;EThGA,0BP0E8B;Cb6iGjC;A6BphGG;EACE,2N3BuW+S;CF+qFpT;A6BjhGG;ETzGA,0BP0E8B;CbmjGjC;A6BhhGG;EACE,wK3BiWmQ;CFirFxQ;A6B7gGG;EACE,yC3B6U0E;CFksF/E;A6B7gGG;EACE,yC3B0U0E;CFqsF/E;;A6BrgGC;EACE,mB3BgV+C;CFwrFlD;A6BpgGG;ETtIA,0BP0E8B;CbmkGjC;A6BpgGG;EACE,qK3ByUyP;CF6rF9P;A6BjgGG;EACE,yC3BiT0E;CFktF/E;;A6Bv/FD;EACE,sBAAqB;EACrB,YAAW;EACX,4B3B+U+C;E2B9U/C,2CAAiJ;EACjJ,iB3BmVwD;E2BlVxD,e3BmoB0D;E2BloB1D,uBAAsB;EACtB,uNAAsG;EACtG,0B3ByT2C;E2BxT3C,0BAAqE;EAEnE,uB3B2T8C;E2BvThD,yBAAgB;KAAhB,sBAAgB;UAAhB,iBAAgB;C7Bs/FjB;A6Bp/FC;EACE,sB3BgUyD;E2B/TzD,WAAU;EACV,2F3BqTwH;U2BrTxH,mF3BqTwH;CFisF3H;A6Bp/FG;EAME,e3B4mBsD;E2B3mBtD,uB3BorBoC;CF6zEzC;A6B7+FC;EAEE,aAAY;EACZ,uB3BqRqC;E2BpRrC,uBAAsB;C7B8+FzB;A6B3+FC;EACE,ehB5H8B;EgB6H9B,0B3B4nByC;CFi3E5C;A6Bz+FC;EACE,WAAU;C7B2+Fb;;A6Bv+FD;EACE,8B3BwRkD;E2BvRlD,sB3BmQyC;E2BlQzC,yB3BkQyC;E2BjQzC,e3BoRqC;CFstFtC;;A6Bv+FD;EACE,6B3BoRkD;E2BnRlD,sB3B4PyC;E2B3PzC,yB3B2PyC;E2B1PzC,gB3BgRsC;CF0tFvC;;A6Bl+FD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,YAAW;EACX,4B3BuQ+C;E2BtQ/C,iBAAgB;C7Bq+FjB;;A6Bl+FD;EACE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,4B3B+P+C;E2B9P/C,UAAS;EACT,WAAU;C7Bq+FX;A6Bn+FC;EACE,sB3B2PyD;E2B1PzD,yD3B+X2D;U2B/X3D,iD3B+X2D;CFsmF9D;A6Bn+FG;EACE,sB3BuPuD;CF8uF5D;A6Bh+FG;EACE,kB3BgQQ;CFkuFb;;A6B79FD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,QAAO;EACP,WAAU;EACV,4B3BqO+C;E2BpO/C,0BAAsD;EACtD,iB3By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B;EAAxB,gCAAwB;EAAxB,yBAAwB;EAGxB,8BAAgB;MAAhB,iBAAgB;C/Bm7GzB;A+Bh7GO;EACE,cAAa;C/Bk7GtB;A+B96GS;EACE,UAAS;EACT,aAAY;C/Bg7GvB;;A+Bj6GC;EACE,0B7BmZgD;CFihGnD;AGrmHC;E4BoMI,0B7BgZ8C;CFohGnD;A+B/5GG;EACE,0B7BwY8C;CFyhGnD;AG3mHC;E4B6MM,0B7BsY4C;CF2hGnD;A+B95GK;EACE,0B7BoY4C;CF4hGnD;A+B55GG;;;;EAIE,0B7B2X8C;CFmiGnD;A+B15GC;EACE,0B7BoXgD;E6BnXhD,iC7BwXgD;CFoiGnD;A+Bz5GC;EACE,sQ7BmXgT;CFwiGnT;A+Bx5GC;EACE,0B7B2WgD;CF+iGnD;A+Bz5GG;EACE,0B7B2W8C;CFgjGnD;AGpoHC;E4B4OM,0B7BwW4C;CFmjGnD;;A+Bn5GC;EACE,Y7B6mBsC;CFyyFzC;AG3oHC;E4BwPI,Y7B0mBoC;CF4yFzC;A+Bj5GG;EACE,gC7B6U8C;CFskGnD;AGjpHC;E4BiQM,iC7B2U6C;CFwkGpD;A+Bh5GK;EACE,iC7ByU6C;CFykGpD;A+B94GG;;;;EAIE,Y7BqlBoC;CF2zFzC;A+B54GC;EACE,gC7ByTgD;E6BxThD,uC7B6TgD;CFilGnD;A+B34GC;EACE,4Q7BwT+S;CFqlGlT;A+B14GC;EACE,gC7BgTgD;CF4lGnD;A+B34GG;EACE,Y7BqkBoC;CFw0FzC;AG1qHC;E4BgSM,Y7BkkBkC;CF20FzC;;AgC3rHD;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EACtB,aAAY;EACZ,sBAAqB;EACrB,uB9B02BwC;E8Bz2BxC,4BAA2B;EAC3B,uCAAmD;ExBRjD,uBNgpB8C;CFujGjD;AgC5rHC;EACE,gBAAe;EACf,eAAc;ChC8rHjB;AgC1rHG;ExBXA,gCN0oB8C;EMzoB9C,iCNyoB8C;CF+jGjD;AgCxrHG;ExBHA,oCN4nB8C;EM3nB9C,mCN2nB8C;CFmkGjD;;AgCtrHD;EAGE,oBAAc;MAAd,mBAAc;UAAd,eAAc;EACd,iB9B6mByC;CF0kG1C;;AgCprHD;EACE,uB9BwmBwC;CF+kGzC;;AgCprHD;EACE,sBAAiC;EACjC,iBAAgB;ChCurHjB;;AgCprHD;EACE,iBAAgB;ChCurHjB;;AG3tHC;E6ByCE,sBAAqB;ChCsrHxB;AgCnrHC;EACE,qB9BulBuC;CF8lG1C;;AgC7qHD;EACE,yBAAsC;EACtC,iBAAgB;EAChB,sC9BilBmD;E8BhlBnD,8CAA0D;ChCgrH3D;AgC9qHC;ExBrEE,2DwBsE8E;ChCgrHjF;AgC5qHG;EACE,cAAa;ChC8qHlB;;AgCzqHD;EACE,yBAAsC;EACtC,sC9BikBmD;E8BhkBnD,2CAAuD;ChC4qHxD;AgC1qHC;ExBrFE,2DwBsF8E;ChC4qHjF;;AgCnqHD;EACE,wBAAmC;EACnC,wBAA8B;EAC9B,uBAAkC;EAClC,iBAAgB;ChCsqHjB;;AgCnqHD;EACE,wBAAmC;EACnC,uBAAkC;ChCsqHnC;;AgClqHD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,iB9BoiByC;CFioG1C;;AgClqHD;EACE,YAAW;ExBtHT,mCNkpBqF;CF0oGxF;;AgCjqHD;EACE,YAAW;ExBtHT,4CN4oBqF;EM3oBrF,6CN2oBqF;CFgpGxF;;AgClqHD;EACE,YAAW;ExB7GT,gDN8nBqF;EM7nBrF,+CN6nBqF;CFspGxF;;AgChqHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;ChCmqHvB;AgCjqHC;EACE,oB9B4gBkD;CFupGrD;AYxvHG;EoBgFJ;IASI,+BAAmB;IAAnB,8BAAmB;QAAnB,wBAAmB;YAAnB,oBAAmB;IACnB,oBAAgC;IAChC,mBAA+B;GhCmqHhC;EgCjqHC;IACE,qBAAa;IAAb,qBAAa;IAAb,cAAa;IAEb,oBAAY;QAAZ,iBAAY;YAAZ,aAAY;IACZ,6BAAsB;IAAtB,8BAAsB;QAAtB,2BAAsB;YAAtB,uBAAsB;IACtB,mB9B+fgD;I8B9fhD,iBAAgB;IAChB,kB9B6fgD;GFqqGnD;CACF;;AgCzpHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;ChC4pHvB;AgCxpHC;EACE,oB9B4ekD;CF8qGrD;AY/wHG;EoB8GJ;IAWI,+BAAmB;IAAnB,8BAAmB;QAAnB,wBAAmB;YAAnB,oBAAmB;GhC0pHpB;EgCvpHC;IAEE,oBAAY;QAAZ,iBAAY;YAAZ,aAAY;IACZ,iBAAgB;GhCwpHnB;EgCtpHG;IACE,eAAc;IACd,eAAc;GhCwpHnB;EgCnpHK;IxBnLJ,2BwBoLoC;IxBnLpC,8BwBmLoC;GhCspHrC;EgCppHO;;IAEE,2BAA0B;GhCspHnC;EgCppHO;;IAEE,8BAA6B;GhCspHtC;EgClpHK;IxBlLJ,0BwBmLmC;IxBlLnC,6BwBkLmC;GhCqpHpC;EgCnpHO;;IAEE,0BAAyB;GhCqpHlC;EgCnpHO;;IAEE,6BAA4B;GhCqpHrC;EgCjpHK;IxB1NJ,uBNgpB8C;GF8tG/C;EgCjpHO;;IxBvNN,gCN0oB8C;IMzoB9C,iCNyoB8C;GFmuG/C;EgClpHO;;IxB7MN,oCN4nB8C;IM3nB9C,mCN2nB8C;GFwuG/C;EgCjpHK;IxBvOJ,iBwBwO8B;GhCmpH/B;EgCjpHO;;;;IxB1ON,iBwB8OgC;GhCmpHjC;CACF;;AgCtoHC;EACE,uB9Bga8C;CFyuGjD;AY90HG;EoBmMJ;IAMI,wB9B0ZiC;Y8B1ZjC,gB9B0ZiC;I8BzZjC,4B9B0ZuC;Y8B1ZvC,oB9B0ZuC;GF+uGxC;EgCvoHC;IACE,sBAAqB;IACrB,YAAW;GhCyoHd;CACF;;AiCp5HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;MAAf,gBAAe;EACf,sBAAoD;EACpD,oB/Bm0BsC;E+Bl0BtC,iBAAgB;EAChB,0B/Bm0B2C;EMr0BzC,uBN6MgC;CF6sHnC;;AiCl5HC;EACE,sBAAqB;EACrB,sB/BuzBqC;E+BtzBrC,qB/BszBqC;E+BrzBrC,epBgE8B;EoB/D9B,aAAiC;CjCq5HpC;AiC54HC;EACE,2BAA0B;CjC84H7B;AiC34HC;EACE,sBAAqB;CjC64HxB;AiC14HC;EACE,epB6C8B;Cb+1HjC;;AkC/6HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;E7BGb,gBAAe;EACf,iBAAgB;EGDd,uBN6MgC;CFquHnC;;AkCh7HD;EACE,mBAAkB;EAClB,eAAc;EACd,wBAAoD;EACpD,kBAAsC;EACtC,kBhCwmBsC;EgCvmBtC,erBoEgC;EqBnEhC,uBhCu2BwC;EgCt2BxC,0BAA+D;ClCm7HhE;AkCj7HC;EACE,ehC2mBiD;EgC1mBjD,sBAAqB;EACrB,0BhCszByC;EgCrzBzC,sBhCkyByC;CFipG5C;AkCh7HC;EACE,WAAU;EACV,WAAU;EACV,yDhCgmB2D;UgChmB3D,iDhCgmB2D;CFk1G9D;AkC96HC;EACE,gBAAe;ClCg7HlB;;AkC16HG;EACE,eAAc;E1BPhB,gCNkLgC;EMjLhC,mCNiLgC;CFowHnC;AkC16HG;E1B1BA,iCNgMgC;EM/LhC,oCN+LgC;CFwwHnC;AkCz6HC;EACE,WAAU;EACV,YhCk0BsC;EgCj0BtC,0BrB6B8B;EqB5B9B,sBrB4B8B;Cb+4HjC;AkCx6HC;EACE,erBwB8B;EqBvB9B,qBAAoB;EAEpB,aAAY;EACZ,uBhCwzBsC;EgCvzBtC,sBhCyvByC;CFgrG5C;;AmCn+HC;EACE,wBAA8B;EAC9B,mBjCqlB6C;EiCplB7C,iBjCqM6B;CFiyHhC;AmCj+HK;E3BoBF,+BNmL+B;EMlL/B,kCNkL+B;CF8xHlC;AmCh+HK;E3BCF,gCNiM+B;EMhM/B,mCNgM+B;CFkyHlC;;AmCj/HC;EACE,wBAA8B;EAC9B,oBjCkrB6C;EiCjrB7C,iBjCsM6B;CF8yHhC;AmC/+HK;E3BoBF,+BNoL+B;EMnL/B,kCNmL+B;CF2yHlC;AmC9+HK;E3BCF,gCNkM+B;EMjM/B,mCNiM+B;CF+yHlC;;AoC7/HD;EACE,sBAAqB;EACrB,sBAA0C;EAC1C,elCysBqC;EkCxsBrC,iBlCysBmD;EkCxsBnD,eAAc;EACd,mBAAkB;EAClB,oBAAmB;EACnB,yBAAwB;E5BTtB,uBNitB8C;CFyzGjD;AoC7/HC;EACE,cAAa;CpC+/HhB;;AoC1/HD;EACE,mBAAkB;EAClB,UAAS;CpC6/HV;;AoCt/HD;EACE,qBlCsrBsC;EkCrrBtC,oBlCqrBsC;EMntBpC,qBNstBqC;CFk0GxC;;AoCj/HC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cbi9HjC;AG/gIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrC8hIvC;;AoC3/HC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cb29HjC;AGzhIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCwiIvC;;AoCrgIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cbq+HjC;AGniIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCkjIvC;;AoC/gIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cb++HjC;AG7iIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrC4jIvC;;AoCzhIC;EC1CA,enCs3B2C;EmCr3B3C,0BxB8EgC;Cby/HjC;AGvjIC;EkCZI,enCi3BuC;EmCh3BvC,sBAAqB;EACrB,0BAAkC;CrCskIvC;;AoCniIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;CbmgIjC;AGjkIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCglIvC;;AoC7iIC;EC1CA,enCs3B2C;EmCr3B3C,0BxB8EgC;Cb6gIjC;AG3kIC;EkCZI,enCi3BuC;EmCh3BvC,sBAAqB;EACrB,0BAAkC;CrC0lIvC;;AoCvjIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;CbuhIjC;AGrlIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrComIvC;;AsC5mID;EACE,mBAAoD;EACpD,oBpCyoBsC;EoCxoBtC,0BpCs0B2C;EMr0BzC,sBN8M+B;CFi6HlC;AYvjIG;E0B5DJ;IAOI,mBAAoD;GtCgnIrD;CACF;;AsC7mID;EACE,iBAAgB;EAChB,gBAAe;E9BTb,iB8BUsB;CtCgnIzB;;AuC1nID;EACE,mBAAkB;EAClB,yBAA0C;EAC1C,oBrC2vBsC;EqC1vBtC,8BAA6C;E/BJ3C,uBN+vB8C;CFm4GjD;;AuCznID;EAEE,eAAc;CvC2nIf;;AuCvnID;EACE,iBrCgvBmD;CF04GpD;;AuClnID;EACE,oBAAwD;CvCqnIzD;AuClnIC;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,yBAA0C;EAC1C,eAAc;CvConIjB;;AuC1mIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxC4pItB;AwC1pIC;EACE,0BAAqC;CxC4pIxC;AwCzpIC;EACE,eAA0B;CxC2pI7B;;AuCtnIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCwqItB;AwCtqIC;EACE,0BAAqC;CxCwqIxC;AwCrqIC;EACE,eAA0B;CxCuqI7B;;AuCloIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCorItB;AwClrIC;EACE,0BAAqC;CxCorIxC;AwCjrIC;EACE,eAA0B;CxCmrI7B;;AuC9oIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCgsItB;AwC9rIC;EACE,0BAAqC;CxCgsIxC;AwC7rIC;EACE,eAA0B;CxC+rI7B;;AuC1pIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxC4sItB;AwC1sIC;EACE,0BAAqC;CxC4sIxC;AwCzsIC;EACE,eAA0B;CxC2sI7B;;AuCtqIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCwtItB;AwCttIC;EACE,0BAAqC;CxCwtIxC;AwCrtIC;EACE,eAA0B;CxCutI7B;;AuClrIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCouItB;AwCluIC;EACE,0BAAqC;CxCouIxC;AwCjuIC;EACE,eAA0B;CxCmuI7B;;AuC9rIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCgvItB;AwC9uIC;EACE,0BAAqC;CxCgvIxC;AwC7uIC;EACE,eAA0B;CxC+uI7B;;AyCzvID;EACE;IAAO,4BAAuC;GzC6vI7C;EyC5vID;IAAK,yBAAwB;GzC+vI5B;CACF;;AyClwID;EACE;IAAO,4BAAuC;GzC6vI7C;EyC5vID;IAA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AiDluJD;EACE,sB/CmqBuC;CFkkIxC;AiDnuJC;EACE,kCAAwE;CjDquJ3E;AiDluJC;;;EAEE,8BAAgE;CjDquJnE;AiDluJC;EACE,UAAS;EACT,sC/CypBmE;CF2kItE;AiDjuJC;EACE,Y/CmoB6C;E+CloB7C,uB/C4zBsC;CFu6HzC;;AiD/tJD;EACE,oB/C4oBuC;CFslIxC;AiDhuJC;EACE,gCAAsE;EACtE,c/CwoBqC;E+CvoBrC,a/CsoBoC;E+CroBpC,iBAA2B;CjDkuJ9B;AiD/tJC;;;EAEE,qCAA2F;CjDkuJ9F;AiD/tJC;EACE,QAAO;EACP,wC/C+nBmE;CFkmItE;AiD9tJC;EACE,U/CymB6C;E+CxmB7C,yB/CkyBsC;CF87HzC;;AiD5tJD;EACE,mB/CknBuC;CF6mIxC;AiD7tJC;EACE,+BAAqE;CjD+tJxE;AiD5tJC;;;EAEE,qCAA2F;CjD+tJ9F;AiD5tJC;EACE,OAAM;EACN,yC/CwmBmE;CFsnItE;AiD3tJC;EACE,S/CklB6C;E+CjlB7C,0B/C2wBsC;CFk9HzC;AiDztJC;EACE,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,eAAc;EACd,Y/CslBoC;E+CrlBpC,qBAAwC;EACxC,YAAW;EACX,iCAA6D;CjD2tJhE;;AiDvtJD;EACE,qB/C+kBuC;CF2oIxC;AiDxtJC;EACE,iCAAuE;EACvE,c/C2kBqC;E+C1kBrC,a/CykBoC;E+CxkBpC,iBAA2B;CjD0tJ9B;AiDvtJC;;;EAEE,qCAA2F;CjD0tJ9F;AiDvtJC;EACE,SAAQ;EACR,uC/CkkBmE;CFupItE;AiDttJC;EACE,W/C4iB6C;E+C3iB7C,wB/CquBsC;CFm/HzC;;AiDnsJD;EACE,wBAA4D;EAC5D,iBAAgB;EAChB,gB/CkEgC;E+CjEhC,e/CwhBiD;E+CvhBjD,0B/CshByD;E+CrhBzD,iCAAyE;EzChKvE,2CyCiKyE;EzChKzE,4CyCgKyE;CjDusJ5E;AiDpsJC;EACE,cAAa;CjDssJhB;;AiDlsJD;EACE,wBAAwD;EACxD,e/CksB2C;CFmgI5C;;AkDz3JD;EACE,mBAAkB;ClD43JnB;;AkDz3JD;EACE,mBA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EAEE,8BAAkC;CjEi3M3C;;AiE/2MO;;EAEE,+BAAmC;CjEk3M5C;;AiEh3MO;;EAEE,6BAAiC;CjEm3M1C;;AiEl4MO;EAAgC,sBAA4B;CjEs4MnE;;AiEr4MO;;EAEE,0BAAgC;CjEw4MzC;;AiEt4MO;;EAEE,4BAAkC;CjEy4M3C;;AiEv4MO;;EAEE,6BAAmC;CjE04M5C;;AiEx4MO;;EAEE,2BAAiC;CjE24M1C;;AiE15MO;EAAgC,4BAA4B;CjE85MnE;;AiE75MO;;EAEE,gCAAgC;CjEg6MzC;;AiE95MO;;EAEE,kCAAkC;CjEi6M3C;;AiE/5MO;;EAEE,mCAAmC;CjEk6M5C;;AiEh6MO;;EAEE,iCAAiC;CjEm6M1C;;AiEl7MO;EAAgC,2BAA4B;CjEs7MnE;;AiEr7MO;;EAEE,+BAAgC;CjEw7MzC;;AiEt7MO;;EAEE,iCAAkC;CjEy7M3C;;AiEv7MO;;EAEE,kCAAmC;CjE07M5C;;AiEx7MO;;EAEE,gCAAiC;CjE27M1C;;AiE18MO;EAAgC,yBAA4B;CjE88MnE;;AiE78MO;;EAEE,6BAAgC;CjEg9MzC;;AiE98MO;;EAEE,+BAAkC;CjEi9M3C;;AiE/8MO;;EAEE,gCAAmC;CjEk9M5C;;AiEh9MO;;EAEE,8BAAiC;CjEm9M1C;;AiEl+MO;EAAgC,2BAA4B;CjEs+MnE;;AiEr+MO;;EAEE,+BAAgC;CjEw+MzC;;AiEt+MO;;EAEE,iCAAkC;CjEy+M3C;;AiEv+MO;;EAEE,kCAAmC;CjE0+M5C;;AiEx+MO;;EAEE,gCAAiC;CjE2+M1C;;AiE1/MO;EAAgC,yBAA4B;CjE8/MnE;;AiE7/MO;;EAEE,6BAAgC;CjEggNzC;;AiE9/MO;;EAEE,+BAAkC;CjEigN3C;;AiE//MO;;EAEE,gCAAmC;CjEkgN5C;;AiEhgNO;;EAEE,8BAAiC;CjEmgN1C;;AiE7/MG;EAAmB,wBAAuB;CjEigN7C;;AiEhgNG;;EAEE,4BAA2B;CjEmgNhC;;AiEjgNG;;EAEE,8BAA6B;CjEogNlC;;AiElgNG;;EAEE,+BAA8B;CjEqgNnC;;AiEngNG;;EAEE,6BAA4B;CjEsgNjC;;AYz/MG;EqDjDI;IAAgC,qBAA4B;GjE+iNjE;;EiE9iNK;;IAEE,yBAAgC;GjEijNvC;;EiE/iNK;;IAEE,2BAAkC;GjEkjNzC;;EiEhjNK;;IAEE,4BAAmC;GjEmjN1C;;EiEjjNK;;IAEE,0BAAiC;GjEojNxC;;EiEnkNK;IAAgC,2BAA4B;GjEukNjE;;EiEtkNK;;IAEE,+BAAgC;GjEykNvC;;EiEvkNK;;IAEE,iCAAkC;GjE0kNzC;;EiExkNK;;IAEE,kCAAmC;GjE2kN1C;;EiEzkNK;;IAEE,gCAAiC;GjE4kNxC;;EiE3lNK;IAAgC,0BAA4B;GjE+lNjE;;EiE9lNK;;IAEE,8BAAgC;GjEimNvC;;EiE/lNK;;IAEE,gCAAkC;GjEkmNzC;;EiEhmNK;;IAEE,iCAAmC;GjEmmN1C;;EiEjmNK;;IAEE,+BAAiC;GjEomNxC;;EiEnnNK;IAAgC,wBAA4B;GjEunNjE;;EiEtnNK;;IAEE,4BAAgC;GjEynNvC;;EiEvnNK;;IAEE,8BAAkC;GjE0nNzC;;EiExnNK;;IAEE,+BAAmC;GjE2nN1C;;EiEznNK;;IAEE,6BAAiC;GjE4nNxC;;EiE3oNK;IAAgC,0BAA4B;GjE+oNjE;;EiE9oNK;;IAEE,8BAAgC;GjEipNvC;;EiE/oNK;;IAEE,gCAAkC;GjEkpNzC;;EiEhpNK;;IAEE,iCAAmC;GjEmpN1C;;EiEjpNK;;IAEE,+BAAiC;GjEopNxC;;EiEnqNK;IAAgC,wBAA4B;GjEuqNjE;;EiEtqNK;;IAEE,4BAAgC;GjEyqNvC;;EiEvqNK;;IAEE,8BAAkC;GjE0qNzC;;EiExqNK;;IAEE,+BAAmC;GjE2qN1C;;EiEzqNK;;IAEE,6BAAiC;GjE4qNxC;;EiE3rNK;IAAgC,sBAA4B;GjE+rNjE;;EiE9rNK;;IAEE,0BAAgC;GjEisNvC;;EiE/rNK;;IAEE,4BAAkC;GjEksNzC;;EiEhsNK;;IAEE,6BAAmC;GjEmsN1C;;EiEjsNK;;IAEE,2BAAiC;GjEosNxC;;EiEntNK;IAAgC,4BAA4B;GjEutNjE;;EiEttNK;;IAEE,gCAAgC;GjEytNvC;;EiEvtNK;;IAEE,kCAAkC;GjE0tNzC;;EiExtNK;;IAEE,mCAAmC;GjE2tN1C;;EiEztNK;;IAEE,iCAAiC;GjE4tNxC;;EiE3uNK;IAAgC,2BAA4B;GjE+uNjE;;EiE9uNK;;IAEE,+BAAgC;GjEivNvC;;EiE/uNK;;IAEE,iCAAkC;GjEkvNzC;;EiEhvNK;;IAEE,kCAAmC;GjEmvN1C;;EiEjvNK;;IAEE,gCAAiC;GjEovNxC;;EiEnwNK;IAAgC,yBAA4B;GjEuwNjE;;EiEtwNK;;IAEE,6BAAgC;GjEywNvC;;EiEvwNK;;IAEE,+BAAkC;GjE0wNzC;;EiExwNK;;IAEE,gCAAmC;GjE2wN1C;;EiEzwNK;;IAEE,8BAAiC;GjE4wNxC;;EiE3xNK;IAAgC,2BAA4B;GjE+xNjE;;EiE9xNK;;IAEE,+BAAgC;GjEiyNvC;;EiE/xNK;;IAEE,iCAAkC;GjEkyNzC;;EiEhyNK;;IAEE,kCAAmC;GjEmyN1C;;EiEjyNK;;IAEE,gCAAiC;GjEoyNxC;;EiEnzNK;IAAgC,yBAA4B;GjEuzNjE;;EiEtzNK;;IAEE,6BAAgC;GjEyzNvC;;EiEvzNK;;IAEE,+BAAkC;GjE0zNzC;;EiExzNK;;IAEE,gCAAmC;GjE2zN1C;;EiEzzNK;;IAEE,8BAAiC;GjE4zNxC;;EiEtzNC;IAAmB,wBAAuB;GjE0zN3C;;EiEzzNC;;IAEE,4BAA2B;GjE4zN9B;;EiE1zNC;;IAEE,8BAA6B;GjE6zNhC;;EiE3zNC;;IAEE,+BAA8B;GjE8zNjC;;EiE5zNC;;IAEE,6BAA4B;GjE+zN/B;CACF;AYnzNG;EqDjDI;IAAgC,qBAA4B;GjEw2NjE;;EiEv2NK;;IAEE,yBAAgC;GjE02NvC;;EiEx2NK;;IAEE,2BAAkC;GjE22NzC;;EiEz2NK;;IAEE,4BAAmC;GjE42N1C;;EiE12NK;;IAEE,0BAAiC;GjE62NxC;;EiE53NK;IAAgC,2BAA4B;GjEg4NjE;;EiE/3NK;;IAEE,+BAAgC;GjEk4NvC;;EiEh4NK;;IAEE,iCAAkC;GjEm4NzC;;EiEj4NK;;IAEE,kCAAmC;GjEo4N1C;;EiEl4NK;;IAEE,gCAAiC;GjEq4NxC;;EiEp5NK;IAAgC,0BAA4B;GjEw5NjE;;EiEv5NK;;IAEE,8BAAgC;GjE05NvC;;EiEx5NK;;IAEE,gCAAkC;GjE25NzC;;EiEz5NK;;IAEE,iCAAmC;GjE45N1C;;EiE15NK;;IAEE,+BAAiC;GjE65NxC;;EiE56NK;IAAgC,wBAA4B;GjEg7NjE;;EiE/6NK;;IAEE,4BAAgC;GjEk7NvC;;EiEh7NK;;IAEE,8BAAkC;GjEm7NzC;;EiEj7NK;;IAEE,+BAAmC;GjEo7N1C;;EiEl7NK;;IAEE,6BAAiC;GjEq7NxC;;EiEp8NK;IAAgC,0BAA4B;GjEw8NjE;;EiEv8NK;;IAEE,8BAAgC;GjE08NvC;;EiEx8NK;;IAEE,gCAAkC;GjE28NzC;;EiEz8NK;;IAEE,iCAAmC;GjE48N1C;;EiE18NK;;IAEE,+BAAiC;GjE68NxC;;EiE59NK;IAAgC,wBAA4B;GjEg+NjE;;EiE/9NK;;IAEE,4BAAgC;GjEk+NvC;;EiEh+NK;;IAEE,8BAAkC;GjEm+NzC;;EiEj+NK;;IAEE,+BAAmC;GjEo+N1C;;EiEl+NK;;IAEE,6BAAiC;GjEq+NxC;;EiEp/NK;IAAgC,sBAA4B;GjEw/NjE;;EiEv/NK;;IAEE,0BAAgC;GjE0/NvC;;EiEx/NK;;IAEE,4BAAkC;GjE2/NzC;;EiEz/NK;;IAEE,6BAAmC;GjE4/N1C;;EiE1/NK;;IAEE,2BAAiC;GjE6/NxC;;EiE5gOK;IAAgC,4BAA4B;GjEghOjE;;EiE/gOK;;IAEE,gCAAgC;GjEkhOvC;;EiEhhOK;;IAEE,kCAAkC;GjEmhOzC;;EiEjhOK;;IAEE,mCAAmC;GjEohO1C;;EiElhOK;;IAEE,iCAAiC;GjEqhOxC;;EiEpiOK;IAAgC,2BAA4B;GjEwiOjE;;EiEviOK;;IAEE,+BAAgC;GjE0iOvC;;EiExiOK;;IAEE,iCAAkC;GjE2iOzC;;EiEziOK;;IAEE,kCAAmC;GjE4iO1C;;EiE1iOK;;IAEE,gCAAiC;GjE6iOxC;;EiE5jOK;IAAgC,yBAA4B;GjEgkOjE;;EiE/jOK;;IAEE,6BAAgC;GjEkkOvC;;EiEhkOK;;IAEE,+BAAkC;GjEmkOzC;;EiEjkOK;;IAEE,gCAAmC;GjEokO1C;;EiElkOK;;IAEE,8BAAiC;GjEqkOxC;;EiEplOK;IAAgC,2BAA4B;GjEwlOjE;;EiEvlOK;;IAEE,+BAAgC;GjE0lOvC;;EiExlOK;;IAEE,iCAAkC;GjE2lOzC;;EiEzlOK;;IAEE,kCAAmC;GjE4lO1C;;EiE1lOK;;IAEE,gCAAiC;GjE6lOxC;;EiE5mOK;IAAgC,yBAA4B;GjEgnOjE;;EiE/mOK;;IAEE,6BAAgC;GjEknOvC;;EiEhnOK;;IAEE,+BAAkC;GjEmnOzC;;EiEjnOK;;IAEE,gCAAmC;GjEonO1C;;EiElnOK;;IAEE,8BAAiC;GjEqnOxC;;EiE/mOC;IAAmB,wBAAuB;GjEmnO3C;;EiElnOC;;IAEE,4BAA2B;GjEqnO9B;;EiEnnOC;;IAEE,8BAA6B;GjEsnOhC;;EiEpnOC;;IAEE,+BAA8B;GjEunOjC;;EiErnOC;;IAEE,6BAA4B;GjEwnO/B;CACF;AY5mOG;EqDjDI;IAAgC,qBAA4B;GjEiqOjE;;EiEhqOK;;IAEE,yBAAgC;GjEmqOvC;;EiEjqOK;;IAEE,2BAAkC;GjEoqOzC;;EiElqOK;;IAEE,4BAAmC;GjEqqO1C;;EiEnqOK;;IAEE,0BAAiC;GjEsqOxC;;EiErrOK;IAAgC,2BAA4B;GjEyrOjE;;EiExrOK;;IAEE,+BAAgC;GjE2rOvC;;EiEzrOK;;IAEE,iCAAkC;GjE4rOzC;;EiE1rOK;;IAEE,kCAAmC;GjE6rO1C;;EiE3rOK;;IAEE,gCAAiC;GjE8rOxC;;EiE7sOK;IAAgC,0BAA4B;GjEitOjE;;EiEhtOK;;IAEE,8BAAgC;GjEmtOvC;;EiEjtOK;;IAEE,gCAAkC;GjEotOzC;;EiEltOK;;IAEE,iCAAmC;GjEqtO1C;;EiEntOK;;IAEE,+BAAiC;GjEstOxC;;EiEruOK;IAAgC,wBAA4B;GjEyuOjE;;EiExuOK;;IAEE,4BAAgC;GjE2uOvC;;EiEzuOK;;IAEE,8BAAkC;GjE4uOzC;;EiE1uOK;;IAEE,+BAAmC;GjE6uO1C;;EiE3uOK;;IAEE,6BAAiC;GjE8uOxC;;EiE7vOK;IAAgC,0BAA4B;GjEiwOjE;;EiEhwOK;;IAEE,8BAAgC;GjEmwOvC;;EiEjwOK;;IAEE,gCAAkC;GjEowOzC;;EiElwOK;;IAEE,iCAAmC;GjEqwO1C;;EiEnwOK;;IAEE,+BAAiC;GjEswOxC;;EiErxOK;IAAgC,wBAA4B;GjEyxOjE;;EiExxOK;;IAEE,4BAAgC;GjE2xOvC;;EiEzxOK;;IAEE,8BAAkC;GjE4xOzC;;EiE1xOK;;IAEE,+BAAmC;GjE6xO1C;;EiE3xOK;;IAEE,6BAAiC;GjE8xOxC;;EiE7yOK;IAAgC,sBAA4B;GjEizOjE;;EiEhzOK;;IAEE,0BAAgC;GjEmzOvC;;EiEjzOK;;IAEE,4BAAkC;GjEozOzC;;EiElzOK;;IAEE,6BAAmC;GjEqzO1C;;EiEnzOK;;IAEE,2BAAiC;GjEszOxC;;EiEr0OK;IAAgC,4BAA4B;GjEy0OjE;;EiEx0OK;;IAEE,gCAAgC;GjE20OvC;;EiEz0OK;;IAEE,kCAAkC;GjE40OzC;;EiE10OK;;IAEE,mCAAmC;GjE60O1C;;EiE30OK;;IAEE,iCAAiC;GjE80OxC;;EiE71OK;IAAgC,2BAA4B;GjEi2OjE;;EiEh2OK;;IAEE,+BAAgC;GjEm2OvC;;EiEj2OK;;IAEE,iCAAkC;GjEo2OzC;;EiEl2OK;;IAEE,kCAAmC;GjEq2O1C;;EiEn2OK;;IAEE,gCAAiC;GjEs2OxC;;EiEr3OK;IAAgC,yBAA4B;GjEy3OjE;;EiEx3OK;;IAEE,6BAAgC;GjE23OvC;;EiEz3OK;;IAEE,+BAAkC;GjE43OzC;;EiE13OK;;IAEE,gCAAmC;GjE63O1C;;EiE33OK;;IAEE,8BAAiC;GjE83OxC;;EiE74OK;IAAgC,2BAA4B;GjEi5OjE;;EiEh5OK;;IAEE,+BAAgC;GjEm5OvC;;EiEj5OK;;IAEE,iCAAkC;GjEo5OzC;;EiEl5OK;;IAEE,kCAAmC;GjEq5O1C;;EiEn5OK;;IAEE,gCAAiC;GjEs5OxC;;EiEr6OK;IAAgC,yBAA4B;GjEy6OjE;;EiEx6OK;;IAEE,6BAAgC;GjE26OvC;;EiEz6OK;;IAEE,+BAAkC;GjE46OzC;;EiE16OK;;IAEE,gCAAmC;GjE66O1C;;EiE36OK;;IAEE,8BAAiC;GjE86OxC;;EiEx6OC;IAAmB,wBAAuB;GjE46O3C;;EiE36OC;;IAEE,4BAA2B;GjE86O9B;;EiE56OC;;IAEE,8BAA6B;GjE+6OhC;;EiE76OC;;IAEE,+BAA8B;GjEg7OjC;;EiE96OC;;IAEE,6BAA4B;GjEi7O/B;CACF;AYr6OG;EqDjDI;IAAgC,qBAA4B;GjE09OjE;;EiEz9OK;;IAEE,yBAAgC;GjE49OvC;;EiE19OK;;IAEE,2BAAkC;GjE69OzC;;EiE39OK;;IAEE,4BAAmC;GjE89O1C;;EiE59OK;;IAEE,0BAAiC;GjE+9OxC;;EiE9+OK;IAAgC,2BAA4B;GjEk/OjE;;EiEj/OK;;IAEE,+BAAgC;GjEo/OvC;;EiEl/OK;;IAEE,iCAAkC;GjEq/OzC;;EiEn/OK;;IAEE,kCAAmC;GjEs/O1C;;EiEp/OK;;IAEE,gCAAiC;GjEu/OxC;;EiEtgPK;IAAgC,0BAA4B;GjE0gPjE;;EiEzgPK;;IAEE,8BAAgC;GjE4gPvC;;EiE1gPK;;IAEE,gCAAkC;GjE6gPzC;;EiE3gPK;;IAEE,iCAAmC;GjE8gP1C;;EiE5gPK;;IAEE,+BAAiC;GjE+gPxC;;EiE9hPK;IAAgC,wBAA4B;GjEkiPjE;;EiEjiPK;;IAEE,4BAAgC;GjEoiPvC;;EiEliPK;;IAEE,8BAAkC;GjEqiPzC;;EiEniPK;;IAEE,+BAAmC;GjEsiP1C;;EiEpiPK;;IAEE,6BAAiC;GjEuiPxC;;EiEtjPK;IAAgC,0BAA4B;GjE0jPjE;;EiEzjPK;;IAEE,8BAAgC;GjE4jPvC;;EiE1jPK;;IAEE,gCAAkC;GjE6jPzC;;EiE3jPK;;IAEE,iCAAmC;GjE8jP1C;;EiE5jPK;;IAEE,+BAAiC;GjE+jPxC;;EiE9kPK;IAAgC,wBAA4B;GjEklPjE;;EiEjlPK;;IAEE,4BAAgC;GjEolPvC;;EiEllPK;;IAEE,8BAAkC;GjEqlPzC;;EiEnlPK;;IAEE,+BAAmC;GjEslP1C;;EiEplPK;;IAEE,6BAAiC;GjEulPxC;;EiEtmPK;IAAgC,sBAA4B;GjE0mPjE;;EiEzmPK;;IAEE,0BAAgC;GjE4mPvC;;EiE1mPK;;IAEE,4BAAkC;GjE6mPzC;;EiE3mPK;;IAEE,6BAAmC;GjE8mP1C;;EiE5mPK;;IAEE,2BAAiC;GjE+mPxC;;EiE9nPK;IAAgC,4BAA4B;GjEkoPjE;;EiEjoPK;;IAEE,gCAAgC;GjEooPvC;;EiEloPK;;IAEE,kCAAkC;GjEqoPzC;;EiEnoPK;;IAEE,mCAAmC;GjEsoP1C;;EiEpoPK;;IAEE,iCAAiC;GjEuoPxC;;EiEtpPK;IAAgC,2BAA4B;GjE0pPjE;;EiEzpPK;;IAEE,+BAAgC;GjE4pPvC;;EiE1pPK;;IAEE,iCAAkC;GjE6pPzC;;EiE3pPK;;IAEE,kCAAmC;GjE8pP1C;;EiE5pPK;;IAEE,gCAAiC;GjE+pPxC;;EiE9qPK;IAAgC,yBAA4B;GjEkrPjE;;EiEjrPK;;IAEE,6BAAgC;GjEorPvC;;EiElrPK;;IAEE,+BAAkC;GjEqrPzC;;EiEnrPK;;IAEE,gCAAmC;GjEsrP1C;;EiEprPK;;IAEE,8BAAiC;GjEurPxC;;EiEtsPK;IAAgC,2BAA4B;GjE0sPjE;;EiEzsPK;;IAEE,+BAAgC;GjE4sPvC;;EiE1sPK;;IAEE,iCAAkC;GjE6sPzC;;EiE3sPK;;IAEE,kCAAmC;GjE8sP1C;;EiE5sPK;;IAEE,gCAAiC;GjE+sPxC;;EiE9tPK;IAAgC,yBAA4B;GjEkuPjE;;EiEjuPK;;IAEE,6BAAgC;GjEouPvC;;EiEluPK;;IAEE,+BAAkC;GjEquPzC;;EiEnuPK;;IAEE,gCAAmC;GjEsuP1C;;EiEpuPK;;IAEE,8BAAiC;GjEuuPxC;;EiEjuPC;IAAmB,wBAAuB;GjEquP3C;;EiEpuPC;;IAEE,4BAA2B;GjEuuP9B;;EiEruPC;;IAEE,8BAA6B;GjEwuPhC;;EiEtuPC;;IAEE,+BAA8B;GjEyuPjC;;EiEvuPC;;IAEE,6BAA4B;GjE0uP/B;CACF;AkElxPD;EAAiB,+BAA8B;ClEqxP9C;;AkEpxPD;EAAiB,+BAA8B;ClEwxP9C;;AkEvxPD;ECNE,iBAAgB;EAChB,wBAAuB;EACvB,oBAAmB;CnEiyPpB;;AkErxPG;EAAwB,4BAA2B;ClEyxPtD;;AkExxPG;EAAwB,6BAA4B;ClE4xPvD;;AkE3xPG;EAAwB,8BAA6B;ClE+xPxD;;AYvvPG;EsD1CA;IAAwB,4BAA2B;GlEsyPpD;;EkEryPC;IAAwB,6BAA4B;GlEyyPrD;;EkExyPC;IAAwB,8BAA6B;GlE4yPtD;CACF;AYrwPG;EsD1CA;IAAwB,4BAA2B;GlEmzPpD;;EkElzPC;IAAwB,6BAA4B;GlEszPrD;;EkErzPC;IAAwB,8BAA6B;GlEyzPtD;CACF;AYlxPG;EsD1CA;IAAwB,4BAA2B;GlEg0PpD;;EkE/zPC;IAAwB,6BAA4B;GlEm0PrD;;EkEl0PC;IAAwB,8BAA6B;GlEs0PtD;CACF;AY/xPG;EsD1CA;IAAwB,4BAA2B;GlE60PpD;;EkE50PC;IAAwB,6BAA4B;GlEg1PrD;;EkE/0PC;IAAwB,8BAA6B;GlEm1PtD;CACF;AkE90PD;EAAmB,qCAAoC;ClEi1PtD;;AkEh1PD;EAAmB,qCAAoC;ClEo1PtD;;AkEn1PD;EAAmB,sCAAqC;ClEu1PvD;;AkEn1PD;EAAsB,4BAA0C;ClEu1P/D;;AkEt1PD;EAAsB,4BAA2C;ClE01PhE;;AkEz1PD;EAAsB,4BAAyC;ClE61P9D;;AkE51PD;EAAsB,8BAA6B;ClEg2PlD;;AkE51PD;EAAc,uBAAsB;ClEg2PnC;;AoEl4PC;EACE,0BAAwB;CpEq4P3B;;AGz3PC;EiERI,0BAAqC;CpEq4P1C;;AoE14PC;EACE,0BAAwB;CpE64P3B;;AGj4PC;EiERI,0BAAqC;CpE64P1C;;AoEl5PC;EACE,0BAAwB;CpEq5P3B;;AGz4PC;EiERI,0BAAqC;CpEq5P1C;;AoE15PC;EACE,0BAAwB;CpE65P3B;;AGj5PC;EiERI,0BAAqC;CpE65P1C;;AoEl6PC;EACE,0BAAwB;CpEq6P3B;;AGz5PC;EiERI,0BAAqC;CpEq6P1C;;AoE16PC;EACE,0BAAwB;CpE66P3B;;AGj6PC;EiERI,0BAAqC;CpE66P1C;;AoEl7PC;EACE,0BAAwB;CpEq7P3B;;AGz6PC;EiERI,0BAAqC;CpEq7P1C;;AoE17PC;EACE,0BAAwB;CpE67P3B;;AGj7PC;EiERI,0BAAqC;CpE67P1C;;AkE15PD;EAAc,0BAA6B;ClE85P1C;;AkE15PD;EG9CE,YAAW;EACX,mBAAkB;EAClB,kBAAiB;EACjB,8BAA6B;EAC7B,UAAS;CrE48PV;;AsE/8PD;ECCE,+BAAkC;CvEk9PnC;;AsE/8PD;ECHE,8BAAkC;CvEs9PnC;;AwEh9PC;EACE;;;IAKE,6BAA4B;IAE5B,oCAA2B;YAA3B,4BAA2B;GxEg9P9B;;EwE58PG;IACE,2BAA0B;GxE+8P/B;;EwEt8PC;IACE,8BAA6B;GxEy8PhC;;EwE37PC;IACE,iCAAgC;GxE87PnC;;EwE57PC;;IAEE,uBAAgC;IAChC,yBAAwB;GxE+7P3B;;EwEv7PC;IACE,4BAA2B;GxE07P9B;;EwEv7PC;;IAEE,yBAAwB;GxE07P3B;;EwEv7PC;;;IAGE,WAAU;IACV,UAAS;GxE07PZ;;EwEv7PC;;IAEE,wBAAuB;GxE07P1B;;EwEl7PC;IACE,StEmyBgC;GFkpOnC;EwEn7PC;IACE,4BAA2C;GxEq7P9C;;EwEn7PC;IACE,4BAA2C;GxEs7P9C;;EwEl7PC;IACE,cAAa;GxEq7PhB;;EwEn7PC;IACE,uBAAgC;GxEs7PnC;;EwEn7PC;IACE,qCAAoC;GxEs7PvC;EwEp7PG;;IAEE,kCAAiC;GxEs7PtC;;EwEl7PG;;IAEE,kCAAiC;GxEq7PtC;CACF;AyE3iQD,8CAA8C;AAE9C;EAAsB,aAAY;CzE6iQjC;;AyE5iQD;EAAuB,UAAS;CzEgjQ/B;;AyE/iQD;EACE,eAAc;EACd,mBAAkB;CzEkjQnB;;AyEhjQD;EACE,eAAc;EACd,kBAAiB;CzEmjQlB;;AyEjjQD;EACE,eAAc;EACd,mBAAkB;CzEojQnB;;AyEljQD;EACE,eAAc;EACd,kBAAiB;EACjB,mBAAkB;CzEqjQnB;;AyEnjQD;EACE,eAAc;EACd,mBAAkB;CzEsjQnB;;AyEpjQD;EACE,eAAc;EACd,0BAAyB;CzEujQ1B;;AyErjQD;EACE,eAAc;EACd,0BAAyB;CzEwjQ1B;;AyEtjQD;EACE,eAAc;EACd,mBAAkB;CzEyjQnB;;AyEvjQD;EACE,eAAc;CzE0jQf;;AyExjQD;EACE,eAAc;CzE2jQf;;AyEzjQD;EACE,eAAc;EACd,0BAAyB;CzE4jQ1B;;AyE1jQD;EACE,eAAc;CzE6jQf;;AyE3jQD;EACE,eAAc;CzE8jQf;;AyE5jQD;EACE,kBAAiB;CzE+jQlB;;AyE7jQD;EACE,eAAc;CzEgkQf;;AyE9jQD;EACE,eAAc;CzEikQf;;AyE/jQD;EACE,eAAc;EACd,kBAAiB;CzEkkQlB;;AyEhkQD;EACE,eAAc;EACd,kBAAiB;CzEmkQlB;;AyEjkQD;EACE,eAAc;EACd,kBAAiB;CzEokQlB;;AyElkQD;EACE,eAAc;EACd,kBAAiB;CzEqkQlB;;AyEnkQD;EACE,eAAc;EACd,kBAAiB;CzEskQlB;;AyEpkQD;EACE,eAAc;EACd,kBAAiB;CzEukQlB;;AyErkQD;EACE,eAAc;EACd,kBAAiB;CzEwkQlB;;AyEtkQD;EACE,eAAc;CzEykQf;;AyEvkQD;EACE,eAAc;CzE0kQf;;AyExkQD;EACE,eAAc;CzE2kQf;;AyEzkQD;EACE,eAAc;CzE4kQf;;AyE1kQD;EACE,eAAc;CzE6kQf;;AyE3kQD;EACE,eAAc;CzE8kQf;;AyE5kQD;EACE,YAAW;CzE+kQZ;;AyE7kQD;EACE,YAAW;CzEglQZ;;AyE9kQD;EACE,YAAW;CzEilQZ;;AyE/kQD;EACE,YAAW;CzEklQZ;;AyEhlQD;EACE,YAAW;CzEmlQZ;;AyEjlQD;EACE,YAAW;CzEolQZ;;AyEllQD;EACE,YAAW;CzEqlQZ;;AyEnlQD;EACE,YAAW;CzEslQZ;;AyEplQD;EACE,eAAc;CzEulQf;;AyErlQD;EACE,YAAW;CzEwlQZ;;AyEtlQD;EACE,eAAc;CzEylQf;;AyEvlQD;EACE,YAAW;CzE0lQZ;;AyExlQD;EACE,eAAc;CzE2lQf;;AyEzlQD;EACE,eAAc;CzE4lQf;;AyE1lQD;EACE,eAAc;CzE6lQf;;AyE3lQD;EACE,eAAc;EACd,kBAAiB;CzE8lQlB;;AyE5lQD;EACE,eAAc;CzE+lQf;;AyE7lQD;EACE,eAAc;EACd,kBAAiB;CzEgmQlB;;AyE9lQD;EACE,eAAc;CzEimQf;;AyE/lQD;EACE,eAAc;EACd,kBAAiB;CzEkmQlB;;AyEhmQD;EACE,eAAc;EACd,kBAAiB;CzEmmQlB;;AyEjmQD;EACE,eAAc;EACd,kBAAiB;CzEomQlB;;AyElmQD;EACE,eAAc;CzEqmQf;;AyEnmQD;EACE,eAAc;CzEsmQf;;AyEpmQD;EACE,eAAc;CzEumQf;;AyErmQD;EACE,eAAc;CzEwmQf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","file":"theme.css"} \ No newline at end of file diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js deleted file mode 100644 index 61ac9d2..0000000 --- a/docs/_static/doctools.js +++ /dev/null @@ -1,321 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - * - * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL - */ -jQuery.urldecode = function(x) { - if (!x) { - return x - } - return decodeURIComponent(x.replace(/\+/g, ' ')); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s === 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node, addItems) { - if (node.nodeType === 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keydown(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box, textarea, dropdown or button - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey - && !event.shiftKey) { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js deleted file mode 100644 index 2fa8c97..0000000 --- a/docs/_static/documentation_options.js +++ /dev/null @@ -1,12 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - BUILDER: 'html', - FILE_SUFFIX: '.html', - LINK_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: false -}; \ No newline at end of file diff --git a/docs/_static/file.png b/docs/_static/file.png deleted file mode 100644 index a858a41..0000000 Binary files a/docs/_static/file.png and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-bold-italic.woff b/docs/_static/fonts/FreightSans/freight-sans-bold-italic.woff deleted file mode 100644 index e317248..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-bold-italic.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 b/docs/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 deleted file mode 100644 index cec2dc9..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-bold.woff b/docs/_static/fonts/FreightSans/freight-sans-bold.woff deleted file mode 100644 index de46625..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-bold.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-bold.woff2 b/docs/_static/fonts/FreightSans/freight-sans-bold.woff2 deleted file mode 100644 index dc05cd8..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-bold.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-book-italic.woff b/docs/_static/fonts/FreightSans/freight-sans-book-italic.woff deleted file mode 100644 index a50e503..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-book-italic.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-book-italic.woff2 b/docs/_static/fonts/FreightSans/freight-sans-book-italic.woff2 deleted file mode 100644 index fe284db..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-book-italic.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-book.woff b/docs/_static/fonts/FreightSans/freight-sans-book.woff deleted file mode 100644 index 6ab8775..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-book.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-book.woff2 b/docs/_static/fonts/FreightSans/freight-sans-book.woff2 deleted file mode 100644 index 2688739..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-book.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-light-italic.woff b/docs/_static/fonts/FreightSans/freight-sans-light-italic.woff deleted file mode 100644 index beda58d..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-light-italic.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-light-italic.woff2 b/docs/_static/fonts/FreightSans/freight-sans-light-italic.woff2 deleted file mode 100644 index e2fa013..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-light-italic.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-light.woff b/docs/_static/fonts/FreightSans/freight-sans-light.woff deleted file mode 100644 index 226a0bf..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-light.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-light.woff2 b/docs/_static/fonts/FreightSans/freight-sans-light.woff2 deleted file mode 100644 index 6d8ff2c..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-light.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-medium-italic.woff b/docs/_static/fonts/FreightSans/freight-sans-medium-italic.woff deleted file mode 100644 index a42115d..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-medium-italic.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 b/docs/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 deleted file mode 100644 index 16a7713..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-medium.woff b/docs/_static/fonts/FreightSans/freight-sans-medium.woff deleted file mode 100644 index 5ea3453..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-medium.woff and /dev/null differ diff --git a/docs/_static/fonts/FreightSans/freight-sans-medium.woff2 b/docs/_static/fonts/FreightSans/freight-sans-medium.woff2 deleted file mode 100644 index c58b6a5..0000000 Binary files a/docs/_static/fonts/FreightSans/freight-sans-medium.woff2 and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff deleted file mode 100644 index cf37a5c..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 deleted file mode 100644 index 955a6ea..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff deleted file mode 100644 index fc65a67..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 deleted file mode 100644 index c352e40..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff deleted file mode 100644 index 7d63d89..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 deleted file mode 100644 index d0d7ded..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff deleted file mode 100644 index 1da7753..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff and /dev/null differ diff --git a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 b/docs/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 deleted file mode 100644 index 79dffdb..0000000 Binary files a/docs/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 and /dev/null differ diff --git a/docs/_static/images/arrow-down-orange.svg b/docs/_static/images/arrow-down-orange.svg deleted file mode 100644 index e9d8e9e..0000000 --- a/docs/_static/images/arrow-down-orange.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Group 5 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_static/images/arrow-right-with-tail.svg b/docs/_static/images/arrow-right-with-tail.svg deleted file mode 100644 index 5843588..0000000 --- a/docs/_static/images/arrow-right-with-tail.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_static/images/asteroid_logo_dark.png b/docs/_static/images/asteroid_logo_dark.png deleted file mode 100644 index 1eb1d71..0000000 Binary files a/docs/_static/images/asteroid_logo_dark.png and /dev/null differ diff --git a/docs/_static/images/asteroid_logo_dark.svg b/docs/_static/images/asteroid_logo_dark.svg deleted file mode 100644 index 7d1ba92..0000000 --- a/docs/_static/images/asteroid_logo_dark.svg +++ /dev/null @@ -1,1430 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/docs/_static/images/chevron-down-grey.svg b/docs/_static/images/chevron-down-grey.svg deleted file mode 100644 index 82d6514..0000000 --- a/docs/_static/images/chevron-down-grey.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - -Created with Sketch. - - - - - - - - - - - - diff --git a/docs/_static/images/chevron-right-orange.svg b/docs/_static/images/chevron-right-orange.svg deleted file mode 100644 index 7033fc9..0000000 --- a/docs/_static/images/chevron-right-orange.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Page 1 -Created with Sketch. - - - - - - - - - - diff --git a/docs/_static/images/chevron-right-white.svg b/docs/_static/images/chevron-right-white.svg deleted file mode 100644 index dd9e77f..0000000 --- a/docs/_static/images/chevron-right-white.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Page 1 -Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/docs/_static/images/dark_asteroid_logo.svg b/docs/_static/images/dark_asteroid_logo.svg deleted file mode 100644 index e2251aa..0000000 --- a/docs/_static/images/dark_asteroid_logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/_static/images/home-footer-background.jpg b/docs/_static/images/home-footer-background.jpg deleted file mode 100644 index b307bb5..0000000 Binary files a/docs/_static/images/home-footer-background.jpg and /dev/null differ diff --git a/docs/_static/images/icon-close.svg b/docs/_static/images/icon-close.svg deleted file mode 100644 index 348964e..0000000 --- a/docs/_static/images/icon-close.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_static/images/icon-menu-dots-dark.svg b/docs/_static/images/icon-menu-dots-dark.svg deleted file mode 100644 index fa2ad04..0000000 --- a/docs/_static/images/icon-menu-dots-dark.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_static/images/logo-facebook-dark.svg b/docs/_static/images/logo-facebook-dark.svg deleted file mode 100644 index cff1791..0000000 --- a/docs/_static/images/logo-facebook-dark.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/docs/_static/images/logo-lightning-large.svg b/docs/_static/images/logo-lightning-large.svg deleted file mode 100644 index 4a6cd73..0000000 --- a/docs/_static/images/logo-lightning-large.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - diff --git a/docs/_static/images/logo-lightning.svg b/docs/_static/images/logo-lightning.svg deleted file mode 100644 index f65f84f..0000000 --- a/docs/_static/images/logo-lightning.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - long - Created with Sketch. - - - - PyTorch Lightning - - - diff --git a/docs/_static/images/logo-pytorch-dark.svg b/docs/_static/images/logo-pytorch-dark.svg deleted file mode 100644 index 9b4c1a5..0000000 --- a/docs/_static/images/logo-pytorch-dark.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_static/images/logo-pytorch-icon.svg b/docs/_static/images/logo-pytorch-icon.svg deleted file mode 100644 index 575f682..0000000 --- a/docs/_static/images/logo-pytorch-icon.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/docs/_static/images/logo-pytorch.svg b/docs/_static/images/logo-pytorch.svg deleted file mode 100644 index f8d44b9..0000000 --- a/docs/_static/images/logo-pytorch.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_static/images/logo-twitter-dark.svg b/docs/_static/images/logo-twitter-dark.svg deleted file mode 100644 index 1572570..0000000 --- a/docs/_static/images/logo-twitter-dark.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/docs/_static/images/pytorch-colab.svg b/docs/_static/images/pytorch-colab.svg deleted file mode 100644 index 2ab15e2..0000000 --- a/docs/_static/images/pytorch-colab.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/docs/_static/images/pytorch-download.svg b/docs/_static/images/pytorch-download.svg deleted file mode 100644 index cc37d63..0000000 --- a/docs/_static/images/pytorch-download.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - diff --git a/docs/_static/images/pytorch-github.svg b/docs/_static/images/pytorch-github.svg deleted file mode 100644 index 2c2570d..0000000 --- a/docs/_static/images/pytorch-github.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - diff --git a/docs/_static/images/pytorch-x.svg b/docs/_static/images/pytorch-x.svg deleted file mode 100644 index 74856ea..0000000 --- a/docs/_static/images/pytorch-x.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/docs/_static/images/search-icon.svg b/docs/_static/images/search-icon.svg deleted file mode 100644 index ebb0df8..0000000 --- a/docs/_static/images/search-icon.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Created with Sketch. - - - - - - - - - - - - - - - diff --git a/docs/_static/images/view-page-source-icon.svg b/docs/_static/images/view-page-source-icon.svg deleted file mode 100644 index 6f5bbe0..0000000 --- a/docs/_static/images/view-page-source-icon.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/docs/_static/jquery-3.5.1.js b/docs/_static/jquery-3.5.1.js deleted file mode 100644 index 5093733..0000000 --- a/docs/_static/jquery-3.5.1.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - 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" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -
-

Components

-
-
-class mmic_cmd.components.CmdComponent(*, name: str, scratch: bool, thread_safe: bool, thread_parallel: bool, node_parallel: bool, managed_memory: bool, extras: Dict[str, Any] = None)[source]
-
-
Parameters
-
    -
  • name (str)

  • -
  • scratch (bool)

  • -
  • thread_safe (bool)

  • -
  • thread_parallel (bool)

  • -
  • node_parallel (bool)

  • -
  • managed_memory (bool)

  • -
  • extras (Dict[Any], Optional)

  • -
-
-
-
- -
- - -
- -
-
- - - - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/genindex.html b/docs/genindex.html deleted file mode 100644 index c93f2bd..0000000 --- a/docs/genindex.html +++ /dev/null @@ -1,537 +0,0 @@ - - - - - - - - - - - - Index — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 84ae98e..0000000 --- a/docs/index.html +++ /dev/null @@ -1,516 +0,0 @@ - - - - - - - - - - - - Welcome to mmic_cmd’s documentation! — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- -
    - -
  • - - - Docs - - > -
  • - - -
  • Welcome to mmic_cmd’s documentation!
  • - - -
  • - - - - - -
  • - -
- - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/models.html b/docs/models.html deleted file mode 100644 index f7508c6..0000000 --- a/docs/models.html +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - - - - - - - Models — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -
-

Models

-
-
-class mmic_cmd.models.CmdInput(*, command: List[str], infiles: List[str] = None, outfiles: List[str] = None, outfiles_track: List[str] = [], raise_err: bool = False, as_binary: List[str] = None, scratch_name: str = None, scratch_directory: str = None, scratch_suffix: str = None, scratch_messy: bool = False, scratch_exist_ok: bool = False, blocking_files: List[str] = None, timeout: int = None, interupt_after: int = None, environment: Dict[str, str] = None, shell: bool = False, exit_code: int = 0, config: TaskConfig = None)[source]
-

Input model for command-line execution.

-
-
Parameters
-
    -
  • command (List[str]) – .

  • -
  • infiles (List[str], Optional) – Input files (abs paths) to be written in scratch dir. May be {}.

  • -
  • outfiles (List[str], Optional) – Output file name(s).

  • -
  • outfiles_track (List[str], Default: []) – Specifies which output files (by name) are tracked and not loaded in memory. The posix paths (instead of file contents) are returned instead in outfiles.

  • -
  • raise_err (bool, Default: False) – If set to True, a runtime exception is raised when stderr is not empty.

  • -
  • as_binary (List[str], Optional) – Keys of infiles or outfiles to be treated as bytes.

  • -
  • scratch_name (str, Optional) – Passed to temporary_directory.

  • -
  • scratch_directory (str, Optional) – Passed to temporary_directory.

  • -
  • scratch_suffix (str, Optional) – Passed to temporary_directory.

  • -
  • scratch_messy (bool, Default: False) – Passed to temporary_directory

  • -
  • scratch_exist_ok (bool, Default: False) – Passed to temporary_directory.

  • -
  • blocking_files (List[str], Optional) – Files which should stop execution if present beforehand.

  • -
  • timeout (int, Optional) – Stop the process after n seconds.

  • -
  • interupt_after (int, Optional) – Interupt the process (not hard kill) after n seconds.

  • -
  • environment (Dict[str], Optional) – The environment to run in.

  • -
  • shell (bool, Default: False) – Run command through the shell.

  • -
  • exit_code (int, Default: 0) – The exit code above which the process is considered failure.

  • -
  • config (, Optional) – Config class for executing tasks. See mmic.components.base.config.TaskConfig.

  • -
-
-
-
- -
-
-class mmic_cmd.models.CmdOutput(*, stdout: str, stderr: str = None, log: str = None, outfiles: Dict[str, Any] = None, proc: subprocess.Popen = None, scratch_directory: pathlib.PosixPath = None)[source]
-

Output model for commend-line execution.

-
-
Parameters
-
    -
  • stdout (str) – Standard output.

  • -
  • stderr (str, Optional) – Standard error.

  • -
  • log (str, Optional) – Logging output.

  • -
  • outfiles (Dict[Any], Optional) – List of FileOutput objects. See the :class: mmelemental.models.FileOutput.

  • -
  • proc (Popen, Optional)

  • -
  • scratch_directory (PosixPath, Optional)

  • -
-
-
-
- -
- - -
- -
-
- - - - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/_modules/index.html b/docs/modules/_modules/index.html deleted file mode 100644 index 6a3b86f..0000000 --- a/docs/modules/_modules/index.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - - - - - Overview: module code — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/_modules/mmic_cmd/components/cmd_component.html b/docs/modules/_modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 63267e1..0000000 --- a/docs/modules/_modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_load=inputs.outfiles_load, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/_modules/mmic_cmd/models/input.html b/docs/modules/_modules/mmic_cmd/models/input.html deleted file mode 100644 index 5b1aded..0000000 --- a/docs/modules/_modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """Input model for command-line execution.""" - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_load: Optional[bool] = Field( - True, - description="If set to True, output files are loaded in memory. Otherwise, the posix paths " - "are returned instead (default).", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/_modules/mmic_cmd/models/output.html b/docs/modules/_modules/mmic_cmd/models/output.html deleted file mode 100644 index 8c40567..0000000 --- a/docs/modules/_modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """Output model for commend-line execution.""" - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html deleted file mode 100644 index 81f4cac..0000000 --- a/docs/modules/index.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - - - - - Overview: module code — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/mmic_cmd/components/cmd_component.html b/docs/modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 1a8568e..0000000 --- a/docs/modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_load=inputs.outfiles_load, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/mmic_cmd/models/input.html b/docs/modules/mmic_cmd/models/input.html deleted file mode 100644 index d4653f5..0000000 --- a/docs/modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """Input model for command-line execution.""" - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_load: Optional[bool] = Field( - True, - description="If set to True, output files are loaded in memory. Otherwise, the posix paths " - "are returned instead (default).", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/modules/mmic_cmd/models/output.html b/docs/modules/mmic_cmd/models/output.html deleted file mode 100644 index eec9ce7..0000000 --- a/docs/modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """Output model for commend-line execution.""" - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/objects.inv b/docs/objects.inv deleted file mode 100644 index 4a8dbaa..0000000 Binary files a/docs/objects.inv and /dev/null differ diff --git a/docs/py-modindex.html b/docs/py-modindex.html deleted file mode 100644 index 0157412..0000000 --- a/docs/py-modindex.html +++ /dev/null @@ -1,513 +0,0 @@ - - - - - - - - - - - - Python Module Index — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/search.html b/docs/search.html deleted file mode 100644 index 7dc77de..0000000 --- a/docs/search.html +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - - - - - Search — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- - - - -
- -
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/searchindex.js b/docs/searchindex.js deleted file mode 100644 index dbe1cba..0000000 --- a/docs/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["components","index","models"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["components.rst","index.rst","models.rst"],objects:{"mmic_cmd.components":{CmdComponent:[0,1,1,""]},"mmic_cmd.models":{CmdInput:[2,1,1,""],CmdOutput:[2,1,1,""]},mmic_cmd:{components:[0,0,0,"-"],models:[2,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"]},objtypes:{"0":"py:module","1":"py:class"},terms:{"byte":2,"class":[0,2],"default":2,"int":2,"return":2,"true":2,The:2,abov:2,abs:2,after:2,ani:[0,2],api:[],as_binari:2,base:2,beforehand:2,blocking_fil:2,bool:[0,2],cmdcompon:0,cmdinput:2,cmdoutput:2,code:2,command:2,commend:2,compon:[1,2],config:2,consid:2,content:2,dict:[0,2],dir:2,empti:2,environ:2,error:2,except:2,execut:2,exit:2,exit_cod:2,extra:0,failur:2,fals:2,file:2,fileoutput:2,hard:2,index:1,infil:2,input:2,instead:2,interupt:2,interupt_aft:2,kei:2,kill:2,line:2,list:2,load:2,log:2,mai:2,managed_memori:0,memori:2,mmelement:2,mmic:2,mmic_cmd:[0,2],model:1,modul:1,name:[0,2],node_parallel:0,none:[0,2],object:2,option:[0,2],otherwis:[],outfil:2,outfiles_load:[],outfiles_track:2,output:2,page:1,paramet:[0,2],pass:2,path:2,pathlib:2,popen:2,posix:2,posixpath:2,present:2,proc:2,process:2,rais:2,raise_err:2,run:2,runtim:2,scratch:[0,2],scratch_directori:2,scratch_exist_ok:2,scratch_messi:2,scratch_nam:2,scratch_suffix:2,search:1,second:2,see:2,set:2,shell:2,should:2,sourc:[0,2],specifi:2,standard:2,stderr:2,stdout:2,stop:2,str:[0,2],subprocess:2,task:2,taskconfig:2,temporary_directori:2,thread_parallel:0,thread_saf:0,through:2,timeout:2,track:2,treat:2,when:2,which:2,written:2},titles:["Components","Welcome to mmic_cmd\u2019s documentation!","Models"],titleterms:{api:[],compon:0,content:1,document:1,indic:1,mmic_cmd:1,model:2,tabl:1,welcom:1}}) \ No newline at end of file diff --git a/docs/sources/_sources/components.rst.txt b/docs/sources/_sources/components.rst.txt deleted file mode 100644 index 6a8ee90..0000000 --- a/docs/sources/_sources/components.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -API -###### -.. automodule:: mmic_cmd.components - :members: diff --git a/docs/sources/_sources/index.rst.txt b/docs/sources/_sources/index.rst.txt deleted file mode 100644 index e87765c..0000000 --- a/docs/sources/_sources/index.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -.. mmic_cmd documentation master file, created by - sphinx-quickstart on Thu Mar 15 13:55:56 2018. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mmic_cmd's documentation! -========================================================= - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - components - models - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/sources/_sources/models.rst.txt b/docs/sources/_sources/models.rst.txt deleted file mode 100644 index 1b5db97..0000000 --- a/docs/sources/_sources/models.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Models -###### -.. automodule:: mmic_cmd.models - :members: diff --git a/docs/sources/components.rst.txt b/docs/sources/components.rst.txt deleted file mode 100644 index 6a8ee90..0000000 --- a/docs/sources/components.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -API -###### -.. automodule:: mmic_cmd.components - :members: diff --git a/docs/sources/index.rst.txt b/docs/sources/index.rst.txt deleted file mode 100644 index e87765c..0000000 --- a/docs/sources/index.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -.. mmic_cmd documentation master file, created by - sphinx-quickstart on Thu Mar 15 13:55:56 2018. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mmic_cmd's documentation! -========================================================= - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - components - models - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/sources/models.rst.txt b/docs/sources/models.rst.txt deleted file mode 100644 index 1b5db97..0000000 --- a/docs/sources/models.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Models -###### -.. automodule:: mmic_cmd.models - :members: diff --git a/docs/src/Makefile b/docs/src/Makefile deleted file mode 100644 index 737f199..0000000 --- a/docs/src/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -SPHINXPROJ = mmic_cmd -SOURCEDIR = . -BUILDDIR = _build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) \ No newline at end of file diff --git a/docs/src/README.md b/docs/src/README.md deleted file mode 100644 index 7ebc959..0000000 --- a/docs/src/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# Compiling mmic_cmd's Documentation - -The docs for this project are built with [Sphinx](http://www.sphinx-doc.org/en/master/). -To compile the docs, first ensure that Sphinx and the ReadTheDocs theme are installed. - - -```bash -conda install sphinx sphinx_rtd_theme -``` - - -Once installed, you can use the `Makefile` in this directory to compile static HTML pages by -```bash -make html -``` - -The compiled docs will be in the `_build` directory and can be viewed by opening `index.html` (which may itself -be inside a directory called `html/` depending on what version of Sphinx is installed). - - -A configuration file for [Read The Docs](https://readthedocs.org/) (readthedocs.yaml) is included in the top level of the repository. To use Read the Docs to host your documentation, go to https://readthedocs.org/ and connect this repository. You may need to change your default branch to `main` under Advanced Settings for the project. - -If you would like to use Read The Docs with `autodoc` (included automatically) and your package has dependencies, you will need to include those dependencies in your documentation yaml file (`docs/requirements.yaml`). - diff --git a/docs/src/_build/doctrees/api.doctree b/docs/src/_build/doctrees/api.doctree deleted file mode 100644 index 3f82d10..0000000 Binary files a/docs/src/_build/doctrees/api.doctree and /dev/null differ diff --git a/docs/src/_build/doctrees/components.doctree b/docs/src/_build/doctrees/components.doctree deleted file mode 100644 index c28ab27..0000000 Binary files a/docs/src/_build/doctrees/components.doctree and /dev/null differ diff --git a/docs/src/_build/doctrees/environment.pickle b/docs/src/_build/doctrees/environment.pickle deleted file mode 100644 index 7a14877..0000000 Binary files a/docs/src/_build/doctrees/environment.pickle and /dev/null differ diff --git a/docs/src/_build/doctrees/index.doctree b/docs/src/_build/doctrees/index.doctree deleted file mode 100644 index 51670e0..0000000 Binary files a/docs/src/_build/doctrees/index.doctree and /dev/null differ diff --git a/docs/src/_build/doctrees/models.doctree b/docs/src/_build/doctrees/models.doctree deleted file mode 100644 index 9902bc3..0000000 Binary files a/docs/src/_build/doctrees/models.doctree and /dev/null differ diff --git a/docs/src/_build/html/.buildinfo b/docs/src/_build/html/.buildinfo deleted file mode 100644 index 7bbd714..0000000 --- a/docs/src/_build/html/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: feb773b99563f2120d9c659a53d6f1d8 -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/src/_build/html/_modules/index.html b/docs/src/_build/html/_modules/index.html deleted file mode 100644 index cca33d9..0000000 --- a/docs/src/_build/html/_modules/index.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - - - - - Overview: module code — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_modules/mmic_cmd/components/cmd_component.html b/docs/src/_build/html/_modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 7c75cb6..0000000 --- a/docs/src/_build/html/_modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_track=inputs.outfiles_track, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_modules/mmic_cmd/models/input.html b/docs/src/_build/html/_modules/mmic_cmd/models/input.html deleted file mode 100644 index 7515918..0000000 --- a/docs/src/_build/html/_modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """Input model for command-line execution.""" - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_track: Optional[List[str]] = Field( - [], - description="Specifies which output files (by name) are tracked and not loaded in memory. The posix paths " - "(instead of file contents) are returned instead in `outfiles`.", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_modules/mmic_cmd/models/output.html b/docs/src/_build/html/_modules/mmic_cmd/models/output.html deleted file mode 100644 index 7d27413..0000000 --- a/docs/src/_build/html/_modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """Output model for commend-line execution.""" - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_sources/components.rst.txt b/docs/src/_build/html/_sources/components.rst.txt deleted file mode 100644 index 8df25d7..0000000 --- a/docs/src/_build/html/_sources/components.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Components -###### -.. automodule:: mmic_cmd.components - :members: diff --git a/docs/src/_build/html/_sources/index.rst.txt b/docs/src/_build/html/_sources/index.rst.txt deleted file mode 100644 index e87765c..0000000 --- a/docs/src/_build/html/_sources/index.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -.. mmic_cmd documentation master file, created by - sphinx-quickstart on Thu Mar 15 13:55:56 2018. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mmic_cmd's documentation! -========================================================= - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - components - models - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/src/_build/html/_sources/models.rst.txt b/docs/src/_build/html/_sources/models.rst.txt deleted file mode 100644 index 1b5db97..0000000 --- a/docs/src/_build/html/_sources/models.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Models -###### -.. automodule:: mmic_cmd.models - :members: diff --git a/docs/src/_build/html/_static/README.md b/docs/src/_build/html/_static/README.md deleted file mode 100644 index 2f0cf84..0000000 --- a/docs/src/_build/html/_static/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Static Doc Directory - -Add any paths that contain custom static files (such as style sheets) here, -relative to the `conf.py` file's directory. -They are copied after the builtin static files, -so a file named "default.css" will overwrite the builtin "default.css". - -The path to this folder is set in the Sphinx `conf.py` file in the line: -```python -templates_path = ['_static'] -``` - -## Examples of file to add to this directory -* Custom Cascading Style Sheets -* Custom JavaScript code -* Static logo images diff --git a/docs/src/_build/html/_static/basic.css b/docs/src/_build/html/_static/basic.css deleted file mode 100644 index b3bdc00..0000000 --- a/docs/src/_build/html/_static/basic.css +++ /dev/null @@ -1,861 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -div.section::after { - display: block; - content: ''; - clear: left; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, figure.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, figure.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, figure.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, figure.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar, -aside.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px; - background-color: #ffe; - width: 40%; - float: right; - clear: right; - overflow-x: auto; -} - -p.sidebar-title { - font-weight: bold; -} - -div.admonition, div.topic, blockquote { - clear: left; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- content of sidebars/topics/admonitions -------------------------------- */ - -div.sidebar > :last-child, -aside.sidebar > :last-child, -div.topic > :last-child, -div.admonition > :last-child { - margin-bottom: 0; -} - -div.sidebar::after, -aside.sidebar::after, -div.topic::after, -div.admonition::after, -blockquote::after { - display: block; - content: ''; - clear: both; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - margin-top: 10px; - margin-bottom: 10px; - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > :first-child, -td > :first-child { - margin-top: 0px; -} - -th > :last-child, -td > :last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure, figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption, figcaption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number, -figcaption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text, -figcaption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist { - margin: 1em 0; -} - -table.hlist td { - vertical-align: top; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -:not(li) > ol > li:first-child > :first-child, -:not(li) > ul > li:first-child > :first-child { - margin-top: 0px; -} - -:not(li) > ol > li:last-child > :last-child, -:not(li) > ul > li:last-child > :last-child { - margin-bottom: 0px; -} - -ol.simple ol p, -ol.simple ul p, -ul.simple ol p, -ul.simple ul p { - margin-top: 0; -} - -ol.simple > li:not(:first-child) > p, -ul.simple > li:not(:first-child) > p { - margin-top: 0; -} - -ol.simple p, -ul.simple p { - margin-bottom: 0; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: grid; - grid-template-columns: fit-content(30%) auto; -} - -dl.field-list > dt { - font-weight: bold; - word-break: break-word; - padding-left: 0.5em; - padding-right: 5px; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - padding-left: 0.5em; - margin-top: 0em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > :first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dl > dd:last-child, -dl > dd:last-child > :last-child { - margin-bottom: 0; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -pre, div[class*="highlight-"] { - clear: both; -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -div[class*="highlight-"] { - margin: 1em 0; -} - -td.linenos pre { - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - display: block; -} - -table.highlighttable tbody { - display: block; -} - -table.highlighttable tr { - display: flex; -} - -table.highlighttable td { - margin: 0; - padding: 0; -} - -table.highlighttable td.linenos { - padding-right: 0.5em; -} - -table.highlighttable td.code { - flex: 1; - overflow: hidden; -} - -.highlight .hll { - display: block; -} - -div.highlight pre, -table.highlighttable pre { - margin: 0; -} - -div.code-block-caption + div { - margin-top: 0; -} - -div.code-block-caption { - margin-top: 1em; - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -table.highlighttable td.linenos, -span.linenos, -div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ - user-select: none; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - margin: 1em 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: absolute; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/src/_build/html/_static/css/theme.css b/docs/src/_build/html/_static/css/theme.css deleted file mode 100644 index 798e6ea..0000000 --- a/docs/src/_build/html/_static/css/theme.css +++ /dev/null @@ -1,11990 +0,0 @@ -/*! - * Bootstrap v4.0.0 (https://getbootstrap.com) - * Copyright 2011-2018 The Bootstrap Authors - * Copyright 2011-2018 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -ms-overflow-style: scrollbar; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -@-ms-viewport { - width: device-width; -} -article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus { - outline: 0 !important; -} - -hr { - -webkit-box-sizing: content-box; - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: .5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -dfn { - font-style: italic; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; - -webkit-text-decoration-skip: objects; -} -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([tabindex]) { - color: inherit; - text-decoration: none; -} -a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { - color: inherit; - text-decoration: none; -} -a:not([href]):not([tabindex]):focus { - outline: 0; -} - -pre, -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: .5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding: 0; -} - -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-family: inherit; - font-weight: 500; - line-height: 1.2; - color: inherit; -} - -h1, .h1 { - font-size: 2.5rem; -} - -h2, .h2 { - font-size: 2rem; -} - -h3, .h3 { - font-size: 1.75rem; -} - -h4, .h4 { - font-size: 1.5rem; -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer::before { - content: "\2014 \00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-break: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -.row { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .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-sm, -.col-sm-auto, .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-md, -.col-md-auto, .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-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; -} - -.col-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; -} - -.col-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; -} - -.col-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; -} - -.col-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; -} - -.col-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; -} - -.col-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; -} - -.col-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; -} - -.col-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; -} - -.col-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; -} - -.col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; -} - -.order-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; -} - -.order-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; -} - -.order-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; -} - -.order-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; -} - -.order-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; -} - -.order-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; -} - -.order-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; -} - -.order-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; -} - -.order-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; -} - -.order-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; -} - -.order-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; -} - -.order-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; -} - -.order-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; -} - -.order-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; -} - -.offset-1 { - margin-left: 8.3333333333%; -} - -.offset-2 { - margin-left: 16.6666666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.3333333333%; -} - -.offset-5 { - margin-left: 41.6666666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.3333333333%; -} - -.offset-8 { - margin-left: 66.6666666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.3333333333%; -} - -.offset-11 { - margin-left: 91.6666666667%; -} - -@media (min-width: 576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-sm-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-sm-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-sm-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-sm-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-sm-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-sm-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-sm-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-sm-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-sm-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-sm-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-sm-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-sm-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-sm-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-sm-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-sm-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-sm-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-sm-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-sm-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-sm-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-sm-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-sm-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-sm-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-sm-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-sm-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-sm-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-sm-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-sm-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-sm-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-sm-0 { - margin-left: 0; - } - - .offset-sm-1 { - margin-left: 8.3333333333%; - } - - .offset-sm-2 { - margin-left: 16.6666666667%; - } - - .offset-sm-3 { - margin-left: 25%; - } - - .offset-sm-4 { - margin-left: 33.3333333333%; - } - - .offset-sm-5 { - margin-left: 41.6666666667%; - } - - .offset-sm-6 { - margin-left: 50%; - } - - .offset-sm-7 { - margin-left: 58.3333333333%; - } - - .offset-sm-8 { - margin-left: 66.6666666667%; - } - - .offset-sm-9 { - margin-left: 75%; - } - - .offset-sm-10 { - margin-left: 83.3333333333%; - } - - .offset-sm-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-md-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-md-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-md-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-md-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-md-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-md-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-md-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-md-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-md-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-md-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-md-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-md-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-md-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-md-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-md-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-md-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-md-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-md-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-md-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-md-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-md-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-md-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-md-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-md-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-md-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-md-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-md-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-md-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-md-0 { - margin-left: 0; - } - - .offset-md-1 { - margin-left: 8.3333333333%; - } - - .offset-md-2 { - margin-left: 16.6666666667%; - } - - .offset-md-3 { - margin-left: 25%; - } - - .offset-md-4 { - margin-left: 33.3333333333%; - } - - .offset-md-5 { - margin-left: 41.6666666667%; - } - - .offset-md-6 { - margin-left: 50%; - } - - .offset-md-7 { - margin-left: 58.3333333333%; - } - - .offset-md-8 { - margin-left: 66.6666666667%; - } - - .offset-md-9 { - margin-left: 75%; - } - - .offset-md-10 { - margin-left: 83.3333333333%; - } - - .offset-md-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-lg-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-lg-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-lg-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-lg-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-lg-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-lg-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-lg-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-lg-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-lg-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-lg-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-lg-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-lg-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-lg-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-lg-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-lg-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-lg-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-lg-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-lg-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-lg-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-lg-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-lg-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-lg-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-lg-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-lg-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-lg-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-lg-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-lg-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-lg-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-lg-0 { - margin-left: 0; - } - - .offset-lg-1 { - margin-left: 8.3333333333%; - } - - .offset-lg-2 { - margin-left: 16.6666666667%; - } - - .offset-lg-3 { - margin-left: 25%; - } - - .offset-lg-4 { - margin-left: 33.3333333333%; - } - - .offset-lg-5 { - margin-left: 41.6666666667%; - } - - .offset-lg-6 { - margin-left: 50%; - } - - .offset-lg-7 { - margin-left: 58.3333333333%; - } - - .offset-lg-8 { - margin-left: 66.6666666667%; - } - - .offset-lg-9 { - margin-left: 75%; - } - - .offset-lg-10 { - margin-left: 83.3333333333%; - } - - .offset-lg-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-xl-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-xl-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-xl-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-xl-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-xl-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-xl-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-xl-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-xl-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-xl-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-xl-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-xl-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-xl-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-xl-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-xl-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-xl-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-xl-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-xl-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-xl-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-xl-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-xl-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-xl-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-xl-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-xl-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-xl-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-xl-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-xl-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-xl-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-xl-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-xl-0 { - margin-left: 0; - } - - .offset-xl-1 { - margin-left: 8.3333333333%; - } - - .offset-xl-2 { - margin-left: 16.6666666667%; - } - - .offset-xl-3 { - margin-left: 25%; - } - - .offset-xl-4 { - margin-left: 33.3333333333%; - } - - .offset-xl-5 { - margin-left: 41.6666666667%; - } - - .offset-xl-6 { - margin-left: 50%; - } - - .offset-xl-7 { - margin-left: 58.3333333333%; - } - - .offset-xl-8 { - margin-left: 66.6666666667%; - } - - .offset-xl-9 { - margin-left: 75%; - } - - .offset-xl-10 { - margin-left: 83.3333333333%; - } - - .offset-xl-11 { - margin-left: 91.6666666667%; - } -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 1rem; - background-color: transparent; -} -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; -} -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; -} -.table tbody + tbody { - border-top: 2px solid #dee2e6; -} -.table .table { - background-color: #fff; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dee2e6; -} -.table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6; -} -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; -} - -.table-hover .table-primary:hover { - background-color: #9fcdff; -} -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #9fcdff; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; -} -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #c8cbcf; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; -} - -.table-hover .table-success:hover { - background-color: #b1dfbb; -} -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #b1dfbb; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; -} - -.table-hover .table-info:hover { - background-color: #abdde5; -} -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #abdde5; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1; -} -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffe8a1; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7; -} -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f1b0b7; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; -} - -.table-hover .table-light:hover { - background-color: #ececf6; -} -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #ececf6; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe; -} -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #b9bbbe; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #212529; - border-color: #32383e; -} -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.table-dark { - color: #fff; - background-color: #212529; -} -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #32383e; -} -.table-dark.table-bordered { - border: 0; -} -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} -.table-dark.table-hover tbody tr:hover { - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; -} -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -select.form-control:not([size]):not([multiple]) { - height: calc(2.25rem + 2px); -} -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding-top: 0.375rem; - padding-bottom: 0.375rem; - margin-bottom: 0; - line-height: 1.5; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, -.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, -.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, -.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, -.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, -.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, -.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, -.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, -.input-group-lg > .input-group-append > .form-control-plaintext.btn { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), -.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), -.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), -.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), -.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { - height: calc(1.8125rem + 2px); -} - -.form-control-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), -.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), -.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), -.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), -.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { - height: calc(2.875rem + 2px); -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1; - color: #fff; - background-color: rgba(40, 167, 69, 0.8); - border-radius: .2rem; -} - -.was-validated .form-control:valid, .form-control.is-valid, -.was-validated .custom-select:valid, -.custom-select.is-valid { - border-color: #28a745; -} -.was-validated .form-control:valid:focus, .form-control.is-valid:focus, -.was-validated .custom-select:valid:focus, -.custom-select.is-valid:focus { - border-color: #28a745; - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} -.was-validated .form-control:valid ~ .valid-feedback, -.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip, -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, -.custom-select.is-valid ~ .valid-feedback, -.custom-select.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; -} -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; -} -.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - background-color: #71dd8a; -} -.was-validated .custom-control-input:valid ~ .valid-feedback, -.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, -.custom-control-input.is-valid ~ .valid-tooltip { - display: block; -} -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - background-color: #34ce57; -} -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; -} -.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { - border-color: inherit; -} -.was-validated .custom-file-input:valid ~ .valid-feedback, -.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, -.custom-file-input.is-valid ~ .valid-tooltip { - display: block; -} -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1; - color: #fff; - background-color: rgba(220, 53, 69, 0.8); - border-radius: .2rem; -} - -.was-validated .form-control:invalid, .form-control.is-invalid, -.was-validated .custom-select:invalid, -.custom-select.is-invalid { - border-color: #dc3545; -} -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, -.was-validated .custom-select:invalid:focus, -.custom-select.is-invalid:focus { - border-color: #dc3545; - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} -.was-validated .form-control:invalid ~ .invalid-feedback, -.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip, -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, -.custom-select.is-invalid ~ .invalid-feedback, -.custom-select.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; -} -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - background-color: #efa2a9; -} -.was-validated .custom-control-input:invalid ~ .invalid-feedback, -.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, -.custom-control-input.is-invalid ~ .invalid-tooltip { - display: block; -} -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - background-color: #e4606d; -} -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; -} -.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { - border-color: inherit; -} -.was-validated .custom-file-input:invalid ~ .invalid-feedback, -.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, -.custom-file-input.is-invalid ~ .invalid-tooltip { - display: block; -} -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.form-inline { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group { - width: auto; - } - .form-inline .form-check { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.btn { - display: inline-block; - font-weight: 400; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -} -.btn:hover, .btn:focus { - text-decoration: none; -} -.btn:focus, .btn.focus { - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.btn.disabled, .btn:disabled { - opacity: 0.65; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active { - background-image: none; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; -} -.btn-primary:focus, .btn-primary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; -} -.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; -} -.btn-secondary:focus, .btn-secondary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; -} -.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; -} -.btn-success:focus, .btn-success.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; -} -.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; -} -.btn-info:focus, .btn-info.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; -} -.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; -} -.btn-warning:focus, .btn-warning.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; -} -.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; -} -.btn-danger:focus, .btn-danger.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; -} -.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; -} -.btn-light:focus, .btn-light.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; -} -.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; -} -.btn-dark:focus, .btn-dark.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; -} -.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-outline-primary { - color: #007bff; - background-color: transparent; - background-image: none; - border-color: #007bff; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:focus, .btn-outline-primary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-secondary { - color: #6c757d; - background-color: transparent; - background-image: none; - border-color: #6c757d; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:focus, .btn-outline-secondary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-success { - color: #28a745; - background-color: transparent; - background-image: none; - border-color: #28a745; -} -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-outline-success:focus, .btn-outline-success.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-info { - color: #17a2b8; - background-color: transparent; - background-image: none; - border-color: #17a2b8; -} -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:focus, .btn-outline-info.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-warning { - color: #ffc107; - background-color: transparent; - background-image: none; - border-color: #ffc107; -} -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:focus, .btn-outline-warning.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-danger { - color: #dc3545; - background-color: transparent; - background-image: none; - border-color: #dc3545; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:focus, .btn-outline-danger.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-light { - color: #f8f9fa; - background-color: transparent; - background-image: none; - border-color: #f8f9fa; -} -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:focus, .btn-outline-light.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-dark { - color: #343a40; - background-color: transparent; - background-image: none; - border-color: #343a40; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:focus, .btn-outline-dark.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-link { - font-weight: 400; - color: #007bff; - background-color: transparent; -} -.btn-link:hover { - color: #0056b3; - text-decoration: underline; - background-color: transparent; - border-color: transparent; -} -.btn-link:focus, .btn-link.focus { - text-decoration: underline; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.show { - opacity: 1; -} - -.collapse { - display: none; -} -.collapse.show { - display: block; -} - -tr.collapse.show { - display: table-row; -} - -tbody.collapse.show { - display: table-row-group; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition: height 0.35s ease; - transition: height 0.35s ease; -} - -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.dropup .dropdown-menu { - margin-top: 0; - margin-bottom: 0.125rem; -} -.dropup .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - margin-top: 0; - margin-left: 0.125rem; -} -.dropright .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - margin-top: 0; - margin-right: 0.125rem; -} -.dropleft .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} -.dropleft .dropdown-toggle::after { - display: none; -} -.dropleft .dropdown-toggle::before { - display: inline-block; - width: 0; - height: 0; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; -} -.dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} -.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group, -.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-left: -1px; -} - -.btn-toolbar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after { - margin-left: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} -.btn-group-vertical .btn, -.btn-group-vertical .btn-group { - width: 100%; -} -.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(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - width: 100%; -} -.input-group > .form-control, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - margin-bottom: 0; -} -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file:focus { - z-index: 3; -} -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .custom-file { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.input-group-text input[type="radio"], -.input-group-text input[type="checkbox"] { - margin-top: 0; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; -} - -.custom-control-inline { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - z-index: -1; - opacity: 0; -} -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - background-color: #007bff; -} -.custom-control-input:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-control-input:active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; -} -.custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} -.custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - margin-bottom: 0; -} -.custom-control-label::before { - position: absolute; - top: 0.25rem; - left: 0; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #dee2e6; -} -.custom-control-label::after { - position: absolute; - top: 0.25rem; - left: 0; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background-repeat: no-repeat; - background-position: center center; - background-size: 50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); -} -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); -} -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; - background-size: 8px 10px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} -.custom-select:focus { - border-color: #80bdff; - outline: 0; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); -} -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} -.custom-select::-ms-expand { - opacity: 0; -} - -.custom-select-sm { - height: calc(1.8125rem + 2px); - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 75%; -} - -.custom-select-lg { - height: calc(2.875rem + 2px); - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 125%; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(2.25rem + 2px); - margin: 0; - opacity: 0; -} -.custom-file-input:focus ~ .custom-file-control { - border-color: #80bdff; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-file-input:focus ~ .custom-file-control::before { - border-color: #80bdff; -} -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(2.25rem + 2px); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(calc(2.25rem + 2px) - 1px * 2); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: 1px solid #ced4da; - border-radius: 0 0.25rem 0.25rem 0; -} - -.nav { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:hover, .nav-link:focus { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 0.25rem; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; -} - -.nav-fill .nav-item { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 0.5rem 1rem; -} -.navbar > .container, -.navbar > .container-fluid { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; -} -.navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; -} -.navbar-toggler:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 576px) { - .navbar-expand-sm { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } - .navbar-expand-sm .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 768px) { - .navbar-expand-md { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } - .navbar-expand-md .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 992px) { - .navbar-expand-lg { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } - .navbar-expand-lg .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 1200px) { - .navbar-expand-xl { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } - .navbar-expand-xl .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -.navbar-expand { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} -.navbar-expand .dropup .dropdown-menu { - top: auto; - bottom: 100%; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-text a { - color: #fff; -} -.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group:first-child .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.card > .list-group:last-child .list-group-item:last-child { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.card-body { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} - -.card-img { - width: 100%; - border-radius: calc(0.25rem - 1px); -} - -.card-img-top { - width: 100%; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img-bottom { - width: 100%; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-deck { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.card-deck .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-deck { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.card-group > .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-group { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - } - .card-group > .card { - -webkit-box-flex: 1; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:first-child .card-img-top, - .card-group > .card:first-child .card-header { - border-top-right-radius: 0; - } - .card-group > .card:first-child .card-img-bottom, - .card-group > .card:first-child .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:last-child .card-img-top, - .card-group > .card:last-child .card-header { - border-top-left-radius: 0; - } - .card-group > .card:last-child .card-img-bottom, - .card-group > .card:last-child .card-footer { - border-bottom-left-radius: 0; - } - .card-group > .card:only-child { - border-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-top, - .card-group > .card:only-child .card-header { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-bottom, - .card-group > .card:only-child .card-footer { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { - border-radius: 0; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { - border-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} -@media (min-width: 576px) { - .card-columns { - -webkit-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - column-gap: 1.25rem; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.breadcrumb { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - padding-left: 0.5rem; - color: #6c757d; - content: "/"; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; -} -.page-link:hover { - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; -} -.page-link:focus { - z-index: 2; - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.page-link:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} -.page-item.active .page-link { - z-index: 1; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; -} -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; -} -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; -} -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #007bff; -} -.badge-primary[href]:hover, .badge-primary[href]:focus { - color: #fff; - text-decoration: none; - background-color: #0062cc; -} - -.badge-secondary { - color: #fff; - background-color: #6c757d; -} -.badge-secondary[href]:hover, .badge-secondary[href]:focus { - color: #fff; - text-decoration: none; - background-color: #545b62; -} - -.badge-success { - color: #fff; - background-color: #28a745; -} -.badge-success[href]:hover, .badge-success[href]:focus { - color: #fff; - text-decoration: none; - background-color: #1e7e34; -} - -.badge-info { - color: #fff; - background-color: #17a2b8; -} -.badge-info[href]:hover, .badge-info[href]:focus { - color: #fff; - text-decoration: none; - background-color: #117a8b; -} - -.badge-warning { - color: #212529; - background-color: #ffc107; -} -.badge-warning[href]:hover, .badge-warning[href]:focus { - color: #212529; - text-decoration: none; - background-color: #d39e00; -} - -.badge-danger { - color: #fff; - background-color: #dc3545; -} -.badge-danger[href]:hover, .badge-danger[href]:focus { - color: #fff; - text-decoration: none; - background-color: #bd2130; -} - -.badge-light { - color: #212529; - background-color: #f8f9fa; -} -.badge-light[href]:hover, .badge-light[href]:focus { - color: #212529; - text-decoration: none; - background-color: #dae0e5; -} - -.badge-dark { - color: #fff; - background-color: #343a40; -} -.badge-dark[href]:hover, .badge-dark[href]:focus { - color: #fff; - text-decoration: none; - background-color: #1d2124; -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; -} -@media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 4rem; -} -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; -} -.alert-primary hr { - border-top-color: #9fcdff; -} -.alert-primary .alert-link { - color: #002752; -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; -} -.alert-secondary hr { - border-top-color: #c8cbcf; -} -.alert-secondary .alert-link { - color: #202326; -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; -} -.alert-success hr { - border-top-color: #b1dfbb; -} -.alert-success .alert-link { - color: #0b2e13; -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; -} -.alert-info hr { - border-top-color: #abdde5; -} -.alert-info .alert-link { - color: #062c33; -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; -} -.alert-warning hr { - border-top-color: #ffe8a1; -} -.alert-warning .alert-link { - color: #533f03; -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; -} -.alert-danger hr { - border-top-color: #f1b0b7; -} -.alert-danger .alert-link { - color: #491217; -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; -} -.alert-light hr { - border-top-color: #ececf6; -} -.alert-light .alert-link { - color: #686868; -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; -} -.alert-dark hr { - border-top-color: #b9bbbe; -} -.alert-dark .alert-link { - color: #040505; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} -.progress { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - color: #fff; - text-align: center; - background-color: #007bff; - -webkit-transition: width 0.6s ease; - transition: width 0.6s ease; -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite; -} - -.media { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; -} - -.media-body { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.list-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:hover, .list-group-item-action:focus { - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.list-group-item:hover, .list-group-item:focus { - z-index: 1; - text-decoration: none; -} -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.list-group-flush .list-group-item { - border-right: 0; - border-left: 0; - border-radius: 0; -} -.list-group-flush:first-child .list-group-item:first-child { - border-top: 0; -} -.list-group-flush:last-child .list-group-item:last-child { - border-bottom: 0; -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; -} -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; -} -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; -} -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; -} -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; -} -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; -} -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; -} -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; -} -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - opacity: .75; -} -.close:not(:disabled):not(.disabled) { - cursor: pointer; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; - -webkit-appearance: none; -} - -.modal-open { - overflow: hidden; -} - -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - outline: 0; -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - -webkit-transition: -webkit-transform 0.3s ease-out; - transition: -webkit-transform 0.3s ease-out; - transition: transform 0.3s ease-out; - transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.show .modal-dialog { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); -} - -.modal-dialog-centered { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - (0.5rem * 2)); -} - -.modal-content { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem; - border-bottom: 1px solid #e9ecef; - border-top-left-radius: 0.3rem; - border-top-right-radius: 0.3rem; -} -.modal-header .close { - padding: 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 1rem; - border-top: 1px solid #e9ecef; -} -.modal-footer > :not(:first-child) { - margin-left: .25rem; -} -.modal-footer > :not(:last-child) { - margin-right: .25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - - .modal-dialog-centered { - min-height: calc(100% - (1.75rem * 2)); - } - - .modal-sm { - max-width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - max-width: 800px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; -} -.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; -} -.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; -} -.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; -} -.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; -} -.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; -} -.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; -} -.popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, .bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; -} -.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { - bottom: calc((0.5rem + 1px) * -1); -} -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, -.bs-popover-top .arrow::after, -.bs-popover-auto[x-placement^="top"] .arrow::after { - border-width: 0.5rem 0.5rem 0; -} -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { - bottom: 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { - bottom: 1px; - border-top-color: #fff; -} - -.bs-popover-right, .bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; -} -.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { - left: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, -.bs-popover-right .arrow::after, -.bs-popover-auto[x-placement^="right"] .arrow::after { - border-width: 0.5rem 0.5rem 0.5rem 0; -} -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { - left: 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { - left: 1px; - border-right-color: #fff; -} - -.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; -} -.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { - top: calc((0.5rem + 1px) * -1); -} -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, -.bs-popover-bottom .arrow::after, -.bs-popover-auto[x-placement^="bottom"] .arrow::after { - border-width: 0 0.5rem 0.5rem 0.5rem; -} -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { - top: 0; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { - top: 1px; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, .bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; -} -.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { - right: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, -.bs-popover-left .arrow::after, -.bs-popover-auto[x-placement^="left"] .arrow::after { - border-width: 0.5rem 0 0.5rem 0.5rem; -} -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { - right: 0; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { - right: 1px; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - color: inherit; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} - -.carousel-item { - position: relative; - display: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 100%; - -webkit-transition: -webkit-transform 0.6s ease; - transition: -webkit-transform 0.6s ease; - transition: transform 0.6s ease; - transition: transform 0.6s ease, -webkit-transform 0.6s ease; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next, -.carousel-item-prev { - position: absolute; - top: 0; -} - -.carousel-item-next.carousel-item-left, -.carousel-item-prev.carousel-item-right { - -webkit-transform: translateX(0); - transform: translateX(0); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-next.carousel-item-left, - .carousel-item-prev.carousel-item-right { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.carousel-item-next, -.active.carousel-item-right { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-next, - .active.carousel-item-right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -.carousel-item-prev, -.active.carousel-item-left { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-prev, - .active.carousel-item-left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; -} -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: transparent no-repeat center center; - background-size: 100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 10px; - left: 0; - z-index: 15; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} -.carousel-indicators li { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - background-color: rgba(255, 255, 255, 0.5); -} -.carousel-indicators li::before { - position: absolute; - top: -10px; - left: 0; - display: inline-block; - width: 100%; - height: 10px; - content: ""; -} -.carousel-indicators li::after { - position: absolute; - bottom: -10px; - left: 0; - display: inline-block; - width: 100%; - height: 10px; - content: ""; -} -.carousel-indicators .active { - 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; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - background-color: #007bff !important; -} - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; -} - -.bg-secondary { - background-color: #6c757d !important; -} - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; -} - -.bg-success { - background-color: #28a745 !important; -} - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; -} - -.bg-info { - background-color: #17a2b8 !important; -} - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; -} - -.bg-warning { - background-color: #ffc107 !important; -} - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; -} - -.bg-danger { - background-color: #dc3545 !important; -} - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; -} - -.bg-light { - background-color: #f8f9fa !important; -} - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; -} - -.bg-dark { - background-color: #343a40 !important; -} - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-right { - border-right: 1px solid #dee2e6 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-left { - border-left: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #007bff !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #28a745 !important; -} - -.border-info { - border-color: #17a2b8 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #343a40 !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; -} - -.d-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - - .d-sm-inline { - display: inline !important; - } - - .d-sm-inline-block { - display: inline-block !important; - } - - .d-sm-block { - display: block !important; - } - - .d-sm-table { - display: table !important; - } - - .d-sm-table-row { - display: table-row !important; - } - - .d-sm-table-cell { - display: table-cell !important; - } - - .d-sm-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-sm-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - - .d-md-inline { - display: inline !important; - } - - .d-md-inline-block { - display: inline-block !important; - } - - .d-md-block { - display: block !important; - } - - .d-md-table { - display: table !important; - } - - .d-md-table-row { - display: table-row !important; - } - - .d-md-table-cell { - display: table-cell !important; - } - - .d-md-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-md-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - - .d-lg-inline { - display: inline !important; - } - - .d-lg-inline-block { - display: inline-block !important; - } - - .d-lg-block { - display: block !important; - } - - .d-lg-table { - display: table !important; - } - - .d-lg-table-row { - display: table-row !important; - } - - .d-lg-table-cell { - display: table-cell !important; - } - - .d-lg-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-lg-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - - .d-xl-inline { - display: inline !important; - } - - .d-xl-inline-block { - display: inline-block !important; - } - - .d-xl-block { - display: block !important; - } - - .d-xl-table { - display: table !important; - } - - .d-xl-table-row { - display: table-row !important; - } - - .d-xl-table-cell { - display: table-cell !important; - } - - .d-xl-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-xl-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media print { - .d-print-none { - display: none !important; - } - - .d-print-inline { - display: inline !important; - } - - .d-print-inline-block { - display: inline-block !important; - } - - .d-print-block { - display: block !important; - } - - .d-print-table { - display: table !important; - } - - .d-print-table-row { - display: table-row !important; - } - - .d-print-table-cell { - display: table-cell !important; - } - - .d-print-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-print-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive::before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.8571428571%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.flex-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.flex-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.justify-content-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.justify-content-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.justify-content-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.justify-content-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.align-items-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.align-items-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.align-items-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; -} - -.align-items-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.align-items-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-sm-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-sm-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-sm-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-sm-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-sm-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-sm-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-sm-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-sm-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-sm-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-sm-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-sm-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-sm-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 768px) { - .flex-md-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-md-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-md-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-md-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-md-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-md-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-md-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-md-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-md-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-md-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-md-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-md-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-md-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 992px) { - .flex-lg-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-lg-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-lg-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-lg-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-lg-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-lg-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-lg-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-lg-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-lg-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-lg-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-lg-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-lg-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-lg-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 1200px) { - .flex-xl-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-xl-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-xl-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-xl-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-xl-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-xl-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-xl-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-xl-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-xl-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-xl-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-xl-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-xl-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-xl-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - - .float-sm-right { - float: right !important; - } - - .float-sm-none { - float: none !important; - } -} -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - - .float-md-right { - float: right !important; - } - - .float-md-none { - float: none !important; - } -} -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - - .float-lg-right { - float: right !important; - } - - .float-lg-none { - float: none !important; - } -} -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - - .float-xl-right { - float: right !important; - } - - .float-xl-none { - float: none !important; - } -} -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports ((position: -webkit-sticky) or (position: sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; - -webkit-clip-path: none; - clip-path: none; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - - .m-sm-1 { - margin: 0.25rem !important; - } - - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - - .m-sm-2 { - margin: 0.5rem !important; - } - - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - - .m-sm-3 { - margin: 1rem !important; - } - - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - - .m-sm-4 { - margin: 1.5rem !important; - } - - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - - .m-sm-5 { - margin: 3rem !important; - } - - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - - .p-sm-0 { - padding: 0 !important; - } - - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - - .p-sm-1 { - padding: 0.25rem !important; - } - - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - - .p-sm-2 { - padding: 0.5rem !important; - } - - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - - .p-sm-3 { - padding: 1rem !important; - } - - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - - .p-sm-4 { - padding: 1.5rem !important; - } - - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - - .p-sm-5 { - padding: 3rem !important; - } - - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - - .m-sm-auto { - margin: auto !important; - } - - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - - .m-md-1 { - margin: 0.25rem !important; - } - - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - - .m-md-2 { - margin: 0.5rem !important; - } - - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - - .m-md-3 { - margin: 1rem !important; - } - - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - - .m-md-4 { - margin: 1.5rem !important; - } - - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - - .m-md-5 { - margin: 3rem !important; - } - - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - - .p-md-0 { - padding: 0 !important; - } - - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - - .p-md-1 { - padding: 0.25rem !important; - } - - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - - .p-md-2 { - padding: 0.5rem !important; - } - - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - - .p-md-3 { - padding: 1rem !important; - } - - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - - .p-md-4 { - padding: 1.5rem !important; - } - - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - - .p-md-5 { - padding: 3rem !important; - } - - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - - .m-md-auto { - margin: auto !important; - } - - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - - .m-lg-1 { - margin: 0.25rem !important; - } - - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - - .m-lg-2 { - margin: 0.5rem !important; - } - - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - - .m-lg-3 { - margin: 1rem !important; - } - - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - - .m-lg-4 { - margin: 1.5rem !important; - } - - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - - .m-lg-5 { - margin: 3rem !important; - } - - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - - .p-lg-0 { - padding: 0 !important; - } - - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - - .p-lg-1 { - padding: 0.25rem !important; - } - - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - - .p-lg-2 { - padding: 0.5rem !important; - } - - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - - .p-lg-3 { - padding: 1rem !important; - } - - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - - .p-lg-4 { - padding: 1.5rem !important; - } - - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - - .p-lg-5 { - padding: 3rem !important; - } - - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - - .m-lg-auto { - margin: auto !important; - } - - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - - .m-xl-1 { - margin: 0.25rem !important; - } - - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - - .m-xl-2 { - margin: 0.5rem !important; - } - - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - - .m-xl-3 { - margin: 1rem !important; - } - - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - - .m-xl-4 { - margin: 1.5rem !important; - } - - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - - .m-xl-5 { - margin: 3rem !important; - } - - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - - .p-xl-0 { - padding: 0 !important; - } - - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - - .p-xl-1 { - padding: 0.25rem !important; - } - - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - - .p-xl-2 { - padding: 0.5rem !important; - } - - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - - .p-xl-3 { - padding: 1rem !important; - } - - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - - .p-xl-4 { - padding: 1.5rem !important; - } - - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - - .p-xl-5 { - padding: 3rem !important; - } - - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - - .m-xl-auto { - margin: auto !important; - } - - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} -.text-justify { - text-align: justify !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - - .text-sm-right { - text-align: right !important; - } - - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - - .text-md-right { - text-align: right !important; - } - - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - - .text-lg-right { - text-align: right !important; - } - - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - - .text-xl-right { - text-align: right !important; - } - - .text-xl-center { - text-align: center !important; - } -} -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #007bff !important; -} - -a.text-primary:hover, a.text-primary:focus { - color: #0062cc !important; -} - -.text-secondary { - color: #6c757d !important; -} - -a.text-secondary:hover, a.text-secondary:focus { - color: #545b62 !important; -} - -.text-success { - color: #28a745 !important; -} - -a.text-success:hover, a.text-success:focus { - color: #1e7e34 !important; -} - -.text-info { - color: #17a2b8 !important; -} - -a.text-info:hover, a.text-info:focus { - color: #117a8b !important; -} - -.text-warning { - color: #ffc107 !important; -} - -a.text-warning:hover, a.text-warning:focus { - color: #d39e00 !important; -} - -.text-danger { - color: #dc3545 !important; -} - -a.text-danger:hover, a.text-danger:focus { - color: #bd2130 !important; -} - -.text-light { - color: #f8f9fa !important; -} - -a.text-light:hover, a.text-light:focus { - color: #dae0e5 !important; -} - -.text-dark { - color: #343a40 !important; -} - -a.text-dark:hover, a.text-dark:focus { - color: #1d2124 !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - a:not(.btn) { - text-decoration: underline; - } - - abbr[title]::after { - content: " (" attr(title) ")"; - } - - pre { - white-space: pre-wrap !important; - } - - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, - img { - page-break-inside: avoid; - } - - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - @page { - size: a3; - } - body { - min-width: 992px !important; - } - - .container { - min-width: 992px !important; - } - - .navbar { - display: none; - } - - .badge { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -/*Github syntax highlighting theme via Rouge*/ -.highlight table td { - padding: 5px; -} - -.highlight table pre { - margin: 0; -} - -.highlight .cm { - color: #999988; - font-style: italic; -} - -.highlight .cp { - color: #999999; - font-weight: bold; -} - -.highlight .c1 { - color: #999988; - font-style: italic; -} - -.highlight .cs { - color: #999999; - font-weight: bold; - font-style: italic; -} - -.highlight .c, .highlight .cd { - color: #999988; - font-style: italic; -} - -.highlight .err { - color: #a61717; - background-color: #e3d2d2; -} - -.highlight .gd { - color: #000000; - background-color: #ffdddd; -} - -.highlight .ge { - color: #000000; - font-style: italic; -} - -.highlight .gr { - color: #aa0000; -} - -.highlight .gh { - color: #999999; -} - -.highlight .gi { - color: #000000; - background-color: #ddffdd; -} - -.highlight .go { - color: #888888; -} - -.highlight .gp { - color: #555555; -} - -.highlight .gs { - font-weight: bold; -} - -.highlight .gu { - color: #aaaaaa; -} - -.highlight .gt { - color: #aa0000; -} - -.highlight .kc { - color: #000000; - font-weight: bold; -} - -.highlight .kd { - color: #000000; - font-weight: bold; -} - -.highlight .kn { - color: #000000; - font-weight: bold; -} - -.highlight .kp { - color: #000000; - font-weight: bold; -} - -.highlight .kr { - color: #000000; - font-weight: bold; -} - -.highlight .kt { - color: #445588; - font-weight: bold; -} - -.highlight .k, .highlight .kv { - color: #000000; - font-weight: bold; -} - -.highlight .mf { - color: #009999; -} - -.highlight .mh { - color: #009999; -} - -.highlight .il { - color: #009999; -} - -.highlight .mi { - color: #009999; -} - -.highlight .mo { - color: #009999; -} - -.highlight .m, .highlight .mb, .highlight .mx { - color: #009999; -} - -.highlight .sb { - color: #d14; -} - -.highlight .sc { - color: #d14; -} - -.highlight .sd { - color: #d14; -} - -.highlight .s2 { - color: #d14; -} - -.highlight .se { - color: #d14; -} - -.highlight .sh { - color: #d14; -} - -.highlight .si { - color: #d14; -} - -.highlight .sx { - color: #d14; -} - -.highlight .sr { - color: #009926; -} - -.highlight .s1 { - color: #d14; -} - -.highlight .ss { - color: #990073; -} - -.highlight .s { - color: #d14; -} - -.highlight .na { - color: #008080; -} - -.highlight .bp { - color: #999999; -} - -.highlight .nb { - color: #0086B3; -} - -.highlight .nc { - color: #445588; - font-weight: bold; -} - -.highlight .no { - color: #008080; -} - -.highlight .nd { - color: #3c5d5d; - font-weight: bold; -} - -.highlight .ni { - color: #800080; -} - -.highlight .ne { - color: #990000; - font-weight: bold; -} - -.highlight .nf { - color: #990000; - font-weight: bold; -} - -.highlight .nl { - color: #990000; - font-weight: bold; -} - -.highlight .nn { - color: #555555; -} - -.highlight .nt { - color: #000080; -} - -.highlight .vc { - color: #008080; -} - -.highlight .vg { - color: #008080; -} - -.highlight .vi { - color: #008080; -} - -.highlight .nv { - color: #008080; -} - -.highlight .ow { - color: #000000; - font-weight: bold; -} - -.highlight .o { - color: #000000; - font-weight: bold; -} - -.highlight .w { - color: #bbbbbb; -} - -@font-face { - font-family: FreightSans; - font-weight: 700; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-bold.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-bold.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 700; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-bold-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-bold-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 500; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-medium.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-medium.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 500; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-medium-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-medium-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 100; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-light.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-light.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 100; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-light-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-light-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 400; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-book-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-book-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 400; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-book.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-book.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 600; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-SemiBold"), url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 500; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Medium"), url("../fonts/IBMPlexMono/IBMPlexMono-Medium.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Medium.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 400; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Regular"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 300; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Light"), url("../fonts/IBMPlexMono/IBMPlexMono-Light.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Light.woff") format("woff"); -} -html { - position: relative; - min-height: 100%; - font-size: 12px; -} -@media screen and (min-width: 768px) { - html { - font-size: 16px; - } -} - -* { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -body { - font-family: FreightSans, Helvetica Neue, Helvetica, Arial, sans-serif; -} - -a:link, -a:visited, -a:hover { - text-decoration: none; - color: #e44c2c; -} - -a.with-right-arrow, .btn.with-right-arrow { - padding-right: 1.375rem; - position: relative; - background-image: url("../images/chevron-right-orange.svg"); - background-size: 6px 13px; - background-position: center right 5px; - background-repeat: no-repeat; -} -@media screen and (min-width: 768px) { - a.with-right-arrow, .btn.with-right-arrow { - background-size: 8px 14px; - background-position: center right 12px; - padding-right: 2rem; - } -} - -::-webkit-input-placeholder { - color: #e44c2c; -} - -::-moz-placeholder { - color: #e44c2c; -} - -:-ms-input-placeholder { - color: #e44c2c; -} - -:-moz-placeholder { - color: #e44c2c; -} - -.email-subscribe-form input.email { - color: #e44c2c; - border: none; - border-bottom: 1px solid #939393; - width: 100%; - background-color: transparent; - outline: none; - font-size: 1.125rem; - letter-spacing: 0.25px; - line-height: 2.25rem; -} -.email-subscribe-form input[type="submit"] { - position: absolute; - right: 0; - top: 10px; - height: 15px; - width: 15px; - background-image: url("../images/arrow-right-with-tail.svg"); - background-color: transparent; - background-repeat: no-repeat; - background-size: 15px 15px; - background-position: center center; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: 0; -} - -.email-subscribe-form-fields-wrapper { - position: relative; -} - -.anchorjs-link { - color: #6c6c6d !important; -} -@media screen and (min-width: 768px) { - .anchorjs-link:hover { - color: inherit; - text-decoration: none !important; - } -} - -.pytorch-article #table-of-contents { - display: none; -} - -code, kbd, pre, samp { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} -code span, kbd span, pre span, samp span { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} - -pre { - padding: 1.125rem; - background-color: #f3f4f7; -} -pre code { - font-size: 0.875rem; -} -pre.highlight { - background-color: #f3f4f7; - line-height: 1.3125rem; -} - -code.highlighter-rouge { - color: #6c6c6d; - background-color: #f3f4f7; - padding: 2px 6px; -} - -a:link code.highlighter-rouge, -a:visited code.highlighter-rouge, -a:hover code.highlighter-rouge { - color: #4974D1; -} -a:link.has-code, -a:visited.has-code, -a:hover.has-code { - color: #4974D1; -} - -p code, -h1 code, -h2 code, -h3 code, -h4 code, -h5 code, -h6 code { - font-size: 78.5%; -} - -pre { - white-space: pre-wrap; - white-space: -moz-pre-wrap; - white-space: -pre-wrap; - white-space: -o-pre-wrap; - word-wrap: break-word; -} - -.header-holder { - height: 68px; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - left: 0; - margin-left: auto; - margin-right: auto; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 9999; - background-color: #ffffff; - border-bottom: 1px solid #e2e2e2; -} -@media screen and (min-width: 1100px) { - .header-holder { - height: 90px; - } -} - -.header-container { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.header-container:before, .header-container:after { - content: ""; - display: table; -} -.header-container:after { - clear: both; -} -.header-container { - *zoom: 1; -} -@media screen and (min-width: 1100px) { - .header-container { - display: block; - } -} - -.header-logo { - height: 23px; - width: 93px; - background-repeat: no-repeat; - background-size: 93px 23px; - display: block; - float: left; - z-index: 10; - margin-left: 2.5rem; - margin-top: -1rem; -} -@media screen and (min-width: 1100px) { - .header-logo { - background-size: 155px 50px; - position: absolute; - height: 50px; - width: 155px; - top: 4px; - float: none; - } -} - -.main-menu-open-button { - background-image: url("../images/icon-menu-dots.svg"); - background-position: center center; - background-size: 25px 7px; - background-repeat: no-repeat; - width: 25px; - height: 17px; - position: absolute; - right: 0; - top: 4px; -} -@media screen and (min-width: 1100px) { - .main-menu-open-button { - display: none; - } -} - -.header-holder .main-menu { - display: none; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} -.header-holder .main-menu ul { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; -} -.header-holder .main-menu ul li { - display: inline-block; - margin-right: 40px; - position: relative; -} -.header-holder .main-menu ul li.active:after { - color: #e44c2c; -} -.header-holder .main-menu ul li.active a { - color: #e44c2c; -} -.header-holder .main-menu ul li:last-of-type { - margin-right: 0; -} -.header-holder .main-menu ul li a { - color: #ffffff; - font-size: 1.125rem; - letter-spacing: 0; - line-height: 2.125rem; - text-align: center; - text-decoration: none; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu ul li a:hover { - color: #e44c2c; - } -} - -.mobile-main-menu { - display: none; -} -.mobile-main-menu.open { - background-color: #262626; - display: block; - height: 100%; - left: 0; - margin-left: auto; - margin-right: auto; - min-height: 100%; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 99999; -} - -.mobile-main-menu .container-fluid { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 68px; - position: relative; -} -.mobile-main-menu .container-fluid:before, .mobile-main-menu .container-fluid:after { - content: ""; - display: table; -} -.mobile-main-menu .container-fluid:after { - clear: both; -} -.mobile-main-menu .container-fluid { - *zoom: 1; -} - -.mobile-main-menu.open ul { - list-style-type: none; - padding: 0; -} -.mobile-main-menu.open ul li a { - font-size: 2rem; - color: #ffffff; - letter-spacing: 0; - line-height: 4rem; - text-decoration: none; -} -.mobile-main-menu.open ul li.active a { - color: #e44c2c; -} - -.main-menu-close-button { - background-image: url("../images/icon-close.svg"); - background-position: center center; - background-repeat: no-repeat; - background-size: 24px 24px; - height: 24px; - position: absolute; - right: 0; - width: 24px; - top: -4px; -} - -.mobile-main-menu-header-container { - position: relative; -} - -.mobile-main-menu-links-container { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding-left: 2.8125rem; - height: 100%; - min-height: 100%; - margin-top: -68px; -} - -.site-footer { - padding: 2.5rem 0; - width: 100%; - background-image: url("../images/home-footer-background.jpg"); - background-size: 100%; - margin-left: 0; - margin-right: 0; - position: relative; - z-index: 201; -} -@media screen and (min-width: 768px) { - .site-footer { - padding: 5rem 0; - } -} -.site-footer p { - color: #ffffff; -} -.site-footer ul { - list-style-type: none; - padding-left: 0; - margin-bottom: 0; -} -.site-footer ul li { - font-size: 1.125rem; - line-height: 2rem; - color: #6c6c6d; - padding-bottom: 0.375rem; -} -.site-footer ul li.list-title { - padding-bottom: 0.75rem; - color: #ffffff; -} -.site-footer a:link, -.site-footer a:visited { - color: inherit; -} -@media screen and (min-width: 768px) { - .site-footer a:hover { - color: #e44c2c; - } -} - -.docs-tutorials-resources { - background-color: #262626; - color: #ffffff; - padding-top: 2.5rem; - padding-bottom: 2.5rem; - position: relative; - z-index: 201; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources { - padding-top: 5rem; - padding-bottom: 5rem; - } -} -.docs-tutorials-resources p { - color: #929292; - font-size: 1.125rem; -} -.docs-tutorials-resources h2 { - font-size: 1.5rem; - letter-spacing: -0.25px; - text-transform: none; - margin-bottom: 0.25rem; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources h2 { - margin-bottom: 1.25rem; - } -} -.docs-tutorials-resources .col-md-4 { - margin-bottom: 2rem; - text-align: center; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources .col-md-4 { - margin-bottom: 0; - } -} -.docs-tutorials-resources .with-right-arrow { - margin-left: 12px; -} -.docs-tutorials-resources .with-right-arrow:hover { - background-image: url("../images/chevron-right-white.svg"); -} -.docs-tutorials-resources p { - font-size: 1rem; - line-height: 1.5rem; - letter-spacing: 0.22px; - color: #939393; - margin-bottom: 0; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources p { - margin-bottom: 1.25rem; - } -} -.docs-tutorials-resources a { - font-size: 1.125rem; - color: #e44c2c; -} -.docs-tutorials-resources a:hover { - color: #ffffff; -} - -.footer-container { - position: relative; -} - -@media screen and (min-width: 768px) { - .footer-logo-wrapper { - position: absolute; - top: 0; - left: 30px; - } -} - -.footer-logo { - background-image: url("../images/logo-icon.svg"); - background-position: center; - background-repeat: no-repeat; - background-size: 20px 24px; - display: block; - height: 24px; - margin-bottom: 2.8125rem; - width: 20px; -} -@media screen and (min-width: 768px) { - .footer-logo { - background-size: 29px 36px; - height: 36px; - margin-bottom: 0; - margin-bottom: 0; - width: 29px; - } -} - -.footer-links-wrapper { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} -@media screen and (min-width: 768px) { - .footer-links-wrapper { - -ms-flex-wrap: initial; - flex-wrap: initial; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} - -.footer-links-col { - margin-bottom: 3.75rem; - width: 50%; -} -@media screen and (min-width: 768px) { - .footer-links-col { - margin-bottom: 0; - width: 14%; - margin-right: 23px; - } - .footer-links-col.follow-us-col { - width: 18%; - margin-right: 0; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .footer-links-col { - width: 18%; - margin-right: 30px; - } -} - -.footer-social-icons { - margin: 8.5625rem 0 2.5rem 0; -} -.footer-social-icons a { - height: 32px; - width: 32px; - display: inline-block; - background-color: #CCCDD1; - border-radius: 50%; - margin-right: 5px; -} -.footer-social-icons a.facebook { - background-image: url("../images/logo-facebook-dark.svg"); - background-position: center center; - background-size: 9px 18px; - background-repeat: no-repeat; -} -.footer-social-icons a.twitter { - background-image: url("../images/logo-twitter-dark.svg"); - background-position: center center; - background-size: 17px 17px; - background-repeat: no-repeat; -} - -.site-footer .mc-field-group { - margin-top: -2px; -} - -article.pytorch-article { - max-width: 920px; - margin: 0 auto; -} -article.pytorch-article h2, -article.pytorch-article h3, -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - margin: 1.375rem 0; - color: #262626; -} -article.pytorch-article h2 { - font-size: 1.625rem; - letter-spacing: 1.33px; - line-height: 2rem; - text-transform: none; -} -article.pytorch-article h3 { - font-size: 1.5rem; - letter-spacing: -0.25px; - line-height: 1.875rem; - text-transform: none; -} -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - font-size: 1.125rem; - letter-spacing: -0.19px; - line-height: 1.875rem; -} -article.pytorch-article p { - margin-bottom: 1.125rem; -} -article.pytorch-article p, -article.pytorch-article ul li, -article.pytorch-article ol li, -article.pytorch-article dl dt, -article.pytorch-article dl dd, -article.pytorch-article blockquote { - font-size: 1rem; - line-height: 1.375rem; - color: #262626; - letter-spacing: 0.01px; - font-weight: 500; -} -article.pytorch-article table { - margin-bottom: 2.5rem; - width: 100%; -} -article.pytorch-article table thead { - border-bottom: 1px solid #cacaca; -} -article.pytorch-article table th { - padding: 0.625rem; - color: #262626; -} -article.pytorch-article table td { - padding: 0.3125rem; -} -article.pytorch-article table tr th:first-of-type, -article.pytorch-article table tr td:first-of-type { - padding-left: 0; -} -article.pytorch-article table.docutils.field-list th.field-name { - padding: 0.3125rem; - padding-left: 0; -} -article.pytorch-article table.docutils.field-list td.field-body { - padding: 0.3125rem; -} -article.pytorch-article table.docutils.field-list td.field-body p:last-of-type { - margin-bottom: 0; -} -article.pytorch-article ul, -article.pytorch-article ol { - margin: 1.5rem 0 3.125rem 0; -} -@media screen and (min-width: 768px) { - article.pytorch-article ul, - article.pytorch-article ol { - padding-left: 6.25rem; - } -} -article.pytorch-article ul li, -article.pytorch-article ol li { - margin-bottom: 0.625rem; -} -article.pytorch-article dl { - margin-bottom: 1.5rem; -} -article.pytorch-article dl dt { - margin-bottom: 0.75rem; -} -article.pytorch-article pre { - margin-bottom: 2.5rem; -} -article.pytorch-article hr { - margin-top: 4.6875rem; - margin-bottom: 4.6875rem; -} -article.pytorch-article blockquote { - margin: 0 auto; - margin-bottom: 2.5rem; - width: 65%; -} -article.pytorch-article img { - width: 100%; -} - -html { - height: 100%; -} -@media screen and (min-width: 768px) { - html { - font-size: 16px; - } -} - -body { - background: #ffffff; - height: 100%; - margin: 0; -} -body.no-scroll { - height: 100%; - overflow: hidden; -} - -p { - margin-top: 0; - margin-bottom: 1.125rem; -} -p a:link, -p a:visited, -p a:hover { - color: #e44c2c; - text-decoration: none; -} -@media screen and (min-width: 768px) { - p a:hover { - text-decoration: underline; - } -} -p a:link, -p a:visited, -p a:hover { - color: #ee4c2c; -} - -.wy-breadcrumbs li a { - color: #ee4c2c; -} - -ul.pytorch-breadcrumbs { - padding-left: 0; - list-style-type: none; -} -ul.pytorch-breadcrumbs li { - display: inline-block; - font-size: 0.875rem; -} -ul.pytorch-breadcrumbs a { - color: #ee4c2c; - text-decoration: none; -} - -.table-of-contents-link-wrapper { - display: block; - margin-top: 0; - padding: 1.25rem 1.875rem; - background-color: #f3f4f7; - position: relative; - color: #262626; - font-size: 1.25rem; -} -.table-of-contents-link-wrapper.is-open .toggle-table-of-contents { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -@media screen and (min-width: 1100px) { - .table-of-contents-link-wrapper { - display: none; - } -} - -.toggle-table-of-contents { - background-image: url("../images/chevron-down-grey.svg"); - background-position: center center; - background-repeat: no-repeat; - background-size: 18px 18px; - height: 100%; - position: absolute; - right: 21px; - width: 30px; - top: 0; -} - -.tutorials-header .header-logo { - background-image: url("../images/asteroid_logo_dark.svg"); -} -.tutorials-header .main-menu ul li a { - color: #262626; -} -.tutorials-header .main-menu-open-button { - background-image: url("../images/icon-menu-dots-dark.svg"); -} - -.rst-content dl:not(.docutils) dl dt { - background: #f3f4f7; - font-weight: bold; -} - -.rst-content .viewcode-link, .rst-content .viewcode-back { - display: block; - color: #4974d1; - font-size: 90%; - padding-left: 24px; - float: right; -} - -.rst-content footer .helpful-hr.hr-top { - margin-bottom: -0.0625rem; -} -.rst-content footer .helpful-hr.hr-bottom { - margin-top: -0.0625rem; -} -.rst-content footer .helpful-container { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 1.125rem; -} -.rst-content footer .helpful-container .helpful-question, .rst-content footer .helpful-container .was-helpful-thank-you { - padding: 0.625rem 1.25rem 0.625rem 1.25rem; -} -.rst-content footer .helpful-container .was-helpful-thank-you { - display: none; -} -.rst-content footer .helpful-container .helpful-question.yes-link, .rst-content footer .helpful-container .helpful-question.no-link { - color: #e44c2c; - cursor: pointer; -} -.rst-content footer .helpful-container .helpful-question.yes-link:hover, .rst-content footer .helpful-container .helpful-question.no-link:hover { - background-color: #e44c2c; - color: #ffffff; -} -.rst-content footer div[role="contentinfo"] { - padding-top: 2.5rem; -} -.rst-content footer div[role="contentinfo"] p { - margin-bottom: 0; -} - -h1 { - font-size: 2rem; - letter-spacing: 1.78px; - line-height: 2.5rem; - text-transform: uppercase; - margin: 1.375rem 0; -} - -span.pre { - color: #ee4c2c; - background-color: #f3f4f7; - padding: 2px 6px; -} - -pre { - background-color: #f3f4f7; - padding: 1.375rem; -} - -div.highlight pre { - border-radius: 20px; - background: #f1fff3; -} - -.highlight .c1 { - color: #6c6c6d; -} - -.headerlink { - display: none !important; -} - -a:link.has-code, -a:hover.has-code, -a:visited.has-code { - color: #4974D1; -} -a:link.has-code span, -a:hover.has-code span, -a:visited.has-code span { - color: #4974D1; -} - -article.pytorch-article ul, -article.pytorch-article ol { - padding-left: 1.875rem; - margin: 0; -} -article.pytorch-article ul li, -article.pytorch-article ol li { - margin: 0; - line-height: 1.75rem; -} -article.pytorch-article ul p, -article.pytorch-article ol p { - line-height: 1.75rem; - margin-bottom: 0; -} -article.pytorch-article ul ul, -article.pytorch-article ul ol, -article.pytorch-article ol ul, -article.pytorch-article ol ol { - margin: 0; -} -article.pytorch-article h1, -article.pytorch-article h2, -article.pytorch-article h3, -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - font-weight: normal; -} -article.pytorch-article h1 a, -article.pytorch-article h2 a, -article.pytorch-article h3 a, -article.pytorch-article h4 a, -article.pytorch-article h5 a, -article.pytorch-article h6 a { - color: #262626; -} -article.pytorch-article p.caption { - margin-top: 1.25rem; -} - -article.pytorch-article .section:first-of-type h1:first-of-type { - margin-top: 0; -} - -article.pytorch-article .sphx-glr-thumbcontainer { - margin: 0; - border: 1px solid #d6d7d8; - border-radius: 0; - width: 45%; - text-align: center; - margin-bottom: 5%; -} -@media screen and (max-width: 1100px) { - article.pytorch-article .sphx-glr-thumbcontainer:nth-child(odd) { - margin-left: 0; - margin-right: 2.5%; - } - article.pytorch-article .sphx-glr-thumbcontainer:nth-child(even) { - margin-right: 0; - margin-left: 2.5%; - } - article.pytorch-article .sphx-glr-thumbcontainer .figure { - width: 40%; - } -} -@media screen and (min-width: 1101px) { - article.pytorch-article .sphx-glr-thumbcontainer { - margin-right: 3%; - margin-bottom: 3%; - width: 30%; - } -} -article.pytorch-article .sphx-glr-thumbcontainer .caption-text a { - font-size: 1rem; - color: #262626; - letter-spacing: 0; - line-height: 1.5rem; - text-decoration: none; -} -article.pytorch-article .sphx-glr-thumbcontainer:hover { - -webkit-box-shadow: none; - box-shadow: none; - border-bottom-color: #ffffff; -} -article.pytorch-article .sphx-glr-thumbcontainer:hover .figure:before { - bottom: 100%; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure { - width: 80%; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure:before { - content: ""; - display: block; - position: absolute; - top: 0; - bottom: 35%; - left: 0; - right: 0; - background: #8A94B3; - opacity: 0.10; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure a.reference.internal { - text-align: left; -} -@media screen and (min-width: 768px) { - article.pytorch-article .sphx-glr-thumbcontainer:after { - content: ""; - display: block; - width: 0; - height: 1px; - position: absolute; - bottom: 0; - left: 0; - background-color: #e44c2c; - -webkit-transition: width .250s ease-in-out; - transition: width .250s ease-in-out; - } - article.pytorch-article .sphx-glr-thumbcontainer:hover:after { - width: 100%; - } -} -@media screen and (min-width: 768px) { - article.pytorch-article .sphx-glr-thumbcontainer:after { - background-color: #ee4c2c; - } -} - -.footer-logo-col { - margin: 2.5rem; -} - -article.pytorch-article .section :not(dt) > code { - color: #262626; - padding: 0px 3px; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} -article.pytorch-article .section :not(dt) > code .pre { - outline: 0px; - padding: 0px; -} -article.pytorch-article .function dt, article.pytorch-article .attribute dt, article.pytorch-article .class .attribute dt, article.pytorch-article .class dt { - position: relative; - background: #fae7e7; - padding: 0.5rem; - word-wrap: break-word; - padding-right: 100px; - border-radius: 10px; -} -article.pytorch-article .function dt em.property, article.pytorch-article .attribute dt em.property, article.pytorch-article .class dt em.property { - font-family: inherit; -} -article.pytorch-article .function dt em, article.pytorch-article .attribute dt em, article.pytorch-article .class .attribute dt em, article.pytorch-article .class dt em, article.pytorch-article .function dt .sig-paren, article.pytorch-article .attribute dt .sig-paren, article.pytorch-article .class dt .sig-paren { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; - font-size: 87.5%; - color: #ee4c2c; -} -article.pytorch-article .function dt a, article.pytorch-article .attribute dt a, article.pytorch-article .class .attribute dt a, article.pytorch-article .class dt a { - position: absolute; - right: 30px; - padding-right: 0; - top: 50%; - -webkit-transform: perspective(1px) translateY(-50%); - transform: perspective(1px) translateY(-50%); -} -article.pytorch-article .function dt:hover .viewcode-link, article.pytorch-article .attribute dt:hover .viewcode-link, article.pytorch-article .class dt:hover .viewcode-link { - color: #ee4c2c; -} -article.pytorch-article .function .anchorjs-link, article.pytorch-article .attribute .anchorjs-link, article.pytorch-article .class .anchorjs-link { - display: inline; - position: absolute; - right: 8px; - font-size: 1.5625rem !important; - padding-left: 0; -} -article.pytorch-article .function dt > code, article.pytorch-article .attribute dt > code, article.pytorch-article .class .attribute dt > code, article.pytorch-article .class dt > code { - color: #262626; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} -article.pytorch-article .function .viewcode-link, article.pytorch-article .attribute .viewcode-link, article.pytorch-article .class .viewcode-link { - font-size: 0.875rem; - color: #979797; - letter-spacing: 0; - line-height: 1.5rem; - text-transform: uppercase; -} -article.pytorch-article .function dd, article.pytorch-article .attribute dd, article.pytorch-article .class .attribute dd, article.pytorch-article .class dd { - padding-left: 3.75rem; -} -article.pytorch-article .function dd p, article.pytorch-article .attribute dd p, article.pytorch-article .class .attribute dd p, article.pytorch-article .class dd p { - color: #262626; -} -article.pytorch-article .function table tbody tr th.field-name, article.pytorch-article .attribute table tbody tr th.field-name, article.pytorch-article .class table tbody tr th.field-name { - white-space: nowrap; - color: #262626; - width: 20%; -} -@media screen and (min-width: 768px) { - article.pytorch-article .function table tbody tr th.field-name, article.pytorch-article .attribute table tbody tr th.field-name, article.pytorch-article .class table tbody tr th.field-name { - width: 15%; - } -} -article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - padding: 0.625rem; - width: 80%; - color: #262626; -} -@media screen and (min-width: 768px) { - article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - width: 85%; - } -} -@media screen and (min-width: 1600px) { - article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - padding-left: 1.25rem; - } -} -article.pytorch-article .function table tbody tr td.field-body p, article.pytorch-article .attribute table tbody tr td.field-body p, article.pytorch-article .class table tbody tr td.field-body p { - padding-left: 0px; -} -article.pytorch-article .function table tbody tr td.field-body p:last-of-type, article.pytorch-article .attribute table tbody tr td.field-body p:last-of-type, article.pytorch-article .class table tbody tr td.field-body p:last-of-type { - margin-bottom: 0; -} -article.pytorch-article .function table tbody tr td.field-body ol, article.pytorch-article .attribute table tbody tr td.field-body ol, article.pytorch-article .class table tbody tr td.field-body ol, article.pytorch-article .function table tbody tr td.field-body ul, article.pytorch-article .attribute table tbody tr td.field-body ul, article.pytorch-article .class table tbody tr td.field-body ul { - padding-left: 1rem; - padding-bottom: 0; -} -article.pytorch-article .function table.docutils.field-list, article.pytorch-article .attribute table.docutils.field-list, article.pytorch-article .class table.docutils.field-list { - margin-bottom: 0.75rem; -} -article.pytorch-article .attribute .has-code { - float: none; -} -article.pytorch-article .class dt { - border-left: none; - padding-left: 4em; -} -article.pytorch-article .class dt em.property { - position: absolute; - left: 0.5rem; -} -article.pytorch-article .class dd .docutils dt { - padding-left: 0.5rem; -} -article.pytorch-article .class em.property { - text-transform: uppercase; - font-style: normal; - color: #ee4c2c; - font-size: 1rem; - letter-spacing: 0; - padding-right: 0.75rem; -} -article.pytorch-article .class dl dt em.property { - position: static; - left: 0; - padding-right: 0; -} -article.pytorch-article .class .method dt, -article.pytorch-article .class .staticmethod dt, article.pytorch-article .class .classmethod dt { - border-top: none; - background: #fae7e7; -} -article.pytorch-article .class .method dt, -article.pytorch-article .class .staticmethod dt, article.pytorch-article .class .classmethod dt { - padding-left: 0.5rem; -} -article.pytorch-article .class .method dd dl dt, -article.pytorch-article .class .staticmethod dd dl dt, article.pytorch-article .class .classmethod dd dl dt { - background: #f3f4f7; - font-weight: bold; -} -article.pytorch-article .class .classmethod dt, article.pytorch-article .class .staticmethod dt { - padding-left: 1em; - font-weight: 500; -} -article.pytorch-article .class .attribute dt { - border-top: none; -} -article.pytorch-article .class .attribute dt em.property { - position: relative; - left: 0; -} -article.pytorch-article table { - table-layout: fixed; -} - -article.pytorch-article .note, -article.pytorch-article .warning, -article.pytorch-article .tip, -article.pytorch-article .hint, -article.pytorch-article .important, -article.pytorch-article .caution, -article.pytorch-article .danger, -article.pytorch-article .attention, -article.pytorch-article .error { - background: #f3f4f7; - margin-top: 1.875rem; - margin-bottom: 1.125rem; - border-radius: 20px; -} -article.pytorch-article .note .admonition-title, -article.pytorch-article .warning .admonition-title, -article.pytorch-article .tip .admonition-title, -article.pytorch-article .hint .admonition-title, -article.pytorch-article .important .admonition-title, -article.pytorch-article .caution .admonition-title, -article.pytorch-article .danger .admonition-title, -article.pytorch-article .attention .admonition-title, -article.pytorch-article .error .admonition-title { - color: #ffffff; - letter-spacing: 1px; - text-transform: uppercase; - margin-bottom: 1.125rem; - padding: 3px 0 3px 1.375rem; - position: relative; - font-size: 0.875rem; -} -article.pytorch-article .note p:nth-child(n + 2), -article.pytorch-article .warning p:nth-child(n + 2), -article.pytorch-article .tip p:nth-child(n + 2), -article.pytorch-article .hint p:nth-child(n + 2), -article.pytorch-article .important p:nth-child(n + 2), -article.pytorch-article .caution p:nth-child(n + 2), -article.pytorch-article .danger p:nth-child(n + 2), -article.pytorch-article .attention p:nth-child(n + 2), -article.pytorch-article .error p:nth-child(n + 2) { - padding: 0 1.375rem; -} -article.pytorch-article .note table, -article.pytorch-article .warning table, -article.pytorch-article .tip table, -article.pytorch-article .hint table, -article.pytorch-article .important table, -article.pytorch-article .caution table, -article.pytorch-article .danger table, -article.pytorch-article .attention table, -article.pytorch-article .error table { - margin: 0 2rem; - width: auto; -} -article.pytorch-article .note .pre, -article.pytorch-article .note pre, -article.pytorch-article .warning .pre, -article.pytorch-article .warning pre, -article.pytorch-article .tip .pre, -article.pytorch-article .tip pre, -article.pytorch-article .hint .pre, -article.pytorch-article .hint pre, -article.pytorch-article .important .pre, -article.pytorch-article .important pre, -article.pytorch-article .caution .pre, -article.pytorch-article .caution pre, -article.pytorch-article .danger .pre, -article.pytorch-article .danger pre, -article.pytorch-article .attention .pre, -article.pytorch-article .attention pre, -article.pytorch-article .error .pre, -article.pytorch-article .error pre { - background: #ffffff; - outline: 1px solid #e9e9e9; -} -article.pytorch-article .note :not(dt) > code, -article.pytorch-article .warning :not(dt) > code, -article.pytorch-article .tip :not(dt) > code, -article.pytorch-article .hint :not(dt) > code, -article.pytorch-article .important :not(dt) > code, -article.pytorch-article .caution :not(dt) > code, -article.pytorch-article .danger :not(dt) > code, -article.pytorch-article .attention :not(dt) > code, -article.pytorch-article .error :not(dt) > code { - padding: 0px 3px; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; - outline: 1px solid #e9e9e9; -} -article.pytorch-article .note :not(dt) > code .pre, -article.pytorch-article .warning :not(dt) > code .pre, -article.pytorch-article .tip :not(dt) > code .pre, -article.pytorch-article .hint :not(dt) > code .pre, -article.pytorch-article .important :not(dt) > code .pre, -article.pytorch-article .caution :not(dt) > code .pre, -article.pytorch-article .danger :not(dt) > code .pre, -article.pytorch-article .attention :not(dt) > code .pre, -article.pytorch-article .error :not(dt) > code .pre { - outline: 0px; - padding: 0px; -} -article.pytorch-article .note pre, -article.pytorch-article .warning pre, -article.pytorch-article .tip pre, -article.pytorch-article .hint pre, -article.pytorch-article .important pre, -article.pytorch-article .caution pre, -article.pytorch-article .danger pre, -article.pytorch-article .attention pre, -article.pytorch-article .error pre { - margin-bottom: 0; -} -article.pytorch-article .note .highlight, -article.pytorch-article .warning .highlight, -article.pytorch-article .tip .highlight, -article.pytorch-article .hint .highlight, -article.pytorch-article .important .highlight, -article.pytorch-article .caution .highlight, -article.pytorch-article .danger .highlight, -article.pytorch-article .attention .highlight, -article.pytorch-article .error .highlight { - margin: 0 2rem 1.125rem 2rem; -} -article.pytorch-article .note ul, -article.pytorch-article .note ol, -article.pytorch-article .warning ul, -article.pytorch-article .warning ol, -article.pytorch-article .tip ul, -article.pytorch-article .tip ol, -article.pytorch-article .hint ul, -article.pytorch-article .hint ol, -article.pytorch-article .important ul, -article.pytorch-article .important ol, -article.pytorch-article .caution ul, -article.pytorch-article .caution ol, -article.pytorch-article .danger ul, -article.pytorch-article .danger ol, -article.pytorch-article .attention ul, -article.pytorch-article .attention ol, -article.pytorch-article .error ul, -article.pytorch-article .error ol { - padding-left: 3.25rem; -} -article.pytorch-article .note ul li, -article.pytorch-article .note ol li, -article.pytorch-article .warning ul li, -article.pytorch-article .warning ol li, -article.pytorch-article .tip ul li, -article.pytorch-article .tip ol li, -article.pytorch-article .hint ul li, -article.pytorch-article .hint ol li, -article.pytorch-article .important ul li, -article.pytorch-article .important ol li, -article.pytorch-article .caution ul li, -article.pytorch-article .caution ol li, -article.pytorch-article .danger ul li, -article.pytorch-article .danger ol li, -article.pytorch-article .attention ul li, -article.pytorch-article .attention ol li, -article.pytorch-article .error ul li, -article.pytorch-article .error ol li { - color: #262626; -} -article.pytorch-article .note p, -article.pytorch-article .warning p, -article.pytorch-article .tip p, -article.pytorch-article .hint p, -article.pytorch-article .important p, -article.pytorch-article .caution p, -article.pytorch-article .danger p, -article.pytorch-article .attention p, -article.pytorch-article .error p { - margin-top: 1.125rem; -} -article.pytorch-article .note .admonition-title { - background: #54c7ec; -} -article.pytorch-article .warning .admonition-title { - background: #e94f3b; -} -article.pytorch-article .tip .admonition-title { - background: #6bcebb; -} -article.pytorch-article .hint .admonition-title { - background: #a2cdde; -} -article.pytorch-article .important .admonition-title { - background: #5890ff; -} -article.pytorch-article .caution .admonition-title { - background: #f7923a; -} -article.pytorch-article .danger .admonition-title { - background: #db2c49; -} -article.pytorch-article .attention .admonition-title { - background: #f5a623; -} -article.pytorch-article .error .admonition-title { - background: #cc2f90; -} -article.pytorch-article .sphx-glr-download-link-note.admonition.note, -article.pytorch-article .reference.download.internal, article.pytorch-article .sphx-glr-signature { - display: none; -} -article.pytorch-article .admonition > p:last-of-type { - margin-bottom: 0; - padding-bottom: 1.125rem !important; -} - -article.pytorch-article .note { - background: #e7f2fa; -} - -article.pytorch-article .note .admonition-title { - background: none; - color: #2980B9; - font-weight: bold; -} - -.pytorch-article div.sphx-glr-download a { - background-color: #f3f4f7; - background-image: url("../images/arrow-down-orange.svg"); - background-repeat: no-repeat; - background-position: left 10px center; - background-size: 15px 15px; - border-radius: 0; - border: none; - display: block; - text-align: left; - padding: 0.9375rem 3.125rem; - position: relative; - margin: 1.25rem auto; -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a:after { - content: ""; - display: block; - width: 0; - height: 1px; - position: absolute; - bottom: 0; - left: 0; - background-color: #e44c2c; - -webkit-transition: width .250s ease-in-out; - transition: width .250s ease-in-out; - } - .pytorch-article div.sphx-glr-download a:hover:after { - width: 100%; - } -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a:after { - background-color: #ee4c2c; - } -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a { - background-position: left 20px center; - } -} -.pytorch-article div.sphx-glr-download a:hover { - -webkit-box-shadow: none; - box-shadow: none; - text-decoration: none; - background-image: url("../images/arrow-down-orange.svg"); - background-color: #f3f4f7; -} -.pytorch-article div.sphx-glr-download a span.pre { - background-color: transparent; - font-size: 1.125rem; - padding: 0; - color: #262626; -} -.pytorch-article div.sphx-glr-download a code, .pytorch-article div.sphx-glr-download a kbd, .pytorch-article div.sphx-glr-download a pre, .pytorch-article div.sphx-glr-download a samp, .pytorch-article div.sphx-glr-download a span.pre { - font-family: FreightSans, Helvetica Neue, Helvetica, Arial, sans-serif; -} - -.pytorch-article p.sphx-glr-script-out { - margin-bottom: 1.125rem; -} - -.pytorch-article div.sphx-glr-script-out { - margin-bottom: 2.5rem; -} -.pytorch-article div.sphx-glr-script-out .highlight { - margin-left: 0; - margin-top: 0; -} -.pytorch-article div.sphx-glr-script-out .highlight pre { - background-color: #fdede9; - padding: 1.5625rem; - color: #837b79; -} -.pytorch-article div.sphx-glr-script-out + p { - margin-top: unset; -} - -article.pytorch-article .wy-table-responsive table { - border: none; - border-color: #ffffff !important; - table-layout: fixed; -} -article.pytorch-article .wy-table-responsive table thead tr { - border-bottom: 2px solid #6c6c6d; -} -article.pytorch-article .wy-table-responsive table thead th { - line-height: 1.75rem; - padding-left: 0.9375rem; - padding-right: 0.9375rem; -} -article.pytorch-article .wy-table-responsive table tbody .row-odd { - background-color: #f3f4f7; -} -article.pytorch-article .wy-table-responsive table tbody td { - color: #6c6c6d; - white-space: normal; - padding: 0.9375rem; - font-size: 1rem; - line-height: 1.375rem; -} -article.pytorch-article .wy-table-responsive table tbody td .pre { - background: #ffffff; - outline: 1px solid #e9e9e9; - color: #ee4c2c; - font-size: 87.5%; -} -article.pytorch-article .wy-table-responsive table tbody td code { - font-size: 87.5%; -} - -a[rel~="prev"], a[rel~="next"] { - padding: 0.375rem 0 0 0; -} - -img.next-page, -img.previous-page { - width: 8px; - height: 10px; - position: relative; - top: -1px; -} - -img.previous-page { - -webkit-transform: scaleX(-1); - transform: scaleX(-1); -} - -.rst-footer-buttons { - margin-top: 1.875rem; - margin-bottom: 1.875rem; -} -.rst-footer-buttons .btn:focus, -.rst-footer-buttons .btn.focus { - -webkit-box-shadow: none; - box-shadow: none; -} - -article.pytorch-article blockquote { - margin-left: 3.75rem; - color: #6c6c6d; -} - -article.pytorch-article .caption { - color: #6c6c6d; - letter-spacing: 0.25px; - line-height: 2.125rem; -} - -article.pytorch-article .math { - color: #262626; - width: auto; - text-align: center; -} -article.pytorch-article .math img { - width: auto; -} - -.pytorch-breadcrumbs-wrapper { - width: 100%; -} -@media screen and (min-width: 1101px) { - .pytorch-breadcrumbs-wrapper { - float: left; - margin-left: 3%; - width: 75%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-breadcrumbs-wrapper { - width: 850px; - margin-left: 1.875rem; - } -} -.pytorch-breadcrumbs-wrapper .pytorch-breadcrumbs-aside { - float: right; -} - -.pytorch-article .container { - padding-left: 0; - padding-right: 0; - max-width: none; -} - -a:link, -a:visited, -a:hover { - color: #ee4c2c; -} - -::-webkit-input-placeholder { - color: #ee4c2c; -} - -::-moz-placeholder { - color: #ee4c2c; -} - -:-ms-input-placeholder { - color: #ee4c2c; -} - -:-moz-placeholder { - color: #ee4c2c; -} - -@media screen and (min-width: 768px) { - .site-footer a:hover { - color: #ee4c2c; - } -} - -.docs-tutorials-resources a { - color: #ee4c2c; -} - -.header-holder { - position: relative; - z-index: 201; -} - -.header-holder .main-menu ul li.active:after { - color: #ee4c2c; -} -.header-holder .main-menu ul li.active a { - color: #ee4c2c; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu ul li a:hover { - color: #ee4c2c; - } -} - -.mobile-main-menu.open ul li.active a { - color: #ee4c2c; -} - -.version { - padding-bottom: 1rem; -} - -.pytorch-call-to-action-links { - padding-top: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links { - padding-top: 2.5rem; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .pytorch-call-to-action-links { - padding-top: 0; - } -} -@media (min-width: 1100px) and (max-width: 1239px) { - .pytorch-call-to-action-links { - padding-top: 2.5rem; - } -} -.pytorch-call-to-action-links #tutorial-type { - display: none; -} -.pytorch-call-to-action-links .call-to-action-img, .pytorch-call-to-action-links .call-to-action-notebook-img { - height: 1.375rem; - width: 1.375rem; - margin-right: 10px; -} -.pytorch-call-to-action-links .call-to-action-notebook-img { - height: 1rem; -} -.pytorch-call-to-action-links a { - padding-right: 1.25rem; - color: #000000; - cursor: pointer; -} -.pytorch-call-to-action-links a:hover { - color: #e44c2c; -} -.pytorch-call-to-action-links a .call-to-action-desktop-view { - display: none; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links a .call-to-action-desktop-view { - display: block; - } -} -.pytorch-call-to-action-links a .call-to-action-mobile-view { - display: block; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links a .call-to-action-mobile-view { - display: none; - } -} -.pytorch-call-to-action-links a #google-colab-link, .pytorch-call-to-action-links a #download-notebook-link, -.pytorch-call-to-action-links a #github-view-link { - padding-bottom: 0.625rem; - border-bottom: 1px solid #f3f4f7; - padding-right: 2.5rem; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.pytorch-call-to-action-links a #google-colab-link:hover, .pytorch-call-to-action-links a #download-notebook-link:hover, -.pytorch-call-to-action-links a #github-view-link:hover { - border-bottom-color: #e44c2c; - color: #e44c2c; -} - -.pytorch-container { - margin: 0 auto; - padding: 0 1.875rem; - width: auto; - position: relative; -} -@media screen and (min-width: 1100px) { - .pytorch-container { - padding: 0; - } -} -@media screen and (min-width: 1101px) { - .pytorch-container { - margin-left: 25%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-container { - margin-left: 350px; - } -} -.pytorch-container:before, .pytorch-container:after { - content: ""; - display: table; -} -.pytorch-container:after { - clear: both; -} -.pytorch-container { - *zoom: 1; -} - -.pytorch-content-wrap { - background-color: #ffffff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - position: relative; - padding-top: 0; -} -.pytorch-content-wrap:before, .pytorch-content-wrap:after { - content: ""; - display: table; -} -.pytorch-content-wrap:after { - clear: both; -} -.pytorch-content-wrap { - *zoom: 1; -} -@media screen and (min-width: 1101px) { - .pytorch-content-wrap { - padding-top: 45px; - float: left; - width: 100%; - display: block; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-wrap { - width: 100%; - } -} - -.pytorch-content { - background: #ffffff; - width: 100%; - max-width: 700px; - position: relative; -} - -.pytorch-content-left { - margin-top: 2.5rem; - width: 100%; - margin-bottom: 2.5rem; -} -@media screen and (min-width: 1101px) { - .pytorch-content-left { - margin-top: 0; - margin-left: 3%; - width: 75%; - float: left; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-left { - width: 850px; - margin-left: 30px; - } -} -.pytorch-content-left .main-content { - padding-top: 0.9375rem; -} -.pytorch-content-left .main-content ul.simple { - padding-bottom: 1.25rem; -} -.pytorch-content-left .main-content .note:nth-child(1), .pytorch-content-left .main-content .warning:nth-child(1) { - margin-top: 0; -} - -.pytorch-content-right { - display: none; - position: relative; - overflow-x: hidden; - overflow-y: hidden; -} -@media screen and (min-width: 1101px) { - .pytorch-content-right { - display: block; - margin-left: 0; - width: 19%; - float: left; - height: 100%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-right { - width: 280px; - } -} - -@media screen and (min-width: 1101px) { - .pytorch-side-scroll { - position: relative; - overflow-x: hidden; - overflow-y: scroll; - height: 100%; - } -} - -.pytorch-menu-vertical { - padding: 1.25rem 1.875rem 2.5rem 1.875rem; -} -@media screen and (min-width: 1101px) { - .pytorch-menu-vertical { - display: block; - padding-top: 0; - padding-right: 13.5%; - padding-bottom: 5.625rem; - } -} -@media screen and (min-width: 1600px) { - .pytorch-menu-vertical { - padding-left: 0; - padding-right: 1.5625rem; - } -} - -.pytorch-left-menu { - display: none; - background-color: #262626; - color: #262626; -} -@media screen and (min-width: 1101px) { - .pytorch-left-menu { - display: block; - overflow-x: hidden; - overflow-y: hidden; - padding-bottom: 110px; - padding: 0 1.875rem 0 0; - width: 25%; - z-index: 200; - float: left; - } - .pytorch-left-menu.make-fixed { - position: fixed; - top: 0; - bottom: 0; - left: 0; - float: none; - } -} -@media screen and (min-width: 1600px) { - .pytorch-left-menu { - padding: 0 0 0 1.875rem; - width: 350px; - } -} - -.pytorch-left-menu p.caption { - color: #ffffff; - display: block; - display: inline-block; - font-size: 1rem; - line-height: 1.375rem; - margin-bottom: 1rem; - padding: 0; - text-transform: none; - white-space: nowrap; -} - -.pytorch-left-menu-search { - margin-bottom: 2.5rem; -} -@media screen and (min-width: 1101px) { - .pytorch-left-menu-search { - margin: 1.25rem 0.625rem 1.875rem 0; - } -} - -.pytorch-left-menu-search ::-webkit-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search :-ms-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search ::-ms-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search ::placeholder { - color: #262626; -} - -.pytorch-left-menu-search input[type=text] { - border-radius: 20px; - padding: 0.5rem 0.75rem; - border-color: #ffffff; - color: #262626; - border-style: solid; - font-size: 1rem; - width: 100%; - background-color: #f3f4f7; - background-image: url("../images/search-icon.svg"); - background-repeat: no-repeat; - background-size: 18px 18px; - background-position: 12px 10px; - padding-left: 40px; - background-color: #ffffff; -} -.pytorch-left-menu-search input[type=text]:focus { - outline: 0; -} - -@media screen and (min-width: 1101px) { - .pytorch-left-menu .pytorch-side-scroll { - width: 120%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-left-menu .pytorch-side-scroll { - width: 340px; - } -} - -.pytorch-right-menu { - min-height: 100px; - overflow-x: hidden; - overflow-y: hidden; - left: 0; - z-index: 200; - padding-top: 0; - position: relative; -} -@media screen and (min-width: 1101px) { - .pytorch-right-menu { - width: 100%; - } - .pytorch-right-menu.scrolling-fixed { - position: fixed; - top: 45px; - left: 83.5%; - width: 14%; - } - .pytorch-right-menu.scrolling-absolute { - position: absolute; - left: 0; - } -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu { - left: 0; - width: 380px; - } - .pytorch-right-menu.scrolling-fixed { - position: fixed; - top: 45px; - left: 1230px; - } - .pytorch-right-menu.scrolling-absolute { - position: absolute; - left: 0; - } -} - -.pytorch-left-menu ul, -.pytorch-right-menu ul { - list-style-type: none; - padding-left: 0; - margin-bottom: 2.5rem; -} -.pytorch-left-menu > ul, -.pytorch-right-menu > ul { - margin-bottom: 2.5rem; -} -.pytorch-left-menu a:link, -.pytorch-left-menu a:visited, -.pytorch-left-menu a:hover, -.pytorch-right-menu a:link, -.pytorch-right-menu a:visited, -.pytorch-right-menu a:hover { - color: #6c6c6d; - font-size: 0.875rem; - line-height: 1rem; - padding: 0; - text-decoration: none; -} -.pytorch-left-menu a:link.reference.internal, -.pytorch-left-menu a:visited.reference.internal, -.pytorch-left-menu a:hover.reference.internal, -.pytorch-right-menu a:link.reference.internal, -.pytorch-right-menu a:visited.reference.internal, -.pytorch-right-menu a:hover.reference.internal { - margin-bottom: 0.3125rem; - position: relative; -} -.pytorch-left-menu li code, -.pytorch-right-menu li code { - border: none; - background: inherit; - color: inherit; - padding-left: 0; - padding-right: 0; -} -.pytorch-left-menu li span.toctree-expand, -.pytorch-right-menu li span.toctree-expand { - display: block; - float: left; - margin-left: -1.2em; - font-size: 0.8em; - line-height: 1.6em; -} -.pytorch-left-menu li.on a, .pytorch-left-menu li.current > a, -.pytorch-right-menu li.on a, -.pytorch-right-menu li.current > a { - position: relative; - border: none; -} -.pytorch-left-menu li.on a span.toctree-expand, .pytorch-left-menu li.current > a span.toctree-expand, -.pytorch-right-menu li.on a span.toctree-expand, -.pytorch-right-menu li.current > a span.toctree-expand { - display: block; - font-size: 0.8em; - line-height: 1.6em; -} -.pytorch-left-menu li.toctree-l1.current > a, -.pytorch-right-menu li.toctree-l1.current > a { - color: #ee4c2c; -} -.pytorch-left-menu li.toctree-l1.current li.toctree-l2 > ul, .pytorch-left-menu li.toctree-l2.current li.toctree-l3 > ul, -.pytorch-right-menu li.toctree-l1.current li.toctree-l2 > ul, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3 > ul { - display: none; -} -.pytorch-left-menu li.toctree-l1.current li.toctree-l2.current > ul, .pytorch-left-menu li.toctree-l2.current li.toctree-l3.current > ul, -.pytorch-right-menu li.toctree-l1.current li.toctree-l2.current > ul, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3.current > ul { - display: block; -} -.pytorch-left-menu li.toctree-l2.current li.toctree-l3 > a, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3 > a { - display: block; -} -.pytorch-left-menu li.toctree-l3, -.pytorch-right-menu li.toctree-l3 { - font-size: 0.9em; -} -.pytorch-left-menu li.toctree-l3.current li.toctree-l4 > a, -.pytorch-right-menu li.toctree-l3.current li.toctree-l4 > a { - display: block; -} -.pytorch-left-menu li.toctree-l4, -.pytorch-right-menu li.toctree-l4 { - font-size: 0.9em; -} -.pytorch-left-menu li.current ul, -.pytorch-right-menu li.current ul { - display: block; -} -.pytorch-left-menu li ul, -.pytorch-right-menu li ul { - margin-bottom: 0; - display: none; -} -.pytorch-left-menu li ul li a, -.pytorch-right-menu li ul li a { - margin-bottom: 0; -} -.pytorch-left-menu a, -.pytorch-right-menu a { - display: inline-block; - position: relative; -} -.pytorch-left-menu a:hover, -.pytorch-right-menu a:hover { - cursor: pointer; -} -.pytorch-left-menu a:active, -.pytorch-right-menu a:active { - cursor: pointer; -} - -.pytorch-left-menu ul { - padding-left: 0; -} - -.pytorch-right-menu a:link, -.pytorch-right-menu a:visited, -.pytorch-right-menu a:hover { - color: #6c6c6d; -} -.pytorch-right-menu a:link span.pre, -.pytorch-right-menu a:visited span.pre, -.pytorch-right-menu a:hover span.pre { - color: #6c6c6d; -} -.pytorch-right-menu a.reference.internal.expanded:before { - content: "-"; - font-family: monospace; - position: absolute; - left: -12px; -} -.pytorch-right-menu a.reference.internal.not-expanded:before { - content: "+"; - font-family: monospace; - position: absolute; - left: -12px; -} -.pytorch-right-menu li.active > a { - color: #ee4c2c; -} -.pytorch-right-menu li.active > a span.pre, .pytorch-right-menu li.active > a:before { - color: #ee4c2c; -} -.pytorch-right-menu li.active > a:after { - content: "\2022"; - color: #e44c2c; - display: inline-block; - font-size: 1.375rem; - left: -17px; - position: absolute; - top: 1px; -} -.pytorch-right-menu .pytorch-side-scroll > ul > li > ul > li { - margin-bottom: 0; -} -.pytorch-right-menu ul ul { - padding-left: 0; -} -.pytorch-right-menu ul ul li { - padding-left: 0px; -} -.pytorch-right-menu ul ul li a.reference.internal { - padding-left: 0; -} -.pytorch-right-menu ul ul li ul { - display: none; - padding-left: 10px; -} -.pytorch-right-menu ul ul li li a.reference.internal { - padding-left: 0; -} -.pytorch-right-menu li ul { - display: block; -} - -.pytorch-right-menu .pytorch-side-scroll { - padding-top: 20px; -} -@media screen and (min-width: 1101px) { - .pytorch-right-menu .pytorch-side-scroll { - width: 120%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu .pytorch-side-scroll { - width: 400px; - } -} -.pytorch-right-menu .pytorch-side-scroll > ul { - padding-left: 10%; - padding-right: 10%; - margin-bottom: 0; -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu .pytorch-side-scroll > ul { - padding-left: 25px; - } -} -.pytorch-right-menu .pytorch-side-scroll > ul > li > a.reference.internal { - color: #262626; - font-weight: 500; -} -.pytorch-right-menu .pytorch-side-scroll ul li { - position: relative; -} - -.header-container { - max-width: none; - margin-top: 4px; -} -@media screen and (min-width: 1101px) { - .header-container { - margin-top: 0; - } -} -@media screen and (min-width: 1600px) { - .header-container { - margin-top: 0; - } -} - -.container-fluid.header-holder { - padding-right: 0; - padding-left: 0; -} - -.header-holder .container { - max-width: none; - padding-right: 1.875rem; - padding-left: 1.875rem; -} -@media screen and (min-width: 1101px) { - .header-holder .container { - padding-right: 1.875rem; - padding-left: 1.875rem; - } -} - -.header-holder .main-menu { - -webkit-box-pack: unset; - -ms-flex-pack: unset; - justify-content: unset; - position: relative; -} -@media screen and (min-width: 1101px) { - .header-holder .main-menu ul { - padding-left: 0; - margin-left: 26%; - } -} -@media screen and (min-width: 1600px) { - .header-holder .main-menu ul { - padding-left: 38px; - margin-left: 310px; - } -} - -.pytorch-page-level-bar { - display: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: #ffffff; - border-bottom: 1px solid #e2e2e2; - width: 100%; - z-index: 201; -} -@media screen and (min-width: 1101px) { - .pytorch-page-level-bar { - left: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 45px; - padding-left: 0; - width: 100%; - position: absolute; - z-index: 1; - } - .pytorch-page-level-bar.left-menu-is-fixed { - position: fixed; - top: 0; - left: 25%; - padding-left: 0; - right: 0; - width: 75%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-page-level-bar { - left: 0; - right: 0; - width: auto; - z-index: 1; - } - .pytorch-page-level-bar.left-menu-is-fixed { - left: 350px; - right: 0; - width: auto; - } -} -.pytorch-page-level-bar ul, .pytorch-page-level-bar li { - margin: 0; -} - -.pytorch-shortcuts-wrapper { - display: none; -} -@media screen and (min-width: 1101px) { - .pytorch-shortcuts-wrapper { - font-size: 0.875rem; - float: left; - margin-left: 2%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-shortcuts-wrapper { - margin-left: 1.875rem; - } -} - -.cookie-banner-wrapper { - display: none; -} -.cookie-banner-wrapper .container { - padding-left: 1.875rem; - padding-right: 1.875rem; - max-width: 1240px; -} -.cookie-banner-wrapper.is-visible { - display: block; - position: fixed; - bottom: 0; - background-color: #f3f4f7; - min-height: 100px; - width: 100%; - z-index: 401; - border-top: 3px solid #ededee; -} -.cookie-banner-wrapper .gdpr-notice { - color: #6c6c6d; - margin-top: 1.5625rem; - text-align: left; - max-width: 1440px; -} -@media screen and (min-width: 768px) { - .cookie-banner-wrapper .gdpr-notice { - width: 77%; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .cookie-banner-wrapper .gdpr-notice { - width: inherit; - } -} -.cookie-banner-wrapper .gdpr-notice .cookie-policy-link { - color: #343434; -} -.cookie-banner-wrapper .close-button { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: transparent; - border: 1px solid #f3f4f7; - height: 1.3125rem; - position: absolute; - bottom: 42px; - right: 0; - top: 0; - cursor: pointer; - outline: none; -} -@media screen and (min-width: 768px) { - .cookie-banner-wrapper .close-button { - right: 20%; - top: inherit; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .cookie-banner-wrapper .close-button { - right: 0; - top: 0; - } -} - -.main-menu ul li .ecosystem-dropdown, .main-menu ul li .resources-dropdown a { - cursor: pointer; -} -.main-menu ul li .dropdown-menu { - border-radius: 0; - padding: 0; -} -.main-menu ul li .dropdown-menu .dropdown-item { - color: #6c6c6d; - border-bottom: 1px solid #e2e2e2; -} -.main-menu ul li .dropdown-menu .dropdown-item:last-of-type { - border-bottom-color: transparent; -} -.main-menu ul li .dropdown-menu .dropdown-item:hover { - background-color: #e44c2c; -} -.main-menu ul li .dropdown-menu .dropdown-item p { - font-size: 1rem; - color: #979797; -} -.main-menu ul li .dropdown-menu a.dropdown-item:hover { - color: #ffffff; -} -.main-menu ul li .dropdown-menu a.dropdown-item:hover p { - color: #ffffff; -} - -.ecosystem-dropdown-menu, .resources-dropdown-menu { - left: -75px; - width: 226px; - display: none; - position: absolute; - top: 3.125rem; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #ffffff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.ecosystem-dropdown-menu.show-menu, .resources-dropdown-menu.show-menu { - display: block; -} - -.main-menu ul li .ecosystem-dropdown-menu, .main-menu ul li .resources-dropdown-menu { - border-radius: 0; - padding: 0; -} - -.main-menu ul li .ecosystem-dropdown-menu .dropdown-item, .main-menu ul li .resources-dropdown-menu .dropdown-item { - color: #6c6c6d; - border-bottom: 1px solid #e2e2e2; -} - -.header-holder .main-menu ul li a.nav-dropdown-item { - display: block; - font-size: 1rem; - line-height: 1.3125rem; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #979797; - text-align: center; - background-color: transparent; - border-bottom: 1px solid #e2e2e2; -} -.header-holder .main-menu ul li a.nav-dropdown-item:last-of-type { - border-bottom-color: transparent; -} -.header-holder .main-menu ul li a.nav-dropdown-item:hover { - background-color: #e44c2c; - color: white; -} -.header-holder .main-menu ul li a.nav-dropdown-item .dropdown-title { - font-size: 1.125rem; - color: #6c6c6d; - letter-spacing: 0; - line-height: 34px; -} - -.header-holder .main-menu ul li a.nav-dropdown-item:hover .dropdown-title { - background-color: #e44c2c; - color: white; -} - -/*# sourceMappingURL=theme.css.map */ \ No newline at end of file diff --git a/docs/src/_build/html/_static/css/theme.css.map b/docs/src/_build/html/_static/css/theme.css.map deleted file mode 100644 index 8300d6d..0000000 --- a/docs/src/_build/html/_static/css/theme.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../scss/vendor/bootstrap/bootstrap.scss","../../../scss/vendor/bootstrap/_root.scss","theme.css","../../../scss/vendor/bootstrap/_reboot.scss","../../../scss/vendor/bootstrap/_variables.scss","../../../scss/vendor/bootstrap/mixins/_hover.scss","../../../scss/vendor/bootstrap/_type.scss","../../../scss/vendor/bootstrap/mixins/_lists.scss","../../../scss/vendor/bootstrap/_images.scss","../../../scss/vendor/bootstrap/mixins/_image.scss","../../../scss/vendor/bootstrap/mixins/_border-radius.scss","../../../scss/vendor/bootstrap/_code.scss","../../../scss/vendor/bootstrap/_grid.scss","../../../scss/vendor/bootstrap/mixins/_grid.scss","../../../scss/vendor/bootstrap/mixins/_breakpoints.scss","../../../scss/vendor/bootstrap/_functions.scss","../../../scss/vendor/bootstrap/mixins/_grid-framework.scss","../../../scss/vendor/bootstrap/_tables.scss","../../../scss/vendor/bootstrap/mixins/_table-row.scss","../../../scss/vendor/bootstrap/_forms.scss","../../../scss/vendor/bootstrap/mixins/_transition.scss","../../../scss/vendor/bootstrap/mixins/_forms.scss","../../../scss/vendor/bootstrap/mixins/_gradients.scss","../../../scss/vendor/bootstrap/_buttons.scss","../../../scss/vendor/bootstrap/mixins/_buttons.scss","../../../scss/vendor/bootstrap/_transitions.scss","../../../scss/vendor/bootstrap/_dropdown.scss","../../../scss/vendor/bootstrap/mixins/_caret.scss","../../../scss/vendor/bootstrap/mixins/_nav-divider.scss","../../../scss/vendor/bootstrap/_button-group.scss","../../../scss/vendor/bootstrap/_input-group.scss","../../../scss/vendor/bootstrap/_custom-forms.scss","../../../scss/vendor/bootstrap/_nav.scss","../../../scss/vendor/bootstrap/_navbar.scss","../../../scss/vendor/bootstrap/_card.scss","../../../scss/vendor/bootstrap/_breadcrumb.scss","../../../scss/vendor/bootstrap/_pagination.scss","../../../scss/vendor/bootstrap/mixins/_pagination.scss","../../../scss/vendor/bootstrap/_badge.scss","../../../scss/vendor/bootstrap/mixins/_badge.scss","../../../scss/vendor/bootstrap/_jumbotron.scss","../../../scss/vendor/bootstrap/_alert.scss","../../../scss/vendor/bootstrap/mixins/_alert.scss","../../../scss/vendor/bootstrap/_progress.scss","../../../scss/vendor/bootstrap/_media.scss","../../../scss/vendor/bootstrap/_list-group.scss","../../../scss/vendor/bootstrap/mixins/_list-group.scss","../../../scss/vendor/bootstrap/_close.scss","../../../scss/vendor/bootstrap/_modal.scss","../../../scss/vendor/bootstrap/_tooltip.scss","../../../scss/vendor/bootstrap/mixins/_reset-text.scss","../../../scss/vendor/bootstrap/_popover.scss","../../../scss/vendor/bootstrap/_carousel.scss","../../../scss/vendor/bootstrap/utilities/_align.scss","../../../scss/vendor/bootstrap/mixins/_background-variant.scss","../../../scss/vendor/bootstrap/utilities/_background.scss","../../../scss/vendor/bootstrap/utilities/_borders.scss","../../../scss/vendor/bootstrap/mixins/_clearfix.scss","../../../scss/vendor/bootstrap/utilities/_display.scss","../../../scss/vendor/bootstrap/utilities/_embed.scss","../../../scss/vendor/bootstrap/utilities/_flex.scss","../../../scss/vendor/bootstrap/utilities/_float.scss","../../../scss/vendor/bootstrap/mixins/_float.scss","../../../scss/vendor/bootstrap/utilities/_position.scss","../../../scss/vendor/bootstrap/utilities/_screenreaders.scss","../../../scss/vendor/bootstrap/mixins/_screen-reader.scss","../../../scss/vendor/bootstrap/utilities/_sizing.scss","../../../scss/vendor/bootstrap/utilities/_spacing.scss","../../../scss/vendor/bootstrap/utilities/_text.scss","../../../scss/vendor/bootstrap/mixins/_text-truncate.scss","../../../scss/vendor/bootstrap/mixins/_text-emphasis.scss","../../../scss/vendor/bootstrap/mixins/_text-hide.scss","../../../scss/vendor/bootstrap/utilities/_visibility.scss","../../../scss/vendor/bootstrap/mixins/_visibility.scss","../../../scss/vendor/bootstrap/_print.scss","../../../scss/shared/_syntax-highlighting.scss","../../../scss/shared/_fonts.scss","../../../scss/shared/_base_styles.scss","../../../scss/shared/_variables.scss","../../../scss/shared/_code.scss","../../../scss/shared/_navigation.scss","../../../scss/shared/_footer.scss","../../../scss/shared/_article.scss","../../../scss/_sphinx_base.scss","../../../scss/_sphinx_layout.scss"],"names":[],"mappings":"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Cd,oBAAmB;CD3GpB;;AC8GD;EACE,yBAAwB;CD3GzB;;AC+GD;;EAEE,aAAY;CD5Gb;;AC+GD;EAKE,qBAAoB;EACpB,yBAAwB;CDhHzB;;ACuHD;;EAEE,yBAAwB;CDpHzB;;AC4HD;EACE,cAAa;EACb,2BAA0B;CDzH3B;;ACgID;EACE,sBAAqB;CD7HtB;;ACgID;EACE,mBAAkB;EAClB,gBAAe;CD7HhB;;ACgID;EACE,cAAa;CD7Hd;;ACkID;EACE,yBAAwB;CD/HzB;;AI3VD;;EAEE,sBFmPwC;EElPxC,qBFmPmC;EElPnC,iBFmP+B;EElP/B,iBFmP+B;EElP/B,eForBiD;CFtVlD;;AI3VD;EAAU,kBFqOyC;CF0HlD;;AI9VD;EAAU,gBFqOuC;CF6HhD;;AIjWD;EAAU,mBFqO0C;CFgInD;;AIpWD;EAAU,kBFqOyC;CFmIlD;;AIvWD;EAAU,mBFqO0C;CFsInD;;AI1WD;EAAU,gBFqOmC;CFyI5C;;AI5WD;EACE,mBFqPmD;EEpPnD,iBFqP+B;CF0HhC;;AI3WD;EACE,gBFoOgC;EEnOhC,iBFwO+B;EEvO/B,iBF2OiD;CFmIlD;;AI5WD;EACE,kBFgOkC;EE/NlC,iBFoO+B;EEnO/B,iBFsOiD;CFyIlD;;AI7WD;EACE,kBF4NkC;EE3NlC,iBFgO+B;EE/N/B,iBFiOiD;CF+IlD;;AI9WD;EACE,kBFwNkC;EEvNlC,iBF4N+B;EE3N/B,iBF4NiD;CFqJlD;;AIzWD;EACE,iBF6OmC;EE5OnC,oBF4OmC;EE3OnC,UAAS;EACT,yCAAmD;CJ4WpD;;AIpWD;;EAEE,eF2M+B;EE1M/B,iBFyK+B;CF8LhC;;AIpWD;;EAEE,eF+MgC;EE9MhC,0BFuNmC;CFgJpC;;AI/VD;EC/EE,gBAAe;EACf,iBAAgB;CLkbjB;;AI/VD;ECpFE,gBAAe;EACf,iBAAgB;CLubjB;;AIjWD;EACE,sBAAqB;CJoWtB;AIlWC;EACE,qBFiM+B;CFmKlC;;AI1VD;EACE,eAAc;EACd,0BAAyB;CJ6V1B;;AIzVD;EACE,oBFKW;EEJX,mBFmKmD;CFyLpD;;AIzVD;EACE,eAAc;EACd,eAAc;EACd,eFotB2C;CFxX5C;AI1VC;EACE,uBAAsB;CJ4VzB;;AM/cD;ECIE,gBAAe;EAGf,aAAY;CP6cb;;AM9cD;EACE,iBJqyBwC;EIpyBxC,uBJq2BwC;EIp2BxC,0BAA6D;EEZ3D,uBNmzB8C;EK5yBhD,gBAAe;EAGf,aAAY;CPsdb;;AMxcD;EAEE,sBAAqB;CN0ctB;;AMvcD;EACE,sBAA4B;EAC5B,eAAc;CN0cf;;AMvcD;EACE,eJsxBqC;EIrxBrC,eJmyB2C;CFzV5C;;ASjfD;;;;EAIE,kGPgOgH;CFoRjH;;AShfD;EACE,iBPo2BuC;EOn2BvC,ePo2BuC;EOn2BvC,uBAAsB;CTmfvB;AShfC;EACE,eAAc;CTkfjB;;AS7eD;EACE,uBAAsC;EACtC,iBP41BiD;EO31BjD,YP41BwC;EO31BxC,0BP81B2C;EMn3BzC,sBN+M+B;CFuTlC;AS7eC;EACE,WAAU;EACV,gBAAe;EACf,iBP8P2C;CFiP9C;;ASzeD;EACE,eAAc;EACd,iBPs0BuC;EOr0BvC,eP80B2C;CFlW5C;ASzeC;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAkB;CT2erB;;ASteD;EACE,kBPm0BuC;EOl0BvC,mBAAkB;CTyenB;;AU1hBC;ECAA,YAAW;EACX,oBAAuC;EACvC,mBAAsC;EACtC,mBAAkB;EAClB,kBAAiB;CX8hBlB;AY3eG;EFvDF;ICYI,iBECa;GbyhBhB;CACF;AYhfG;EFvDF;ICYI,iBECa;Gb8hBhB;CACF;AYrfG;EFvDF;ICYI,iBECa;GbmiBhB;CACF;AY1fG;EFvDF;ICYI,kBECa;GbwiBhB;CACF;;AU1iBC;ECZA,YAAW;EACX,oBAAuC;EACvC,mBAAsC;EACtC,mBAAkB;EAClB,kBAAiB;CX0jBlB;;AUxiBC;ECJA,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;MAAf,gBAAe;EACf,oBAAuC;EACvC,mBAAsC;CXgjBvC;;AUziBC;EACE,gBAAe;EACf,eAAc;CV4iBjB;AU1iBG;;EAEE,iBAAgB;EAChB,gBAAe;CV4iBpB;;Ac7kBC;;;;;;EACE,mBAAkB;EAClB,YAAW;EACX,gBAAe;EACf,oBAA4B;EAC5B,mBAA2B;CdqlB9B;;AclkBK;EACE,2BAAa;MAAb,cAAa;EACb,oBAAY;MAAZ,qBAAY;UAAZ,aAAY;EACZ,gBAAe;CdqkBtB;;AcnkBK;EACE,oBAAc;MAAd,mBAAc;UAAd,eAAc;EACd,YAAW;EACX,gBAAe;CdskBtB;;AclkBO;EHFN,oBAAsC;MAAtC,4BAAsC;UAAtC,wBAAsC;EAItC,yBAAuC;CXqkBxC;;AcvkBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CX0kBxC;;Ac5kBO;EHFN,oBAAsC;MAAtC,kBAAsC;UAAtC,cAAsC;EAItC,eAAuC;CX+kBxC;;AcjlBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CXolBxC;;ActlBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CXylBxC;;Ac3lBO;EHFN,oBAAsC;MAAtC,kBAAsC;UAAtC,cAAsC;EAItC,eAAuC;CX8lBxC;;AchmBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CXmmBxC;;AcrmBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CXwmBxC;;Ac1mBO;EHFN,oBAAsC;MAAtC,kBAAsC;UAAtC,cAAsC;EAItC,eAAuC;CX6mBxC;;Ac/mBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CXknBxC;;AcpnBO;EHFN,oBAAsC;MAAtC,6BAAsC;UAAtC,yBAAsC;EAItC,0BAAuC;CXunBxC;;AcznBO;EHFN,oBAAsC;MAAtC,mBAAsC;UAAtC,eAAsC;EAItC,gBAAuC;CX4nBxC;;AcznBK;EAAwB,6BAAS;MAAT,mBAAS;UAAT,UAAS;Cd6nBtC;;Ac3nBK;EAAuB,8BAAmB;MAAnB,mBAAmB;UAAnB,UAAmB;Cd+nB/C;;Ac5nBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdgoBxC;;AchoBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdooBxC;;AcpoBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdwoBxC;;AcxoBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;Cd4oBxC;;Ac5oBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdgpBxC;;AchpBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdopBxC;;AcppBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdwpBxC;;AcxpBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;Cd4pBxC;;Ac5pBO;EAAwB,6BAAS;MAAT,kBAAS;UAAT,SAAS;CdgqBxC;;AchqBO;EAAwB,8BAAS;MAAT,kBAAS;UAAT,SAAS;CdoqBxC;;AcpqBO;EAAwB,8BAAS;MAAT,mBAAS;UAAT,UAAS;CdwqBxC;;AcxqBO;EAAwB,8BAAS;MAAT,mBAAS;UAAT,UAAS;Cd4qBxC;;Ac5qBO;EAAwB,8BAAS;MAAT,mBAAS;UAAT,UAAS;CdgrBxC;;Ac1qBS;EHTR,2BAA+C;CXurBhD;;Ac9qBS;EHTR,4BAA+C;CX2rBhD;;AclrBS;EHTR,iBAA+C;CX+rBhD;;ActrBS;EHTR,4BAA+C;CXmsBhD;;Ac1rBS;EHTR,4BAA+C;CXusBhD;;Ac9rBS;EHTR,iBAA+C;CX2sBhD;;AclsBS;EHTR,4BAA+C;CX+sBhD;;ActsBS;EHTR,4BAA+C;CXmtBhD;;Ac1sBS;EHTR,iBAA+C;CXutBhD;;Ac9sBS;EHTR,4BAA+C;CX2tBhD;;AcltBS;EHTR,4BAA+C;CX+tBhD;;AYrtBG;EE7BE;IACE,2BAAa;QAAb,cAAa;IACb,oBAAY;QAAZ,qBAAY;YAAZ,aAAY;IACZ,gBAAe;GdsvBpB;;EcpvBG;IACE,oBAAc;QAAd,mBAAc;YAAd,eAAc;IACd,YAAW;IACX,gBAAe;GduvBpB;;EcnvBK;IHFN,oBAAsC;QAAtC,4BAAsC;YAAtC,wBAAsC;IAItC,yBAAuC;GXsvBtC;;EcxvBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX2vBtC;;Ec7vBK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GXgwBtC;;EclwBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXqwBtC;;EcvwBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX0wBtC;;Ec5wBK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GX+wBtC;;EcjxBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXoxBtC;;EctxBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXyxBtC;;Ec3xBK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GX8xBtC;;EchyBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXmyBtC;;EcryBK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXwyBtC;;Ec1yBK;IHFN,oBAAsC;QAAtC,mBAAsC;YAAtC,eAAsC;IAItC,gBAAuC;GX6yBtC;;Ec1yBG;IAAwB,6BAAS;QAAT,mBAAS;YAAT,UAAS;Gd8yBpC;;Ec5yBG;IAAuB,8BAAmB;QAAnB,mBAAmB;YAAnB,UAAmB;GdgzB7C;;Ec7yBK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdizBtC;;EcjzBK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdqzBtC;;EcrzBK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdyzBtC;;EczzBK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd6zBtC;;Ec7zBK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdi0BtC;;Ecj0BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdq0BtC;;Ecr0BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdy0BtC;;Ecz0BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd60BtC;;Ec70BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdi1BtC;;Ecj1BK;IAAwB,8BAAS;QAAT,kBAAS;YAAT,SAAS;Gdq1BtC;;Ecr1BK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdy1BtC;;Ecz1BK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gd61BtC;;Ec71BK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdi2BtC;;Ec31BO;IHTR,eAA4B;GXw2B3B;;Ec/1BO;IHTR,2BAA+C;GX42B9C;;Ecn2BO;IHTR,4BAA+C;GXg3B9C;;Ecv2BO;IHTR,iBAA+C;GXo3B9C;;Ec32BO;IHTR,4BAA+C;GXw3B9C;;Ec/2BO;IHTR,4BAA+C;GX43B9C;;Ecn3BO;IHTR,iBAA+C;GXg4B9C;;Ecv3BO;IHTR,4BAA+C;GXo4B9C;;Ec33BO;IHTR,4BAA+C;GXw4B9C;;Ec/3BO;IHTR,iBAA+C;GX44B9C;;Ecn4BO;IHTR,4BAA+C;GXg5B9C;;Ecv4BO;IHTR,4BAA+C;GXo5B9C;CACF;AY34BG;EE7BE;IACE,2BAAa;QAAb,cAAa;IACb,oBAAY;QAAZ,qBAAY;YAAZ,aAAY;IACZ,gBAAe;Gd26BpB;;Ecz6BG;IACE,oBAAc;QAAd,mBAAc;YAAd,eAAc;IACd,YAAW;IACX,gBAAe;Gd46BpB;;Ecx6BK;IHFN,oBAAsC;QAAtC,4BAAsC;YAAtC,wBAAsC;IAItC,yBAAuC;GX26BtC;;Ec76BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXg7BtC;;Ecl7BK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GXq7BtC;;Ecv7BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX07BtC;;Ec57BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX+7BtC;;Ecj8BK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GXo8BtC;;Ect8BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXy8BtC;;Ec38BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX88BtC;;Ech9BK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GXm9BtC;;Ecr9BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXw9BtC;;Ec19BK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX69BtC;;Ec/9BK;IHFN,oBAAsC;QAAtC,mBAAsC;YAAtC,eAAsC;IAItC,gBAAuC;GXk+BtC;;Ec/9BG;IAAwB,6BAAS;QAAT,mBAAS;YAAT,UAAS;Gdm+BpC;;Ecj+BG;IAAuB,8BAAmB;QAAnB,mBAAmB;YAAnB,UAAmB;Gdq+B7C;;Ecl+BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gds+BtC;;Ect+BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd0+BtC;;Ec1+BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd8+BtC;;Ec9+BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdk/BtC;;Ecl/BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gds/BtC;;Ect/BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd0/BtC;;Ec1/BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd8/BtC;;Ec9/BK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdkgCtC;;EclgCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdsgCtC;;EctgCK;IAAwB,8BAAS;QAAT,kBAAS;YAAT,SAAS;Gd0gCtC;;Ec1gCK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gd8gCtC;;Ec9gCK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;GdkhCtC;;EclhCK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;GdshCtC;;EchhCO;IHTR,eAA4B;GX6hC3B;;EcphCO;IHTR,2BAA+C;GXiiC9C;;EcxhCO;IHTR,4BAA+C;GXqiC9C;;Ec5hCO;IHTR,iBAA+C;GXyiC9C;;EchiCO;IHTR,4BAA+C;GX6iC9C;;EcpiCO;IHTR,4BAA+C;GXijC9C;;EcxiCO;IHTR,iBAA+C;GXqjC9C;;Ec5iCO;IHTR,4BAA+C;GXyjC9C;;EchjCO;IHTR,4BAA+C;GX6jC9C;;EcpjCO;IHTR,iBAA+C;GXikC9C;;EcxjCO;IHTR,4BAA+C;GXqkC9C;;Ec5jCO;IHTR,4BAA+C;GXykC9C;CACF;AYhkCG;EE7BE;IACE,2BAAa;QAAb,cAAa;IACb,oBAAY;QAAZ,qBAAY;YAAZ,aAAY;IACZ,gBAAe;GdgmCpB;;Ec9lCG;IACE,oBAAc;QAAd,mBAAc;YAAd,eAAc;IACd,YAAW;IACX,gBAAe;GdimCpB;;Ec7lCK;IHFN,oBAAsC;QAAtC,4BAAsC;YAAtC,wBAAsC;IAItC,yBAAuC;GXgmCtC;;EclmCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXqmCtC;;EcvmCK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GX0mCtC;;Ec5mCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX+mCtC;;EcjnCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXonCtC;;EctnCK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GXynCtC;;Ec3nCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX8nCtC;;EchoCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXmoCtC;;EcroCK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GXwoCtC;;Ec1oCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX6oCtC;;Ec/oCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXkpCtC;;EcppCK;IHFN,oBAAsC;QAAtC,mBAAsC;YAAtC,eAAsC;IAItC,gBAAuC;GXupCtC;;EcppCG;IAAwB,6BAAS;QAAT,mBAAS;YAAT,UAAS;GdwpCpC;;EctpCG;IAAuB,8BAAmB;QAAnB,mBAAmB;YAAnB,UAAmB;Gd0pC7C;;EcvpCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd2pCtC;;Ec3pCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd+pCtC;;Ec/pCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdmqCtC;;EcnqCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GduqCtC;;EcvqCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd2qCtC;;Ec3qCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd+qCtC;;Ec/qCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdmrCtC;;EcnrCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;GdurCtC;;EcvrCK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd2rCtC;;Ec3rCK;IAAwB,8BAAS;QAAT,kBAAS;YAAT,SAAS;Gd+rCtC;;Ec/rCK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;GdmsCtC;;EcnsCK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;GdusCtC;;EcvsCK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gd2sCtC;;EcrsCO;IHTR,eAA4B;GXktC3B;;EczsCO;IHTR,2BAA+C;GXstC9C;;Ec7sCO;IHTR,4BAA+C;GX0tC9C;;EcjtCO;IHTR,iBAA+C;GX8tC9C;;EcrtCO;IHTR,4BAA+C;GXkuC9C;;EcztCO;IHTR,4BAA+C;GXsuC9C;;Ec7tCO;IHTR,iBAA+C;GX0uC9C;;EcjuCO;IHTR,4BAA+C;GX8uC9C;;EcruCO;IHTR,4BAA+C;GXkvC9C;;EczuCO;IHTR,iBAA+C;GXsvC9C;;Ec7uCO;IHTR,4BAA+C;GX0vC9C;;EcjvCO;IHTR,4BAA+C;GX8vC9C;CACF;AYrvCG;EE7BE;IACE,2BAAa;QAAb,cAAa;IACb,oBAAY;QAAZ,qBAAY;YAAZ,aAAY;IACZ,gBAAe;GdqxCpB;;EcnxCG;IACE,oBAAc;QAAd,mBAAc;YAAd,eAAc;IACd,YAAW;IACX,gBAAe;GdsxCpB;;EclxCK;IHFN,oBAAsC;QAAtC,4BAAsC;YAAtC,wBAAsC;IAItC,yBAAuC;GXqxCtC;;EcvxCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GX0xCtC;;Ec5xCK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GX+xCtC;;EcjyCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXoyCtC;;EctyCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXyyCtC;;Ec3yCK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GX8yCtC;;EchzCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXmzCtC;;EcrzCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXwzCtC;;Ec1zCK;IHFN,oBAAsC;QAAtC,kBAAsC;YAAtC,cAAsC;IAItC,eAAuC;GX6zCtC;;Ec/zCK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXk0CtC;;Ecp0CK;IHFN,oBAAsC;QAAtC,6BAAsC;YAAtC,yBAAsC;IAItC,0BAAuC;GXu0CtC;;Ecz0CK;IHFN,oBAAsC;QAAtC,mBAAsC;YAAtC,eAAsC;IAItC,gBAAuC;GX40CtC;;Ecz0CG;IAAwB,6BAAS;QAAT,mBAAS;YAAT,UAAS;Gd60CpC;;Ec30CG;IAAuB,8BAAmB;QAAnB,mBAAmB;YAAnB,UAAmB;Gd+0C7C;;Ec50CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdg1CtC;;Ech1CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdo1CtC;;Ecp1CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdw1CtC;;Ecx1CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd41CtC;;Ec51CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdg2CtC;;Ech2CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdo2CtC;;Ecp2CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdw2CtC;;Ecx2CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gd42CtC;;Ec52CK;IAAwB,6BAAS;QAAT,kBAAS;YAAT,SAAS;Gdg3CtC;;Ech3CK;IAAwB,8BAAS;QAAT,kBAAS;YAAT,SAAS;Gdo3CtC;;Ecp3CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdw3CtC;;Ecx3CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gd43CtC;;Ec53CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdg4CtC;;Ec13CO;IHTR,eAA4B;GXu4C3B;;Ec93CO;IHTR,2BAA+C;GX24C9C;;Ecl4CO;IHTR,4BAA+C;GX+4C9C;;Ect4CO;IHTR,iBAA+C;GXm5C9C;;Ec14CO;IHTR,4BAA+C;GXu5C9C;;Ec94CO;IHTR,4BAA+C;GX25C9C;;Ecl5CO;IHTR,iBAA+C;GX+5C9C;;Ect5CO;IHTR,4BAA+C;GXm6C9C;;Ec15CO;IHTR,4BAA+C;GXu6C9C;;Ec95CO;IHTR,iBAA+C;GX26C9C;;Ecl6CO;IHTR,4BAA+C;GX+6C9C;;Ect6CO;IHTR,4BAA+C;GXm7C9C;CACF;Ael+CD;EACE,YAAW;EACX,gBAAe;EACf,oBb8GW;Ea7GX,8BbsSuC;CF8rCxC;Ael+CC;;EAEE,iBb+RgC;Ea9RhC,oBAAmB;EACnB,8BAAyD;Cfo+C5D;Aej+CC;EACE,uBAAsB;EACtB,iCAAkE;Cfm+CrE;Aeh+CC;EACE,8BAA+D;Cfk+ClE;Ae/9CC;EACE,uBby1BsC;CFwoBzC;;Aev9CC;;EAEE,gBbqQ+B;CFqtClC;;Aej9CD;EACE,0BAAqD;Cfo9CtD;Ael9CC;;EAEE,0BAAqD;Cfo9CxD;Aeh9CG;;EAEE,yBAA8C;Cfk9CnD;;Aev8CC;EACE,sCbwO2C;CFkuC9C;;AGngDC;EYqEI,uCb8NuC;CFouC5C;;AgB/gDG;;;EAGE,0BAA6B;ChBkhDlC;;AG7gDC;EaMM,0BAJsC;ChB+gD7C;AgBzgDO;;EAEE,0BARoC;ChBmhD7C;;AgB7hDG;;;EAGE,0BAA6B;ChBgiDlC;;AG3hDC;EaMM,0BAJsC;ChB6hD7C;AgBvhDO;;EAEE,0BARoC;ChBiiD7C;;AgB3iDG;;;EAGE,0BAA6B;ChB8iDlC;;AGziDC;EaMM,0BAJsC;ChB2iD7C;AgBriDO;;EAEE,0BARoC;ChB+iD7C;;AgBzjDG;;;EAGE,0BAA6B;ChB4jDlC;;AGvjDC;EaMM,0BAJsC;ChByjD7C;AgBnjDO;;EAEE,0BARoC;ChB6jD7C;;AgBvkDG;;;EAGE,0BAA6B;ChB0kDlC;;AGrkDC;EaMM,0BAJsC;ChBukD7C;AgBjkDO;;EAEE,0BARoC;ChB2kD7C;;AgBrlDG;;;EAGE,0BAA6B;ChBwlDlC;;AGnlDC;EaMM,0BAJsC;ChBqlD7C;AgB/kDO;;EAEE,0BARoC;ChBylD7C;;AgBnmDG;;;EAGE,0BAA6B;ChBsmDlC;;AGjmDC;EaMM,0BAJsC;ChBmmD7C;AgB7lDO;;EAEE,0BARoC;ChBumD7C;;AgBjnDG;;;EAGE,0BAA6B;ChBonDlC;;AG/mDC;EaMM,0BAJsC;ChBinD7C;AgB3mDO;;EAEE,0BARoC;ChBqnD7C;;AgB/nDG;;;EAGE,uCdwSuC;CF01C5C;;AG7nDC;EaMM,uCAJsC;ChB+nD7C;AgBznDO;;EAEE,uCARoC;ChBmoD7C;;AeviDG;EACE,YbuwBoC;EatwBpC,0BbywBuC;EaxwBvC,sBb6MgD;CF61CrD;AeriDG;EACE,ebsrBsD;EarrBtD,0BbmtBuC;EaltBvC,sBb+rBuC;CFw2B5C;;AeliDD;EACE,YbuvBwC;EatvBxC,0BbyvB2C;CF4yB5C;AeniDC;;;EAGE,sBbyLkD;CF42CrD;AeliDC;EACE,UAAS;CfoiDZ;AehiDG;EACE,4Cb8KyC;CFo3C9C;AGhqDC;EYqIM,6CbwKwC;CFs3C/C;;AYxmDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GfghDjD;Ee7gDK;IACE,UAAS;Gf+gDhB;CACF;AYrnDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;Gf4hDjD;EezhDK;IACE,UAAS;Gf2hDhB;CACF;AYjoDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GfwiDjD;EeriDK;IACE,UAAS;GfuiDhB;CACF;AY7oDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;I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BAAsB;CrB4nEzB;;AqBlnED;;EAEE,qBAAoB;CrBqnErB;;AqB5mEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbimEjC;AGnqEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBwqE9B;AsBrqEC;EAMI,wDAAoD;UAApD,gDAAoD;CtBkqEzD;AsB7pEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb8mEjC;AsB3pEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBwpE/B;AsBtpEG;EAKI,wDAAoD;UAApD,gDAAoD;CtBopE3D;;AqBvoEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;Cb4nEjC;AG9rEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBmsE9B;AsBhsEC;EAMI,0DAAoD;UAApD,kDAAoD;CtB6rEzD;AsBxrEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CbyoEjC;AsBtrEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBmrE/B;AsBjrEG;EAKI,0DAAoD;UAApD,kDAAoD;CtB+qE3D;;AqBlqEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbupEjC;AGztEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtB8tE9B;AsB3tEC;EAMI,wDAAoD;UAApD,gDAAoD;CtBwtEzD;AsBntEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CboqEjC;AsBjtEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtB8sE/B;AsB5sEG;EAKI,wDAAoD;UAApD,gDAAoD;CtB0sE3D;;AqB7rEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbkrEjC;AGpvEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtByvE9B;AsBtvEC;EAMI,yDAAoD;UAApD,iDAAoD;CtBmvEzD;AsB9uEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb+rEjC;AsB5uEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtByuE/B;AsBvuEG;EAKI,yDAAoD;UAApD,iDAAoD;CtBquE3D;;AqBxtEC;ECzDA,epBi3B2C;EkBj3BzC,0BP0E8B;ESxEhC,sBTwEgC;Cb6sEjC;AG/wEC;EmBFE,epB22ByC;EkBj3BzC,0BAAwB;EEQxB,sBAA2B;CtBoxE9B;AsBjxEC;EAMI,wDAAoD;UAApD,gDAAoD;CtB8wEzD;AsBzwEC;EAEE,epBy1ByC;EoBx1BzC,0BTiD8B;EShD9B,sBTgD8B;Cb0tEjC;AsBvwEC;EAGE,epBi1ByC;EoBh1BzC,0BAAoC;EAIpC,sBAA4B;CtBowE/B;AsBlwEG;EAKI,wDAAoD;UAApD,gDAAoD;CtBgwE3D;;AqBnvEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbwuEjC;AG1yEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtB+yE9B;AsB5yEC;EAMI,wDAAoD;UAApD,gDAAoD;CtByyEzD;AsBpyEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CbqvEjC;AsBlyEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtB+xE/B;AsB7xEG;EAKI,wDAAoD;UAApD,gDAAoD;CtB2xE3D;;AqB9wEC;ECzDA,epBi3B2C;EkBj3BzC,0BP0E8B;ESxEhC,sBTwEgC;CbmwEjC;AGr0EC;EmBFE,epB22ByC;EkBj3BzC,0BAAwB;EEQxB,sBAA2B;CtB00E9B;AsBv0EC;EAMI,0DAAoD;UAApD,kDAAoD;CtBo0EzD;AsB/zEC;EAEE,epBy1ByC;EoBx1BzC,0BTiD8B;EShD9B,sBTgD8B;CbgxEjC;AsB7zEC;EAGE,epBi1ByC;EoBh1BzC,0BAAoC;EAIpC,sBAA4B;CtB0zE/B;AsBxzEG;EAKI,0DAAoD;UAApD,kDAAoD;CtBszE3D;;AqBzyEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;Cb8xEjC;AGh2EC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBq2E9B;AsBl2EC;EAMI,uDAAoD;UAApD,+CAAoD;CtB+1EzD;AsB11EC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb2yEjC;AsBx1EC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBq1E/B;AsBn1EG;EAKI,uDAAoD;UAApD,+CAAoD;CtBi1E3D;;AqB9zEC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb0zEjC;AsB50EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb+zEjC;AsB30EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtB40EtD;AsBz0EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB00EhC;AsBv0EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cb20EjC;AsBr0EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtBm0E1D;;AqBz1EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbq1EjC;AsBv2EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb01EjC;AsBt2EC;EAEE,0DAAmD;UAAnD,kDAAmD;CtBu2EtD;AsBp2EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBq2EhC;AsBl2EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbs2EjC;AsBh2EG;EAKI,0DAAmD;UAAnD,kDAAmD;CtB81E1D;;AqBp3EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbg3EjC;AsBl4EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbq3EjC;AsBj4EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBk4EtD;AsB/3EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBg4EhC;AsB73EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbi4EjC;AsB33EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtBy3E1D;;AqB/4EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb24EjC;AsB75EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbg5EjC;AsB55EC;EAEE,yDAAmD;UAAnD,iDAAmD;CtB65EtD;AsB15EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB25EhC;AsBx5EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cb45EjC;AsBt5EG;EAKI,yDAAmD;UAAnD,iDAAmD;CtBo5E1D;;AqB16EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbs6EjC;AsBx7EC;EACE,epBwzByC;EoBvzBzC,0BTgB8B;ESf9B,sBTe8B;Cb26EjC;AsBv7EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBw7EtD;AsBr7EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBs7EhC;AsBn7EC;EAGE,epBqyByC;EoBpyBzC,0BTH8B;ESI9B,sBTJ8B;Cbu7EjC;AsBj7EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtB+6E1D;;AqBr8EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbi8EjC;AsBn9EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbs8EjC;AsBl9EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBm9EtD;AsBh9EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBi9EhC;AsB98EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbk9EjC;AsB58EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtB08E1D;;AqBh+EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb49EjC;AsB9+EC;EACE,epBwzByC;EoBvzBzC,0BTgB8B;ESf9B,sBTe8B;Cbi+EjC;AsB7+EC;EAEE,0DAAmD;UAAnD,kDAAmD;CtB8+EtD;AsB3+EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB4+EhC;AsBz+EC;EAGE,epBqyByC;EoBpyBzC,0BTH8B;ESI9B,sBTJ8B;Cb6+EjC;AsBv+EG;EAKI,0DAAmD;UAAnD,kDAAmD;CtBq+E1D;;AqB3/EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbu/EjC;AsBzgFC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb4/EjC;AsBxgFC;EAEE,uDAAmD;UAAnD,+CAAmD;CtBygFtD;AsBtgFC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBugFhC;AsBpgFC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;CbwgFjC;AsBlgFG;EAKI,uDAAmD;UAAnD,+CAAmD;CtBggF1D;;AqB3gFD;EACE,iBnB6J+B;EmB5J/B,eRFgC;EQGhC,8BAA6B;CrB8gF9B;AGnlFC;EkBwEE,enBsiBiD;EmBriBjD,2BnBiEiC;EmBhEjC,8BAA6B;EAC7B,0BAAyB;CrB8gF5B;AqB3gFC;EAEE,2BnB0DiC;EmBzDjC,0BAAyB;EACzB,yBAAgB;UAAhB,iBAAgB;CrB4gFnB;AqBzgFC;EAEE,eRrB8B;Cb+hFjC;;AqB//ED;ECbE,qBAA8B;EAC9B,mBpBsf+C;EoBrf/C,iBpBmS+D;EoBhS7D,sBpB8Q2C;CFgwE9C;;AqBlgFD;ECjBE,wBAA8B;EAC9B,oBpBmlB+C;EoBllB/C,iBpB+R+D;EoB5R7D,sBpB+Q2C;CFswE9C;;AqBhgFD;EACE,eAAc;EACd,YAAW;CrBmgFZ;AqBhgFC;EACE,mBnB+O+B;CFmxElC;;AqB1/EC;;;EACE,YAAW;CrB+/Ed;;AuBzoFD;EACE,WAAU;ELEN,yCAAuB;EAAvB,iCAAuB;ClB2oF5B;AuB1oFC;EACE,WAAU;CvB4oFb;;AuBxoFD;EACE,cAAa;CvB2oFd;AuB1oFC;EACE,eAAc;CvB4oFjB;;AuBvoFC;EACE,mBAAkB;CvB0oFrB;;AuBroFC;EACE,yBAAwB;CvBwoF3B;;AuBpoFD;EACE,mBAAkB;EAClB,UAAS;EACT,iBAAgB;EL5BZ,sCAAuB;EAAvB,8BAAuB;ClBoqF5B;;AwBxqFD;;EAEE,mBAAkB;CxB2qFnB;;AyBlpF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AAgB;EAChB,gB1B0IgC;E0BzIhC,iB1B8I+B;E0B7I/B,iB1ByZwD;E0BxZxD,e1BysB0D;E0BxsB1D,mBAAkB;EAClB,oBAAmB;EACnB,0B1BouB2C;E0BnuB3C,0BAAiE;EpBlG/D,uBN2foD;CFgiFvD;A4Br7FC;;EAEE,cAAa;C5Bu7FhB;;A4Br5FD;;;;;;EpB7HI,2BoBmI4B;EpBlI5B,8BoBkI4B;C5By5F/B;;A4Bt5FD;;;;;;EpBxHI,0BoB8H2B;EpB7H3B,6BoB6H2B;C5B05F9B;;A6B9iGD;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAsC;EACtC,qB3B6a4C;CFooF7C;;A6B9iGD;EACE,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,mB3Bya0C;CFwoF3C;;A6B9iGD;EACE,mBAAkB;EAClB,YAAW;EACX,WAAU;C7BijGX;A6B/iGC;EACE,Y3By1BsC;EkB92BtC,0BP0E8B;Cb6/FjC;A6B7iGC;EAEE,yE3Bwa2F;U2Bxa3F,iE3Bwa2F;CFsoF9F;A6B3iGC;EACE,Y3B80BsC;E2B70BtC,0B3Bsa8E;CFuoFjF;A6BxiGG;EACE,ehBmC4B;CbugGjC;A6BxiGK;EACE,0B3ByxBqC;CFixE5C;;A6BhiGD;EACE,iBAAgB;C7BmiGjB;A6BhiGC;EACE,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B0XwC;E2BzXxC,a3ByXwC;E2BxXxC,qBAAoB;EACpB,YAAW;EACX,0BAAiB;KAAjB,uBAAiB;MAAjB,sBAAiB;UAAjB,kBAAiB;EACjB,0B3B8uByC;CFozE5C;A6B7hGC;EACE,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B2WwC;E2B1WxC,a3B0WwC;E2BzWxC,YAAW;EACX,6BAA4B;EAC5B,mCAAkC;EAClC,yB3BwW4C;CFurF/C;;A6BrhGC;ErB7FE,uBN4c0D;CF0qF7D;A6BphGG;EThGA,0BP0E8B;Cb6iGjC;A6BphGG;EACE,2N3BuW+S;CF+qFpT;A6BjhGG;ETzGA,0BP0E8B;CbmjGjC;A6BhhGG;EACE,wK3BiWmQ;CFirFxQ;A6B7gGG;EACE,yC3B6U0E;CFksF/E;A6B7gGG;EACE,yC3B0U0E;CFqsF/E;;A6BrgGC;EACE,mB3BgV+C;CFwrFlD;A6BpgGG;ETtIA,0BP0E8B;CbmkGjC;A6BpgGG;EACE,qK3ByUyP;CF6rF9P;A6BjgGG;EACE,yC3BiT0E;CFktF/E;;A6Bv/FD;EACE,sBAAqB;EACrB,YAAW;EACX,4B3B+U+C;E2B9U/C,2CAAiJ;EACjJ,iB3BmVwD;E2BlVxD,e3BmoB0D;E2BloB1D,uBAAsB;EACtB,uNAAsG;EACtG,0B3ByT2C;E2BxT3C,0BAAqE;EAEnE,uB3B2T8C;E2BvThD,yBAAgB;KAAhB,sBAAgB;UAAhB,iBAAgB;C7Bs/FjB;A6Bp/FC;EACE,sB3BgUyD;E2B/TzD,WAAU;EACV,2F3BqTwH;U2BrTxH,mF3BqTwH;CFisF3H;A6Bp/FG;EAME,e3B4mBsD;E2B3mBtD,uB3BorBoC;CF6zEzC;A6B7+FC;EAEE,aAAY;EACZ,uB3BqRqC;E2BpRrC,uBAAsB;C7B8+FzB;A6B3+FC;EACE,ehB5H8B;EgB6H9B,0B3B4nByC;CFi3E5C;A6Bz+FC;EACE,WAAU;C7B2+Fb;;A6Bv+FD;EACE,8B3BwRkD;E2BvRlD,sB3BmQyC;E2BlQzC,yB3BkQyC;E2BjQzC,e3BoRqC;CFstFtC;;A6Bv+FD;EACE,6B3BoRkD;E2BnRlD,sB3B4PyC;E2B3PzC,yB3B2PyC;E2B1PzC,gB3BgRsC;CF0tFvC;;A6Bl+FD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,YAAW;EACX,4B3BuQ+C;E2BtQ/C,iBAAgB;C7Bq+FjB;;A6Bl+FD;EACE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,4B3B+P+C;E2B9P/C,UAAS;EACT,WAAU;C7Bq+FX;A6Bn+FC;EACE,sB3B2PyD;E2B1PzD,yD3B+X2D;U2B/X3D,iD3B+X2D;CFsmF9D;A6Bn+FG;EACE,sB3BuPuD;CF8uF5D;A6Bh+FG;EACE,kB3BgQQ;CFkuFb;;A6B79FD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,QAAO;EACP,WAAU;EACV,4B3BqO+C;E2BpO/C,0BAAsD;EACtD,iB3By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B;EAAxB,gCAAwB;EAAxB,yBAAwB;EAGxB,8BAAgB;MAAhB,iBAAgB;C/Bm7GzB;A+Bh7GO;EACE,cAAa;C/Bk7GtB;A+B96GS;EACE,UAAS;EACT,aAAY;C/Bg7GvB;;A+Bj6GC;EACE,0B7BmZgD;CFihGnD;AGrmHC;E4BoMI,0B7BgZ8C;CFohGnD;A+B/5GG;EACE,0B7BwY8C;CFyhGnD;AG3mHC;E4B6MM,0B7BsY4C;CF2hGnD;A+B95GK;EACE,0B7BoY4C;CF4hGnD;A+B55GG;;;;EAIE,0B7B2X8C;CFmiGnD;A+B15GC;EACE,0B7BoXgD;E6BnXhD,iC7BwXgD;CFoiGnD;A+Bz5GC;EACE,sQ7BmXgT;CFwiGnT;A+Bx5GC;EACE,0B7B2WgD;CF+iGnD;A+Bz5GG;EACE,0B7B2W8C;CFgjGnD;AGpoHC;E4B4OM,0B7BwW4C;CFmjGnD;;A+Bn5GC;EACE,Y7B6mBsC;CFyyFzC;AG3oHC;E4BwPI,Y7B0mBoC;CF4yFzC;A+Bj5GG;EACE,gC7B6U8C;CFskGnD;AGjpHC;E4BiQM,iC7B2U6C;CFwkGpD;A+Bh5GK;EACE,iC7ByU6C;CFykGpD;A+B94GG;;;;EAIE,Y7BqlBoC;CF2zFzC;A+B54GC;EACE,gC7ByTgD;E6BxThD,uC7B6TgD;CFilGnD;A+B34GC;EACE,4Q7BwT+S;CFqlGlT;A+B14GC;EACE,gC7BgTgD;CF4lGnD;A+B34GG;EACE,Y7BqkBoC;CFw0FzC;AG1qHC;E4BgSM,Y7BkkBkC;CF20FzC;;AgC3rHD;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EACtB,aAAY;EACZ,sBAAqB;EACrB,uB9B02BwC;E8Bz2BxC,4BAA2B;EAC3B,uCAAmD;ExBRjD,uBNgpB8C;CFujGjD;AgC5rHC;EACE,gBAAe;EACf,eAAc;ChC8rHjB;AgC1rHG;ExBXA,gCN0oB8C;EMzoB9C,iCNyoB8C;CF+jGjD;AgCxrHG;ExBHA,oCN4nB8C;EM3nB9C,mCN2nB8C;CFmkGjD;;AgCtrHD;EAGE,oBAAc;MAAd,mBAAc;UAAd,eAAc;EACd,iB9B6mByC;CF0kG1C;;AgCprHD;EACE,uB9BwmBwC;CF+kGzC;;AgCprHD;EACE,sBAAiC;EACjC,iBAAgB;ChCurHjB;;AgCprHD;EACE,iBAAgB;ChCurHjB;;AG3tHC;E6ByCE,sBAAqB;ChCsrHxB;AgCnrHC;EACE,qB9BulBuC;CF8lG1C;;AgC7qHD;EACE,yBAAsC;EACtC,iBAAgB;EAChB,sC9BilBmD;E8BhlBnD,8CAA0D;ChCgrH3D;AgC9qHC;ExBrEE,2DwBsE8E;ChCgrHjF;AgC5qHG;EACE,cAAa;ChC8qHlB;;AgCzqHD;EACE,yBAAsC;EACtC,sC9BikBmD;E8BhkBnD,2CAAuD;ChC4qHxD;AgC1qHC;ExBrFE,2DwBsF8E;ChC4qHjF;;AgCnqHD;EACE,wBAAmC;EACnC,wBAA8B;EAC9B,uBAAkC;EAClC,iBAAgB;ChCsqHjB;;AgCnqHD;EACE,wBAAmC;EACnC,uBAAkC;ChCsqHnC;;AgClqHD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,iB9BoiByC;CFioG1C;;AgClqHD;EACE,YAAW;ExBtHT,mCNkpBqF;CF0oGxF;;AgCjqHD;EACE,YAAW;ExBtHT,4CN4oBqF;EM3oBrF,6CN2oBqF;CFgpGxF;;AgClqHD;EACE,YAAW;ExB7GT,gDN8nBqF;EM7nBrF,+CN6nBqF;CFspGxF;;AgChqHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;ChCmqHvB;AgCjqHC;EACE,oB9B4gBkD;CFupGrD;AYxvHG;EoBgFJ;IASI,+BAAmB;IAAnB,8BAAmB;QAAnB,wBAAmB;YAAnB,oBAAmB;IACnB,oBAAgC;IAChC,mBAA+B;GhCmqHhC;EgCjqHC;IACE,qBAAa;IAAb,qBAAa;IAAb,cAAa;IAEb,oBAAY;QAAZ,iBAAY;YAAZ,aAAY;IACZ,6BAAsB;IAAtB,8BAAsB;QAAtB,2BAAsB;YAAtB,uBAAsB;IACtB,mB9B+fgD;I8B9fhD,iBAAgB;IAChB,kB9B6fgD;GFqqGnD;CACF;;AgCzpHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;ChC4pHvB;AgCxpHC;EACE,oB9B4ekD;CF8qGrD;AY/wHG;EoB8GJ;IAWI,+BAAmB;IAAnB,8BAAmB;QAAnB,wBAAmB;YAAnB,oBAAmB;GhC0pHpB;EgCvpHC;IAEE,oBAAY;QAAZ,iBAAY;YAAZ,aAAY;IACZ,iBAAgB;GhCwpHnB;EgCtpHG;IACE,eAAc;IACd,eAAc;GhCwpHnB;EgCnpHK;IxBnLJ,2BwBoLoC;IxBnLpC,8BwBmLoC;GhCspHrC;EgCppHO;;IAEE,2BAA0B;GhCspHnC;EgCppHO;;IAEE,8BAA6B;GhCspHtC;EgClpHK;IxBlLJ,0BwBmLmC;IxBlLnC,6BwBkLmC;GhCqpHpC;EgCnpHO;;IAEE,0BAAyB;GhCqpHlC;EgCnpHO;;IAEE,6BAA4B;GhCqpHrC;EgCjpHK;IxB1NJ,uBNgpB8C;GF8tG/C;EgCjpHO;;IxBvNN,gCN0oB8C;IMzoB9C,iCNyoB8C;GFmuG/C;EgClpHO;;IxB7MN,oCN4nB8C;IM3nB9C,mCN2nB8C;GFwuG/C;EgCjpHK;IxBvOJ,iBwBwO8B;GhCmpH/B;EgCjpHO;;;;IxB1ON,iBwB8OgC;GhCmpHjC;CACF;;AgCtoHC;EACE,uB9Bga8C;CFyuGjD;AY90HG;EoBmMJ;IAMI,wB9B0ZiC;Y8B1ZjC,gB9B0ZiC;I8BzZjC,4B9B0ZuC;Y8B1ZvC,oB9B0ZuC;GF+uGxC;EgCvoHC;IACE,sBAAqB;IACrB,YAAW;GhCyoHd;CACF;;AiCp5HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;MAAf,gBAAe;EACf,sBAAoD;EACpD,oB/Bm0BsC;E+Bl0BtC,iBAAgB;EAChB,0B/Bm0B2C;EMr0BzC,uBN6MgC;CF6sHnC;;AiCl5HC;EACE,sBAAqB;EACrB,sB/BuzBqC;E+BtzBrC,qB/BszBqC;E+BrzBrC,epBgE8B;EoB/D9B,aAAiC;CjCq5HpC;AiC54HC;EACE,2BAA0B;CjC84H7B;AiC34HC;EACE,sBAAqB;CjC64HxB;AiC14HC;EACE,epB6C8B;Cb+1HjC;;AkC/6HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;E7BGb,gBAAe;EACf,iBAAgB;EGDd,uBN6MgC;CFquHnC;;AkCh7HD;EACE,mBAAkB;EAClB,eAAc;EACd,wBAAoD;EACpD,kBAAsC;EACtC,kBhCwmBsC;EgCvmBtC,erBoEgC;EqBnEhC,uBhCu2BwC;EgCt2BxC,0BAA+D;ClCm7HhE;AkCj7HC;EACE,ehC2mBiD;EgC1mBjD,sBAAqB;EACrB,0BhCszByC;EgCrzBzC,sBhCkyByC;CFipG5C;AkCh7HC;EACE,WAAU;EACV,WAAU;EACV,yDhCgmB2D;UgChmB3D,iDhCgmB2D;CFk1G9D;AkC96HC;EACE,gBAAe;ClCg7HlB;;AkC16HG;EACE,eAAc;E1BPhB,gCNkLgC;EMjLhC,mCNiLgC;CFowHnC;AkC16HG;E1B1BA,iCNgMgC;EM/LhC,oCN+LgC;CFwwHnC;AkCz6HC;EACE,WAAU;EACV,YhCk0BsC;EgCj0BtC,0BrB6B8B;EqB5B9B,sBrB4B8B;Cb+4HjC;AkCx6HC;EACE,erBwB8B;EqBvB9B,qBAAoB;EAEpB,aAAY;EACZ,uBhCwzBsC;EgCvzBtC,sBhCyvByC;CFgrG5C;;AmCn+HC;EACE,wBAA8B;EAC9B,mBjCqlB6C;EiCplB7C,iBjCqM6B;CFiyHhC;AmCj+HK;E3BoBF,+BNmL+B;EMlL/B,kCNkL+B;CF8xHlC;AmCh+HK;E3BCF,gCNiM+B;EMhM/B,mCNgM+B;CFkyHlC;;AmCj/HC;EACE,wBAA8B;EAC9B,oBjCkrB6C;EiCjrB7C,iBjCsM6B;CF8yHhC;AmC/+HK;E3BoBF,+BNoL+B;EMnL/B,kCNmL+B;CF2yHlC;AmC9+HK;E3BCF,gCNkM+B;EMjM/B,mCNiM+B;CF+yHlC;;AoC7/HD;EACE,sBAAqB;EACrB,sBAA0C;EAC1C,elCysBqC;EkCxsBrC,iBlCysBmD;EkCxsBnD,eAAc;EACd,mBAAkB;EAClB,oBAAmB;EACnB,yBAAwB;E5BTtB,uBNitB8C;CFyzGjD;AoC7/HC;EACE,cAAa;CpC+/HhB;;AoC1/HD;EACE,mBAAkB;EAClB,UAAS;CpC6/HV;;AoCt/HD;EACE,qBlCsrBsC;EkCrrBtC,oBlCqrBsC;EMntBpC,qBNstBqC;CFk0GxC;;AoCj/HC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cbi9HjC;AG/gIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrC8hIvC;;AoC3/HC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cb29HjC;AGzhIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCwiIvC;;AoCrgIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cbq+HjC;AGniIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCkjIvC;;AoC/gIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cb++HjC;AG7iIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrC4jIvC;;AoCzhIC;EC1CA,enCs3B2C;EmCr3B3C,0BxB8EgC;Cby/HjC;AGvjIC;EkCZI,enCi3BuC;EmCh3BvC,sBAAqB;EACrB,0BAAkC;CrCskIvC;;AoCniIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;CbmgIjC;AGjkIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCglIvC;;AoC7iIC;EC1CA,enCs3B2C;EmCr3B3C,0BxB8EgC;Cb6gIjC;AG3kIC;EkCZI,enCi3BuC;EmCh3BvC,sBAAqB;EACrB,0BAAkC;CrC0lIvC;;AoCvjIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;CbuhIjC;AGrlIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrComIvC;;AsC5mID;EACE,mBAAoD;EACpD,oBpCyoBsC;EoCxoBtC,0BpCs0B2C;EMr0BzC,sBN8M+B;CFi6HlC;AYvjIG;E0B5DJ;IAOI,mBAAoD;GtCgnIrD;CACF;;AsC7mID;EACE,iBAAgB;EAChB,gBAAe;E9BTb,iB8BUsB;CtCgnIzB;;AuC1nID;EACE,mBAAkB;EAClB,yBAA0C;EAC1C,oBrC2vBsC;EqC1vBtC,8BAA6C;E/BJ3C,uBN+vB8C;CFm4GjD;;AuCznID;EAEE,eAAc;CvC2nIf;;AuCvnID;EACE,iBrCgvBmD;CF04GpD;;AuClnID;EACE,oBAAwD;CvCqnIzD;AuClnIC;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,yBAA0C;EAC1C,eAAc;CvConIjB;;AuC1mIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxC4pItB;AwC1pIC;EACE,0BAAqC;CxC4pIxC;AwCzpIC;EACE,eAA0B;CxC2pI7B;;AuCtnIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCwqItB;AwCtqIC;EACE,0BAAqC;CxCwqIxC;AwCrqIC;EACE,eAA0B;CxCuqI7B;;AuCloIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCorItB;AwClrIC;EACE,0BAAqC;CxCorIxC;AwCjrIC;EACE,eAA0B;CxCmrI7B;;AuC9oIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCgsItB;AwC9rIC;EACE,0BAAqC;CxCgsIxC;AwC7rIC;EACE,eAA0B;CxC+rI7B;;AuC1pIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxC4sItB;AwC1sIC;EACE,0BAAqC;CxC4sIxC;AwCzsIC;EACE,eAA0B;CxC2sI7B;;AuCtqIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCwtItB;AwCttIC;EACE,0BAAqC;CxCwtIxC;AwCrtIC;EACE,eAA0B;CxCutI7B;;AuClrIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCouItB;AwCluIC;EACE,0BAAqC;CxCouIxC;AwCjuIC;EACE,eAA0B;CxCmuI7B;;AuC9rIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCgvItB;AwC9uIC;EACE,0BAAqC;CxCgvIxC;AwC7uIC;EACE,eAA0B;CxC+uI7B;;AyCzvID;EACE;IAAO,4BAAuC;GzC6vI7C;EyC5vID;IAAK,yBAAwB;GzC+vI5B;CACF;;AyClwID;EACE;IAAO,4BAAuC;GzC6vI7C;EyC5vID;IAAK,yBAAwB;GzC+vI5B;CACF;AyC7vID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,avCuwBsC;EuCtwBtC,iBAAgB;EAChB,mBvCswBwD;EuCrwBxD,0BvC+zB2C;EMr0BzC,uBN6wB8C;CFy/GjD;;AyC3vID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EACtB,yBAAuB;MAAvB,sBAAuB;UAAvB,wBAAuB;EACvB,YvCi2BwC;EuCh2BxC,mBAAkB;EAClB,0B5B2DgC;EK3E5B,oCAAuB;EAAvB,4BAAuB;ClB+wI5B;;AyC3vID;ErBkBE,sMAA6I;EqBhB7I,2BAAkD;CzC8vInD;;AyC3vID;EACE,2DAA8D;UAA9D,mDAA8D;CzC8vI/D;;A0C7xID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,yBAAuB;MAAvB,sBAAuB;UAAvB,wBAAuB;C1CgyIxB;;A0C7xID;EACE,oBAAO;MAAP,YAAO;UAAP,QAAO;C1CgyIR;;A2ClyID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EAGtB,gBAAe;EACf,iBAAgB;C3CmyIjB;;A2C1xID;EACE,YAAW;EACX,ezCsxB0D;EyCrxB1D,oBAAmB;C3C6xIpB;AGjyIC;EwCQE,ezCixBwD;EyChxBxD,sBAAqB;EACrB,0B9BoD8B;CbwuIjC;A2CzxIC;EACE,ezCu1ByC;EyCt1BzC,0BzCwyByC;CFm/G5C;;A2ClxID;EACE,mBAAkB;EAClB,eAAc;EACd,yBAA8D;EAE9D,oBAAwC;EACxC,uBzCo0BwC;EyCn0BxC,uCAA+D;C3CoxIhE;A2ClxIC;EnCzCE,gCNmxB8C;EMlxB9C,iCNkxB8C;CF4iHjD;A2ClxIC;EACE,iBAAgB;EnChChB,oCNqwB8C;EMpwB9C,mCNowB8C;CFijHjD;AG5zIC;EwC2CE,WAAU;EACV,sBAAqB;C3CoxIxB;A2CjxIC;EAEE,e9Ba8B;E8BZ9B,uBzCgzBsC;CFk+GzC;A2C9wIC;EACE,WAAU;EACV,YzC0yBsC;EyCzyBtC,0B9BK8B;E8BJ9B,sB9BI8B;Cb4wIjC;;A2CrwIC;EACE,gBAAe;EACf,eAAc;EnCrFd,iBmCsFwB;C3CwwI3B;A2CpwIG;EACE,cAAa;C3CswIlB;A2CjwIG;EACE,iBAAgB;C3CmwIrB;;A4Cr2IC;EACE,eAAa;EACb,0BAA6B;C5Cw2IhC;AG31IC;EyCTM,eAAa;EACb,0BAAyC;C5Cu2IhD;A4Cp2IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5Cs2I3B;;A4Cn3IC;EACE,eAAa;EACb,0BAA6B;C5Cs3IhC;AGz2IC;EyCTM,eAAa;EACb,0BAAyC;C5Cq3IhD;A4Cl3IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5Co3I3B;;A4Cj4IC;EACE,eAAa;EACb,0BAA6B;C5Co4IhC;AGv3IC;EyCTM,eAAa;EACb,0BAAyC;C5Cm4IhD;A4Ch4IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5Ck4I3B;;A4C/4IC;EACE,eAAa;EACb,0BAA6B;C5Ck5IhC;AGr4IC;EyCTM,eAAa;EACb,0BAAyC;C5Ci5IhD;A4C94IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5Cg5I3B;;A4C75IC;EACE,eAAa;EACb,0BAA6B;C5Cg6IhC;AGn5IC;EyCTM,eAAa;EACb,0BAAyC;C5C+5IhD;A4C55IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5C85I3B;;A4C36IC;EACE,eAAa;EACb,0BAA6B;C5C86IhC;AGj6IC;EyCTM,eAAa;EACb,0BAAyC;C5C66IhD;A4C16IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5C46I3B;;A4Cz7IC;EACE,eAAa;EACb,0BAA6B;C5C47IhC;AG/6IC;EyCTM,eAAa;EACb,0BAAyC;C5C27IhD;A4Cx7IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5C07I3B;;A4Cv8IC;EACE,eAAa;EACb,0BAA6B;C5C08IhC;AG77IC;EyCTM,eAAa;EACb,0BAAyC;C5Cy8IhD;A4Ct8IK;EACE,YAAW;EACX,0BAAwB;EACxB,sBAAoB;C5Cw8I3B;;A6Cx9ID;EACE,aAAY;EACZ,kB3Cq2BuD;E2Cp2BvD,iB3Cq2BmD;E2Cp2BnD,eAAc;EACd,Y3Co2BwC;E2Cn2BxC,0B3Co2BiD;E2Cn2BjD,YAAW;C7C29IZ;AGh9IC;E0CRE,Y3C+1BsC;E2C91BtC,sBAAqB;EACrB,aAAY;C7C29If;A6Cv9IC;EACE,gBAAe;C7Cy9IlB;;A6C/8ID;EACE,WAAU;EACV,8BAA6B;EAC7B,UAAS;EACT,yBAAwB;C7Ck9IzB;;A8C1+ID;EACE,iBAAgB;C9C6+IjB;;A8Cz+ID;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c5CmiBsC;E4CliBtC,cAAa;EACb,iBAAgB;EAGhB,WAAU;C9C0+IX;A8Cr+IC;EACE,mBAAkB;EAClB,iBAAgB;C9Cu+InB;;A8Cl+ID;EACE,mBAAkB;EAClB,YAAW;EACX,e5C4rBiC;E4C1rBjC,qBAAoB;C9Co+IrB;A8Cj+IC;E5BtCI,oDAAuB;EAAvB,4CAAuB;EAAvB,oCAAuB;EAAvB,qEAAuB;E4BwCzB,sCAA6B;UAA7B,8BAA6B;C9Cm+IhC;A8Cj+IC;EACE,mCAA0B;UAA1B,2BAA0B;C9Cm+I7B;;A8C/9ID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;MAAnB,uBAAmB;UAAnB,oBAAmB;EACnB,sCAAsD;C9Ck+IvD;;A8C99ID;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EACtB,YAAW;EAEX,qBAAoB;EACpB,uB5CkzBwC;E4CjzBxC,6BAA4B;EAC5B,qCAAqE;EtChEnE,sBN8M+B;E4C1IjC,WAAU;C9C89IX;;A8C19ID;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c5CkesC;E4CjetC,uB5CsxBwC;CFusHzC;A8C19IC;EAAS,WAAU;C9C69IpB;A8C59IC;EAAS,a5CupBqB;CFw0H/B;;A8C19ID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,yBAAuB;MAAvB,sBAAuB;UAAvB,wBAAuB;EACvB,0BAA8B;MAA9B,uBAA8B;UAA9B,+BAA8B;EAC9B,c5CmpBgC;E4ClpBhC,iCAA0E;EtCvFxE,+BNwM+B;EMvM/B,gCNuM+B;CF82IlC;A8C59IC;EACE,c5C8oB8B;E4C5oB9B,+BAAuF;C9C69I1F;;A8Cx9ID;EACE,iBAAgB;EAChB,iB5CunBmD;CFo2HpD;;A8Ct9ID;EACE,mBAAkB;EAGlB,oBAAc;MAAd,mBAAc;UAAd,eAAc;EACd,c5CwmBgC;CF+2HjC;;A8Cn9ID;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,0BAAmB;MAAnB,uBAAmB;UAAnB,oBAAmB;EACnB,sBAAyB;MAAzB,mBAAyB;UAAzB,0BAAyB;EACzB,c5CgmBgC;E4C/lBhC,8BAAuE;C9Cs9IxE;A8Cn9IC;EAAuB,oBAAmB;C9Cs9I3C;A8Cr9IC;EAAsB,qBAAoB;C9Cw9I3C;;A8Cp9ID;EACE,mBAAkB;EAClB,aAAY;EACZ,YAAW;EACX,aAAY;EACZ,iBAAgB;C9Cu9IjB;;AYziJG;EkCwFF;IACE,iB5CimBqC;I4ChmBrC,qBAAyC;G9Cq9I1C;;E8Cl9ID;IACE,uCAA8D;G9Cq9I/D;;E8C98ID;IAAY,iB5CslB2B;GF43HtC;CACF;AYxjJG;EkC0GF;IAAY,iB5C+kB2B;GFm4HtC;CACF;A+CxnJD;EACE,mBAAkB;EAClB,c7CojBsC;E6CnjBtC,eAAc;EACd,U7CyqB6B;E8C7qB7B,kK9CqOmD;E8CnOnD,mBAAkB;EAClB,iB9C0O+B;E8CzO/B,iB9C6O+B;E8C5O/B,iBAAgB;EAChB,kBAAiB;EACjB,sBAAqB;EACrB,kBAAiB;EACjB,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,qBAAoB;EACpB,oBAAmB;EACnB,iBAAgB;EDNhB,oB7C8qB+C;E6C5qB/C,sBAAqB;EACrB,WAAU;C/CooJX;A+CloJC;EAAS,a7C6pBqB;CFw+H/B;A+CnoJC;EACE,mBAAkB;EAClB,eAAc;EACd,c7C6pB+B;E6C5pB/B,e7C6pB+B;CFw+HlC;A+CnoJG;EACE,mBAAkB;EAClB,YAAW;EACX,0BAAyB;EACzB,oBAAmB;C/CqoJxB;;A+ChoJD;EACE,kBAAgC;C/CmoJjC;A+CjoJC;EACE,UAAS;C/CmoJZ;A+CjoJG;EACE,OAAM;EACN,8BAAgE;EAChE,uB7Ci0BoC;CFk0HzC;;A+C9nJD;EACE,kBAAgC;C/CioJjC;A+C/nJC;EACE,QAAO;EACP,c7C+nB+B;E6C9nB/B,e7C6nB+B;CFogIlC;A+C/nJG;EACE,SAAQ;EACR,qCAA2F;EAC3F,yB7CizBoC;CFg1HzC;;A+C5nJD;EACE,kBAAgC;C/C+nJjC;A+C7nJC;EACE,OAAM;C/C+nJT;A+C7nJG;EACE,UAAS;EACT,8BAAgE;EAChE,0B7CmyBoC;CF41HzC;;A+C1nJD;EACE,kBAAgC;C/C6nJjC;A+C3nJC;EACE,SAAQ;EACR,c7CimB+B;E6ChmB/B,e7C+lB+B;CF8hIlC;A+C3nJG;EACE,QAAO;EACP,qCAA2F;EAC3F,wB7CmxBoC;CF02HzC;;A+CxmJD;EACE,iB7C2jBiC;E6C1jBjC,wBAA8C;EAC9C,Y7CswBwC;E6CrwBxC,mBAAkB;EAClB,uB7CyvBwC;EMr2BtC,uBNsqByC;CFkjI5C;;AiD5tJD;EACE,mBAAkB;EAClB,OAAM;EACN,QAAO;EACP,c/CkjBsC;E+CjjBtC,eAAc;EACd,iB/CmrBuC;E8CxrBvC,kK9CqOmD;E8CnOnD,mBAAkB;EAClB,iB9C0O+B;E8CzO/B,iB9C6O+B;E8C5O/B,iBAAgB;EAChB,kBAAiB;EACjB,sBAAqB;EACrB,kBAAiB;EACjB,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,qBAAoB;EACpB,oBAAmB;EACnB,iBAAgB;ECLhB,oB/C6qB+C;E+C3qB/C,sBAAqB;EACrB,uB/Cu2BwC;E+Ct2BxC,6BAA4B;EAC5B,qCAAyD;EzCXvD,sBNwrBiD;CF6jIpD;AiDtuJC;EACE,mBAAkB;EAClB,eAAc;EACd,Y/CkrBoC;E+CjrBpC,e/CkrBqC;E+CjrBrC,iBAA2B;CjDwuJ9B;AiDtuJG;EAEE,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,0BAAyB;EACzB,oBAAmB;CjDuuJxB;;AiDluJD;EACE,sB/CmqBuC;CFkkIxC;AiDnuJC;EACE,kCAAwE;CjDquJ3E;AiDluJC;;;EAEE,8BAAgE;CjDquJnE;AiDluJC;EACE,UAAS;EACT,sC/CypBmE;CF2kItE;AiDjuJC;EACE,Y/CmoB6C;E+CloB7C,uB/C4zBsC;CFu6HzC;;AiD/tJD;EACE,oB/C4oBuC;CFslIxC;AiDhuJC;EACE,gCAAsE;EACtE,c/CwoBqC;E+CvoBrC,a/CsoBoC;E+CroBpC,iBAA2B;CjDkuJ9B;AiD/tJC;;;EAEE,qCAA2F;CjDkuJ9F;AiD/tJC;EACE,QAAO;EACP,wC/C+nBmE;CFkmItE;AiD9tJC;EACE,U/CymB6C;E+CxmB7C,yB/CkyBsC;CF87HzC;;AiD5tJD;EACE,mB/CknBuC;CF6mIxC;AiD7tJC;EACE,+BAAqE;CjD+tJxE;AiD5tJC;;;EAEE,qCAA2F;CjD+tJ9F;AiD5tJC;EACE,OAAM;EACN,yC/CwmBmE;CFsnItE;AiD3tJC;EACE,S/CklB6C;E+CjlB7C,0B/C2wBsC;CFk9HzC;AiDztJC;EACE,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,eAAc;EACd,Y/CslBoC;E+CrlBpC,qBAAwC;EACxC,YAAW;EACX,iCAA6D;CjD2tJhE;;AiDvtJD;EACE,qB/C+kBuC;CF2oIxC;AiDxtJC;EACE,iCAAuE;EACvE,c/C2kBqC;E+C1kBrC,a/CykBoC;E+CxkBpC,iBAA2B;CjD0tJ9B;AiDvtJC;;;EAEE,qCAA2F;CjD0tJ9F;AiDvtJC;EACE,SAAQ;EACR,uC/CkkBmE;CFupItE;AiDttJC;EACE,W/C4iB6C;E+C3iB7C,wB/CquBsC;CFm/HzC;;AiDnsJD;EACE,wBAA4D;EAC5D,iBAAgB;EAChB,gB/CkEgC;E+CjEhC,e/CwhBiD;E+CvhBjD,0B/CshByD;E+CrhBzD,iCAAyE;EzChKvE,2CyCiKyE;EzChKzE,4CyCgKyE;CjDusJ5E;AiDpsJC;EACE,cAAa;CjDssJhB;;AiDlsJD;EACE,wBAAwD;EACxD,e/CksB2C;CFmgI5C;;AkDz3JD;EACE,mBAAkB;ClD43JnB;;AkDz3JD;EACE,mBA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EAEE,8BAAkC;CjEi3M3C;;AiE/2MO;;EAEE,+BAAmC;CjEk3M5C;;AiEh3MO;;EAEE,6BAAiC;CjEm3M1C;;AiEl4MO;EAAgC,sBAA4B;CjEs4MnE;;AiEr4MO;;EAEE,0BAAgC;CjEw4MzC;;AiEt4MO;;EAEE,4BAAkC;CjEy4M3C;;AiEv4MO;;EAEE,6BAAmC;CjE04M5C;;AiEx4MO;;EAEE,2BAAiC;CjE24M1C;;AiE15MO;EAAgC,4BAA4B;CjE85MnE;;AiE75MO;;EAEE,gCAAgC;CjEg6MzC;;AiE95MO;;EAEE,kCAAkC;CjEi6M3C;;AiE/5MO;;EAEE,mCAAmC;CjEk6M5C;;AiEh6MO;;EAEE,iCAAiC;CjEm6M1C;;AiEl7MO;EAAgC,2BAA4B;CjEs7MnE;;AiEr7MO;;EAEE,+BAAgC;CjEw7MzC;;AiEt7MO;;EAEE,iCAAkC;CjEy7M3C;;AiEv7MO;;EAEE,kCAAmC;CjE07M5C;;AiEx7MO;;EAEE,gCAAiC;CjE27M1C;;AiE18MO;EAAgC,yBAA4B;CjE88MnE;;AiE78MO;;EAEE,6BAAgC;CjEg9MzC;;AiE98MO;;EAEE,+BAAkC;CjEi9M3C;;AiE/8MO;;EAEE,gCAAmC;CjEk9M5C;;AiEh9MO;;EAEE,8BAAiC;CjEm9M1C;;AiEl+MO;EAAgC,2BAA4B;CjEs+MnE;;AiEr+MO;;EAEE,+BAAgC;CjEw+MzC;;AiEt+MO;;EAEE,iCAAkC;CjEy+M3C;;AiEv+MO;;EAEE,kCAAmC;CjE0+M5C;;AiEx+MO;;EAEE,gCAAiC;CjE2+M1C;;AiE1/MO;EAAgC,yBAA4B;CjE8/MnE;;AiE7/MO;;EAEE,6BAAgC;CjEggNzC;;AiE9/MO;;EAEE,+BAAkC;CjEigN3C;;AiE//MO;;EAEE,gCAAmC;CjEkgN5C;;AiEhgNO;;EAEE,8BAAiC;CjEmgN1C;;AiE7/MG;EAAmB,wBAAuB;CjEigN7C;;AiEhgNG;;EAEE,4BAA2B;CjEmgNhC;;AiEjgNG;;EAEE,8BAA6B;CjEogNlC;;AiElgNG;;EAEE,+BAA8B;CjEqgNnC;;AiEngNG;;EAEE,6BAA4B;CjEsgNjC;;AYz/MG;EqDjDI;IAAgC,qBAA4B;GjE+iNjE;;EiE9iNK;;IAEE,yBAAgC;GjEijNvC;;EiE/iNK;;IAEE,2BAAkC;GjEkjNzC;;EiEhjNK;;IAEE,4BAAmC;GjEmjN1C;;EiEjjNK;;IAEE,0BAAiC;GjEojNxC;;EiEnkNK;IAAgC,2BAA4B;GjEukNjE;;EiEtkNK;;IAEE,+BAAgC;GjEykNvC;;EiEvkNK;;IAEE,iCAAkC;GjE0kNzC;;EiExkNK;;IAEE,kCAAmC;GjE2kN1C;;EiEzkNK;;IAEE,gCAAiC;GjE4kNxC;;EiE3lNK;IAAgC,0BAA4B;GjE+lNjE;;EiE9lNK;;IAEE,8BAAgC;GjEimNvC;;EiE/lNK;;IAEE,gCAAkC;GjEkmNzC;;EiEhmNK;;IAEE,iCAAmC;GjEmmN1C;;EiEjmNK;;IAEE,+BAAiC;GjEomNxC;;EiEnnNK;IAAgC,wBAA4B;GjEunNjE;;EiEtnNK;;IAEE,4BAAgC;GjEynNvC;;EiEvnNK;;IAEE,8BAAkC;GjE0nNzC;;EiExnNK;;IAEE,+BAAmC;GjE2nN1C;;EiEznNK;;IAEE,6BAAiC;GjE4nNxC;;EiE3oNK;IAAgC,0BAA4B;GjE+oNjE;;EiE9oNK;;IAEE,8BAAgC;GjEipNvC;;EiE/oNK;;IAEE,gCAAkC;GjEkpNzC;;EiEhpNK;;IAEE,iCAAmC;GjEmpN1C;;EiEjpNK;;IAEE,+BAAiC;GjEopNxC;;EiEnqNK;IAAgC,wBAA4B;GjEuqNjE;;EiEtqNK;;IAEE,4BAAgC;GjEyqNvC;;EiEvqNK;;IAEE,8BAAkC;GjE0qNzC;;EiExqNK;;IAEE,+BAAmC;GjE2qN1C;;EiEzqNK;;IAEE,6BAAiC;GjE4qNxC;;EiE3rNK;IAAgC,sBAA4B;GjE+rNjE;;EiE9rNK;;IAEE,0BAAgC;GjEisNvC;;EiE/rNK;;IAEE,4BAAkC;GjEksNzC;;EiEhsNK;;IAEE,6BAAmC;GjEmsN1C;;EiEjsNK;;IAEE,2BAAiC;GjEosNxC;;EiEntNK;IAAgC,4BAA4B;GjEutNjE;;EiEttNK;;IAEE,gCAAgC;GjEytNvC;;EiEvtNK;;IAEE,kCAAkC;GjE0tNzC;;EiExtNK;;IAEE,mCAAmC;GjE2tN1C;;EiEztNK;;IAEE,iCAAiC;GjE4tNxC;;EiE3uNK;IAAgC,2BAA4B;GjE+uNjE;;EiE9uNK;;IAEE,+BAAgC;GjEivNvC;;EiE/uNK;;IAEE,iCAAkC;GjEkvNzC;;EiEhvNK;;IAEE,kCAAmC;GjEmvN1C;;EiEjvNK;;IAEE,gCAAiC;GjEovNxC;;EiEnwNK;IAAgC,yBAA4B;GjEuwNjE;;EiEtwNK;;IAEE,6BAAgC;GjEywNvC;;EiEvwNK;;IAEE,+BAAkC;GjE0wNzC;;EiExwNK;;IAEE,gCAAmC;GjE2wN1C;;EiEzwNK;;IAEE,8BAAiC;GjE4wNxC;;EiE3xNK;IAAgC,2BAA4B;GjE+xNjE;;EiE9xNK;;IAEE,+BAAgC;GjEiyNvC;;EiE/xNK;;IAEE,iCAAkC;GjEkyNzC;;EiEhyNK;;IAEE,kCAAmC;GjEmyN1C;;EiEjyNK;;IAEE,gCAAiC;GjEoyNxC;;EiEnzNK;IAAgC,yBAA4B;GjEuzNjE;;EiEtzNK;;IAEE,6BAAgC;GjEyzNvC;;EiEvzNK;;IAEE,+BAAkC;GjE0zNzC;;EiExzNK;;IAEE,gCAAmC;GjE2zN1C;;EiEzzNK;;IAEE,8BAAiC;GjE4zNxC;;EiEtzNC;IAAmB,wBAAuB;GjE0zN3C;;EiEzzNC;;IAEE,4BAA2B;GjE4zN9B;;EiE1zNC;;IAEE,8BAA6B;GjE6zNhC;;EiE3zNC;;IAEE,+BAA8B;GjE8zNjC;;EiE5zNC;;IAEE,6BAA4B;GjE+zN/B;CACF;AYnzNG;EqDjDI;IAAgC,qBAA4B;GjEw2NjE;;EiEv2NK;;IAEE,yBAAgC;GjE02NvC;;EiEx2NK;;IAEE,2BAAkC;GjE22NzC;;EiEz2NK;;IAEE,4BAAmC;GjE42N1C;;EiE12NK;;IAEE,0BAAiC;GjE62NxC;;EiE53NK;IAAgC,2BAA4B;GjEg4NjE;;EiE/3NK;;IAEE,+BAAgC;GjEk4NvC;;EiEh4NK;;IAEE,iCAAkC;GjEm4NzC;;EiEj4NK;;IAEE,kCAAmC;GjEo4N1C;;EiEl4NK;;IAEE,gCAAiC;GjEq4NxC;;EiEp5NK;IAAgC,0BAA4B;GjEw5NjE;;EiEv5NK;;IAEE,8BAAgC;GjE05NvC;;EiEx5NK;;IAEE,gCAAkC;GjE25NzC;;EiEz5NK;;IAEE,iCAAmC;GjE45N1C;;EiE15NK;;IAEE,+BAAiC;GjE65NxC;;EiE56NK;IAAgC,wBAA4B;GjEg7NjE;;EiE/6NK;;IAEE,4BAAgC;GjEk7NvC;;EiEh7NK;;IAEE,8BAAkC;GjEm7NzC;;EiEj7NK;;IAEE,+BAAmC;GjEo7N1C;;EiEl7NK;;IAEE,6BAAiC;GjEq7NxC;;EiEp8NK;IAAgC,0BAA4B;GjEw8NjE;;EiEv8NK;;IAEE,8BAAgC;GjE08NvC;;EiEx8NK;;IAEE,gCAAkC;GjE28NzC;;EiEz8NK;;IAEE,iCAAmC;GjE48N1C;;EiE18NK;;IAEE,+BAAiC;GjE68NxC;;EiE59NK;IAAgC,wBAA4B;GjEg+NjE;;EiE/9NK;;IAEE,4BAAgC;GjEk+NvC;;EiEh+NK;;IAEE,8BAAkC;GjEm+NzC;;EiEj+NK;;IAEE,+BAAmC;GjEo+N1C;;EiEl+NK;;IAEE,6BAAiC;GjEq+NxC;;EiEp/NK;IAAgC,sBAA4B;GjEw/NjE;;EiEv/NK;;IAEE,0BAAgC;GjE0/NvC;;EiEx/NK;;IAEE,4BAAkC;GjE2/NzC;;EiEz/NK;;IAEE,6BAAmC;GjE4/N1C;;EiE1/NK;;IAEE,2BAAiC;GjE6/NxC;;EiE5gOK;IAAgC,4BAA4B;GjEghOjE;;EiE/gOK;;IAEE,gCAAgC;GjEkhOvC;;EiEhhOK;;IAEE,kCAAkC;GjEmhOzC;;EiEjhOK;;IAEE,mCAAmC;GjEohO1C;;EiElhOK;;IAEE,iCAAiC;GjEqhOxC;;EiEpiOK;IAAgC,2BAA4B;GjEwiOjE;;EiEviOK;;IAEE,+BAAgC;GjE0iOvC;;EiExiOK;;IAEE,iCAAkC;GjE2iOzC;;EiEziOK;;IAEE,kCAAmC;GjE4iO1C;;EiE1iOK;;IAEE,gCAAiC;GjE6iOxC;;EiE5jOK;IAAgC,yBAA4B;GjEgkOjE;;EiE/jOK;;IAEE,6BAAgC;GjEkkOvC;;EiEhkOK;;IAEE,+BAAkC;GjEmkOzC;;EiEjkOK;;IAEE,gCAAmC;GjEokO1C;;EiElkOK;;IAEE,8BAAiC;GjEqkOxC;;EiEplOK;IAAgC,2BAA4B;GjEwlOjE;;EiEvlOK;;IAEE,+BAAgC;GjE0lOvC;;EiExlOK;;IAEE,iCAAkC;GjE2lOzC;;EiEzlOK;;IAEE,kCAAmC;GjE4lO1C;;EiE1lOK;;IAEE,gCAAiC;GjE6lOxC;;EiE5mOK;IAAgC,yBAA4B;GjEgnOjE;;EiE/mOK;;IAEE,6BAAgC;GjEknOvC;;EiEhnOK;;IAEE,+BAAkC;GjEmnOzC;;EiEjnOK;;IAEE,gCAAmC;GjEonO1C;;EiElnOK;;IAEE,8BAAiC;GjEqnOxC;;EiE/mOC;IAAmB,wBAAuB;GjEmnO3C;;EiElnOC;;IAEE,4BAA2B;GjEqnO9B;;EiEnnOC;;IAEE,8BAA6B;GjEsnOhC;;EiEpnOC;;IAEE,+BAA8B;GjEunOjC;;EiErnOC;;IAEE,6BAA4B;GjEwnO/B;CACF;AY5mOG;EqDjDI;IAAgC,qBAA4B;GjEiqOjE;;EiEhqOK;;IAEE,yBAAgC;GjEmqOvC;;EiEjqOK;;IAEE,2BAAkC;GjEoqOzC;;EiElqOK;;IAEE,4BAAmC;GjEqqO1C;;EiEnqOK;;IAEE,0BAAiC;GjEsqOxC;;EiErrOK;IAAgC,2BAA4B;GjEyrOjE;;EiExrOK;;IAEE,+BAAgC;GjE2rOvC;;EiEzrOK;;IAEE,iCAAkC;GjE4rOzC;;EiE1rOK;;IAEE,kCAAmC;GjE6rO1C;;EiE3rOK;;IAEE,gCAAiC;GjE8rOxC;;EiE7sOK;IAAgC,0BAA4B;GjEitOjE;;EiEhtOK;;IAEE,8BAAgC;GjEmtOvC;;EiEjtOK;;IAEE,gCAAkC;GjEotOzC;;EiEltOK;;IAEE,iCAAmC;GjEqtO1C;;EiEntOK;;IAEE,+BAAiC;GjEstOxC;;EiEruOK;IAAgC,wBAA4B;GjEyuOjE;;EiExuOK;;IAEE,4BAAgC;GjE2uOvC;;EiEzuOK;;IAEE,8BAAkC;GjE4uOzC;;EiE1uOK;;IAEE,+BAAmC;GjE6uO1C;;EiE3uOK;;IAEE,6BAAiC;GjE8uOxC;;EiE7vOK;IAAgC,0BAA4B;GjEiwOjE;;EiEhwOK;;IAEE,8BAAgC;GjEmwOvC;;EiEjwOK;;IAEE,gCAAkC;GjEowOzC;;EiElwOK;;IAEE,iCAAmC;GjEqwO1C;;EiEnwOK;;IAEE,+BAAiC;GjEswOxC;;EiErxOK;IAAgC,wBAA4B;GjEyxOjE;;EiExxOK;;IAEE,4BAAgC;GjE2xOvC;;EiEzxOK;;IAEE,8BAAkC;GjE4xOzC;;EiE1xOK;;IAEE,+BAAmC;GjE6xO1C;;EiE3xOK;;IAEE,6BAAiC;GjE8xOxC;;EiE7yOK;IAAgC,sBAA4B;GjEizOjE;;EiEhzOK;;IAEE,0BAAgC;GjEmzOvC;;EiEjzOK;;IAEE,4BAAkC;GjEozOzC;;EiElzOK;;IAEE,6BAAmC;GjEqzO1C;;EiEnzOK;;IAEE,2BAAiC;GjEszOxC;;EiEr0OK;IAAgC,4BAA4B;GjEy0OjE;;EiEx0OK;;IAEE,gCAAgC;GjE20OvC;;EiEz0OK;;IAEE,kCAAkC;GjE40OzC;;EiE10OK;;IAEE,mCAAmC;GjE60O1C;;EiE30OK;;IAEE,iCAAiC;GjE80OxC;;EiE71OK;IAAgC,2BAA4B;GjEi2OjE;;EiEh2OK;;IAEE,+BAAgC;GjEm2OvC;;EiEj2OK;;IAEE,iCAAkC;GjEo2OzC;;EiEl2OK;;IAEE,kCAAmC;GjEq2O1C;;EiEn2OK;;IAEE,gCAAiC;GjEs2OxC;;EiEr3OK;IAAgC,yBAA4B;GjEy3OjE;;EiEx3OK;;IAEE,6BAAgC;GjE23OvC;;EiEz3OK;;IAEE,+BAAkC;GjE43OzC;;EiE13OK;;IAEE,gCAAmC;GjE63O1C;;EiE33OK;;IAEE,8BAAiC;GjE83OxC;;EiE74OK;IAAgC,2BAA4B;GjEi5OjE;;EiEh5OK;;IAEE,+BAAgC;GjEm5OvC;;EiEj5OK;;IAEE,iCAAkC;GjEo5OzC;;EiEl5OK;;IAEE,kCAAmC;GjEq5O1C;;EiEn5OK;;IAEE,gCAAiC;GjEs5OxC;;EiEr6OK;IAAgC,yBAA4B;GjEy6OjE;;EiEx6OK;;IAEE,6BAAgC;GjE26OvC;;EiEz6OK;;IAEE,+BAAkC;GjE46OzC;;EiE16OK;;IAEE,gCAAmC;GjE66O1C;;EiE36OK;;IAEE,8BAAiC;GjE86OxC;;EiEx6OC;IAAmB,wBAAuB;GjE46O3C;;EiE36OC;;IAEE,4BAA2B;GjE86O9B;;EiE56OC;;IAEE,8BAA6B;GjE+6OhC;;EiE76OC;;IAEE,+BAA8B;GjEg7OjC;;EiE96OC;;IAEE,6BAA4B;GjEi7O/B;CACF;AYr6OG;EqDjDI;IAAgC,qBAA4B;GjE09OjE;;EiEz9OK;;IAEE,yBAAgC;GjE49OvC;;EiE19OK;;IAEE,2BAAkC;GjE69OzC;;EiE39OK;;IAEE,4BAAmC;GjE89O1C;;EiE59OK;;IAEE,0BAAiC;GjE+9OxC;;EiE9+OK;IAAgC,2BAA4B;GjEk/OjE;;EiEj/OK;;IAEE,+BAAgC;GjEo/OvC;;EiEl/OK;;IAEE,iCAAkC;GjEq/OzC;;EiEn/OK;;IAEE,kCAAmC;GjEs/O1C;;EiEp/OK;;IAEE,gCAAiC;GjEu/OxC;;EiEtgPK;IAAgC,0BAA4B;GjE0gPjE;;EiEzgPK;;IAEE,8BAAgC;GjE4gPvC;;EiE1gPK;;IAEE,gCAAkC;GjE6gPzC;;EiE3gPK;;IAEE,iCAAmC;GjE8gP1C;;EiE5gPK;;IAEE,+BAAiC;GjE+gPxC;;EiE9hPK;IAAgC,wBAA4B;GjEkiPjE;;EiEjiPK;;IAEE,4BAAgC;GjEoiPvC;;EiEliPK;;IAEE,8BAAkC;GjEqiPzC;;EiEniPK;;IAEE,+BAAmC;GjEsiP1C;;EiEpiPK;;IAEE,6BAAiC;GjEuiPxC;;EiEtjPK;IAAgC,0BAA4B;GjE0jPjE;;EiEzjPK;;IAEE,8BAAgC;GjE4jPvC;;EiE1jPK;;IAEE,gCAAkC;GjE6jPzC;;EiE3jPK;;IAEE,iCAAmC;GjE8jP1C;;EiE5jPK;;IAEE,+BAAiC;GjE+jPxC;;EiE9kPK;IAAgC,wBAA4B;GjEklPjE;;EiEjlPK;;IAEE,4BAAgC;GjEolPvC;;EiEllPK;;IAEE,8BAAkC;GjEqlPzC;;EiEnlPK;;IAEE,+BAAmC;GjEslP1C;;EiEplPK;;IAEE,6BAAiC;GjEulPxC;;EiEtmPK;IAAgC,sBAA4B;GjE0mPjE;;EiEzmPK;;IAEE,0BAAgC;GjE4mPvC;;EiE1mPK;;IAEE,4BAAkC;GjE6mPzC;;EiE3mPK;;IAEE,6BAAmC;GjE8mP1C;;EiE5mPK;;IAEE,2BAAiC;GjE+mPxC;;EiE9nPK;IAAgC,4BAA4B;GjEkoPjE;;EiEjoPK;;IAEE,gCAAgC;GjEooPvC;;EiEloPK;;IAEE,kCAAkC;GjEqoPzC;;EiEnoPK;;IAEE,mCAAmC;GjEsoP1C;;EiEpoPK;;IAEE,iCAAiC;GjEuoPxC;;EiEtpPK;IAAgC,2BAA4B;GjE0pPjE;;EiEzpPK;;IAEE,+BAAgC;GjE4pPvC;;EiE1pPK;;IAEE,iCAAkC;GjE6pPzC;;EiE3pPK;;IAEE,kCAAmC;GjE8pP1C;;EiE5pPK;;IAEE,gCAAiC;GjE+pPxC;;EiE9qPK;IAAgC,yBAA4B;GjEkrPjE;;EiEjrPK;;IAEE,6BAAgC;GjEorPvC;;EiElrPK;;IAEE,+BAAkC;GjEqrPzC;;EiEnrPK;;IAEE,gCAAmC;GjEsrP1C;;EiEprPK;;IAEE,8BAAiC;GjEurPxC;;EiEtsPK;IAAgC,2BAA4B;GjE0sPjE;;EiEzsPK;;IAEE,+BAAgC;GjE4sPvC;;EiE1sPK;;IAEE,iCAAkC;GjE6sPzC;;EiE3sPK;;IAEE,kCAAmC;GjE8sP1C;;EiE5sPK;;IAEE,gCAAiC;GjE+sPxC;;EiE9tPK;IAAgC,yBAA4B;GjEkuPjE;;EiEjuPK;;IAEE,6BAAgC;GjEouPvC;;EiEluPK;;IAEE,+BAAkC;GjEquPzC;;EiEnuPK;;IAEE,gCAAmC;GjEsuP1C;;EiEpuPK;;IAEE,8BAAiC;GjEuuPxC;;EiEjuPC;IAAmB,wBAAuB;GjEquP3C;;EiEpuPC;;IAEE,4BAA2B;GjEuuP9B;;EiEruPC;;IAEE,8BAA6B;GjEwuPhC;;EiEtuPC;;IAEE,+BAA8B;GjEyuPjC;;EiEvuPC;;IAEE,6BAA4B;GjE0uP/B;CACF;AkElxPD;EAAiB,+BAA8B;ClEqxP9C;;AkEpxPD;EAAiB,+BAA8B;ClEwxP9C;;AkEvxPD;ECNE,iBAAgB;EAChB,wBAAuB;EACvB,oBAAmB;CnEiyPpB;;AkErxPG;EAAwB,4BAA2B;ClEyxPtD;;AkExxPG;EAAwB,6BAA4B;ClE4xPvD;;AkE3xPG;EAAwB,8BAA6B;ClE+xPxD;;AYvvPG;EsD1CA;IAAwB,4BAA2B;GlEsyPpD;;EkEryPC;IAAwB,6BAA4B;GlEyyPrD;;EkExyPC;IAAwB,8BAA6B;GlE4yPtD;CACF;AYrwPG;EsD1CA;IAAwB,4BAA2B;GlEmzPpD;;EkElzPC;IAAwB,6BAA4B;GlEszPrD;;EkErzPC;IAAwB,8BAA6B;GlEyzPtD;CACF;AYlxPG;EsD1CA;IAAwB,4BAA2B;GlEg0PpD;;EkE/zPC;IAAwB,6BAA4B;GlEm0PrD;;EkEl0PC;IAAwB,8BAA6B;GlEs0PtD;CACF;AY/xPG;EsD1CA;IAAwB,4BAA2B;GlE60PpD;;EkE50PC;IAAwB,6BAA4B;GlEg1PrD;;EkE/0PC;IAAwB,8BAA6B;GlEm1PtD;CACF;AkE90PD;EAAmB,qCAAoC;ClEi1PtD;;AkEh1PD;EAAmB,qCAAoC;ClEo1PtD;;AkEn1PD;EAAmB,sCAAqC;ClEu1PvD;;AkEn1PD;EAAsB,4BAA0C;ClEu1P/D;;AkEt1PD;EAAsB,4BAA2C;ClE01PhE;;AkEz1PD;EAAsB,4BAAyC;ClE61P9D;;AkE51PD;EAAsB,8BAA6B;ClEg2PlD;;AkE51PD;EAAc,uBAAsB;ClEg2PnC;;AoEl4PC;EACE,0BAAwB;CpEq4P3B;;AGz3PC;EiERI,0BAAqC;CpEq4P1C;;AoE14PC;EACE,0BAAwB;CpE64P3B;;AGj4PC;EiERI,0BAAqC;CpE64P1C;;AoEl5PC;EACE,0BAAwB;CpEq5P3B;;AGz4PC;EiERI,0BAAqC;CpEq5P1C;;AoE15PC;EACE,0BAAwB;CpE65P3B;;AGj5PC;EiERI,0BAAqC;CpE65P1C;;AoEl6PC;EACE,0BAAwB;CpEq6P3B;;AGz5PC;EiERI,0BAAqC;CpEq6P1C;;AoE16PC;EACE,0BAAwB;CpE66P3B;;AGj6PC;EiERI,0BAAqC;CpE66P1C;;AoEl7PC;EACE,0BAAwB;CpEq7P3B;;AGz6PC;EiERI,0BAAqC;CpEq7P1C;;AoE17PC;EACE,0BAAwB;CpE67P3B;;AGj7PC;EiERI,0BAAqC;CpE67P1C;;AkE15PD;EAAc,0BAA6B;ClE85P1C;;AkE15PD;EG9CE,YAAW;EACX,mBAAkB;EAClB,kBAAiB;EACjB,8BAA6B;EAC7B,UAAS;CrE48PV;;AsE/8PD;ECCE,+BAAkC;CvEk9PnC;;AsE/8PD;ECHE,8BAAkC;CvEs9PnC;;AwEh9PC;EACE;;;IAKE,6BAA4B;IAE5B,oCAA2B;YAA3B,4BAA2B;GxEg9P9B;;EwE58PG;IACE,2BAA0B;GxE+8P/B;;EwEt8PC;IACE,8BAA6B;GxEy8PhC;;EwE37PC;IACE,iCAAgC;GxE87PnC;;EwE57PC;;IAEE,uBAAgC;IAChC,yBAAwB;GxE+7P3B;;EwEv7PC;IACE,4BAA2B;GxE07P9B;;EwEv7PC;;IAEE,yBAAwB;GxE07P3B;;EwEv7PC;;;IAGE,WAAU;IACV,UAAS;GxE07PZ;;EwEv7PC;;IAEE,wBAAuB;GxE07P1B;;EwEl7PC;IACE,StEmyBgC;GFkpOnC;EwEn7PC;IACE,4BAA2C;GxEq7P9C;;EwEn7PC;IACE,4BAA2C;GxEs7P9C;;EwEl7PC;IACE,cAAa;GxEq7PhB;;EwEn7PC;IACE,uBAAgC;GxEs7PnC;;EwEn7PC;IACE,qCAAoC;GxEs7PvC;EwEp7PG;;IAEE,kCAAiC;GxEs7PtC;;EwEl7PG;;IAEE,kCAAiC;GxEq7PtC;CACF;AyE3iQD,8CAA8C;AAE9C;EAAsB,aAAY;CzE6iQjC;;AyE5iQD;EAAuB,UAAS;CzEgjQ/B;;AyE/iQD;EACE,eAAc;EACd,mBAAkB;CzEkjQnB;;AyEhjQD;EACE,eAAc;EACd,kBAAiB;CzEmjQlB;;AyEjjQD;EACE,eAAc;EACd,mBAAkB;CzEojQnB;;AyEljQD;EACE,eAAc;EACd,kBAAiB;EACjB,mBAAkB;CzEqjQnB;;AyEnjQD;EACE,eAAc;EACd,mBAAkB;CzEsjQnB;;AyEpjQD;EACE,eAAc;EACd,0BAAyB;CzEujQ1B;;AyErjQD;EACE,eAAc;EACd,0BAAyB;CzEwjQ1B;;AyEtjQD;EACE,eAAc;EACd,mBAAkB;CzEyjQnB;;AyEvjQD;EACE,eAAc;CzE0jQf;;AyExjQD;EACE,eAAc;CzE2jQf;;AyEzjQD;EACE,eAAc;EACd,0BAAyB;CzE4jQ1B;;AyE1jQD;EACE,eAAc;CzE6jQf;;AyE3jQD;EACE,eAAc;CzE8jQf;;AyE5jQD;EACE,kBAAiB;CzE+jQlB;;AyE7jQD;EACE,eAAc;CzEgkQf;;AyE9jQD;EACE,eAAc;CzEikQf;;AyE/jQD;EACE,eAAc;EACd,kBAAiB;CzEkkQlB;;AyEhkQD;EACE,eAAc;EACd,kBAAiB;CzEmkQlB;;AyEjkQD;EACE,eAAc;EACd,kBAAiB;CzEokQlB;;AyElkQD;EACE,eAAc;EACd,kBAAiB;CzEqkQlB;;AyEnkQD;EACE,eAAc;EACd,kBAAiB;CzEskQlB;;AyEpkQD;EACE,eAAc;EACd,kBAAiB;CzEukQlB;;AyErkQD;EACE,eAAc;EACd,kBAAiB;CzEwkQlB;;AyEtkQD;EACE,eAAc;CzEykQf;;AyEvkQD;EACE,eAAc;CzE0kQf;;AyExkQD;EACE,eAAc;CzE2kQf;;AyEzkQD;EACE,eAAc;CzE4kQf;;AyE1kQD;EACE,eAAc;CzE6kQf;;AyE3kQD;EACE,eAAc;CzE8kQf;;AyE5kQD;EACE,YAAW;CzE+kQZ;;AyE7kQD;EACE,YAAW;CzEglQZ;;AyE9kQD;EACE,YAAW;CzEilQZ;;AyE/kQD;EACE,YAAW;CzEklQZ;;AyEhlQD;EACE,YAAW;CzEmlQZ;;AyEjlQD;EACE,YAAW;CzEolQZ;;AyEllQD;EACE,YAAW;CzEqlQZ;;AyEnlQD;EACE,YAAW;CzEslQZ;;AyEplQD;EACE,eAAc;CzEulQf;;AyErlQD;EACE,YAAW;CzEwlQZ;;AyEtlQD;EACE,eAAc;CzEylQf;;AyEvlQD;EACE,YAAW;CzE0lQZ;;AyExlQD;EACE,eAAc;CzE2lQf;;AyEzlQD;EACE,eAAc;CzE4lQf;;AyE1lQD;EACE,eAAc;CzE6lQf;;AyE3lQD;EACE,eAAc;EACd,kBAAiB;CzE8lQlB;;AyE5lQD;EACE,eAAc;CzE+lQf;;AyE7lQD;EACE,eAAc;EACd,kBAAiB;CzEgmQlB;;AyE9lQD;EACE,eAAc;CzEimQf;;AyE/lQD;EACE,eAAc;EACd,kBAAiB;CzEkmQlB;;AyEhmQD;EACE,eAAc;EACd,kBAAiB;CzEmmQlB;;AyEjmQD;EACE,eAAc;EACd,kBAAiB;CzEomQlB;;AyElmQD;EACE,eAAc;CzEqmQf;;AyEnmQD;EACE,eAAc;CzEsmQf;;AyEpmQD;EACE,eAAc;CzEumQf;;AyErmQD;EACE,eAAc;CzEwmQf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","file":"theme.css"} \ No newline at end of file diff --git a/docs/src/_build/html/_static/doctools.js b/docs/src/_build/html/_static/doctools.js deleted file mode 100644 index 61ac9d2..0000000 --- a/docs/src/_build/html/_static/doctools.js +++ /dev/null @@ -1,321 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - * - * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL - */ -jQuery.urldecode = function(x) { - if (!x) { - return x - } - return decodeURIComponent(x.replace(/\+/g, ' ')); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s === 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node, addItems) { - if (node.nodeType === 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keydown(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box, textarea, dropdown or button - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey - && !event.shiftKey) { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/docs/src/_build/html/_static/documentation_options.js b/docs/src/_build/html/_static/documentation_options.js deleted file mode 100644 index 2fa8c97..0000000 --- a/docs/src/_build/html/_static/documentation_options.js +++ /dev/null @@ -1,12 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - BUILDER: 'html', - FILE_SUFFIX: '.html', - LINK_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: false -}; \ No newline at end of file diff --git a/docs/src/_build/html/_static/file.png b/docs/src/_build/html/_static/file.png deleted file mode 100644 index a858a41..0000000 Binary files a/docs/src/_build/html/_static/file.png and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold-italic.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold-italic.woff deleted file mode 100644 index e317248..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 deleted file mode 100644 index cec2dc9..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold.woff deleted file mode 100644 index de46625..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold.woff2 deleted file mode 100644 index dc05cd8..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-bold.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book-italic.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book-italic.woff deleted file mode 100644 index a50e503..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book-italic.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book-italic.woff2 deleted file mode 100644 index fe284db..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book.woff deleted file mode 100644 index 6ab8775..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book.woff2 deleted file mode 100644 index 2688739..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-book.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light-italic.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light-italic.woff deleted file mode 100644 index beda58d..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light-italic.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light-italic.woff2 deleted file mode 100644 index e2fa013..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light.woff deleted file mode 100644 index 226a0bf..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light.woff2 deleted file mode 100644 index 6d8ff2c..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-light.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium-italic.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium-italic.woff deleted file mode 100644 index a42115d..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 deleted file mode 100644 index 16a7713..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium.woff b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium.woff deleted file mode 100644 index 5ea3453..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium.woff2 b/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium.woff2 deleted file mode 100644 index c58b6a5..0000000 Binary files a/docs/src/_build/html/_static/fonts/FreightSans/freight-sans-medium.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff deleted file mode 100644 index cf37a5c..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 deleted file mode 100644 index 955a6ea..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff deleted file mode 100644 index fc65a67..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 deleted file mode 100644 index c352e40..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff deleted file mode 100644 index 7d63d89..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 deleted file mode 100644 index d0d7ded..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff deleted file mode 100644 index 1da7753..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff and /dev/null differ diff --git a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 b/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 deleted file mode 100644 index 79dffdb..0000000 Binary files a/docs/src/_build/html/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 and /dev/null differ diff --git a/docs/src/_build/html/_static/images/arrow-down-orange.svg b/docs/src/_build/html/_static/images/arrow-down-orange.svg deleted file mode 100644 index e9d8e9e..0000000 --- a/docs/src/_build/html/_static/images/arrow-down-orange.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Group 5 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_static/images/arrow-right-with-tail.svg b/docs/src/_build/html/_static/images/arrow-right-with-tail.svg deleted file mode 100644 index 5843588..0000000 --- a/docs/src/_build/html/_static/images/arrow-right-with-tail.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_static/images/asteroid_logo_dark.png b/docs/src/_build/html/_static/images/asteroid_logo_dark.png deleted file mode 100644 index 1eb1d71..0000000 Binary files a/docs/src/_build/html/_static/images/asteroid_logo_dark.png and /dev/null differ diff --git a/docs/src/_build/html/_static/images/asteroid_logo_dark.svg b/docs/src/_build/html/_static/images/asteroid_logo_dark.svg deleted file mode 100644 index 7d1ba92..0000000 --- a/docs/src/_build/html/_static/images/asteroid_logo_dark.svg +++ /dev/null @@ -1,1430 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/docs/src/_build/html/_static/images/chevron-down-grey.svg b/docs/src/_build/html/_static/images/chevron-down-grey.svg deleted file mode 100644 index 82d6514..0000000 --- a/docs/src/_build/html/_static/images/chevron-down-grey.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - -Created with Sketch. - - - - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/chevron-right-orange.svg b/docs/src/_build/html/_static/images/chevron-right-orange.svg deleted file mode 100644 index 7033fc9..0000000 --- a/docs/src/_build/html/_static/images/chevron-right-orange.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Page 1 -Created with Sketch. - - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/chevron-right-white.svg b/docs/src/_build/html/_static/images/chevron-right-white.svg deleted file mode 100644 index dd9e77f..0000000 --- a/docs/src/_build/html/_static/images/chevron-right-white.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Page 1 -Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_static/images/dark_asteroid_logo.svg b/docs/src/_build/html/_static/images/dark_asteroid_logo.svg deleted file mode 100644 index e2251aa..0000000 --- a/docs/src/_build/html/_static/images/dark_asteroid_logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/src/_build/html/_static/images/home-footer-background.jpg b/docs/src/_build/html/_static/images/home-footer-background.jpg deleted file mode 100644 index b307bb5..0000000 Binary files a/docs/src/_build/html/_static/images/home-footer-background.jpg and /dev/null differ diff --git a/docs/src/_build/html/_static/images/icon-close.svg b/docs/src/_build/html/_static/images/icon-close.svg deleted file mode 100644 index 348964e..0000000 --- a/docs/src/_build/html/_static/images/icon-close.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_static/images/icon-menu-dots-dark.svg b/docs/src/_build/html/_static/images/icon-menu-dots-dark.svg deleted file mode 100644 index fa2ad04..0000000 --- a/docs/src/_build/html/_static/images/icon-menu-dots-dark.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/_static/images/logo-facebook-dark.svg b/docs/src/_build/html/_static/images/logo-facebook-dark.svg deleted file mode 100644 index cff1791..0000000 --- a/docs/src/_build/html/_static/images/logo-facebook-dark.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/docs/src/_build/html/_static/images/logo-lightning-large.svg b/docs/src/_build/html/_static/images/logo-lightning-large.svg deleted file mode 100644 index 4a6cd73..0000000 --- a/docs/src/_build/html/_static/images/logo-lightning-large.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/logo-lightning.svg b/docs/src/_build/html/_static/images/logo-lightning.svg deleted file mode 100644 index f65f84f..0000000 --- a/docs/src/_build/html/_static/images/logo-lightning.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - long - Created with Sketch. - - - - PyTorch Lightning - - - diff --git a/docs/src/_build/html/_static/images/logo-pytorch-dark.svg b/docs/src/_build/html/_static/images/logo-pytorch-dark.svg deleted file mode 100644 index 9b4c1a5..0000000 --- a/docs/src/_build/html/_static/images/logo-pytorch-dark.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/logo-pytorch-icon.svg b/docs/src/_build/html/_static/images/logo-pytorch-icon.svg deleted file mode 100644 index 575f682..0000000 --- a/docs/src/_build/html/_static/images/logo-pytorch-icon.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/logo-pytorch.svg b/docs/src/_build/html/_static/images/logo-pytorch.svg deleted file mode 100644 index f8d44b9..0000000 --- a/docs/src/_build/html/_static/images/logo-pytorch.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/logo-twitter-dark.svg b/docs/src/_build/html/_static/images/logo-twitter-dark.svg deleted file mode 100644 index 1572570..0000000 --- a/docs/src/_build/html/_static/images/logo-twitter-dark.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/docs/src/_build/html/_static/images/pytorch-colab.svg b/docs/src/_build/html/_static/images/pytorch-colab.svg deleted file mode 100644 index 2ab15e2..0000000 --- a/docs/src/_build/html/_static/images/pytorch-colab.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/pytorch-download.svg b/docs/src/_build/html/_static/images/pytorch-download.svg deleted file mode 100644 index cc37d63..0000000 --- a/docs/src/_build/html/_static/images/pytorch-download.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - diff --git a/docs/src/_build/html/_static/images/pytorch-github.svg b/docs/src/_build/html/_static/images/pytorch-github.svg deleted file mode 100644 index 2c2570d..0000000 --- a/docs/src/_build/html/_static/images/pytorch-github.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - diff --git a/docs/src/_build/html/_static/images/pytorch-x.svg b/docs/src/_build/html/_static/images/pytorch-x.svg deleted file mode 100644 index 74856ea..0000000 --- a/docs/src/_build/html/_static/images/pytorch-x.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/docs/src/_build/html/_static/images/search-icon.svg b/docs/src/_build/html/_static/images/search-icon.svg deleted file mode 100644 index ebb0df8..0000000 --- a/docs/src/_build/html/_static/images/search-icon.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Created with Sketch. - - - - - - - - - - - - - - - diff --git a/docs/src/_build/html/_static/images/view-page-source-icon.svg b/docs/src/_build/html/_static/images/view-page-source-icon.svg deleted file mode 100644 index 6f5bbe0..0000000 --- a/docs/src/_build/html/_static/images/view-page-source-icon.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/docs/src/_build/html/_static/jquery-3.5.1.js b/docs/src/_build/html/_static/jquery-3.5.1.js deleted file mode 100644 index 5093733..0000000 --- a/docs/src/_build/html/_static/jquery-3.5.1.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - 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" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -
-

Components

-
-
-class mmic_cmd.components.CmdComponent(*, name: str, scratch: bool, thread_safe: bool, thread_parallel: bool, node_parallel: bool, managed_memory: bool, extras: Dict[str, Any] = None)[source]
-
-
Parameters
-
    -
  • name (str)

  • -
  • scratch (bool)

  • -
  • thread_safe (bool)

  • -
  • thread_parallel (bool)

  • -
  • node_parallel (bool)

  • -
  • managed_memory (bool)

  • -
  • extras (Dict[Any], Optional)

  • -
-
-
-
- -
- - -
- -
-
- - - - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/genindex.html b/docs/src/_build/html/genindex.html deleted file mode 100644 index c93f2bd..0000000 --- a/docs/src/_build/html/genindex.html +++ /dev/null @@ -1,537 +0,0 @@ - - - - - - - - - - - - Index — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/index.html b/docs/src/_build/html/index.html deleted file mode 100644 index 84ae98e..0000000 --- a/docs/src/_build/html/index.html +++ /dev/null @@ -1,516 +0,0 @@ - - - - - - - - - - - - Welcome to mmic_cmd’s documentation! — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- -
    - -
  • - - - Docs - - > -
  • - - -
  • Welcome to mmic_cmd’s documentation!
  • - - -
  • - - - - - -
  • - -
- - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/models.html b/docs/src/_build/html/models.html deleted file mode 100644 index f7508c6..0000000 --- a/docs/src/_build/html/models.html +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - - - - - - - Models — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -
-

Models

-
-
-class mmic_cmd.models.CmdInput(*, command: List[str], infiles: List[str] = None, outfiles: List[str] = None, outfiles_track: List[str] = [], raise_err: bool = False, as_binary: List[str] = None, scratch_name: str = None, scratch_directory: str = None, scratch_suffix: str = None, scratch_messy: bool = False, scratch_exist_ok: bool = False, blocking_files: List[str] = None, timeout: int = None, interupt_after: int = None, environment: Dict[str, str] = None, shell: bool = False, exit_code: int = 0, config: TaskConfig = None)[source]
-

Input model for command-line execution.

-
-
Parameters
-
    -
  • command (List[str]) – .

  • -
  • infiles (List[str], Optional) – Input files (abs paths) to be written in scratch dir. May be {}.

  • -
  • outfiles (List[str], Optional) – Output file name(s).

  • -
  • outfiles_track (List[str], Default: []) – Specifies which output files (by name) are tracked and not loaded in memory. The posix paths (instead of file contents) are returned instead in outfiles.

  • -
  • raise_err (bool, Default: False) – If set to True, a runtime exception is raised when stderr is not empty.

  • -
  • as_binary (List[str], Optional) – Keys of infiles or outfiles to be treated as bytes.

  • -
  • scratch_name (str, Optional) – Passed to temporary_directory.

  • -
  • scratch_directory (str, Optional) – Passed to temporary_directory.

  • -
  • scratch_suffix (str, Optional) – Passed to temporary_directory.

  • -
  • scratch_messy (bool, Default: False) – Passed to temporary_directory

  • -
  • scratch_exist_ok (bool, Default: False) – Passed to temporary_directory.

  • -
  • blocking_files (List[str], Optional) – Files which should stop execution if present beforehand.

  • -
  • timeout (int, Optional) – Stop the process after n seconds.

  • -
  • interupt_after (int, Optional) – Interupt the process (not hard kill) after n seconds.

  • -
  • environment (Dict[str], Optional) – The environment to run in.

  • -
  • shell (bool, Default: False) – Run command through the shell.

  • -
  • exit_code (int, Default: 0) – The exit code above which the process is considered failure.

  • -
  • config (, Optional) – Config class for executing tasks. See mmic.components.base.config.TaskConfig.

  • -
-
-
-
- -
-
-class mmic_cmd.models.CmdOutput(*, stdout: str, stderr: str = None, log: str = None, outfiles: Dict[str, Any] = None, proc: subprocess.Popen = None, scratch_directory: pathlib.PosixPath = None)[source]
-

Output model for commend-line execution.

-
-
Parameters
-
    -
  • stdout (str) – Standard output.

  • -
  • stderr (str, Optional) – Standard error.

  • -
  • log (str, Optional) – Logging output.

  • -
  • outfiles (Dict[Any], Optional) – List of FileOutput objects. See the :class: mmelemental.models.FileOutput.

  • -
  • proc (Popen, Optional)

  • -
  • scratch_directory (PosixPath, Optional)

  • -
-
-
-
- -
- - -
- -
-
- - - - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- - -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/_modules/index.html b/docs/src/_build/html/modules/_modules/index.html deleted file mode 100644 index 6a3b86f..0000000 --- a/docs/src/_build/html/modules/_modules/index.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - - - - - Overview: module code — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/_modules/mmic_cmd/components/cmd_component.html b/docs/src/_build/html/modules/_modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 63267e1..0000000 --- a/docs/src/_build/html/modules/_modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_load=inputs.outfiles_load, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/_modules/mmic_cmd/models/input.html b/docs/src/_build/html/modules/_modules/mmic_cmd/models/input.html deleted file mode 100644 index 5b1aded..0000000 --- a/docs/src/_build/html/modules/_modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """Input model for command-line execution.""" - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_load: Optional[bool] = Field( - True, - description="If set to True, output files are loaded in memory. Otherwise, the posix paths " - "are returned instead (default).", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/_modules/mmic_cmd/models/output.html b/docs/src/_build/html/modules/_modules/mmic_cmd/models/output.html deleted file mode 100644 index 8c40567..0000000 --- a/docs/src/_build/html/modules/_modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """Output model for commend-line execution.""" - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/index.html b/docs/src/_build/html/modules/index.html deleted file mode 100644 index 81f4cac..0000000 --- a/docs/src/_build/html/modules/index.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - - - - - - Overview: module code — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/mmic_cmd/components/cmd_component.html b/docs/src/_build/html/modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 1a8568e..0000000 --- a/docs/src/_build/html/modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_load=inputs.outfiles_load, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/mmic_cmd/models/input.html b/docs/src/_build/html/modules/mmic_cmd/models/input.html deleted file mode 100644 index d4653f5..0000000 --- a/docs/src/_build/html/modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """Input model for command-line execution.""" - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_load: Optional[bool] = Field( - True, - description="If set to True, output files are loaded in memory. Otherwise, the posix paths " - "are returned instead (default).", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/modules/mmic_cmd/models/output.html b/docs/src/_build/html/modules/mmic_cmd/models/output.html deleted file mode 100644 index eec9ce7..0000000 --- a/docs/src/_build/html/modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """Output model for commend-line execution.""" - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/objects.inv b/docs/src/_build/html/objects.inv deleted file mode 100644 index 4a8dbaa..0000000 Binary files a/docs/src/_build/html/objects.inv and /dev/null differ diff --git a/docs/src/_build/html/py-modindex.html b/docs/src/_build/html/py-modindex.html deleted file mode 100644 index 0157412..0000000 --- a/docs/src/_build/html/py-modindex.html +++ /dev/null @@ -1,513 +0,0 @@ - - - - - - - - - - - - Python Module Index — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/search.html b/docs/src/_build/html/search.html deleted file mode 100644 index 7dc77de..0000000 --- a/docs/src/_build/html/search.html +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - - - - - Search — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- - - - -
- -
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/searchindex.js b/docs/src/_build/html/searchindex.js deleted file mode 100644 index dbe1cba..0000000 --- a/docs/src/_build/html/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["components","index","models"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["components.rst","index.rst","models.rst"],objects:{"mmic_cmd.components":{CmdComponent:[0,1,1,""]},"mmic_cmd.models":{CmdInput:[2,1,1,""],CmdOutput:[2,1,1,""]},mmic_cmd:{components:[0,0,0,"-"],models:[2,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"]},objtypes:{"0":"py:module","1":"py:class"},terms:{"byte":2,"class":[0,2],"default":2,"int":2,"return":2,"true":2,The:2,abov:2,abs:2,after:2,ani:[0,2],api:[],as_binari:2,base:2,beforehand:2,blocking_fil:2,bool:[0,2],cmdcompon:0,cmdinput:2,cmdoutput:2,code:2,command:2,commend:2,compon:[1,2],config:2,consid:2,content:2,dict:[0,2],dir:2,empti:2,environ:2,error:2,except:2,execut:2,exit:2,exit_cod:2,extra:0,failur:2,fals:2,file:2,fileoutput:2,hard:2,index:1,infil:2,input:2,instead:2,interupt:2,interupt_aft:2,kei:2,kill:2,line:2,list:2,load:2,log:2,mai:2,managed_memori:0,memori:2,mmelement:2,mmic:2,mmic_cmd:[0,2],model:1,modul:1,name:[0,2],node_parallel:0,none:[0,2],object:2,option:[0,2],otherwis:[],outfil:2,outfiles_load:[],outfiles_track:2,output:2,page:1,paramet:[0,2],pass:2,path:2,pathlib:2,popen:2,posix:2,posixpath:2,present:2,proc:2,process:2,rais:2,raise_err:2,run:2,runtim:2,scratch:[0,2],scratch_directori:2,scratch_exist_ok:2,scratch_messi:2,scratch_nam:2,scratch_suffix:2,search:1,second:2,see:2,set:2,shell:2,should:2,sourc:[0,2],specifi:2,standard:2,stderr:2,stdout:2,stop:2,str:[0,2],subprocess:2,task:2,taskconfig:2,temporary_directori:2,thread_parallel:0,thread_saf:0,through:2,timeout:2,track:2,treat:2,when:2,which:2,written:2},titles:["Components","Welcome to mmic_cmd\u2019s documentation!","Models"],titleterms:{api:[],compon:0,content:1,document:1,indic:1,mmic_cmd:1,model:2,tabl:1,welcom:1}}) \ No newline at end of file diff --git a/docs/src/_build/html/sources/_sources/components.rst.txt b/docs/src/_build/html/sources/_sources/components.rst.txt deleted file mode 100644 index 6a8ee90..0000000 --- a/docs/src/_build/html/sources/_sources/components.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -API -###### -.. automodule:: mmic_cmd.components - :members: diff --git a/docs/src/_build/html/sources/_sources/index.rst.txt b/docs/src/_build/html/sources/_sources/index.rst.txt deleted file mode 100644 index e87765c..0000000 --- a/docs/src/_build/html/sources/_sources/index.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -.. mmic_cmd documentation master file, created by - sphinx-quickstart on Thu Mar 15 13:55:56 2018. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mmic_cmd's documentation! -========================================================= - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - components - models - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/src/_build/html/sources/_sources/models.rst.txt b/docs/src/_build/html/sources/_sources/models.rst.txt deleted file mode 100644 index 1b5db97..0000000 --- a/docs/src/_build/html/sources/_sources/models.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Models -###### -.. automodule:: mmic_cmd.models - :members: diff --git a/docs/src/_build/html/sources/components.rst.txt b/docs/src/_build/html/sources/components.rst.txt deleted file mode 100644 index 6a8ee90..0000000 --- a/docs/src/_build/html/sources/components.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -API -###### -.. automodule:: mmic_cmd.components - :members: diff --git a/docs/src/_build/html/sources/index.rst.txt b/docs/src/_build/html/sources/index.rst.txt deleted file mode 100644 index e87765c..0000000 --- a/docs/src/_build/html/sources/index.rst.txt +++ /dev/null @@ -1,21 +0,0 @@ -.. mmic_cmd documentation master file, created by - sphinx-quickstart on Thu Mar 15 13:55:56 2018. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mmic_cmd's documentation! -========================================================= - -.. toctree:: - :maxdepth: 1 - :caption: Contents: - - components - models - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/docs/src/_build/html/sources/models.rst.txt b/docs/src/_build/html/sources/models.rst.txt deleted file mode 100644 index 1b5db97..0000000 --- a/docs/src/_build/html/sources/models.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -Models -###### -.. automodule:: mmic_cmd.models - :members: diff --git a/docs/src/_build/html/static/README.md b/docs/src/_build/html/static/README.md deleted file mode 100644 index 2f0cf84..0000000 --- a/docs/src/_build/html/static/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Static Doc Directory - -Add any paths that contain custom static files (such as style sheets) here, -relative to the `conf.py` file's directory. -They are copied after the builtin static files, -so a file named "default.css" will overwrite the builtin "default.css". - -The path to this folder is set in the Sphinx `conf.py` file in the line: -```python -templates_path = ['_static'] -``` - -## Examples of file to add to this directory -* Custom Cascading Style Sheets -* Custom JavaScript code -* Static logo images diff --git a/docs/src/_build/html/static/_static/README.md b/docs/src/_build/html/static/_static/README.md deleted file mode 100644 index 2f0cf84..0000000 --- a/docs/src/_build/html/static/_static/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Static Doc Directory - -Add any paths that contain custom static files (such as style sheets) here, -relative to the `conf.py` file's directory. -They are copied after the builtin static files, -so a file named "default.css" will overwrite the builtin "default.css". - -The path to this folder is set in the Sphinx `conf.py` file in the line: -```python -templates_path = ['_static'] -``` - -## Examples of file to add to this directory -* Custom Cascading Style Sheets -* Custom JavaScript code -* Static logo images diff --git a/docs/src/_build/html/static/_static/basic.css b/docs/src/_build/html/static/_static/basic.css deleted file mode 100644 index b3bdc00..0000000 --- a/docs/src/_build/html/static/_static/basic.css +++ /dev/null @@ -1,861 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -div.section::after { - display: block; - content: ''; - clear: left; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, figure.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, figure.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, figure.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, figure.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar, -aside.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px; - background-color: #ffe; - width: 40%; - float: right; - clear: right; - overflow-x: auto; -} - -p.sidebar-title { - font-weight: bold; -} - -div.admonition, div.topic, blockquote { - clear: left; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- content of sidebars/topics/admonitions -------------------------------- */ - -div.sidebar > :last-child, -aside.sidebar > :last-child, -div.topic > :last-child, -div.admonition > :last-child { - margin-bottom: 0; -} - -div.sidebar::after, -aside.sidebar::after, -div.topic::after, -div.admonition::after, -blockquote::after { - display: block; - content: ''; - clear: both; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - margin-top: 10px; - margin-bottom: 10px; - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > :first-child, -td > :first-child { - margin-top: 0px; -} - -th > :last-child, -td > :last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure, figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption, figcaption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number, -figcaption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text, -figcaption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist { - margin: 1em 0; -} - -table.hlist td { - vertical-align: top; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -:not(li) > ol > li:first-child > :first-child, -:not(li) > ul > li:first-child > :first-child { - margin-top: 0px; -} - -:not(li) > ol > li:last-child > :last-child, -:not(li) > ul > li:last-child > :last-child { - margin-bottom: 0px; -} - -ol.simple ol p, -ol.simple ul p, -ul.simple ol p, -ul.simple ul p { - margin-top: 0; -} - -ol.simple > li:not(:first-child) > p, -ul.simple > li:not(:first-child) > p { - margin-top: 0; -} - -ol.simple p, -ul.simple p { - margin-bottom: 0; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: grid; - grid-template-columns: fit-content(30%) auto; -} - -dl.field-list > dt { - font-weight: bold; - word-break: break-word; - padding-left: 0.5em; - padding-right: 5px; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - padding-left: 0.5em; - margin-top: 0em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > :first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dl > dd:last-child, -dl > dd:last-child > :last-child { - margin-bottom: 0; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -pre, div[class*="highlight-"] { - clear: both; -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -div[class*="highlight-"] { - margin: 1em 0; -} - -td.linenos pre { - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - display: block; -} - -table.highlighttable tbody { - display: block; -} - -table.highlighttable tr { - display: flex; -} - -table.highlighttable td { - margin: 0; - padding: 0; -} - -table.highlighttable td.linenos { - padding-right: 0.5em; -} - -table.highlighttable td.code { - flex: 1; - overflow: hidden; -} - -.highlight .hll { - display: block; -} - -div.highlight pre, -table.highlighttable pre { - margin: 0; -} - -div.code-block-caption + div { - margin-top: 0; -} - -div.code-block-caption { - margin-top: 1em; - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -table.highlighttable td.linenos, -span.linenos, -div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ - user-select: none; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - margin: 1em 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: absolute; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/css/theme.css b/docs/src/_build/html/static/_static/css/theme.css deleted file mode 100644 index 798e6ea..0000000 --- a/docs/src/_build/html/static/_static/css/theme.css +++ /dev/null @@ -1,11990 +0,0 @@ -/*! - * Bootstrap v4.0.0 (https://getbootstrap.com) - * Copyright 2011-2018 The Bootstrap Authors - * Copyright 2011-2018 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - -ms-overflow-style: scrollbar; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -@-ms-viewport { - width: device-width; -} -article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus { - outline: 0 !important; -} - -hr { - -webkit-box-sizing: content-box; - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: .5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -dfn { - font-style: italic; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; - -webkit-text-decoration-skip: objects; -} -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([tabindex]) { - color: inherit; - text-decoration: none; -} -a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { - color: inherit; - text-decoration: none; -} -a:not([href]):not([tabindex]):focus { - outline: 0; -} - -pre, -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: .5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type="radio"], -input[type="checkbox"] { - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding: 0; -} - -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -[type="search"] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-family: inherit; - font-weight: 500; - line-height: 1.2; - color: inherit; -} - -h1, .h1 { - font-size: 2.5rem; -} - -h2, .h2 { - font-size: 2rem; -} - -h3, .h3 { - font-size: 1.75rem; -} - -h4, .h4 { - font-size: 1.5rem; -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer::before { - content: "\2014 \00A0"; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-break: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -@media (min-width: 576px) { - .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container { - max-width: 1140px; - } -} - -.container-fluid { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} - -.row { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*="col-"] { - padding-right: 0; - padding-left: 0; -} - -.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, -.col-auto, .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-sm, -.col-sm-auto, .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-md, -.col-md-auto, .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-lg, -.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, -.col-xl-auto { - position: relative; - width: 100%; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; -} - -.col-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; -} - -.col-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; -} - -.col-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; -} - -.col-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; -} - -.col-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; -} - -.col-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; -} - -.col-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; -} - -.col-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; -} - -.col-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; -} - -.col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; -} - -.order-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; -} - -.order-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; -} - -.order-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; -} - -.order-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; -} - -.order-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; -} - -.order-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; -} - -.order-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; -} - -.order-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; -} - -.order-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; -} - -.order-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; -} - -.order-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; -} - -.order-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; -} - -.order-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; -} - -.order-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; -} - -.offset-1 { - margin-left: 8.3333333333%; -} - -.offset-2 { - margin-left: 16.6666666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.3333333333%; -} - -.offset-5 { - margin-left: 41.6666666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.3333333333%; -} - -.offset-8 { - margin-left: 66.6666666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.3333333333%; -} - -.offset-11 { - margin-left: 91.6666666667%; -} - -@media (min-width: 576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-sm-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-sm-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-sm-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-sm-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-sm-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-sm-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-sm-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-sm-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-sm-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-sm-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-sm-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-sm-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-sm-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-sm-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-sm-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-sm-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-sm-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-sm-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-sm-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-sm-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-sm-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-sm-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-sm-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-sm-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-sm-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-sm-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-sm-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-sm-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-sm-0 { - margin-left: 0; - } - - .offset-sm-1 { - margin-left: 8.3333333333%; - } - - .offset-sm-2 { - margin-left: 16.6666666667%; - } - - .offset-sm-3 { - margin-left: 25%; - } - - .offset-sm-4 { - margin-left: 33.3333333333%; - } - - .offset-sm-5 { - margin-left: 41.6666666667%; - } - - .offset-sm-6 { - margin-left: 50%; - } - - .offset-sm-7 { - margin-left: 58.3333333333%; - } - - .offset-sm-8 { - margin-left: 66.6666666667%; - } - - .offset-sm-9 { - margin-left: 75%; - } - - .offset-sm-10 { - margin-left: 83.3333333333%; - } - - .offset-sm-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-md-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-md-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-md-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-md-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-md-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-md-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-md-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-md-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-md-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-md-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-md-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-md-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-md-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-md-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-md-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-md-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-md-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-md-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-md-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-md-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-md-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-md-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-md-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-md-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-md-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-md-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-md-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-md-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-md-0 { - margin-left: 0; - } - - .offset-md-1 { - margin-left: 8.3333333333%; - } - - .offset-md-2 { - margin-left: 16.6666666667%; - } - - .offset-md-3 { - margin-left: 25%; - } - - .offset-md-4 { - margin-left: 33.3333333333%; - } - - .offset-md-5 { - margin-left: 41.6666666667%; - } - - .offset-md-6 { - margin-left: 50%; - } - - .offset-md-7 { - margin-left: 58.3333333333%; - } - - .offset-md-8 { - margin-left: 66.6666666667%; - } - - .offset-md-9 { - margin-left: 75%; - } - - .offset-md-10 { - margin-left: 83.3333333333%; - } - - .offset-md-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-lg-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-lg-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-lg-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-lg-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-lg-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-lg-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-lg-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-lg-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-lg-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-lg-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-lg-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-lg-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-lg-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-lg-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-lg-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-lg-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-lg-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-lg-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-lg-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-lg-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-lg-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-lg-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-lg-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-lg-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-lg-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-lg-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-lg-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-lg-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-lg-0 { - margin-left: 0; - } - - .offset-lg-1 { - margin-left: 8.3333333333%; - } - - .offset-lg-2 { - margin-left: 16.6666666667%; - } - - .offset-lg-3 { - margin-left: 25%; - } - - .offset-lg-4 { - margin-left: 33.3333333333%; - } - - .offset-lg-5 { - margin-left: 41.6666666667%; - } - - .offset-lg-6 { - margin-left: 50%; - } - - .offset-lg-7 { - margin-left: 58.3333333333%; - } - - .offset-lg-8 { - margin-left: 66.6666666667%; - } - - .offset-lg-9 { - margin-left: 75%; - } - - .offset-lg-10 { - margin-left: 83.3333333333%; - } - - .offset-lg-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100%; - } - - .col-xl-auto { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: none; - } - - .col-xl-1 { - -webkit-box-flex: 0; - -ms-flex: 0 0 8.3333333333%; - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-xl-2 { - -webkit-box-flex: 0; - -ms-flex: 0 0 16.6666666667%; - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-xl-3 { - -webkit-box-flex: 0; - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25%; - } - - .col-xl-4 { - -webkit-box-flex: 0; - -ms-flex: 0 0 33.3333333333%; - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-xl-5 { - -webkit-box-flex: 0; - -ms-flex: 0 0 41.6666666667%; - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-xl-6 { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50%; - } - - .col-xl-7 { - -webkit-box-flex: 0; - -ms-flex: 0 0 58.3333333333%; - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-xl-8 { - -webkit-box-flex: 0; - -ms-flex: 0 0 66.6666666667%; - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-xl-9 { - -webkit-box-flex: 0; - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75%; - } - - .col-xl-10 { - -webkit-box-flex: 0; - -ms-flex: 0 0 83.3333333333%; - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-xl-11 { - -webkit-box-flex: 0; - -ms-flex: 0 0 91.6666666667%; - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-xl-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100%; - } - - .order-xl-first { - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - - .order-xl-last { - -webkit-box-ordinal-group: 14; - -ms-flex-order: 13; - order: 13; - } - - .order-xl-0 { - -webkit-box-ordinal-group: 1; - -ms-flex-order: 0; - order: 0; - } - - .order-xl-1 { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .order-xl-2 { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .order-xl-3 { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .order-xl-4 { - -webkit-box-ordinal-group: 5; - -ms-flex-order: 4; - order: 4; - } - - .order-xl-5 { - -webkit-box-ordinal-group: 6; - -ms-flex-order: 5; - order: 5; - } - - .order-xl-6 { - -webkit-box-ordinal-group: 7; - -ms-flex-order: 6; - order: 6; - } - - .order-xl-7 { - -webkit-box-ordinal-group: 8; - -ms-flex-order: 7; - order: 7; - } - - .order-xl-8 { - -webkit-box-ordinal-group: 9; - -ms-flex-order: 8; - order: 8; - } - - .order-xl-9 { - -webkit-box-ordinal-group: 10; - -ms-flex-order: 9; - order: 9; - } - - .order-xl-10 { - -webkit-box-ordinal-group: 11; - -ms-flex-order: 10; - order: 10; - } - - .order-xl-11 { - -webkit-box-ordinal-group: 12; - -ms-flex-order: 11; - order: 11; - } - - .order-xl-12 { - -webkit-box-ordinal-group: 13; - -ms-flex-order: 12; - order: 12; - } - - .offset-xl-0 { - margin-left: 0; - } - - .offset-xl-1 { - margin-left: 8.3333333333%; - } - - .offset-xl-2 { - margin-left: 16.6666666667%; - } - - .offset-xl-3 { - margin-left: 25%; - } - - .offset-xl-4 { - margin-left: 33.3333333333%; - } - - .offset-xl-5 { - margin-left: 41.6666666667%; - } - - .offset-xl-6 { - margin-left: 50%; - } - - .offset-xl-7 { - margin-left: 58.3333333333%; - } - - .offset-xl-8 { - margin-left: 66.6666666667%; - } - - .offset-xl-9 { - margin-left: 75%; - } - - .offset-xl-10 { - margin-left: 83.3333333333%; - } - - .offset-xl-11 { - margin-left: 91.6666666667%; - } -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 1rem; - background-color: transparent; -} -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; -} -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; -} -.table tbody + tbody { - border-top: 2px solid #dee2e6; -} -.table .table { - background-color: #fff; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dee2e6; -} -.table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6; -} -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; -} - -.table-hover .table-primary:hover { - background-color: #9fcdff; -} -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #9fcdff; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; -} -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #c8cbcf; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; -} - -.table-hover .table-success:hover { - background-color: #b1dfbb; -} -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #b1dfbb; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; -} - -.table-hover .table-info:hover { - background-color: #abdde5; -} -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #abdde5; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1; -} -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffe8a1; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7; -} -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f1b0b7; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; -} - -.table-hover .table-light:hover { - background-color: #ececf6; -} -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #ececf6; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe; -} -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #b9bbbe; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #212529; - border-color: #32383e; -} -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.table-dark { - color: #fff; - background-color: #212529; -} -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #32383e; -} -.table-dark.table-bordered { - border: 0; -} -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} -.table-dark.table-hover tbody tr:hover { - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - -ms-overflow-style: -ms-autohiding-scrollbar; -} -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -select.form-control:not([size]):not([multiple]) { - height: calc(2.25rem + 2px); -} -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding-top: 0.375rem; - padding-bottom: 0.375rem; - margin-bottom: 0; - line-height: 1.5; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control, -.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text, -.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, -.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, -.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control, -.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, -.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, -.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, -.input-group-lg > .input-group-append > .form-control-plaintext.btn { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), -.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), -.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), -.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), -.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) { - height: calc(1.8125rem + 2px); -} - -.form-control-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), -.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), -.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), -.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), -.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) { - height: calc(2.875rem + 2px); -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*="col-"] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #28a745; -} - -.valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1; - color: #fff; - background-color: rgba(40, 167, 69, 0.8); - border-radius: .2rem; -} - -.was-validated .form-control:valid, .form-control.is-valid, -.was-validated .custom-select:valid, -.custom-select.is-valid { - border-color: #28a745; -} -.was-validated .form-control:valid:focus, .form-control.is-valid:focus, -.was-validated .custom-select:valid:focus, -.custom-select.is-valid:focus { - border-color: #28a745; - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} -.was-validated .form-control:valid ~ .valid-feedback, -.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, -.form-control.is-valid ~ .valid-tooltip, -.was-validated .custom-select:valid ~ .valid-feedback, -.was-validated .custom-select:valid ~ .valid-tooltip, -.custom-select.is-valid ~ .valid-feedback, -.custom-select.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #28a745; -} -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #28a745; -} -.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - background-color: #71dd8a; -} -.was-validated .custom-control-input:valid ~ .valid-feedback, -.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, -.custom-control-input.is-valid ~ .valid-tooltip { - display: block; -} -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - background-color: #34ce57; -} -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #28a745; -} -.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before { - border-color: inherit; -} -.was-validated .custom-file-input:valid ~ .valid-feedback, -.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, -.custom-file-input.is-valid ~ .valid-tooltip { - display: block; -} -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1; - color: #fff; - background-color: rgba(220, 53, 69, 0.8); - border-radius: .2rem; -} - -.was-validated .form-control:invalid, .form-control.is-invalid, -.was-validated .custom-select:invalid, -.custom-select.is-invalid { - border-color: #dc3545; -} -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, -.was-validated .custom-select:invalid:focus, -.custom-select.is-invalid:focus { - border-color: #dc3545; - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} -.was-validated .form-control:invalid ~ .invalid-feedback, -.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, -.form-control.is-invalid ~ .invalid-tooltip, -.was-validated .custom-select:invalid ~ .invalid-feedback, -.was-validated .custom-select:invalid ~ .invalid-tooltip, -.custom-select.is-invalid ~ .invalid-feedback, -.custom-select.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; -} -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - background-color: #efa2a9; -} -.was-validated .custom-control-input:invalid ~ .invalid-feedback, -.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, -.custom-control-input.is-invalid ~ .invalid-tooltip { - display: block; -} -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - background-color: #e4606d; -} -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; -} -.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before { - border-color: inherit; -} -.was-validated .custom-file-input:invalid ~ .invalid-feedback, -.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, -.custom-file-input.is-invalid ~ .invalid-tooltip { - display: block; -} -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.form-inline { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group { - width: auto; - } - .form-inline .form-check { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.btn { - display: inline-block; - font-weight: 400; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -} -.btn:hover, .btn:focus { - text-decoration: none; -} -.btn:focus, .btn.focus { - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.btn.disabled, .btn:disabled { - opacity: 0.65; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active { - background-image: none; -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; -} -.btn-primary:focus, .btn-primary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; -} -.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; -} -.btn-secondary:focus, .btn-secondary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; -} -.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; -} -.btn-success:focus, .btn-success.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; -} -.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; -} -.btn-info:focus, .btn-info.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; -} -.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; -} -.btn-warning:focus, .btn-warning.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; -} -.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; -} -.btn-danger:focus, .btn-danger.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; -} -.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; -} -.btn-light:focus, .btn-light.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; -} -.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; -} -.btn-dark:focus, .btn-dark.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; -} -.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-outline-primary { - color: #007bff; - background-color: transparent; - background-image: none; - border-color: #007bff; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:focus, .btn-outline-primary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-secondary { - color: #6c757d; - background-color: transparent; - background-image: none; - border-color: #6c757d; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:focus, .btn-outline-secondary.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-success { - color: #28a745; - background-color: transparent; - background-image: none; - border-color: #28a745; -} -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-outline-success:focus, .btn-outline-success.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-outline-success.disabled, .btn-outline-success:disabled { - color: #28a745; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745; -} -.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-info { - color: #17a2b8; - background-color: transparent; - background-image: none; - border-color: #17a2b8; -} -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:focus, .btn-outline-info.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-warning { - color: #ffc107; - background-color: transparent; - background-image: none; - border-color: #ffc107; -} -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:focus, .btn-outline-warning.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-danger { - color: #dc3545; - background-color: transparent; - background-image: none; - border-color: #dc3545; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:focus, .btn-outline-danger.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-light { - color: #f8f9fa; - background-color: transparent; - background-image: none; - border-color: #f8f9fa; -} -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:focus, .btn-outline-light.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-dark { - color: #343a40; - background-color: transparent; - background-image: none; - border-color: #343a40; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:focus, .btn-outline-dark.focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { - -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-link { - font-weight: 400; - color: #007bff; - background-color: transparent; -} -.btn-link:hover { - color: #0056b3; - text-decoration: underline; - background-color: transparent; - border-color: transparent; -} -.btn-link:focus, .btn-link.focus { - text-decoration: underline; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.show { - opacity: 1; -} - -.collapse { - display: none; -} -.collapse.show { - display: block; -} - -tr.collapse.show { - display: table-row; -} - -tbody.collapse.show { - display: table-row-group; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition: height 0.35s ease; - transition: height 0.35s ease; -} - -.dropup, -.dropdown { - position: relative; -} - -.dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.dropup .dropdown-menu { - margin-top: 0; - margin-bottom: 0.125rem; -} -.dropup .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - margin-top: 0; - margin-left: 0.125rem; -} -.dropright .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - margin-top: 0; - margin-right: 0.125rem; -} -.dropleft .dropdown-toggle::after { - display: inline-block; - width: 0; - height: 0; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} -.dropleft .dropdown-toggle::after { - display: none; -} -.dropleft .dropdown-toggle::before { - display: inline-block; - width: 0; - height: 0; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; -} -.dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} -.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group, -.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-left: -1px; -} - -.btn-toolbar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after { - margin-left: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} -.btn-group-vertical .btn, -.btn-group-vertical .btn-group { - width: 100%; -} -.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(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn input[type="radio"], -.btn-group-toggle > .btn input[type="checkbox"], -.btn-group-toggle > .btn-group > .btn input[type="radio"], -.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - width: 100%; -} -.input-group > .form-control, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - margin-bottom: 0; -} -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file:focus { - z-index: 3; -} -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .custom-file { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.input-group-text input[type="radio"], -.input-group-text input[type="checkbox"] { - margin-top: 0; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; -} - -.custom-control-inline { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - z-index: -1; - opacity: 0; -} -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - background-color: #007bff; -} -.custom-control-input:focus ~ .custom-control-label::before { - -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-control-input:active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; -} -.custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} -.custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - margin-bottom: 0; -} -.custom-control-label::before { - position: absolute; - top: 0.25rem; - left: 0; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #dee2e6; -} -.custom-control-label::after { - position: absolute; - top: 0.25rem; - left: 0; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background-repeat: no-repeat; - background-position: center center; - background-size: 50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); -} -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::before { - background-color: #007bff; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); -} -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; - background-size: 8px 10px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} -.custom-select:focus { - border-color: #80bdff; - outline: 0; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); -} -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} -.custom-select::-ms-expand { - opacity: 0; -} - -.custom-select-sm { - height: calc(1.8125rem + 2px); - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 75%; -} - -.custom-select-lg { - height: calc(2.875rem + 2px); - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 125%; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(2.25rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(2.25rem + 2px); - margin: 0; - opacity: 0; -} -.custom-file-input:focus ~ .custom-file-control { - border-color: #80bdff; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-file-input:focus ~ .custom-file-control::before { - border-color: #80bdff; -} -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(2.25rem + 2px); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(calc(2.25rem + 2px) - 1px * 2); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: 1px solid #ced4da; - border-radius: 0 0.25rem 0.25rem 0; -} - -.nav { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:hover, .nav-link:focus { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 0.25rem; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; -} - -.nav-fill .nav-item { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center; -} - -.nav-justified .nav-item { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 0.5rem 1rem; -} -.navbar > .container, -.navbar > .container-fluid { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; -} -.navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; -} -.navbar-toggler:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 576px) { - .navbar-expand-sm { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, - .navbar-expand-sm > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } - .navbar-expand-sm .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 767.98px) { - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 768px) { - .navbar-expand-md { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, - .navbar-expand-md > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } - .navbar-expand-md .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 992px) { - .navbar-expand-lg { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, - .navbar-expand-lg > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } - .navbar-expand-lg .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 1200px) { - .navbar-expand-xl { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, - .navbar-expand-xl > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } - .navbar-expand-xl .dropup .dropdown-menu { - top: auto; - bottom: 100%; - } -} -.navbar-expand { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .dropdown-menu-right { - right: 0; - left: auto; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} -.navbar-expand .dropup .dropdown-menu { - top: auto; - bottom: 100%; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); -} -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-text a { - color: #fff; -} -.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group:first-child .list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.card > .list-group:last-child .list-group-item:last-child { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.card-body { - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} -.card-header + .list-group .list-group-item:first-child { - border-top: 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; -} - -.card-img { - width: 100%; - border-radius: calc(0.25rem - 1px); -} - -.card-img-top { - width: 100%; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img-bottom { - width: 100%; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-deck { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.card-deck .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-deck { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} -.card-group > .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-group { - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - } - .card-group > .card { - -webkit-box-flex: 1; - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:first-child .card-img-top, - .card-group > .card:first-child .card-header { - border-top-right-radius: 0; - } - .card-group > .card:first-child .card-img-bottom, - .card-group > .card:first-child .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:last-child .card-img-top, - .card-group > .card:last-child .card-header { - border-top-left-radius: 0; - } - .card-group > .card:last-child .card-img-bottom, - .card-group > .card:last-child .card-footer { - border-bottom-left-radius: 0; - } - .card-group > .card:only-child { - border-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-top, - .card-group > .card:only-child .card-header { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; - } - .card-group > .card:only-child .card-img-bottom, - .card-group > .card:only-child .card-footer { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { - border-radius: 0; - } - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, - .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { - border-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} -@media (min-width: 576px) { - .card-columns { - -webkit-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - column-gap: 1.25rem; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.breadcrumb { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - padding-left: 0.5rem; - color: #6c757d; - content: "/"; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; -} -.page-link:hover { - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; -} -.page-link:focus { - z-index: 2; - outline: 0; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.page-link:not(:disabled):not(.disabled) { - cursor: pointer; -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} -.page-item.active .page-link { - z-index: 1; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; -} -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; -} -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; -} -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #007bff; -} -.badge-primary[href]:hover, .badge-primary[href]:focus { - color: #fff; - text-decoration: none; - background-color: #0062cc; -} - -.badge-secondary { - color: #fff; - background-color: #6c757d; -} -.badge-secondary[href]:hover, .badge-secondary[href]:focus { - color: #fff; - text-decoration: none; - background-color: #545b62; -} - -.badge-success { - color: #fff; - background-color: #28a745; -} -.badge-success[href]:hover, .badge-success[href]:focus { - color: #fff; - text-decoration: none; - background-color: #1e7e34; -} - -.badge-info { - color: #fff; - background-color: #17a2b8; -} -.badge-info[href]:hover, .badge-info[href]:focus { - color: #fff; - text-decoration: none; - background-color: #117a8b; -} - -.badge-warning { - color: #212529; - background-color: #ffc107; -} -.badge-warning[href]:hover, .badge-warning[href]:focus { - color: #212529; - text-decoration: none; - background-color: #d39e00; -} - -.badge-danger { - color: #fff; - background-color: #dc3545; -} -.badge-danger[href]:hover, .badge-danger[href]:focus { - color: #fff; - text-decoration: none; - background-color: #bd2130; -} - -.badge-light { - color: #212529; - background-color: #f8f9fa; -} -.badge-light[href]:hover, .badge-light[href]:focus { - color: #212529; - text-decoration: none; - background-color: #dae0e5; -} - -.badge-dark { - color: #fff; - background-color: #343a40; -} -.badge-dark[href]:hover, .badge-dark[href]:focus { - color: #fff; - text-decoration: none; - background-color: #1d2124; -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; -} -@media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 4rem; -} -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; -} -.alert-primary hr { - border-top-color: #9fcdff; -} -.alert-primary .alert-link { - color: #002752; -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; -} -.alert-secondary hr { - border-top-color: #c8cbcf; -} -.alert-secondary .alert-link { - color: #202326; -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; -} -.alert-success hr { - border-top-color: #b1dfbb; -} -.alert-success .alert-link { - color: #0b2e13; -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; -} -.alert-info hr { - border-top-color: #abdde5; -} -.alert-info .alert-link { - color: #062c33; -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; -} -.alert-warning hr { - border-top-color: #ffe8a1; -} -.alert-warning .alert-link { - color: #533f03; -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; -} -.alert-danger hr { - border-top-color: #f1b0b7; -} -.alert-danger .alert-link { - color: #491217; -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; -} -.alert-light hr { - border-top-color: #ececf6; -} -.alert-light .alert-link { - color: #686868; -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; -} -.alert-dark hr { - border-top-color: #b9bbbe; -} -.alert-dark .alert-link { - color: #040505; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} -.progress { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - color: #fff; - text-align: center; - background-color: #007bff; - -webkit-transition: width 0.6s ease; - transition: width 0.6s ease; -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite; -} - -.media { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; -} - -.media-body { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.list-group { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:hover, .list-group-item-action:focus { - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - margin-bottom: -1px; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.list-group-item:hover, .list-group-item:focus { - z-index: 1; - text-decoration: none; -} -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} - -.list-group-flush .list-group-item { - border-right: 0; - border-left: 0; - border-radius: 0; -} -.list-group-flush:first-child .list-group-item:first-child { - border-top: 0; -} -.list-group-flush:last-child .list-group-item:last-child { - border-bottom: 0; -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; -} -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; -} -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; -} -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; -} -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; -} -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; -} -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; -} -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; -} -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5; -} -.close:hover, .close:focus { - color: #000; - text-decoration: none; - opacity: .75; -} -.close:not(:disabled):not(.disabled) { - cursor: pointer; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; - -webkit-appearance: none; -} - -.modal-open { - overflow: hidden; -} - -.modal { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - display: none; - overflow: hidden; - outline: 0; -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - -webkit-transition: -webkit-transform 0.3s ease-out; - transition: -webkit-transform 0.3s ease-out; - transition: transform 0.3s ease-out; - transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; - -webkit-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.show .modal-dialog { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); -} - -.modal-dialog-centered { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - (0.5rem * 2)); -} - -.modal-content { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem; - border-bottom: 1px solid #e9ecef; - border-top-left-radius: 0.3rem; - border-top-right-radius: 0.3rem; -} -.modal-header .close { - padding: 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 1rem; - border-top: 1px solid #e9ecef; -} -.modal-footer > :not(:first-child) { - margin-left: .25rem; -} -.modal-footer > :not(:last-child) { - margin-right: .25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - - .modal-dialog-centered { - min-height: calc(100% - (1.75rem * 2)); - } - - .modal-sm { - max-width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - max-width: 800px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { - padding: 0.4rem 0; -} -.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { - bottom: 0; -} -.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { - padding: 0 0.4rem; -} -.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { - padding: 0.4rem 0; -} -.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { - top: 0; -} -.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { - padding: 0 0.4rem; -} -.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; -} -.popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, .bs-popover-auto[x-placement^="top"] { - margin-bottom: 0.5rem; -} -.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { - bottom: calc((0.5rem + 1px) * -1); -} -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, -.bs-popover-top .arrow::after, -.bs-popover-auto[x-placement^="top"] .arrow::after { - border-width: 0.5rem 0.5rem 0; -} -.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { - bottom: 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { - bottom: 1px; - border-top-color: #fff; -} - -.bs-popover-right, .bs-popover-auto[x-placement^="right"] { - margin-left: 0.5rem; -} -.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { - left: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, -.bs-popover-right .arrow::after, -.bs-popover-auto[x-placement^="right"] .arrow::after { - border-width: 0.5rem 0.5rem 0.5rem 0; -} -.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { - left: 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { - left: 1px; - border-right-color: #fff; -} - -.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { - margin-top: 0.5rem; -} -.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { - top: calc((0.5rem + 1px) * -1); -} -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, -.bs-popover-bottom .arrow::after, -.bs-popover-auto[x-placement^="bottom"] .arrow::after { - border-width: 0 0.5rem 0.5rem 0.5rem; -} -.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { - top: 0; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { - top: 1px; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, .bs-popover-auto[x-placement^="left"] { - margin-right: 0.5rem; -} -.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { - right: calc((0.5rem + 1px) * -1); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, -.bs-popover-left .arrow::after, -.bs-popover-auto[x-placement^="left"] .arrow::after { - border-width: 0.5rem 0 0.5rem 0.5rem; -} -.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { - right: 0; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { - right: 1px; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - color: inherit; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} - -.carousel-item { - position: relative; - display: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 100%; - -webkit-transition: -webkit-transform 0.6s ease; - transition: -webkit-transform 0.6s ease; - transition: transform 0.6s ease; - transition: transform 0.6s ease, -webkit-transform 0.6s ease; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next, -.carousel-item-prev { - position: absolute; - top: 0; -} - -.carousel-item-next.carousel-item-left, -.carousel-item-prev.carousel-item-right { - -webkit-transform: translateX(0); - transform: translateX(0); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-next.carousel-item-left, - .carousel-item-prev.carousel-item-right { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.carousel-item-next, -.active.carousel-item-right { - -webkit-transform: translateX(100%); - transform: translateX(100%); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-next, - .active.carousel-item-right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -.carousel-item-prev, -.active.carousel-item-left { - -webkit-transform: translateX(-100%); - transform: translateX(-100%); -} -@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { - .carousel-item-prev, - .active.carousel-item-left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; -} -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: transparent no-repeat center center; - background-size: 100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 10px; - left: 0; - z-index: 15; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} -.carousel-indicators li { - position: relative; - -webkit-box-flex: 0; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - background-color: rgba(255, 255, 255, 0.5); -} -.carousel-indicators li::before { - position: absolute; - top: -10px; - left: 0; - display: inline-block; - width: 100%; - height: 10px; - content: ""; -} -.carousel-indicators li::after { - position: absolute; - bottom: -10px; - left: 0; - display: inline-block; - width: 100%; - height: 10px; - content: ""; -} -.carousel-indicators .active { - 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; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - background-color: #007bff !important; -} - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; -} - -.bg-secondary { - background-color: #6c757d !important; -} - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; -} - -.bg-success { - background-color: #28a745 !important; -} - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; -} - -.bg-info { - background-color: #17a2b8 !important; -} - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; -} - -.bg-warning { - background-color: #ffc107 !important; -} - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; -} - -.bg-danger { - background-color: #dc3545 !important; -} - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; -} - -.bg-light { - background-color: #f8f9fa !important; -} - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; -} - -.bg-dark { - background-color: #343a40 !important; -} - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-right { - border-right: 1px solid #dee2e6 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-left { - border-left: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #007bff !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #28a745 !important; -} - -.border-info { - border-color: #17a2b8 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #343a40 !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; -} - -.d-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - - .d-sm-inline { - display: inline !important; - } - - .d-sm-inline-block { - display: inline-block !important; - } - - .d-sm-block { - display: block !important; - } - - .d-sm-table { - display: table !important; - } - - .d-sm-table-row { - display: table-row !important; - } - - .d-sm-table-cell { - display: table-cell !important; - } - - .d-sm-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-sm-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - - .d-md-inline { - display: inline !important; - } - - .d-md-inline-block { - display: inline-block !important; - } - - .d-md-block { - display: block !important; - } - - .d-md-table { - display: table !important; - } - - .d-md-table-row { - display: table-row !important; - } - - .d-md-table-cell { - display: table-cell !important; - } - - .d-md-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-md-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - - .d-lg-inline { - display: inline !important; - } - - .d-lg-inline-block { - display: inline-block !important; - } - - .d-lg-block { - display: block !important; - } - - .d-lg-table { - display: table !important; - } - - .d-lg-table-row { - display: table-row !important; - } - - .d-lg-table-cell { - display: table-cell !important; - } - - .d-lg-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-lg-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - - .d-xl-inline { - display: inline !important; - } - - .d-xl-inline-block { - display: inline-block !important; - } - - .d-xl-block { - display: block !important; - } - - .d-xl-table { - display: table !important; - } - - .d-xl-table-row { - display: table-row !important; - } - - .d-xl-table-cell { - display: table-cell !important; - } - - .d-xl-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-xl-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -@media print { - .d-print-none { - display: none !important; - } - - .d-print-inline { - display: inline !important; - } - - .d-print-inline-block { - display: inline-block !important; - } - - .d-print-block { - display: block !important; - } - - .d-print-table { - display: table !important; - } - - .d-print-table-row { - display: table-row !important; - } - - .d-print-table-cell { - display: table-cell !important; - } - - .d-print-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } - - .d-print-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive::before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.8571428571%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.flex-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.flex-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.justify-content-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.justify-content-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.justify-content-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.justify-content-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.align-items-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.align-items-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.align-items-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; -} - -.align-items-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.align-items-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-sm-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-sm-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-sm-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-sm-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-sm-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-sm-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-sm-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-sm-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-sm-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-sm-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-sm-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-sm-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 768px) { - .flex-md-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-md-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-md-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-md-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-md-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-md-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-md-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-md-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-md-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-md-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-md-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-md-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-md-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 992px) { - .flex-lg-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-lg-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-lg-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-lg-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-lg-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-lg-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-lg-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-lg-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-lg-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-lg-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-lg-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-lg-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-lg-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -@media (min-width: 1200px) { - .flex-xl-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; - } - - .flex-xl-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; - } - - .flex-xl-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; - } - - .flex-xl-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; - } - - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; - } - - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; - } - - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; - } - - .justify-content-xl-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; - } - - .justify-content-xl-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; - } - - .justify-content-xl-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; - } - - .justify-content-xl-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; - } - - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; - } - - .align-items-xl-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; - } - - .align-items-xl-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; - } - - .align-items-xl-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; - } - - .align-items-xl-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; - } - - .align-items-xl-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; - } - - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; - } - - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; - } - - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important; - } - - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; - } - - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; - } - - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; - } - - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; - } - - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; - } - - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; - } - - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important; - } - - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; - } - - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; - } -} -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - - .float-sm-right { - float: right !important; - } - - .float-sm-none { - float: none !important; - } -} -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - - .float-md-right { - float: right !important; - } - - .float-md-none { - float: none !important; - } -} -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - - .float-lg-right { - float: right !important; - } - - .float-lg-none { - float: none !important; - } -} -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - - .float-xl-right { - float: right !important; - } - - .float-xl-none { - float: none !important; - } -} -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important; -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports ((position: -webkit-sticky) or (position: sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; - -webkit-clip-path: none; - clip-path: none; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important; - } - - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important; - } - - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important; - } - - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important; - } - - .m-sm-1 { - margin: 0.25rem !important; - } - - .mt-sm-1, - .my-sm-1 { - margin-top: 0.25rem !important; - } - - .mr-sm-1, - .mx-sm-1 { - margin-right: 0.25rem !important; - } - - .mb-sm-1, - .my-sm-1 { - margin-bottom: 0.25rem !important; - } - - .ml-sm-1, - .mx-sm-1 { - margin-left: 0.25rem !important; - } - - .m-sm-2 { - margin: 0.5rem !important; - } - - .mt-sm-2, - .my-sm-2 { - margin-top: 0.5rem !important; - } - - .mr-sm-2, - .mx-sm-2 { - margin-right: 0.5rem !important; - } - - .mb-sm-2, - .my-sm-2 { - margin-bottom: 0.5rem !important; - } - - .ml-sm-2, - .mx-sm-2 { - margin-left: 0.5rem !important; - } - - .m-sm-3 { - margin: 1rem !important; - } - - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important; - } - - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important; - } - - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important; - } - - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important; - } - - .m-sm-4 { - margin: 1.5rem !important; - } - - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important; - } - - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important; - } - - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important; - } - - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important; - } - - .m-sm-5 { - margin: 3rem !important; - } - - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important; - } - - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important; - } - - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important; - } - - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important; - } - - .p-sm-0 { - padding: 0 !important; - } - - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important; - } - - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important; - } - - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important; - } - - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important; - } - - .p-sm-1 { - padding: 0.25rem !important; - } - - .pt-sm-1, - .py-sm-1 { - padding-top: 0.25rem !important; - } - - .pr-sm-1, - .px-sm-1 { - padding-right: 0.25rem !important; - } - - .pb-sm-1, - .py-sm-1 { - padding-bottom: 0.25rem !important; - } - - .pl-sm-1, - .px-sm-1 { - padding-left: 0.25rem !important; - } - - .p-sm-2 { - padding: 0.5rem !important; - } - - .pt-sm-2, - .py-sm-2 { - padding-top: 0.5rem !important; - } - - .pr-sm-2, - .px-sm-2 { - padding-right: 0.5rem !important; - } - - .pb-sm-2, - .py-sm-2 { - padding-bottom: 0.5rem !important; - } - - .pl-sm-2, - .px-sm-2 { - padding-left: 0.5rem !important; - } - - .p-sm-3 { - padding: 1rem !important; - } - - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important; - } - - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important; - } - - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important; - } - - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important; - } - - .p-sm-4 { - padding: 1.5rem !important; - } - - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important; - } - - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important; - } - - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important; - } - - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important; - } - - .p-sm-5 { - padding: 3rem !important; - } - - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important; - } - - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important; - } - - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important; - } - - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important; - } - - .m-sm-auto { - margin: auto !important; - } - - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important; - } - - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important; - } - - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important; - } - - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important; - } -} -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - - .mt-md-0, - .my-md-0 { - margin-top: 0 !important; - } - - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important; - } - - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important; - } - - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important; - } - - .m-md-1 { - margin: 0.25rem !important; - } - - .mt-md-1, - .my-md-1 { - margin-top: 0.25rem !important; - } - - .mr-md-1, - .mx-md-1 { - margin-right: 0.25rem !important; - } - - .mb-md-1, - .my-md-1 { - margin-bottom: 0.25rem !important; - } - - .ml-md-1, - .mx-md-1 { - margin-left: 0.25rem !important; - } - - .m-md-2 { - margin: 0.5rem !important; - } - - .mt-md-2, - .my-md-2 { - margin-top: 0.5rem !important; - } - - .mr-md-2, - .mx-md-2 { - margin-right: 0.5rem !important; - } - - .mb-md-2, - .my-md-2 { - margin-bottom: 0.5rem !important; - } - - .ml-md-2, - .mx-md-2 { - margin-left: 0.5rem !important; - } - - .m-md-3 { - margin: 1rem !important; - } - - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important; - } - - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important; - } - - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important; - } - - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important; - } - - .m-md-4 { - margin: 1.5rem !important; - } - - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important; - } - - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important; - } - - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important; - } - - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important; - } - - .m-md-5 { - margin: 3rem !important; - } - - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important; - } - - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important; - } - - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important; - } - - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important; - } - - .p-md-0 { - padding: 0 !important; - } - - .pt-md-0, - .py-md-0 { - padding-top: 0 !important; - } - - .pr-md-0, - .px-md-0 { - padding-right: 0 !important; - } - - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important; - } - - .pl-md-0, - .px-md-0 { - padding-left: 0 !important; - } - - .p-md-1 { - padding: 0.25rem !important; - } - - .pt-md-1, - .py-md-1 { - padding-top: 0.25rem !important; - } - - .pr-md-1, - .px-md-1 { - padding-right: 0.25rem !important; - } - - .pb-md-1, - .py-md-1 { - padding-bottom: 0.25rem !important; - } - - .pl-md-1, - .px-md-1 { - padding-left: 0.25rem !important; - } - - .p-md-2 { - padding: 0.5rem !important; - } - - .pt-md-2, - .py-md-2 { - padding-top: 0.5rem !important; - } - - .pr-md-2, - .px-md-2 { - padding-right: 0.5rem !important; - } - - .pb-md-2, - .py-md-2 { - padding-bottom: 0.5rem !important; - } - - .pl-md-2, - .px-md-2 { - padding-left: 0.5rem !important; - } - - .p-md-3 { - padding: 1rem !important; - } - - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important; - } - - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important; - } - - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important; - } - - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important; - } - - .p-md-4 { - padding: 1.5rem !important; - } - - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important; - } - - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important; - } - - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important; - } - - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important; - } - - .p-md-5 { - padding: 3rem !important; - } - - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important; - } - - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important; - } - - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important; - } - - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important; - } - - .m-md-auto { - margin: auto !important; - } - - .mt-md-auto, - .my-md-auto { - margin-top: auto !important; - } - - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important; - } - - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important; - } - - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important; - } -} -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important; - } - - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important; - } - - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important; - } - - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important; - } - - .m-lg-1 { - margin: 0.25rem !important; - } - - .mt-lg-1, - .my-lg-1 { - margin-top: 0.25rem !important; - } - - .mr-lg-1, - .mx-lg-1 { - margin-right: 0.25rem !important; - } - - .mb-lg-1, - .my-lg-1 { - margin-bottom: 0.25rem !important; - } - - .ml-lg-1, - .mx-lg-1 { - margin-left: 0.25rem !important; - } - - .m-lg-2 { - margin: 0.5rem !important; - } - - .mt-lg-2, - .my-lg-2 { - margin-top: 0.5rem !important; - } - - .mr-lg-2, - .mx-lg-2 { - margin-right: 0.5rem !important; - } - - .mb-lg-2, - .my-lg-2 { - margin-bottom: 0.5rem !important; - } - - .ml-lg-2, - .mx-lg-2 { - margin-left: 0.5rem !important; - } - - .m-lg-3 { - margin: 1rem !important; - } - - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important; - } - - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important; - } - - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important; - } - - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important; - } - - .m-lg-4 { - margin: 1.5rem !important; - } - - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important; - } - - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important; - } - - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important; - } - - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important; - } - - .m-lg-5 { - margin: 3rem !important; - } - - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important; - } - - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important; - } - - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important; - } - - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important; - } - - .p-lg-0 { - padding: 0 !important; - } - - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important; - } - - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important; - } - - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important; - } - - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important; - } - - .p-lg-1 { - padding: 0.25rem !important; - } - - .pt-lg-1, - .py-lg-1 { - padding-top: 0.25rem !important; - } - - .pr-lg-1, - .px-lg-1 { - padding-right: 0.25rem !important; - } - - .pb-lg-1, - .py-lg-1 { - padding-bottom: 0.25rem !important; - } - - .pl-lg-1, - .px-lg-1 { - padding-left: 0.25rem !important; - } - - .p-lg-2 { - padding: 0.5rem !important; - } - - .pt-lg-2, - .py-lg-2 { - padding-top: 0.5rem !important; - } - - .pr-lg-2, - .px-lg-2 { - padding-right: 0.5rem !important; - } - - .pb-lg-2, - .py-lg-2 { - padding-bottom: 0.5rem !important; - } - - .pl-lg-2, - .px-lg-2 { - padding-left: 0.5rem !important; - } - - .p-lg-3 { - padding: 1rem !important; - } - - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important; - } - - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important; - } - - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important; - } - - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important; - } - - .p-lg-4 { - padding: 1.5rem !important; - } - - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important; - } - - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important; - } - - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important; - } - - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important; - } - - .p-lg-5 { - padding: 3rem !important; - } - - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important; - } - - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important; - } - - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important; - } - - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important; - } - - .m-lg-auto { - margin: auto !important; - } - - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important; - } - - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important; - } - - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important; - } - - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important; - } -} -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important; - } - - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important; - } - - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important; - } - - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important; - } - - .m-xl-1 { - margin: 0.25rem !important; - } - - .mt-xl-1, - .my-xl-1 { - margin-top: 0.25rem !important; - } - - .mr-xl-1, - .mx-xl-1 { - margin-right: 0.25rem !important; - } - - .mb-xl-1, - .my-xl-1 { - margin-bottom: 0.25rem !important; - } - - .ml-xl-1, - .mx-xl-1 { - margin-left: 0.25rem !important; - } - - .m-xl-2 { - margin: 0.5rem !important; - } - - .mt-xl-2, - .my-xl-2 { - margin-top: 0.5rem !important; - } - - .mr-xl-2, - .mx-xl-2 { - margin-right: 0.5rem !important; - } - - .mb-xl-2, - .my-xl-2 { - margin-bottom: 0.5rem !important; - } - - .ml-xl-2, - .mx-xl-2 { - margin-left: 0.5rem !important; - } - - .m-xl-3 { - margin: 1rem !important; - } - - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important; - } - - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important; - } - - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important; - } - - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important; - } - - .m-xl-4 { - margin: 1.5rem !important; - } - - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important; - } - - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important; - } - - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important; - } - - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important; - } - - .m-xl-5 { - margin: 3rem !important; - } - - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important; - } - - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important; - } - - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important; - } - - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important; - } - - .p-xl-0 { - padding: 0 !important; - } - - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important; - } - - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important; - } - - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important; - } - - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important; - } - - .p-xl-1 { - padding: 0.25rem !important; - } - - .pt-xl-1, - .py-xl-1 { - padding-top: 0.25rem !important; - } - - .pr-xl-1, - .px-xl-1 { - padding-right: 0.25rem !important; - } - - .pb-xl-1, - .py-xl-1 { - padding-bottom: 0.25rem !important; - } - - .pl-xl-1, - .px-xl-1 { - padding-left: 0.25rem !important; - } - - .p-xl-2 { - padding: 0.5rem !important; - } - - .pt-xl-2, - .py-xl-2 { - padding-top: 0.5rem !important; - } - - .pr-xl-2, - .px-xl-2 { - padding-right: 0.5rem !important; - } - - .pb-xl-2, - .py-xl-2 { - padding-bottom: 0.5rem !important; - } - - .pl-xl-2, - .px-xl-2 { - padding-left: 0.5rem !important; - } - - .p-xl-3 { - padding: 1rem !important; - } - - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important; - } - - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important; - } - - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important; - } - - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important; - } - - .p-xl-4 { - padding: 1.5rem !important; - } - - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important; - } - - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important; - } - - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important; - } - - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important; - } - - .p-xl-5 { - padding: 3rem !important; - } - - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important; - } - - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important; - } - - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important; - } - - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important; - } - - .m-xl-auto { - margin: auto !important; - } - - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important; - } - - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important; - } - - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important; - } - - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important; - } -} -.text-justify { - text-align: justify !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - - .text-sm-right { - text-align: right !important; - } - - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - - .text-md-right { - text-align: right !important; - } - - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - - .text-lg-right { - text-align: right !important; - } - - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - - .text-xl-right { - text-align: right !important; - } - - .text-xl-center { - text-align: center !important; - } -} -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #007bff !important; -} - -a.text-primary:hover, a.text-primary:focus { - color: #0062cc !important; -} - -.text-secondary { - color: #6c757d !important; -} - -a.text-secondary:hover, a.text-secondary:focus { - color: #545b62 !important; -} - -.text-success { - color: #28a745 !important; -} - -a.text-success:hover, a.text-success:focus { - color: #1e7e34 !important; -} - -.text-info { - color: #17a2b8 !important; -} - -a.text-info:hover, a.text-info:focus { - color: #117a8b !important; -} - -.text-warning { - color: #ffc107 !important; -} - -a.text-warning:hover, a.text-warning:focus { - color: #d39e00 !important; -} - -.text-danger { - color: #dc3545 !important; -} - -a.text-danger:hover, a.text-danger:focus { - color: #bd2130 !important; -} - -.text-light { - color: #f8f9fa !important; -} - -a.text-light:hover, a.text-light:focus { - color: #dae0e5 !important; -} - -.text-dark { - color: #343a40 !important; -} - -a.text-dark:hover, a.text-dark:focus { - color: #1d2124 !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, - *::before, - *::after { - text-shadow: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - } - - a:not(.btn) { - text-decoration: underline; - } - - abbr[title]::after { - content: " (" attr(title) ")"; - } - - pre { - white-space: pre-wrap !important; - } - - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, - img { - page-break-inside: avoid; - } - - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - @page { - size: a3; - } - body { - min-width: 992px !important; - } - - .container { - min-width: 992px !important; - } - - .navbar { - display: none; - } - - .badge { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -/*Github syntax highlighting theme via Rouge*/ -.highlight table td { - padding: 5px; -} - -.highlight table pre { - margin: 0; -} - -.highlight .cm { - color: #999988; - font-style: italic; -} - -.highlight .cp { - color: #999999; - font-weight: bold; -} - -.highlight .c1 { - color: #999988; - font-style: italic; -} - -.highlight .cs { - color: #999999; - font-weight: bold; - font-style: italic; -} - -.highlight .c, .highlight .cd { - color: #999988; - font-style: italic; -} - -.highlight .err { - color: #a61717; - background-color: #e3d2d2; -} - -.highlight .gd { - color: #000000; - background-color: #ffdddd; -} - -.highlight .ge { - color: #000000; - font-style: italic; -} - -.highlight .gr { - color: #aa0000; -} - -.highlight .gh { - color: #999999; -} - -.highlight .gi { - color: #000000; - background-color: #ddffdd; -} - -.highlight .go { - color: #888888; -} - -.highlight .gp { - color: #555555; -} - -.highlight .gs { - font-weight: bold; -} - -.highlight .gu { - color: #aaaaaa; -} - -.highlight .gt { - color: #aa0000; -} - -.highlight .kc { - color: #000000; - font-weight: bold; -} - -.highlight .kd { - color: #000000; - font-weight: bold; -} - -.highlight .kn { - color: #000000; - font-weight: bold; -} - -.highlight .kp { - color: #000000; - font-weight: bold; -} - -.highlight .kr { - color: #000000; - font-weight: bold; -} - -.highlight .kt { - color: #445588; - font-weight: bold; -} - -.highlight .k, .highlight .kv { - color: #000000; - font-weight: bold; -} - -.highlight .mf { - color: #009999; -} - -.highlight .mh { - color: #009999; -} - -.highlight .il { - color: #009999; -} - -.highlight .mi { - color: #009999; -} - -.highlight .mo { - color: #009999; -} - -.highlight .m, .highlight .mb, .highlight .mx { - color: #009999; -} - -.highlight .sb { - color: #d14; -} - -.highlight .sc { - color: #d14; -} - -.highlight .sd { - color: #d14; -} - -.highlight .s2 { - color: #d14; -} - -.highlight .se { - color: #d14; -} - -.highlight .sh { - color: #d14; -} - -.highlight .si { - color: #d14; -} - -.highlight .sx { - color: #d14; -} - -.highlight .sr { - color: #009926; -} - -.highlight .s1 { - color: #d14; -} - -.highlight .ss { - color: #990073; -} - -.highlight .s { - color: #d14; -} - -.highlight .na { - color: #008080; -} - -.highlight .bp { - color: #999999; -} - -.highlight .nb { - color: #0086B3; -} - -.highlight .nc { - color: #445588; - font-weight: bold; -} - -.highlight .no { - color: #008080; -} - -.highlight .nd { - color: #3c5d5d; - font-weight: bold; -} - -.highlight .ni { - color: #800080; -} - -.highlight .ne { - color: #990000; - font-weight: bold; -} - -.highlight .nf { - color: #990000; - font-weight: bold; -} - -.highlight .nl { - color: #990000; - font-weight: bold; -} - -.highlight .nn { - color: #555555; -} - -.highlight .nt { - color: #000080; -} - -.highlight .vc { - color: #008080; -} - -.highlight .vg { - color: #008080; -} - -.highlight .vi { - color: #008080; -} - -.highlight .nv { - color: #008080; -} - -.highlight .ow { - color: #000000; - font-weight: bold; -} - -.highlight .o { - color: #000000; - font-weight: bold; -} - -.highlight .w { - color: #bbbbbb; -} - -@font-face { - font-family: FreightSans; - font-weight: 700; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-bold.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-bold.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 700; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-bold-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-bold-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 500; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-medium.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-medium.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 500; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-medium-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-medium-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 100; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-light.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-light.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 100; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-light-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-light-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 400; - font-style: italic; - src: url("../fonts/FreightSans/freight-sans-book-italic.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-book-italic.woff") format("woff"); -} -@font-face { - font-family: FreightSans; - font-weight: 400; - font-style: normal; - src: url("../fonts/FreightSans/freight-sans-book.woff2") format("woff2"), url("../fonts/FreightSans/freight-sans-book.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 600; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-SemiBold"), url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 500; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Medium"), url("../fonts/IBMPlexMono/IBMPlexMono-Medium.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Medium.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 400; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Regular"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Regular.woff") format("woff"); -} -@font-face { - font-family: IBMPlexMono; - font-weight: 300; - font-style: normal; - unicode-range: u+0020-007f; - src: local("IBMPlexMono-Light"), url("../fonts/IBMPlexMono/IBMPlexMono-Light.woff2") format("woff2"), url("../fonts/IBMPlexMono/IBMPlexMono-Light.woff") format("woff"); -} -html { - position: relative; - min-height: 100%; - font-size: 12px; -} -@media screen and (min-width: 768px) { - html { - font-size: 16px; - } -} - -* { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -body { - font-family: FreightSans, Helvetica Neue, Helvetica, Arial, sans-serif; -} - -a:link, -a:visited, -a:hover { - text-decoration: none; - color: #e44c2c; -} - -a.with-right-arrow, .btn.with-right-arrow { - padding-right: 1.375rem; - position: relative; - background-image: url("../images/chevron-right-orange.svg"); - background-size: 6px 13px; - background-position: center right 5px; - background-repeat: no-repeat; -} -@media screen and (min-width: 768px) { - a.with-right-arrow, .btn.with-right-arrow { - background-size: 8px 14px; - background-position: center right 12px; - padding-right: 2rem; - } -} - -::-webkit-input-placeholder { - color: #e44c2c; -} - -::-moz-placeholder { - color: #e44c2c; -} - -:-ms-input-placeholder { - color: #e44c2c; -} - -:-moz-placeholder { - color: #e44c2c; -} - -.email-subscribe-form input.email { - color: #e44c2c; - border: none; - border-bottom: 1px solid #939393; - width: 100%; - background-color: transparent; - outline: none; - font-size: 1.125rem; - letter-spacing: 0.25px; - line-height: 2.25rem; -} -.email-subscribe-form input[type="submit"] { - position: absolute; - right: 0; - top: 10px; - height: 15px; - width: 15px; - background-image: url("../images/arrow-right-with-tail.svg"); - background-color: transparent; - background-repeat: no-repeat; - background-size: 15px 15px; - background-position: center center; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: 0; -} - -.email-subscribe-form-fields-wrapper { - position: relative; -} - -.anchorjs-link { - color: #6c6c6d !important; -} -@media screen and (min-width: 768px) { - .anchorjs-link:hover { - color: inherit; - text-decoration: none !important; - } -} - -.pytorch-article #table-of-contents { - display: none; -} - -code, kbd, pre, samp { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} -code span, kbd span, pre span, samp span { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; -} - -pre { - padding: 1.125rem; - background-color: #f3f4f7; -} -pre code { - font-size: 0.875rem; -} -pre.highlight { - background-color: #f3f4f7; - line-height: 1.3125rem; -} - -code.highlighter-rouge { - color: #6c6c6d; - background-color: #f3f4f7; - padding: 2px 6px; -} - -a:link code.highlighter-rouge, -a:visited code.highlighter-rouge, -a:hover code.highlighter-rouge { - color: #4974D1; -} -a:link.has-code, -a:visited.has-code, -a:hover.has-code { - color: #4974D1; -} - -p code, -h1 code, -h2 code, -h3 code, -h4 code, -h5 code, -h6 code { - font-size: 78.5%; -} - -pre { - white-space: pre-wrap; - white-space: -moz-pre-wrap; - white-space: -pre-wrap; - white-space: -o-pre-wrap; - word-wrap: break-word; -} - -.header-holder { - height: 68px; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - left: 0; - margin-left: auto; - margin-right: auto; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 9999; - background-color: #ffffff; - border-bottom: 1px solid #e2e2e2; -} -@media screen and (min-width: 1100px) { - .header-holder { - height: 90px; - } -} - -.header-container { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.header-container:before, .header-container:after { - content: ""; - display: table; -} -.header-container:after { - clear: both; -} -.header-container { - *zoom: 1; -} -@media screen and (min-width: 1100px) { - .header-container { - display: block; - } -} - -.header-logo { - height: 23px; - width: 93px; - background-repeat: no-repeat; - background-size: 93px 23px; - display: block; - float: left; - z-index: 10; - margin-left: 2.5rem; - margin-top: -1rem; -} -@media screen and (min-width: 1100px) { - .header-logo { - background-size: 155px 50px; - position: absolute; - height: 50px; - width: 155px; - top: 4px; - float: none; - } -} - -.main-menu-open-button { - background-image: url("../images/icon-menu-dots.svg"); - background-position: center center; - background-size: 25px 7px; - background-repeat: no-repeat; - width: 25px; - height: 17px; - position: absolute; - right: 0; - top: 4px; -} -@media screen and (min-width: 1100px) { - .main-menu-open-button { - display: none; - } -} - -.header-holder .main-menu { - display: none; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} -.header-holder .main-menu ul { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; -} -.header-holder .main-menu ul li { - display: inline-block; - margin-right: 40px; - position: relative; -} -.header-holder .main-menu ul li.active:after { - color: #e44c2c; -} -.header-holder .main-menu ul li.active a { - color: #e44c2c; -} -.header-holder .main-menu ul li:last-of-type { - margin-right: 0; -} -.header-holder .main-menu ul li a { - color: #ffffff; - font-size: 1.125rem; - letter-spacing: 0; - line-height: 2.125rem; - text-align: center; - text-decoration: none; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu ul li a:hover { - color: #e44c2c; - } -} - -.mobile-main-menu { - display: none; -} -.mobile-main-menu.open { - background-color: #262626; - display: block; - height: 100%; - left: 0; - margin-left: auto; - margin-right: auto; - min-height: 100%; - position: fixed; - right: 0; - top: 0; - width: 100%; - z-index: 99999; -} - -.mobile-main-menu .container-fluid { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 68px; - position: relative; -} -.mobile-main-menu .container-fluid:before, .mobile-main-menu .container-fluid:after { - content: ""; - display: table; -} -.mobile-main-menu .container-fluid:after { - clear: both; -} -.mobile-main-menu .container-fluid { - *zoom: 1; -} - -.mobile-main-menu.open ul { - list-style-type: none; - padding: 0; -} -.mobile-main-menu.open ul li a { - font-size: 2rem; - color: #ffffff; - letter-spacing: 0; - line-height: 4rem; - text-decoration: none; -} -.mobile-main-menu.open ul li.active a { - color: #e44c2c; -} - -.main-menu-close-button { - background-image: url("../images/icon-close.svg"); - background-position: center center; - background-repeat: no-repeat; - background-size: 24px 24px; - height: 24px; - position: absolute; - right: 0; - width: 24px; - top: -4px; -} - -.mobile-main-menu-header-container { - position: relative; -} - -.mobile-main-menu-links-container { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding-left: 2.8125rem; - height: 100%; - min-height: 100%; - margin-top: -68px; -} - -.site-footer { - padding: 2.5rem 0; - width: 100%; - background-image: url("../images/home-footer-background.jpg"); - background-size: 100%; - margin-left: 0; - margin-right: 0; - position: relative; - z-index: 201; -} -@media screen and (min-width: 768px) { - .site-footer { - padding: 5rem 0; - } -} -.site-footer p { - color: #ffffff; -} -.site-footer ul { - list-style-type: none; - padding-left: 0; - margin-bottom: 0; -} -.site-footer ul li { - font-size: 1.125rem; - line-height: 2rem; - color: #6c6c6d; - padding-bottom: 0.375rem; -} -.site-footer ul li.list-title { - padding-bottom: 0.75rem; - color: #ffffff; -} -.site-footer a:link, -.site-footer a:visited { - color: inherit; -} -@media screen and (min-width: 768px) { - .site-footer a:hover { - color: #e44c2c; - } -} - -.docs-tutorials-resources { - background-color: #262626; - color: #ffffff; - padding-top: 2.5rem; - padding-bottom: 2.5rem; - position: relative; - z-index: 201; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources { - padding-top: 5rem; - padding-bottom: 5rem; - } -} -.docs-tutorials-resources p { - color: #929292; - font-size: 1.125rem; -} -.docs-tutorials-resources h2 { - font-size: 1.5rem; - letter-spacing: -0.25px; - text-transform: none; - margin-bottom: 0.25rem; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources h2 { - margin-bottom: 1.25rem; - } -} -.docs-tutorials-resources .col-md-4 { - margin-bottom: 2rem; - text-align: center; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources .col-md-4 { - margin-bottom: 0; - } -} -.docs-tutorials-resources .with-right-arrow { - margin-left: 12px; -} -.docs-tutorials-resources .with-right-arrow:hover { - background-image: url("../images/chevron-right-white.svg"); -} -.docs-tutorials-resources p { - font-size: 1rem; - line-height: 1.5rem; - letter-spacing: 0.22px; - color: #939393; - margin-bottom: 0; -} -@media screen and (min-width: 768px) { - .docs-tutorials-resources p { - margin-bottom: 1.25rem; - } -} -.docs-tutorials-resources a { - font-size: 1.125rem; - color: #e44c2c; -} -.docs-tutorials-resources a:hover { - color: #ffffff; -} - -.footer-container { - position: relative; -} - -@media screen and (min-width: 768px) { - .footer-logo-wrapper { - position: absolute; - top: 0; - left: 30px; - } -} - -.footer-logo { - background-image: url("../images/logo-icon.svg"); - background-position: center; - background-repeat: no-repeat; - background-size: 20px 24px; - display: block; - height: 24px; - margin-bottom: 2.8125rem; - width: 20px; -} -@media screen and (min-width: 768px) { - .footer-logo { - background-size: 29px 36px; - height: 36px; - margin-bottom: 0; - margin-bottom: 0; - width: 29px; - } -} - -.footer-links-wrapper { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} -@media screen and (min-width: 768px) { - .footer-links-wrapper { - -ms-flex-wrap: initial; - flex-wrap: initial; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} - -.footer-links-col { - margin-bottom: 3.75rem; - width: 50%; -} -@media screen and (min-width: 768px) { - .footer-links-col { - margin-bottom: 0; - width: 14%; - margin-right: 23px; - } - .footer-links-col.follow-us-col { - width: 18%; - margin-right: 0; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .footer-links-col { - width: 18%; - margin-right: 30px; - } -} - -.footer-social-icons { - margin: 8.5625rem 0 2.5rem 0; -} -.footer-social-icons a { - height: 32px; - width: 32px; - display: inline-block; - background-color: #CCCDD1; - border-radius: 50%; - margin-right: 5px; -} -.footer-social-icons a.facebook { - background-image: url("../images/logo-facebook-dark.svg"); - background-position: center center; - background-size: 9px 18px; - background-repeat: no-repeat; -} -.footer-social-icons a.twitter { - background-image: url("../images/logo-twitter-dark.svg"); - background-position: center center; - background-size: 17px 17px; - background-repeat: no-repeat; -} - -.site-footer .mc-field-group { - margin-top: -2px; -} - -article.pytorch-article { - max-width: 920px; - margin: 0 auto; -} -article.pytorch-article h2, -article.pytorch-article h3, -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - margin: 1.375rem 0; - color: #262626; -} -article.pytorch-article h2 { - font-size: 1.625rem; - letter-spacing: 1.33px; - line-height: 2rem; - text-transform: none; -} -article.pytorch-article h3 { - font-size: 1.5rem; - letter-spacing: -0.25px; - line-height: 1.875rem; - text-transform: none; -} -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - font-size: 1.125rem; - letter-spacing: -0.19px; - line-height: 1.875rem; -} -article.pytorch-article p { - margin-bottom: 1.125rem; -} -article.pytorch-article p, -article.pytorch-article ul li, -article.pytorch-article ol li, -article.pytorch-article dl dt, -article.pytorch-article dl dd, -article.pytorch-article blockquote { - font-size: 1rem; - line-height: 1.375rem; - color: #262626; - letter-spacing: 0.01px; - font-weight: 500; -} -article.pytorch-article table { - margin-bottom: 2.5rem; - width: 100%; -} -article.pytorch-article table thead { - border-bottom: 1px solid #cacaca; -} -article.pytorch-article table th { - padding: 0.625rem; - color: #262626; -} -article.pytorch-article table td { - padding: 0.3125rem; -} -article.pytorch-article table tr th:first-of-type, -article.pytorch-article table tr td:first-of-type { - padding-left: 0; -} -article.pytorch-article table.docutils.field-list th.field-name { - padding: 0.3125rem; - padding-left: 0; -} -article.pytorch-article table.docutils.field-list td.field-body { - padding: 0.3125rem; -} -article.pytorch-article table.docutils.field-list td.field-body p:last-of-type { - margin-bottom: 0; -} -article.pytorch-article ul, -article.pytorch-article ol { - margin: 1.5rem 0 3.125rem 0; -} -@media screen and (min-width: 768px) { - article.pytorch-article ul, - article.pytorch-article ol { - padding-left: 6.25rem; - } -} -article.pytorch-article ul li, -article.pytorch-article ol li { - margin-bottom: 0.625rem; -} -article.pytorch-article dl { - margin-bottom: 1.5rem; -} -article.pytorch-article dl dt { - margin-bottom: 0.75rem; -} -article.pytorch-article pre { - margin-bottom: 2.5rem; -} -article.pytorch-article hr { - margin-top: 4.6875rem; - margin-bottom: 4.6875rem; -} -article.pytorch-article blockquote { - margin: 0 auto; - margin-bottom: 2.5rem; - width: 65%; -} -article.pytorch-article img { - width: 100%; -} - -html { - height: 100%; -} -@media screen and (min-width: 768px) { - html { - font-size: 16px; - } -} - -body { - background: #ffffff; - height: 100%; - margin: 0; -} -body.no-scroll { - height: 100%; - overflow: hidden; -} - -p { - margin-top: 0; - margin-bottom: 1.125rem; -} -p a:link, -p a:visited, -p a:hover { - color: #e44c2c; - text-decoration: none; -} -@media screen and (min-width: 768px) { - p a:hover { - text-decoration: underline; - } -} -p a:link, -p a:visited, -p a:hover { - color: #ee4c2c; -} - -.wy-breadcrumbs li a { - color: #ee4c2c; -} - -ul.pytorch-breadcrumbs { - padding-left: 0; - list-style-type: none; -} -ul.pytorch-breadcrumbs li { - display: inline-block; - font-size: 0.875rem; -} -ul.pytorch-breadcrumbs a { - color: #ee4c2c; - text-decoration: none; -} - -.table-of-contents-link-wrapper { - display: block; - margin-top: 0; - padding: 1.25rem 1.875rem; - background-color: #f3f4f7; - position: relative; - color: #262626; - font-size: 1.25rem; -} -.table-of-contents-link-wrapper.is-open .toggle-table-of-contents { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} -@media screen and (min-width: 1100px) { - .table-of-contents-link-wrapper { - display: none; - } -} - -.toggle-table-of-contents { - background-image: url("../images/chevron-down-grey.svg"); - background-position: center center; - background-repeat: no-repeat; - background-size: 18px 18px; - height: 100%; - position: absolute; - right: 21px; - width: 30px; - top: 0; -} - -.tutorials-header .header-logo { - background-image: url("../images/asteroid_logo_dark.svg"); -} -.tutorials-header .main-menu ul li a { - color: #262626; -} -.tutorials-header .main-menu-open-button { - background-image: url("../images/icon-menu-dots-dark.svg"); -} - -.rst-content dl:not(.docutils) dl dt { - background: #f3f4f7; - font-weight: bold; -} - -.rst-content .viewcode-link, .rst-content .viewcode-back { - display: block; - color: #4974d1; - font-size: 90%; - padding-left: 24px; - float: right; -} - -.rst-content footer .helpful-hr.hr-top { - margin-bottom: -0.0625rem; -} -.rst-content footer .helpful-hr.hr-bottom { - margin-top: -0.0625rem; -} -.rst-content footer .helpful-container { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 1.125rem; -} -.rst-content footer .helpful-container .helpful-question, .rst-content footer .helpful-container .was-helpful-thank-you { - padding: 0.625rem 1.25rem 0.625rem 1.25rem; -} -.rst-content footer .helpful-container .was-helpful-thank-you { - display: none; -} -.rst-content footer .helpful-container .helpful-question.yes-link, .rst-content footer .helpful-container .helpful-question.no-link { - color: #e44c2c; - cursor: pointer; -} -.rst-content footer .helpful-container .helpful-question.yes-link:hover, .rst-content footer .helpful-container .helpful-question.no-link:hover { - background-color: #e44c2c; - color: #ffffff; -} -.rst-content footer div[role="contentinfo"] { - padding-top: 2.5rem; -} -.rst-content footer div[role="contentinfo"] p { - margin-bottom: 0; -} - -h1 { - font-size: 2rem; - letter-spacing: 1.78px; - line-height: 2.5rem; - text-transform: uppercase; - margin: 1.375rem 0; -} - -span.pre { - color: #ee4c2c; - background-color: #f3f4f7; - padding: 2px 6px; -} - -pre { - background-color: #f3f4f7; - padding: 1.375rem; -} - -div.highlight pre { - border-radius: 20px; - background: #f1fff3; -} - -.highlight .c1 { - color: #6c6c6d; -} - -.headerlink { - display: none !important; -} - -a:link.has-code, -a:hover.has-code, -a:visited.has-code { - color: #4974D1; -} -a:link.has-code span, -a:hover.has-code span, -a:visited.has-code span { - color: #4974D1; -} - -article.pytorch-article ul, -article.pytorch-article ol { - padding-left: 1.875rem; - margin: 0; -} -article.pytorch-article ul li, -article.pytorch-article ol li { - margin: 0; - line-height: 1.75rem; -} -article.pytorch-article ul p, -article.pytorch-article ol p { - line-height: 1.75rem; - margin-bottom: 0; -} -article.pytorch-article ul ul, -article.pytorch-article ul ol, -article.pytorch-article ol ul, -article.pytorch-article ol ol { - margin: 0; -} -article.pytorch-article h1, -article.pytorch-article h2, -article.pytorch-article h3, -article.pytorch-article h4, -article.pytorch-article h5, -article.pytorch-article h6 { - font-weight: normal; -} -article.pytorch-article h1 a, -article.pytorch-article h2 a, -article.pytorch-article h3 a, -article.pytorch-article h4 a, -article.pytorch-article h5 a, -article.pytorch-article h6 a { - color: #262626; -} -article.pytorch-article p.caption { - margin-top: 1.25rem; -} - -article.pytorch-article .section:first-of-type h1:first-of-type { - margin-top: 0; -} - -article.pytorch-article .sphx-glr-thumbcontainer { - margin: 0; - border: 1px solid #d6d7d8; - border-radius: 0; - width: 45%; - text-align: center; - margin-bottom: 5%; -} -@media screen and (max-width: 1100px) { - article.pytorch-article .sphx-glr-thumbcontainer:nth-child(odd) { - margin-left: 0; - margin-right: 2.5%; - } - article.pytorch-article .sphx-glr-thumbcontainer:nth-child(even) { - margin-right: 0; - margin-left: 2.5%; - } - article.pytorch-article .sphx-glr-thumbcontainer .figure { - width: 40%; - } -} -@media screen and (min-width: 1101px) { - article.pytorch-article .sphx-glr-thumbcontainer { - margin-right: 3%; - margin-bottom: 3%; - width: 30%; - } -} -article.pytorch-article .sphx-glr-thumbcontainer .caption-text a { - font-size: 1rem; - color: #262626; - letter-spacing: 0; - line-height: 1.5rem; - text-decoration: none; -} -article.pytorch-article .sphx-glr-thumbcontainer:hover { - -webkit-box-shadow: none; - box-shadow: none; - border-bottom-color: #ffffff; -} -article.pytorch-article .sphx-glr-thumbcontainer:hover .figure:before { - bottom: 100%; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure { - width: 80%; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure:before { - content: ""; - display: block; - position: absolute; - top: 0; - bottom: 35%; - left: 0; - right: 0; - background: #8A94B3; - opacity: 0.10; -} -article.pytorch-article .sphx-glr-thumbcontainer .figure a.reference.internal { - text-align: left; -} -@media screen and (min-width: 768px) { - article.pytorch-article .sphx-glr-thumbcontainer:after { - content: ""; - display: block; - width: 0; - height: 1px; - position: absolute; - bottom: 0; - left: 0; - background-color: #e44c2c; - -webkit-transition: width .250s ease-in-out; - transition: width .250s ease-in-out; - } - article.pytorch-article .sphx-glr-thumbcontainer:hover:after { - width: 100%; - } -} -@media screen and (min-width: 768px) { - article.pytorch-article .sphx-glr-thumbcontainer:after { - background-color: #ee4c2c; - } -} - -.footer-logo-col { - margin: 2.5rem; -} - -article.pytorch-article .section :not(dt) > code { - color: #262626; - padding: 0px 3px; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} -article.pytorch-article .section :not(dt) > code .pre { - outline: 0px; - padding: 0px; -} -article.pytorch-article .function dt, article.pytorch-article .attribute dt, article.pytorch-article .class .attribute dt, article.pytorch-article .class dt { - position: relative; - background: #fae7e7; - padding: 0.5rem; - word-wrap: break-word; - padding-right: 100px; - border-radius: 10px; -} -article.pytorch-article .function dt em.property, article.pytorch-article .attribute dt em.property, article.pytorch-article .class dt em.property { - font-family: inherit; -} -article.pytorch-article .function dt em, article.pytorch-article .attribute dt em, article.pytorch-article .class .attribute dt em, article.pytorch-article .class dt em, article.pytorch-article .function dt .sig-paren, article.pytorch-article .attribute dt .sig-paren, article.pytorch-article .class dt .sig-paren { - font-family: IBMPlexMono,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; - font-size: 87.5%; - color: #ee4c2c; -} -article.pytorch-article .function dt a, article.pytorch-article .attribute dt a, article.pytorch-article .class .attribute dt a, article.pytorch-article .class dt a { - position: absolute; - right: 30px; - padding-right: 0; - top: 50%; - -webkit-transform: perspective(1px) translateY(-50%); - transform: perspective(1px) translateY(-50%); -} -article.pytorch-article .function dt:hover .viewcode-link, article.pytorch-article .attribute dt:hover .viewcode-link, article.pytorch-article .class dt:hover .viewcode-link { - color: #ee4c2c; -} -article.pytorch-article .function .anchorjs-link, article.pytorch-article .attribute .anchorjs-link, article.pytorch-article .class .anchorjs-link { - display: inline; - position: absolute; - right: 8px; - font-size: 1.5625rem !important; - padding-left: 0; -} -article.pytorch-article .function dt > code, article.pytorch-article .attribute dt > code, article.pytorch-article .class .attribute dt > code, article.pytorch-article .class dt > code { - color: #262626; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} -article.pytorch-article .function .viewcode-link, article.pytorch-article .attribute .viewcode-link, article.pytorch-article .class .viewcode-link { - font-size: 0.875rem; - color: #979797; - letter-spacing: 0; - line-height: 1.5rem; - text-transform: uppercase; -} -article.pytorch-article .function dd, article.pytorch-article .attribute dd, article.pytorch-article .class .attribute dd, article.pytorch-article .class dd { - padding-left: 3.75rem; -} -article.pytorch-article .function dd p, article.pytorch-article .attribute dd p, article.pytorch-article .class .attribute dd p, article.pytorch-article .class dd p { - color: #262626; -} -article.pytorch-article .function table tbody tr th.field-name, article.pytorch-article .attribute table tbody tr th.field-name, article.pytorch-article .class table tbody tr th.field-name { - white-space: nowrap; - color: #262626; - width: 20%; -} -@media screen and (min-width: 768px) { - article.pytorch-article .function table tbody tr th.field-name, article.pytorch-article .attribute table tbody tr th.field-name, article.pytorch-article .class table tbody tr th.field-name { - width: 15%; - } -} -article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - padding: 0.625rem; - width: 80%; - color: #262626; -} -@media screen and (min-width: 768px) { - article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - width: 85%; - } -} -@media screen and (min-width: 1600px) { - article.pytorch-article .function table tbody tr td.field-body, article.pytorch-article .attribute table tbody tr td.field-body, article.pytorch-article .class table tbody tr td.field-body { - padding-left: 1.25rem; - } -} -article.pytorch-article .function table tbody tr td.field-body p, article.pytorch-article .attribute table tbody tr td.field-body p, article.pytorch-article .class table tbody tr td.field-body p { - padding-left: 0px; -} -article.pytorch-article .function table tbody tr td.field-body p:last-of-type, article.pytorch-article .attribute table tbody tr td.field-body p:last-of-type, article.pytorch-article .class table tbody tr td.field-body p:last-of-type { - margin-bottom: 0; -} -article.pytorch-article .function table tbody tr td.field-body ol, article.pytorch-article .attribute table tbody tr td.field-body ol, article.pytorch-article .class table tbody tr td.field-body ol, article.pytorch-article .function table tbody tr td.field-body ul, article.pytorch-article .attribute table tbody tr td.field-body ul, article.pytorch-article .class table tbody tr td.field-body ul { - padding-left: 1rem; - padding-bottom: 0; -} -article.pytorch-article .function table.docutils.field-list, article.pytorch-article .attribute table.docutils.field-list, article.pytorch-article .class table.docutils.field-list { - margin-bottom: 0.75rem; -} -article.pytorch-article .attribute .has-code { - float: none; -} -article.pytorch-article .class dt { - border-left: none; - padding-left: 4em; -} -article.pytorch-article .class dt em.property { - position: absolute; - left: 0.5rem; -} -article.pytorch-article .class dd .docutils dt { - padding-left: 0.5rem; -} -article.pytorch-article .class em.property { - text-transform: uppercase; - font-style: normal; - color: #ee4c2c; - font-size: 1rem; - letter-spacing: 0; - padding-right: 0.75rem; -} -article.pytorch-article .class dl dt em.property { - position: static; - left: 0; - padding-right: 0; -} -article.pytorch-article .class .method dt, -article.pytorch-article .class .staticmethod dt, article.pytorch-article .class .classmethod dt { - border-top: none; - background: #fae7e7; -} -article.pytorch-article .class .method dt, -article.pytorch-article .class .staticmethod dt, article.pytorch-article .class .classmethod dt { - padding-left: 0.5rem; -} -article.pytorch-article .class .method dd dl dt, -article.pytorch-article .class .staticmethod dd dl dt, article.pytorch-article .class .classmethod dd dl dt { - background: #f3f4f7; - font-weight: bold; -} -article.pytorch-article .class .classmethod dt, article.pytorch-article .class .staticmethod dt { - padding-left: 1em; - font-weight: 500; -} -article.pytorch-article .class .attribute dt { - border-top: none; -} -article.pytorch-article .class .attribute dt em.property { - position: relative; - left: 0; -} -article.pytorch-article table { - table-layout: fixed; -} - -article.pytorch-article .note, -article.pytorch-article .warning, -article.pytorch-article .tip, -article.pytorch-article .hint, -article.pytorch-article .important, -article.pytorch-article .caution, -article.pytorch-article .danger, -article.pytorch-article .attention, -article.pytorch-article .error { - background: #f3f4f7; - margin-top: 1.875rem; - margin-bottom: 1.125rem; - border-radius: 20px; -} -article.pytorch-article .note .admonition-title, -article.pytorch-article .warning .admonition-title, -article.pytorch-article .tip .admonition-title, -article.pytorch-article .hint .admonition-title, -article.pytorch-article .important .admonition-title, -article.pytorch-article .caution .admonition-title, -article.pytorch-article .danger .admonition-title, -article.pytorch-article .attention .admonition-title, -article.pytorch-article .error .admonition-title { - color: #ffffff; - letter-spacing: 1px; - text-transform: uppercase; - margin-bottom: 1.125rem; - padding: 3px 0 3px 1.375rem; - position: relative; - font-size: 0.875rem; -} -article.pytorch-article .note p:nth-child(n + 2), -article.pytorch-article .warning p:nth-child(n + 2), -article.pytorch-article .tip p:nth-child(n + 2), -article.pytorch-article .hint p:nth-child(n + 2), -article.pytorch-article .important p:nth-child(n + 2), -article.pytorch-article .caution p:nth-child(n + 2), -article.pytorch-article .danger p:nth-child(n + 2), -article.pytorch-article .attention p:nth-child(n + 2), -article.pytorch-article .error p:nth-child(n + 2) { - padding: 0 1.375rem; -} -article.pytorch-article .note table, -article.pytorch-article .warning table, -article.pytorch-article .tip table, -article.pytorch-article .hint table, -article.pytorch-article .important table, -article.pytorch-article .caution table, -article.pytorch-article .danger table, -article.pytorch-article .attention table, -article.pytorch-article .error table { - margin: 0 2rem; - width: auto; -} -article.pytorch-article .note .pre, -article.pytorch-article .note pre, -article.pytorch-article .warning .pre, -article.pytorch-article .warning pre, -article.pytorch-article .tip .pre, -article.pytorch-article .tip pre, -article.pytorch-article .hint .pre, -article.pytorch-article .hint pre, -article.pytorch-article .important .pre, -article.pytorch-article .important pre, -article.pytorch-article .caution .pre, -article.pytorch-article .caution pre, -article.pytorch-article .danger .pre, -article.pytorch-article .danger pre, -article.pytorch-article .attention .pre, -article.pytorch-article .attention pre, -article.pytorch-article .error .pre, -article.pytorch-article .error pre { - background: #ffffff; - outline: 1px solid #e9e9e9; -} -article.pytorch-article .note :not(dt) > code, -article.pytorch-article .warning :not(dt) > code, -article.pytorch-article .tip :not(dt) > code, -article.pytorch-article .hint :not(dt) > code, -article.pytorch-article .important :not(dt) > code, -article.pytorch-article .caution :not(dt) > code, -article.pytorch-article .danger :not(dt) > code, -article.pytorch-article .attention :not(dt) > code, -article.pytorch-article .error :not(dt) > code { - padding: 0px 3px; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; - outline: 1px solid #e9e9e9; -} -article.pytorch-article .note :not(dt) > code .pre, -article.pytorch-article .warning :not(dt) > code .pre, -article.pytorch-article .tip :not(dt) > code .pre, -article.pytorch-article .hint :not(dt) > code .pre, -article.pytorch-article .important :not(dt) > code .pre, -article.pytorch-article .caution :not(dt) > code .pre, -article.pytorch-article .danger :not(dt) > code .pre, -article.pytorch-article .attention :not(dt) > code .pre, -article.pytorch-article .error :not(dt) > code .pre { - outline: 0px; - padding: 0px; -} -article.pytorch-article .note pre, -article.pytorch-article .warning pre, -article.pytorch-article .tip pre, -article.pytorch-article .hint pre, -article.pytorch-article .important pre, -article.pytorch-article .caution pre, -article.pytorch-article .danger pre, -article.pytorch-article .attention pre, -article.pytorch-article .error pre { - margin-bottom: 0; -} -article.pytorch-article .note .highlight, -article.pytorch-article .warning .highlight, -article.pytorch-article .tip .highlight, -article.pytorch-article .hint .highlight, -article.pytorch-article .important .highlight, -article.pytorch-article .caution .highlight, -article.pytorch-article .danger .highlight, -article.pytorch-article .attention .highlight, -article.pytorch-article .error .highlight { - margin: 0 2rem 1.125rem 2rem; -} -article.pytorch-article .note ul, -article.pytorch-article .note ol, -article.pytorch-article .warning ul, -article.pytorch-article .warning ol, -article.pytorch-article .tip ul, -article.pytorch-article .tip ol, -article.pytorch-article .hint ul, -article.pytorch-article .hint ol, -article.pytorch-article .important ul, -article.pytorch-article .important ol, -article.pytorch-article .caution ul, -article.pytorch-article .caution ol, -article.pytorch-article .danger ul, -article.pytorch-article .danger ol, -article.pytorch-article .attention ul, -article.pytorch-article .attention ol, -article.pytorch-article .error ul, -article.pytorch-article .error ol { - padding-left: 3.25rem; -} -article.pytorch-article .note ul li, -article.pytorch-article .note ol li, -article.pytorch-article .warning ul li, -article.pytorch-article .warning ol li, -article.pytorch-article .tip ul li, -article.pytorch-article .tip ol li, -article.pytorch-article .hint ul li, -article.pytorch-article .hint ol li, -article.pytorch-article .important ul li, -article.pytorch-article .important ol li, -article.pytorch-article .caution ul li, -article.pytorch-article .caution ol li, -article.pytorch-article .danger ul li, -article.pytorch-article .danger ol li, -article.pytorch-article .attention ul li, -article.pytorch-article .attention ol li, -article.pytorch-article .error ul li, -article.pytorch-article .error ol li { - color: #262626; -} -article.pytorch-article .note p, -article.pytorch-article .warning p, -article.pytorch-article .tip p, -article.pytorch-article .hint p, -article.pytorch-article .important p, -article.pytorch-article .caution p, -article.pytorch-article .danger p, -article.pytorch-article .attention p, -article.pytorch-article .error p { - margin-top: 1.125rem; -} -article.pytorch-article .note .admonition-title { - background: #54c7ec; -} -article.pytorch-article .warning .admonition-title { - background: #e94f3b; -} -article.pytorch-article .tip .admonition-title { - background: #6bcebb; -} -article.pytorch-article .hint .admonition-title { - background: #a2cdde; -} -article.pytorch-article .important .admonition-title { - background: #5890ff; -} -article.pytorch-article .caution .admonition-title { - background: #f7923a; -} -article.pytorch-article .danger .admonition-title { - background: #db2c49; -} -article.pytorch-article .attention .admonition-title { - background: #f5a623; -} -article.pytorch-article .error .admonition-title { - background: #cc2f90; -} -article.pytorch-article .sphx-glr-download-link-note.admonition.note, -article.pytorch-article .reference.download.internal, article.pytorch-article .sphx-glr-signature { - display: none; -} -article.pytorch-article .admonition > p:last-of-type { - margin-bottom: 0; - padding-bottom: 1.125rem !important; -} - -article.pytorch-article .note { - background: #e7f2fa; -} - -article.pytorch-article .note .admonition-title { - background: none; - color: #2980B9; - font-weight: bold; -} - -.pytorch-article div.sphx-glr-download a { - background-color: #f3f4f7; - background-image: url("../images/arrow-down-orange.svg"); - background-repeat: no-repeat; - background-position: left 10px center; - background-size: 15px 15px; - border-radius: 0; - border: none; - display: block; - text-align: left; - padding: 0.9375rem 3.125rem; - position: relative; - margin: 1.25rem auto; -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a:after { - content: ""; - display: block; - width: 0; - height: 1px; - position: absolute; - bottom: 0; - left: 0; - background-color: #e44c2c; - -webkit-transition: width .250s ease-in-out; - transition: width .250s ease-in-out; - } - .pytorch-article div.sphx-glr-download a:hover:after { - width: 100%; - } -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a:after { - background-color: #ee4c2c; - } -} -@media screen and (min-width: 768px) { - .pytorch-article div.sphx-glr-download a { - background-position: left 20px center; - } -} -.pytorch-article div.sphx-glr-download a:hover { - -webkit-box-shadow: none; - box-shadow: none; - text-decoration: none; - background-image: url("../images/arrow-down-orange.svg"); - background-color: #f3f4f7; -} -.pytorch-article div.sphx-glr-download a span.pre { - background-color: transparent; - font-size: 1.125rem; - padding: 0; - color: #262626; -} -.pytorch-article div.sphx-glr-download a code, .pytorch-article div.sphx-glr-download a kbd, .pytorch-article div.sphx-glr-download a pre, .pytorch-article div.sphx-glr-download a samp, .pytorch-article div.sphx-glr-download a span.pre { - font-family: FreightSans, Helvetica Neue, Helvetica, Arial, sans-serif; -} - -.pytorch-article p.sphx-glr-script-out { - margin-bottom: 1.125rem; -} - -.pytorch-article div.sphx-glr-script-out { - margin-bottom: 2.5rem; -} -.pytorch-article div.sphx-glr-script-out .highlight { - margin-left: 0; - margin-top: 0; -} -.pytorch-article div.sphx-glr-script-out .highlight pre { - background-color: #fdede9; - padding: 1.5625rem; - color: #837b79; -} -.pytorch-article div.sphx-glr-script-out + p { - margin-top: unset; -} - -article.pytorch-article .wy-table-responsive table { - border: none; - border-color: #ffffff !important; - table-layout: fixed; -} -article.pytorch-article .wy-table-responsive table thead tr { - border-bottom: 2px solid #6c6c6d; -} -article.pytorch-article .wy-table-responsive table thead th { - line-height: 1.75rem; - padding-left: 0.9375rem; - padding-right: 0.9375rem; -} -article.pytorch-article .wy-table-responsive table tbody .row-odd { - background-color: #f3f4f7; -} -article.pytorch-article .wy-table-responsive table tbody td { - color: #6c6c6d; - white-space: normal; - padding: 0.9375rem; - font-size: 1rem; - line-height: 1.375rem; -} -article.pytorch-article .wy-table-responsive table tbody td .pre { - background: #ffffff; - outline: 1px solid #e9e9e9; - color: #ee4c2c; - font-size: 87.5%; -} -article.pytorch-article .wy-table-responsive table tbody td code { - font-size: 87.5%; -} - -a[rel~="prev"], a[rel~="next"] { - padding: 0.375rem 0 0 0; -} - -img.next-page, -img.previous-page { - width: 8px; - height: 10px; - position: relative; - top: -1px; -} - -img.previous-page { - -webkit-transform: scaleX(-1); - transform: scaleX(-1); -} - -.rst-footer-buttons { - margin-top: 1.875rem; - margin-bottom: 1.875rem; -} -.rst-footer-buttons .btn:focus, -.rst-footer-buttons .btn.focus { - -webkit-box-shadow: none; - box-shadow: none; -} - -article.pytorch-article blockquote { - margin-left: 3.75rem; - color: #6c6c6d; -} - -article.pytorch-article .caption { - color: #6c6c6d; - letter-spacing: 0.25px; - line-height: 2.125rem; -} - -article.pytorch-article .math { - color: #262626; - width: auto; - text-align: center; -} -article.pytorch-article .math img { - width: auto; -} - -.pytorch-breadcrumbs-wrapper { - width: 100%; -} -@media screen and (min-width: 1101px) { - .pytorch-breadcrumbs-wrapper { - float: left; - margin-left: 3%; - width: 75%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-breadcrumbs-wrapper { - width: 850px; - margin-left: 1.875rem; - } -} -.pytorch-breadcrumbs-wrapper .pytorch-breadcrumbs-aside { - float: right; -} - -.pytorch-article .container { - padding-left: 0; - padding-right: 0; - max-width: none; -} - -a:link, -a:visited, -a:hover { - color: #ee4c2c; -} - -::-webkit-input-placeholder { - color: #ee4c2c; -} - -::-moz-placeholder { - color: #ee4c2c; -} - -:-ms-input-placeholder { - color: #ee4c2c; -} - -:-moz-placeholder { - color: #ee4c2c; -} - -@media screen and (min-width: 768px) { - .site-footer a:hover { - color: #ee4c2c; - } -} - -.docs-tutorials-resources a { - color: #ee4c2c; -} - -.header-holder { - position: relative; - z-index: 201; -} - -.header-holder .main-menu ul li.active:after { - color: #ee4c2c; -} -.header-holder .main-menu ul li.active a { - color: #ee4c2c; -} -@media screen and (min-width: 1100px) { - .header-holder .main-menu ul li a:hover { - color: #ee4c2c; - } -} - -.mobile-main-menu.open ul li.active a { - color: #ee4c2c; -} - -.version { - padding-bottom: 1rem; -} - -.pytorch-call-to-action-links { - padding-top: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links { - padding-top: 2.5rem; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .pytorch-call-to-action-links { - padding-top: 0; - } -} -@media (min-width: 1100px) and (max-width: 1239px) { - .pytorch-call-to-action-links { - padding-top: 2.5rem; - } -} -.pytorch-call-to-action-links #tutorial-type { - display: none; -} -.pytorch-call-to-action-links .call-to-action-img, .pytorch-call-to-action-links .call-to-action-notebook-img { - height: 1.375rem; - width: 1.375rem; - margin-right: 10px; -} -.pytorch-call-to-action-links .call-to-action-notebook-img { - height: 1rem; -} -.pytorch-call-to-action-links a { - padding-right: 1.25rem; - color: #000000; - cursor: pointer; -} -.pytorch-call-to-action-links a:hover { - color: #e44c2c; -} -.pytorch-call-to-action-links a .call-to-action-desktop-view { - display: none; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links a .call-to-action-desktop-view { - display: block; - } -} -.pytorch-call-to-action-links a .call-to-action-mobile-view { - display: block; -} -@media screen and (min-width: 768px) { - .pytorch-call-to-action-links a .call-to-action-mobile-view { - display: none; - } -} -.pytorch-call-to-action-links a #google-colab-link, .pytorch-call-to-action-links a #download-notebook-link, -.pytorch-call-to-action-links a #github-view-link { - padding-bottom: 0.625rem; - border-bottom: 1px solid #f3f4f7; - padding-right: 2.5rem; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.pytorch-call-to-action-links a #google-colab-link:hover, .pytorch-call-to-action-links a #download-notebook-link:hover, -.pytorch-call-to-action-links a #github-view-link:hover { - border-bottom-color: #e44c2c; - color: #e44c2c; -} - -.pytorch-container { - margin: 0 auto; - padding: 0 1.875rem; - width: auto; - position: relative; -} -@media screen and (min-width: 1100px) { - .pytorch-container { - padding: 0; - } -} -@media screen and (min-width: 1101px) { - .pytorch-container { - margin-left: 25%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-container { - margin-left: 350px; - } -} -.pytorch-container:before, .pytorch-container:after { - content: ""; - display: table; -} -.pytorch-container:after { - clear: both; -} -.pytorch-container { - *zoom: 1; -} - -.pytorch-content-wrap { - background-color: #ffffff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - position: relative; - padding-top: 0; -} -.pytorch-content-wrap:before, .pytorch-content-wrap:after { - content: ""; - display: table; -} -.pytorch-content-wrap:after { - clear: both; -} -.pytorch-content-wrap { - *zoom: 1; -} -@media screen and (min-width: 1101px) { - .pytorch-content-wrap { - padding-top: 45px; - float: left; - width: 100%; - display: block; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-wrap { - width: 100%; - } -} - -.pytorch-content { - background: #ffffff; - width: 100%; - max-width: 700px; - position: relative; -} - -.pytorch-content-left { - margin-top: 2.5rem; - width: 100%; - margin-bottom: 2.5rem; -} -@media screen and (min-width: 1101px) { - .pytorch-content-left { - margin-top: 0; - margin-left: 3%; - width: 75%; - float: left; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-left { - width: 850px; - margin-left: 30px; - } -} -.pytorch-content-left .main-content { - padding-top: 0.9375rem; -} -.pytorch-content-left .main-content ul.simple { - padding-bottom: 1.25rem; -} -.pytorch-content-left .main-content .note:nth-child(1), .pytorch-content-left .main-content .warning:nth-child(1) { - margin-top: 0; -} - -.pytorch-content-right { - display: none; - position: relative; - overflow-x: hidden; - overflow-y: hidden; -} -@media screen and (min-width: 1101px) { - .pytorch-content-right { - display: block; - margin-left: 0; - width: 19%; - float: left; - height: 100%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-content-right { - width: 280px; - } -} - -@media screen and (min-width: 1101px) { - .pytorch-side-scroll { - position: relative; - overflow-x: hidden; - overflow-y: scroll; - height: 100%; - } -} - -.pytorch-menu-vertical { - padding: 1.25rem 1.875rem 2.5rem 1.875rem; -} -@media screen and (min-width: 1101px) { - .pytorch-menu-vertical { - display: block; - padding-top: 0; - padding-right: 13.5%; - padding-bottom: 5.625rem; - } -} -@media screen and (min-width: 1600px) { - .pytorch-menu-vertical { - padding-left: 0; - padding-right: 1.5625rem; - } -} - -.pytorch-left-menu { - display: none; - background-color: #262626; - color: #262626; -} -@media screen and (min-width: 1101px) { - .pytorch-left-menu { - display: block; - overflow-x: hidden; - overflow-y: hidden; - padding-bottom: 110px; - padding: 0 1.875rem 0 0; - width: 25%; - z-index: 200; - float: left; - } - .pytorch-left-menu.make-fixed { - position: fixed; - top: 0; - bottom: 0; - left: 0; - float: none; - } -} -@media screen and (min-width: 1600px) { - .pytorch-left-menu { - padding: 0 0 0 1.875rem; - width: 350px; - } -} - -.pytorch-left-menu p.caption { - color: #ffffff; - display: block; - display: inline-block; - font-size: 1rem; - line-height: 1.375rem; - margin-bottom: 1rem; - padding: 0; - text-transform: none; - white-space: nowrap; -} - -.pytorch-left-menu-search { - margin-bottom: 2.5rem; -} -@media screen and (min-width: 1101px) { - .pytorch-left-menu-search { - margin: 1.25rem 0.625rem 1.875rem 0; - } -} - -.pytorch-left-menu-search ::-webkit-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search :-ms-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search ::-ms-input-placeholder { - color: #262626; -} -.pytorch-left-menu-search ::placeholder { - color: #262626; -} - -.pytorch-left-menu-search input[type=text] { - border-radius: 20px; - padding: 0.5rem 0.75rem; - border-color: #ffffff; - color: #262626; - border-style: solid; - font-size: 1rem; - width: 100%; - background-color: #f3f4f7; - background-image: url("../images/search-icon.svg"); - background-repeat: no-repeat; - background-size: 18px 18px; - background-position: 12px 10px; - padding-left: 40px; - background-color: #ffffff; -} -.pytorch-left-menu-search input[type=text]:focus { - outline: 0; -} - -@media screen and (min-width: 1101px) { - .pytorch-left-menu .pytorch-side-scroll { - width: 120%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-left-menu .pytorch-side-scroll { - width: 340px; - } -} - -.pytorch-right-menu { - min-height: 100px; - overflow-x: hidden; - overflow-y: hidden; - left: 0; - z-index: 200; - padding-top: 0; - position: relative; -} -@media screen and (min-width: 1101px) { - .pytorch-right-menu { - width: 100%; - } - .pytorch-right-menu.scrolling-fixed { - position: fixed; - top: 45px; - left: 83.5%; - width: 14%; - } - .pytorch-right-menu.scrolling-absolute { - position: absolute; - left: 0; - } -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu { - left: 0; - width: 380px; - } - .pytorch-right-menu.scrolling-fixed { - position: fixed; - top: 45px; - left: 1230px; - } - .pytorch-right-menu.scrolling-absolute { - position: absolute; - left: 0; - } -} - -.pytorch-left-menu ul, -.pytorch-right-menu ul { - list-style-type: none; - padding-left: 0; - margin-bottom: 2.5rem; -} -.pytorch-left-menu > ul, -.pytorch-right-menu > ul { - margin-bottom: 2.5rem; -} -.pytorch-left-menu a:link, -.pytorch-left-menu a:visited, -.pytorch-left-menu a:hover, -.pytorch-right-menu a:link, -.pytorch-right-menu a:visited, -.pytorch-right-menu a:hover { - color: #6c6c6d; - font-size: 0.875rem; - line-height: 1rem; - padding: 0; - text-decoration: none; -} -.pytorch-left-menu a:link.reference.internal, -.pytorch-left-menu a:visited.reference.internal, -.pytorch-left-menu a:hover.reference.internal, -.pytorch-right-menu a:link.reference.internal, -.pytorch-right-menu a:visited.reference.internal, -.pytorch-right-menu a:hover.reference.internal { - margin-bottom: 0.3125rem; - position: relative; -} -.pytorch-left-menu li code, -.pytorch-right-menu li code { - border: none; - background: inherit; - color: inherit; - padding-left: 0; - padding-right: 0; -} -.pytorch-left-menu li span.toctree-expand, -.pytorch-right-menu li span.toctree-expand { - display: block; - float: left; - margin-left: -1.2em; - font-size: 0.8em; - line-height: 1.6em; -} -.pytorch-left-menu li.on a, .pytorch-left-menu li.current > a, -.pytorch-right-menu li.on a, -.pytorch-right-menu li.current > a { - position: relative; - border: none; -} -.pytorch-left-menu li.on a span.toctree-expand, .pytorch-left-menu li.current > a span.toctree-expand, -.pytorch-right-menu li.on a span.toctree-expand, -.pytorch-right-menu li.current > a span.toctree-expand { - display: block; - font-size: 0.8em; - line-height: 1.6em; -} -.pytorch-left-menu li.toctree-l1.current > a, -.pytorch-right-menu li.toctree-l1.current > a { - color: #ee4c2c; -} -.pytorch-left-menu li.toctree-l1.current li.toctree-l2 > ul, .pytorch-left-menu li.toctree-l2.current li.toctree-l3 > ul, -.pytorch-right-menu li.toctree-l1.current li.toctree-l2 > ul, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3 > ul { - display: none; -} -.pytorch-left-menu li.toctree-l1.current li.toctree-l2.current > ul, .pytorch-left-menu li.toctree-l2.current li.toctree-l3.current > ul, -.pytorch-right-menu li.toctree-l1.current li.toctree-l2.current > ul, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3.current > ul { - display: block; -} -.pytorch-left-menu li.toctree-l2.current li.toctree-l3 > a, -.pytorch-right-menu li.toctree-l2.current li.toctree-l3 > a { - display: block; -} -.pytorch-left-menu li.toctree-l3, -.pytorch-right-menu li.toctree-l3 { - font-size: 0.9em; -} -.pytorch-left-menu li.toctree-l3.current li.toctree-l4 > a, -.pytorch-right-menu li.toctree-l3.current li.toctree-l4 > a { - display: block; -} -.pytorch-left-menu li.toctree-l4, -.pytorch-right-menu li.toctree-l4 { - font-size: 0.9em; -} -.pytorch-left-menu li.current ul, -.pytorch-right-menu li.current ul { - display: block; -} -.pytorch-left-menu li ul, -.pytorch-right-menu li ul { - margin-bottom: 0; - display: none; -} -.pytorch-left-menu li ul li a, -.pytorch-right-menu li ul li a { - margin-bottom: 0; -} -.pytorch-left-menu a, -.pytorch-right-menu a { - display: inline-block; - position: relative; -} -.pytorch-left-menu a:hover, -.pytorch-right-menu a:hover { - cursor: pointer; -} -.pytorch-left-menu a:active, -.pytorch-right-menu a:active { - cursor: pointer; -} - -.pytorch-left-menu ul { - padding-left: 0; -} - -.pytorch-right-menu a:link, -.pytorch-right-menu a:visited, -.pytorch-right-menu a:hover { - color: #6c6c6d; -} -.pytorch-right-menu a:link span.pre, -.pytorch-right-menu a:visited span.pre, -.pytorch-right-menu a:hover span.pre { - color: #6c6c6d; -} -.pytorch-right-menu a.reference.internal.expanded:before { - content: "-"; - font-family: monospace; - position: absolute; - left: -12px; -} -.pytorch-right-menu a.reference.internal.not-expanded:before { - content: "+"; - font-family: monospace; - position: absolute; - left: -12px; -} -.pytorch-right-menu li.active > a { - color: #ee4c2c; -} -.pytorch-right-menu li.active > a span.pre, .pytorch-right-menu li.active > a:before { - color: #ee4c2c; -} -.pytorch-right-menu li.active > a:after { - content: "\2022"; - color: #e44c2c; - display: inline-block; - font-size: 1.375rem; - left: -17px; - position: absolute; - top: 1px; -} -.pytorch-right-menu .pytorch-side-scroll > ul > li > ul > li { - margin-bottom: 0; -} -.pytorch-right-menu ul ul { - padding-left: 0; -} -.pytorch-right-menu ul ul li { - padding-left: 0px; -} -.pytorch-right-menu ul ul li a.reference.internal { - padding-left: 0; -} -.pytorch-right-menu ul ul li ul { - display: none; - padding-left: 10px; -} -.pytorch-right-menu ul ul li li a.reference.internal { - padding-left: 0; -} -.pytorch-right-menu li ul { - display: block; -} - -.pytorch-right-menu .pytorch-side-scroll { - padding-top: 20px; -} -@media screen and (min-width: 1101px) { - .pytorch-right-menu .pytorch-side-scroll { - width: 120%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu .pytorch-side-scroll { - width: 400px; - } -} -.pytorch-right-menu .pytorch-side-scroll > ul { - padding-left: 10%; - padding-right: 10%; - margin-bottom: 0; -} -@media screen and (min-width: 1600px) { - .pytorch-right-menu .pytorch-side-scroll > ul { - padding-left: 25px; - } -} -.pytorch-right-menu .pytorch-side-scroll > ul > li > a.reference.internal { - color: #262626; - font-weight: 500; -} -.pytorch-right-menu .pytorch-side-scroll ul li { - position: relative; -} - -.header-container { - max-width: none; - margin-top: 4px; -} -@media screen and (min-width: 1101px) { - .header-container { - margin-top: 0; - } -} -@media screen and (min-width: 1600px) { - .header-container { - margin-top: 0; - } -} - -.container-fluid.header-holder { - padding-right: 0; - padding-left: 0; -} - -.header-holder .container { - max-width: none; - padding-right: 1.875rem; - padding-left: 1.875rem; -} -@media screen and (min-width: 1101px) { - .header-holder .container { - padding-right: 1.875rem; - padding-left: 1.875rem; - } -} - -.header-holder .main-menu { - -webkit-box-pack: unset; - -ms-flex-pack: unset; - justify-content: unset; - position: relative; -} -@media screen and (min-width: 1101px) { - .header-holder .main-menu ul { - padding-left: 0; - margin-left: 26%; - } -} -@media screen and (min-width: 1600px) { - .header-holder .main-menu ul { - padding-left: 38px; - margin-left: 310px; - } -} - -.pytorch-page-level-bar { - display: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: #ffffff; - border-bottom: 1px solid #e2e2e2; - width: 100%; - z-index: 201; -} -@media screen and (min-width: 1101px) { - .pytorch-page-level-bar { - left: 0; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 45px; - padding-left: 0; - width: 100%; - position: absolute; - z-index: 1; - } - .pytorch-page-level-bar.left-menu-is-fixed { - position: fixed; - top: 0; - left: 25%; - padding-left: 0; - right: 0; - width: 75%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-page-level-bar { - left: 0; - right: 0; - width: auto; - z-index: 1; - } - .pytorch-page-level-bar.left-menu-is-fixed { - left: 350px; - right: 0; - width: auto; - } -} -.pytorch-page-level-bar ul, .pytorch-page-level-bar li { - margin: 0; -} - -.pytorch-shortcuts-wrapper { - display: none; -} -@media screen and (min-width: 1101px) { - .pytorch-shortcuts-wrapper { - font-size: 0.875rem; - float: left; - margin-left: 2%; - } -} -@media screen and (min-width: 1600px) { - .pytorch-shortcuts-wrapper { - margin-left: 1.875rem; - } -} - -.cookie-banner-wrapper { - display: none; -} -.cookie-banner-wrapper .container { - padding-left: 1.875rem; - padding-right: 1.875rem; - max-width: 1240px; -} -.cookie-banner-wrapper.is-visible { - display: block; - position: fixed; - bottom: 0; - background-color: #f3f4f7; - min-height: 100px; - width: 100%; - z-index: 401; - border-top: 3px solid #ededee; -} -.cookie-banner-wrapper .gdpr-notice { - color: #6c6c6d; - margin-top: 1.5625rem; - text-align: left; - max-width: 1440px; -} -@media screen and (min-width: 768px) { - .cookie-banner-wrapper .gdpr-notice { - width: 77%; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .cookie-banner-wrapper .gdpr-notice { - width: inherit; - } -} -.cookie-banner-wrapper .gdpr-notice .cookie-policy-link { - color: #343434; -} -.cookie-banner-wrapper .close-button { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: transparent; - border: 1px solid #f3f4f7; - height: 1.3125rem; - position: absolute; - bottom: 42px; - right: 0; - top: 0; - cursor: pointer; - outline: none; -} -@media screen and (min-width: 768px) { - .cookie-banner-wrapper .close-button { - right: 20%; - top: inherit; - } -} -@media (min-width: 768px) and (max-width: 1239px) { - .cookie-banner-wrapper .close-button { - right: 0; - top: 0; - } -} - -.main-menu ul li .ecosystem-dropdown, .main-menu ul li .resources-dropdown a { - cursor: pointer; -} -.main-menu ul li .dropdown-menu { - border-radius: 0; - padding: 0; -} -.main-menu ul li .dropdown-menu .dropdown-item { - color: #6c6c6d; - border-bottom: 1px solid #e2e2e2; -} -.main-menu ul li .dropdown-menu .dropdown-item:last-of-type { - border-bottom-color: transparent; -} -.main-menu ul li .dropdown-menu .dropdown-item:hover { - background-color: #e44c2c; -} -.main-menu ul li .dropdown-menu .dropdown-item p { - font-size: 1rem; - color: #979797; -} -.main-menu ul li .dropdown-menu a.dropdown-item:hover { - color: #ffffff; -} -.main-menu ul li .dropdown-menu a.dropdown-item:hover p { - color: #ffffff; -} - -.ecosystem-dropdown-menu, .resources-dropdown-menu { - left: -75px; - width: 226px; - display: none; - position: absolute; - top: 3.125rem; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #ffffff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.ecosystem-dropdown-menu.show-menu, .resources-dropdown-menu.show-menu { - display: block; -} - -.main-menu ul li .ecosystem-dropdown-menu, .main-menu ul li .resources-dropdown-menu { - border-radius: 0; - padding: 0; -} - -.main-menu ul li .ecosystem-dropdown-menu .dropdown-item, .main-menu ul li .resources-dropdown-menu .dropdown-item { - color: #6c6c6d; - border-bottom: 1px solid #e2e2e2; -} - -.header-holder .main-menu ul li a.nav-dropdown-item { - display: block; - font-size: 1rem; - line-height: 1.3125rem; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #979797; - text-align: center; - background-color: transparent; - border-bottom: 1px solid #e2e2e2; -} -.header-holder .main-menu ul li a.nav-dropdown-item:last-of-type { - border-bottom-color: transparent; -} -.header-holder .main-menu ul li a.nav-dropdown-item:hover { - background-color: #e44c2c; - color: white; -} -.header-holder .main-menu ul li a.nav-dropdown-item .dropdown-title { - font-size: 1.125rem; - color: #6c6c6d; - letter-spacing: 0; - line-height: 34px; -} - -.header-holder .main-menu ul li a.nav-dropdown-item:hover .dropdown-title { - background-color: #e44c2c; - color: white; -} - -/*# sourceMappingURL=theme.css.map */ \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/css/theme.css.map b/docs/src/_build/html/static/_static/css/theme.css.map deleted file mode 100644 index 8300d6d..0000000 --- a/docs/src/_build/html/static/_static/css/theme.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../scss/vendor/bootstrap/bootstrap.scss","../../../scss/vendor/bootstrap/_root.scss","theme.css","../../../scss/vendor/bootstrap/_reboot.scss","../../../scss/vendor/bootstrap/_variables.scss","../../../scss/vendor/bootstrap/mixins/_hover.scss","../../../scss/vendor/bootstrap/_type.scss","../../../scss/vendor/bootstrap/mixins/_lists.scss","../../../scss/vendor/bootstrap/_images.scss","../../../scss/vendor/bootstrap/mixins/_image.scss","../../../scss/vendor/bootstrap/mixins/_border-radius.scss","../../../scss/vendor/bootstrap/_code.scss","../../../scss/vendor/bootstrap/_grid.scss","../../../scss/vendor/bootstrap/mixins/_grid.scss","../../../scss/vendor/bootstrap/mixins/_breakpoints.scss","../../../scss/vendor/bootstrap/_functions.scss","../../../scss/vendor/bootstrap/mixins/_grid-framework.scss","../../../scss/vendor/bootstrap/_tables.scss","../../../scss/vendor/bootstrap/mixins/_table-row.scss","../../../scss/vendor/bootstrap/_forms.scss","../../../scss/vendor/bootstrap/mixins/_transition.scss","../../../scss/vendor/bootstrap/mixins/_forms.scss","../../../scss/vendor/bootstrap/mixins/_gradients.scss","../../../scss/vendor/bootstrap/_buttons.scss","../../../scss/vendor/bootstrap/mixins/_buttons.scss","../../../scss/vendor/bootstrap/_transitions.scss","../../../scss/vendor/bootstrap/_dropdown.scss","../../../scss/vendor/bootstrap/mixins/_caret.scss","../../../scss/vendor/bootstrap/mixins/_nav-divider.scss","../../../scss/vendor/bootstrap/_button-group.scss","../../../scss/vendor/bootstrap/_input-group.scss","../../../scss/vendor/bootstrap/_custom-forms.scss","../../../scss/vendor/bootstrap/_nav.scss","../../../scss/vendor/bootstrap/_navbar.scss","../../../scss/vendor/bootstrap/_card.scss","../../../scss/vendor/bootstrap/_breadcrumb.scss","../../../scss/vendor/bootstrap/_pagination.scss","../../../scss/vendor/bootstrap/mixins/_pagination.scss","../../../scss/vendor/bootstrap/_badge.scss","../../../scss/vendor/bootstrap/mixins/_badge.scss","../../../scss/vendor/bootstrap/_jumbotron.scss","../../../scss/vendor/bootstrap/_alert.scss","../../../scss/vendor/bootstrap/mixins/_alert.scss","../../../scss/vendor/bootstrap/_progress.scss","../../../scss/vendor/bootstrap/_media.scss","../../../scss/vendor/bootstrap/_list-group.scss","../../../scss/vendor/bootstrap/mixins/_list-group.scss","../../../scss/vendor/bootstrap/_close.scss","../../../scss/vendor/bootstrap/_modal.scss","../../../scss/vendor/bootstrap/_tooltip.scss","../../../scss/vendor/bootstrap/mixins/_reset-text.scss","../../../scss/vendor/bootstrap/_popover.scss","../../../scss/vendor/bootstrap/_carousel.scss","../../../scss/vendor/bootstrap/utilities/_align.scss","../../../scss/vendor/bootstrap/mixins/_background-variant.scss","../../../scss/vendor/bootstrap/utilities/_background.scss","../../../scss/vendor/bootstrap/utilities/_borders.scss","../../../scss/vendor/bootstrap/mixins/_clearfix.scss","../../../scss/vendor/bootstrap/utilities/_display.scss","../../../scss/vendor/bootstrap/utilities/_embed.scss","../../../scss/vendor/bootstrap/utilities/_flex.scss","../../../scss/vendor/bootstrap/utilities/_float.scss","../../../scss/vendor/bootstrap/mixins/_float.scss","../../../scss/vendor/bootstrap/utilities/_position.scss","../../../scss/vendor/bootstrap/utilities/_screenreaders.scss","../../../scss/vendor/bootstrap/mixins/_screen-reader.scss","../../../scss/vendor/bootstrap/utilities/_sizing.scss","../../../scss/vendor/bootstrap/utilities/_spacing.scss","../../../scss/vendor/bootstrap/utilities/_text.scss","../../../scss/vendor/bootstrap/mixins/_text-truncate.scss","../../../scss/vendor/bootstrap/mixins/_text-emphasis.scss","../../../scss/vendor/bootstrap/mixins/_text-hide.scss","../../../scss/vendor/bootstrap/utilities/_visibility.scss","../../../scss/vendor/bootstrap/mixins/_visibility.scss","../../../scss/vendor/bootstrap/_print.scss","../../../scss/shared/_syntax-highlighting.scss","../../../scss/shared/_fonts.scss","../../../scss/shared/_base_styles.scss","../../../scss/shared/_variables.scss","../../../scss/shared/_code.scss","../../../scss/shared/_navigation.scss","../../../scss/shared/_footer.scss","../../../scss/shared/_article.scss","../../../scss/_sphinx_base.scss","../../../scss/_sphinx_layout.scss"],"names":[],"mappings":"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Cd,oBAAmB;CD3GpB;;AC8GD;EACE,yBAAwB;CD3GzB;;AC+GD;;EAEE,aAAY;CD5Gb;;AC+GD;EAKE,qBAAoB;EACpB,yBAAwB;CDhHzB;;ACuHD;;EAEE,yBAAwB;CDpHzB;;AC4HD;EACE,cAAa;EACb,2BAA0B;CDzH3B;;ACgID;EACE,sBAAqB;CD7HtB;;ACgID;EACE,mBAAkB;EAClB,gBAAe;CD7HhB;;ACgID;EACE,cAAa;CD7Hd;;ACkID;EACE,yBAAwB;CD/HzB;;AI3VD;;EAEE,sBFmPwC;EElPxC,qBFmPmC;EElPnC,iBFmP+B;EElP/B,iBFmP+B;EElP/B,eForBiD;CFtVlD;;AI3VD;EAAU,kBFqOyC;CF0HlD;;AI9VD;EAAU,gBFqOuC;CF6HhD;;AIjWD;EAAU,mBFqO0C;CFgInD;;AIpWD;EAAU,kBFqOyC;CFmIlD;;AIvWD;EAAU,mBFqO0C;CFsInD;;AI1WD;EAAU,gBFqOmC;CFyI5C;;AI5WD;EACE,mBFqPmD;EEpPnD,iBFqP+B;CF0HhC;;AI3WD;EACE,gBFoOgC;EEnOhC,iBFwO+B;EEvO/B,iBF2OiD;CFmIlD;;AI5WD;EACE,kBFgOkC;EE/NlC,iBFoO+B;EEnO/B,iBFsOiD;CFyIlD;;AI7WD;EACE,kBF4NkC;EE3NlC,iBFgO+B;EE/N/B,iBFiOiD;CF+IlD;;AI9WD;EACE,kBFwNkC;EEvNlC,iBF4N+B;EE3N/B,iBF4NiD;CFqJlD;;AIzWD;EACE,iBF6OmC;EE5OnC,oBF4OmC;EE3OnC,UAAS;EACT,yCAAmD;CJ4WpD;;AIpWD;;EAEE,eF2M+B;EE1M/B,iBFyK+B;CF8LhC;;AIpWD;;EAEE,eF+MgC;EE9MhC,0BFuNmC;CFgJpC;;AI/VD;EC/EE,gBAAe;EACf,iBAAgB;CLkbjB;;AI/VD;ECpFE,gBAAe;EACf,iBAAgB;CLubjB;;AIjWD;EACE,sBAAqB;CJoWtB;AIlWC;EACE,qBFiM+B;CFmKlC;;AI1VD;EACE,eAAc;EACd,0BAAyB;CJ6V1B;;AIzVD;EACE,oBFKW;EEJX,mBFmKmD;CFyLpD;;AIzVD;EACE,eAAc;EACd,eAAc;EACd,eFotB2C;CFxX5C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AwB,8BAAS;QAAT,kBAAS;YAAT,SAAS;Gdo3CtC;;Ecp3CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdw3CtC;;Ecx3CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gd43CtC;;Ec53CK;IAAwB,8BAAS;QAAT,mBAAS;YAAT,UAAS;Gdg4CtC;;Ec13CO;IHTR,eAA4B;GXu4C3B;;Ec93CO;IHTR,2BAA+C;GX24C9C;;Ecl4CO;IHTR,4BAA+C;GX+4C9C;;Ect4CO;IHTR,iBAA+C;GXm5C9C;;Ec14CO;IHTR,4BAA+C;GXu5C9C;;Ec94CO;IHTR,4BAA+C;GX25C9C;;Ecl5CO;IHTR,iBAA+C;GX+5C9C;;Ect5CO;IHTR,4BAA+C;GXm6C9C;;Ec15CO;IHTR,4BAA+C;GXu6C9C;;Ec95CO;IHTR,iBAA+C;GX26C9C;;Ecl6CO;IHTR,4BAA+C;GX+6C9C;;Ect6CO;IHTR,4BAA+C;GXm7C9C;CACF;Ael+CD;EACE,YAAW;EACX,gBAAe;EACf,oBb8GW;Ea7GX,8BbsSuC;CF8rCxC;Ael+CC;;EAEE,iBb+RgC;Ea9RhC,oBAAmB;EACnB,8BAAyD;Cfo+C5D;Aej+CC;EACE,uBAAsB;EACtB,iCAAkE;Cfm+CrE;Aeh+CC;EACE,8BAA+D;Cfk+ClE;Ae/9CC;EACE,uBby1BsC;CFwoBzC;;Aev9CC;;EAEE,gBbqQ+B;CFqtClC;;Aej9CD;EACE,0BAAqD;Cfo9CtD;Ael9CC;;EAEE,0BAAqD;Cfo9CxD;Aeh9CG;;EAEE,yBAA8C;Cfk9CnD;;Aev8CC;EACE,sCbwO2C;CFkuC9C;;AGngDC;EYqEI,uCb8NuC;CFouC5C;;AgB/gDG;;;EAGE,0BAA6B;ChBkhDlC;;AG7gDC;EaMM,0BAJsC;ChB+gD7C;AgBzgDO;;EAEE,0BARoC;ChBmhD7C;;AgB7hDG;;;EAGE,0BAA6B;ChBgiDlC;;AG3hDC;EaMM,0BAJsC;ChB6hD7C;AgBvhDO;;EAEE,0BARoC;ChBiiD7C;;AgB3iDG;;;EAGE,0BAA6B;ChB8iDlC;;AGziDC;EaMM,0BAJsC;ChB2iD7C;AgBriDO;;EAEE,0BARoC;ChB+iD7C;;AgBzjDG;;;EAGE,0BAA6B;ChB4jDlC;;AGvjDC;EaMM,0BAJsC;ChByjD7C;AgBnjDO;;EAEE,0BARoC;ChB6jD7C;;AgBvkDG;;;EAGE,0BAA6B;ChB0kDlC;;AGrkDC;EaMM,0BAJsC;ChBukD7C;AgBjkDO;;EAEE,0BARoC;ChB2kD7C;;AgBrlDG;;;EAGE,0BAA6B;ChBwlDlC;;AGnlDC;EaMM,0BAJsC;ChBqlD7C;AgB/kDO;;EAEE,0BARoC;ChBylD7C;;AgBnmDG;;;EAGE,0BAA6B;ChBsmDlC;;AGjmDC;EaMM,0BAJsC;ChBmmD7C;AgB7lDO;;EAEE,0BARoC;ChBumD7C;;AgBjnDG;;;EAGE,0BAA6B;ChBonDlC;;AG/mDC;EaMM,0BAJsC;ChBinD7C;AgB3mDO;;EAEE,0BARoC;ChBqnD7C;;AgB/nDG;;;EAGE,uCdwSuC;CF01C5C;;AG7nDC;EaMM,uCAJsC;ChB+nD7C;AgBznDO;;EAEE,uCARoC;ChBmoD7C;;AeviDG;EACE,YbuwBoC;EatwBpC,0BbywBuC;EaxwBvC,sBb6MgD;CF61CrD;AeriDG;EACE,ebsrBsD;EarrBtD,0BbmtBuC;EaltBvC,sBb+rBuC;CFw2B5C;;AeliDD;EACE,YbuvBwC;EatvBxC,0BbyvB2C;CF4yB5C;AeniDC;;;EAGE,sBbyLkD;CF42CrD;AeliDC;EACE,UAAS;CfoiDZ;AehiDG;EACE,4Cb8KyC;CFo3C9C;AGhqDC;EYqIM,6CbwKwC;CFs3C/C;;AYxmDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GfghDjD;Ee7gDK;IACE,UAAS;Gf+gDhB;CACF;AYrnDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;Gf4hDjD;EezhDK;IACE,UAAS;Gf2hDhB;CACF;AYjoDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GfwiDjD;EeriDK;IACE,UAAS;GfuiDhB;CACF;AY7oDG;EG2FA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;I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BAAsB;CrB4nEzB;;AqBlnED;;EAEE,qBAAoB;CrBqnErB;;AqB5mEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbimEjC;AGnqEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBwqE9B;AsBrqEC;EAMI,wDAAoD;UAApD,gDAAoD;CtBkqEzD;AsB7pEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb8mEjC;AsB3pEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBwpE/B;AsBtpEG;EAKI,wDAAoD;UAApD,gDAAoD;CtBopE3D;;AqBvoEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;Cb4nEjC;AG9rEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBmsE9B;AsBhsEC;EAMI,0DAAoD;UAApD,kDAAoD;CtB6rEzD;AsBxrEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CbyoEjC;AsBtrEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBmrE/B;AsBjrEG;EAKI,0DAAoD;UAApD,kDAAoD;CtB+qE3D;;AqBlqEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbupEjC;AGztEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtB8tE9B;AsB3tEC;EAMI,wDAAoD;UAApD,gDAAoD;CtBwtEzD;AsBntEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CboqEjC;AsBjtEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtB8sE/B;AsB5sEG;EAKI,wDAAoD;UAApD,gDAAoD;CtB0sE3D;;AqB7rEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbkrEjC;AGpvEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtByvE9B;AsBtvEC;EAMI,yDAAoD;UAApD,iDAAoD;CtBmvEzD;AsB9uEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb+rEjC;AsB5uEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtByuE/B;AsBvuEG;EAKI,yDAAoD;UAApD,iDAAoD;CtBquE3D;;AqBxtEC;ECzDA,epBi3B2C;EkBj3BzC,0BP0E8B;ESxEhC,sBTwEgC;Cb6sEjC;AG/wEC;EmBFE,epB22ByC;EkBj3BzC,0BAAwB;EEQxB,sBAA2B;CtBoxE9B;AsBjxEC;EAMI,wDAAoD;UAApD,gDAAoD;CtB8wEzD;AsBzwEC;EAEE,epBy1ByC;EoBx1BzC,0BTiD8B;EShD9B,sBTgD8B;Cb0tEjC;AsBvwEC;EAGE,epBi1ByC;EoBh1BzC,0BAAoC;EAIpC,sBAA4B;CtBowE/B;AsBlwEG;EAKI,wDAAoD;UAApD,gDAAoD;CtBgwE3D;;AqBnvEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;CbwuEjC;AG1yEC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtB+yE9B;AsB5yEC;EAMI,wDAAoD;UAApD,gDAAoD;CtByyEzD;AsBpyEC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;CbqvEjC;AsBlyEC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtB+xE/B;AsB7xEG;EAKI,wDAAoD;UAApD,gDAAoD;CtB2xE3D;;AqB9wEC;ECzDA,epBi3B2C;EkBj3BzC,0BP0E8B;ESxEhC,sBTwEgC;CbmwEjC;AGr0EC;EmBFE,epB22ByC;EkBj3BzC,0BAAwB;EEQxB,sBAA2B;CtB00E9B;AsBv0EC;EAMI,0DAAoD;UAApD,kDAAoD;CtBo0EzD;AsB/zEC;EAEE,epBy1ByC;EoBx1BzC,0BTiD8B;EShD9B,sBTgD8B;CbgxEjC;AsB7zEC;EAGE,epBi1ByC;EoBh1BzC,0BAAoC;EAIpC,sBAA4B;CtB0zE/B;AsBxzEG;EAKI,0DAAoD;UAApD,kDAAoD;CtBszE3D;;AqBzyEC;ECzDA,YpB82BwC;EkB92BtC,0BP0E8B;ESxEhC,sBTwEgC;Cb8xEjC;AGh2EC;EmBFE,YpBw2BsC;EkB92BtC,0BAAwB;EEQxB,sBAA2B;CtBq2E9B;AsBl2EC;EAMI,uDAAoD;UAApD,+CAAoD;CtB+1EzD;AsB11EC;EAEE,YpBs1BsC;EoBr1BtC,0BTiD8B;EShD9B,sBTgD8B;Cb2yEjC;AsBx1EC;EAGE,YpB80BsC;EoB70BtC,0BAAoC;EAIpC,sBAA4B;CtBq1E/B;AsBn1EG;EAKI,uDAAoD;UAApD,+CAAoD;CtBi1E3D;;AqB9zEC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb0zEjC;AsB50EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb+zEjC;AsB30EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtB40EtD;AsBz0EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB00EhC;AsBv0EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cb20EjC;AsBr0EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtBm0E1D;;AqBz1EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbq1EjC;AsBv2EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb01EjC;AsBt2EC;EAEE,0DAAmD;UAAnD,kDAAmD;CtBu2EtD;AsBp2EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBq2EhC;AsBl2EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbs2EjC;AsBh2EG;EAKI,0DAAmD;UAAnD,kDAAmD;CtB81E1D;;AqBp3EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbg3EjC;AsBl4EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbq3EjC;AsBj4EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBk4EtD;AsB/3EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBg4EhC;AsB73EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbi4EjC;AsB33EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtBy3E1D;;AqB/4EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb24EjC;AsB75EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbg5EjC;AsB55EC;EAEE,yDAAmD;UAAnD,iDAAmD;CtB65EtD;AsB15EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB25EhC;AsBx5EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cb45EjC;AsBt5EG;EAKI,yDAAmD;UAAnD,iDAAmD;CtBo5E1D;;AqB16EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbs6EjC;AsBx7EC;EACE,epBwzByC;EoBvzBzC,0BTgB8B;ESf9B,sBTe8B;Cb26EjC;AsBv7EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBw7EtD;AsBr7EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBs7EhC;AsBn7EC;EAGE,epBqyByC;EoBpyBzC,0BTH8B;ESI9B,sBTJ8B;Cbu7EjC;AsBj7EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtB+6E1D;;AqBr8EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbi8EjC;AsBn9EC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cbs8EjC;AsBl9EC;EAEE,wDAAmD;UAAnD,gDAAmD;CtBm9EtD;AsBh9EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBi9EhC;AsB98EC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;Cbk9EjC;AsB58EG;EAKI,wDAAmD;UAAnD,gDAAmD;CtB08E1D;;AqBh+EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cb49EjC;AsB9+EC;EACE,epBwzByC;EoBvzBzC,0BTgB8B;ESf9B,sBTe8B;Cbi+EjC;AsB7+EC;EAEE,0DAAmD;UAAnD,kDAAmD;CtB8+EtD;AsB3+EC;EAEE,eTK8B;ESJ9B,8BAA6B;CtB4+EhC;AsBz+EC;EAGE,epBqyByC;EoBpyBzC,0BTH8B;ESI9B,sBTJ8B;Cb6+EjC;AsBv+EG;EAKI,0DAAmD;UAAnD,kDAAmD;CtBq+E1D;;AqB3/EC;ECZA,eTuBgC;EStBhC,8BAA6B;EAC7B,uBAAsB;EACtB,sBToBgC;Cbu/EjC;AsBzgFC;EACE,YpBqzBsC;EoBpzBtC,0BTgB8B;ESf9B,sBTe8B;Cb4/EjC;AsBxgFC;EAEE,uDAAmD;UAAnD,+CAAmD;CtBygFtD;AsBtgFC;EAEE,eTK8B;ESJ9B,8BAA6B;CtBugFhC;AsBpgFC;EAGE,YpBkyBsC;EoBjyBtC,0BTH8B;ESI9B,sBTJ8B;CbwgFjC;AsBlgFG;EAKI,uDAAmD;UAAnD,+CAAmD;CtBggF1D;;AqB3gFD;EACE,iBnB6J+B;EmB5J/B,eRFgC;EQGhC,8BAA6B;CrB8gF9B;AGnlFC;EkBwEE,enBsiBiD;EmBriBjD,2BnBiEiC;EmBhEjC,8BAA6B;EAC7B,0BAAyB;CrB8gF5B;AqB3gFC;EAEE,2BnB0DiC;EmBzDjC,0BAAyB;EACzB,yBAAgB;UAAhB,iBAAgB;CrB4gFnB;AqBzgFC;EAEE,eRrB8B;Cb+hFjC;;AqB//ED;ECbE,qBAA8B;EAC9B,mBpBsf+C;EoBrf/C,iBpBmS+D;EoBhS7D,sBpB8Q2C;CFgwE9C;;AqBlgFD;ECjBE,wBAA8B;EAC9B,oBpBmlB+C;EoBllB/C,iBpB+R+D;EoB5R7D,sBpB+Q2C;CFswE9C;;AqBhgFD;EACE,eAAc;EACd,YAAW;CrBmgFZ;AqBhgFC;EACE,mBnB+O+B;CFmxElC;;AqB1/EC;;;EACE,YAAW;CrB+/Ed;;AuBzoFD;EACE,WAAU;ELEN,yCAAuB;EAAvB,iCAAuB;ClB2oF5B;AuB1oFC;EACE,WAAU;CvB4oFb;;AuBxoFD;EACE,cAAa;CvB2oFd;AuB1oFC;EACE,eAAc;CvB4oFjB;;AuBvoFC;EACE,mBAAkB;CvB0oFrB;;AuBroFC;EACE,yBAAwB;CvBwoF3B;;AuBpoFD;EACE,mBAAkB;EAClB,UAAS;EACT,iBAAgB;EL5BZ,sCAAuB;EAAvB,8BAAuB;ClBoqF5B;;AwBxqFD;;EAEE,mBAAkB;CxB2qFnB;;AyBlpF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AAgB;EAChB,gB1B0IgC;E0BzIhC,iB1B8I+B;E0B7I/B,iB1ByZwD;E0BxZxD,e1BysB0D;E0BxsB1D,mBAAkB;EAClB,oBAAmB;EACnB,0B1BouB2C;E0BnuB3C,0BAAiE;EpBlG/D,uBN2foD;CFgiFvD;A4Br7FC;;EAEE,cAAa;C5Bu7FhB;;A4Br5FD;;;;;;EpB7HI,2BoBmI4B;EpBlI5B,8BoBkI4B;C5By5F/B;;A4Bt5FD;;;;;;EpBxHI,0BoB8H2B;EpB7H3B,6BoB6H2B;C5B05F9B;;A6B9iGD;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAsC;EACtC,qB3B6a4C;CFooF7C;;A6B9iGD;EACE,4BAAoB;EAApB,4BAAoB;EAApB,qBAAoB;EACpB,mB3Bya0C;CFwoF3C;;A6B9iGD;EACE,mBAAkB;EAClB,YAAW;EACX,WAAU;C7BijGX;A6B/iGC;EACE,Y3By1BsC;EkB92BtC,0BP0E8B;Cb6/FjC;A6B7iGC;EAEE,yE3Bwa2F;U2Bxa3F,iE3Bwa2F;CFsoF9F;A6B3iGC;EACE,Y3B80BsC;E2B70BtC,0B3Bsa8E;CFuoFjF;A6BxiGG;EACE,ehBmC4B;CbugGjC;A6BxiGK;EACE,0B3ByxBqC;CFixE5C;;A6BhiGD;EACE,iBAAgB;C7BmiGjB;A6BhiGC;EACE,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B0XwC;E2BzXxC,a3ByXwC;E2BxXxC,qBAAoB;EACpB,YAAW;EACX,0BAAiB;KAAjB,uBAAiB;MAAjB,sBAAiB;UAAjB,kBAAiB;EACjB,0B3B8uByC;CFozE5C;A6B7hGC;EACE,mBAAkB;EAClB,aAA+D;EAC/D,QAAO;EACP,eAAc;EACd,Y3B2WwC;E2B1WxC,a3B0WwC;E2BzWxC,YAAW;EACX,6BAA4B;EAC5B,mCAAkC;EAClC,yB3BwW4C;CFurF/C;;A6BrhGC;ErB7FE,uBN4c0D;CF0qF7D;A6BphGG;EThGA,0BP0E8B;Cb6iGjC;A6BphGG;EACE,2N3BuW+S;CF+qFpT;A6BjhGG;ETzGA,0BP0E8B;CbmjGjC;A6BhhGG;EACE,wK3BiWmQ;CFirFxQ;A6B7gGG;EACE,yC3B6U0E;CFksF/E;A6B7gGG;EACE,yC3B0U0E;CFqsF/E;;A6BrgGC;EACE,mB3BgV+C;CFwrFlD;A6BpgGG;ETtIA,0BP0E8B;CbmkGjC;A6BpgGG;EACE,qK3ByUyP;CF6rF9P;A6BjgGG;EACE,yC3BiT0E;CFktF/E;;A6Bv/FD;EACE,sBAAqB;EACrB,YAAW;EACX,4B3B+U+C;E2B9U/C,2CAAiJ;EACjJ,iB3BmVwD;E2BlVxD,e3BmoB0D;E2BloB1D,uBAAsB;EACtB,uNAAsG;EACtG,0B3ByT2C;E2BxT3C,0BAAqE;EAEnE,uB3B2T8C;E2BvThD,yBAAgB;KAAhB,sBAAgB;UAAhB,iBAAgB;C7Bs/FjB;A6Bp/FC;EACE,sB3BgUyD;E2B/TzD,WAAU;EACV,2F3BqTwH;U2BrTxH,mF3BqTwH;CFisF3H;A6Bp/FG;EAME,e3B4mBsD;E2B3mBtD,uB3BorBoC;CF6zEzC;A6B7+FC;EAEE,aAAY;EACZ,uB3BqRqC;E2BpRrC,uBAAsB;C7B8+FzB;A6B3+FC;EACE,ehB5H8B;EgB6H9B,0B3B4nByC;CFi3E5C;A6Bz+FC;EACE,WAAU;C7B2+Fb;;A6Bv+FD;EACE,8B3BwRkD;E2BvRlD,sB3BmQyC;E2BlQzC,yB3BkQyC;E2BjQzC,e3BoRqC;CFstFtC;;A6Bv+FD;EACE,6B3BoRkD;E2BnRlD,sB3B4PyC;E2B3PzC,yB3B2PyC;E2B1PzC,gB3BgRsC;CF0tFvC;;A6Bl+FD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,YAAW;EACX,4B3BuQ+C;E2BtQ/C,iBAAgB;C7Bq+FjB;;A6Bl+FD;EACE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,4B3B+P+C;E2B9P/C,UAAS;EACT,WAAU;C7Bq+FX;A6Bn+FC;EACE,sB3B2PyD;E2B1PzD,yD3B+X2D;U2B/X3D,iD3B+X2D;CFsmF9D;A6Bn+FG;EACE,sB3BuPuD;CF8uF5D;A6Bh+FG;EACE,kB3BgQQ;CFkuFb;;A6B79FD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,QAAO;EACP,WAAU;EACV,4B3BqO+C;E2BpO/C,0BAAsD;EACtD,iB3By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B;EAAxB,gCAAwB;EAAxB,yBAAwB;EAGxB,8BAAgB;MAAhB,iBAAgB;C/Bm7GzB;A+Bh7GO;EACE,cAAa;C/Bk7GtB;A+B96GS;EACE,UAAS;EACT,aAAY;C/Bg7GvB;;A+Bj6GC;EACE,0B7BmZgD;CFihGnD;AGrmHC;E4BoMI,0B7BgZ8C;CFohGnD;A+B/5GG;EACE,0B7BwY8C;CFyhGnD;AG3mHC;E4B6MM,0B7BsY4C;CF2hGnD;A+B95GK;EACE,0B7BoY4C;CF4hGnD;A+B55GG;;;;EAIE,0B7B2X8C;CFmiGnD;A+B15GC;EACE,0B7BoXgD;E6BnXhD,iC7BwXgD;CFoiGnD;A+Bz5GC;EACE,sQ7BmXgT;CFwiGnT;A+Bx5GC;EACE,0B7B2WgD;CF+iGnD;A+Bz5GG;EACE,0B7B2W8C;CFgjGnD;AGpoHC;E4B4OM,0B7BwW4C;CFmjGnD;;A+Bn5GC;EACE,Y7B6mBsC;CFyyFzC;AG3oHC;E4BwPI,Y7B0mBoC;CF4yFzC;A+Bj5GG;EACE,gC7B6U8C;CFskGnD;AGjpHC;E4BiQM,iC7B2U6C;CFwkGpD;A+Bh5GK;EACE,iC7ByU6C;CFykGpD;A+B94GG;;;;EAIE,Y7BqlBoC;CF2zFzC;A+B54GC;EACE,gC7ByTgD;E6BxThD,uC7B6TgD;CFilGnD;A+B34GC;EACE,4Q7BwT+S;CFqlGlT;A+B14GC;EACE,gC7BgTgD;CF4lGnD;A+B34GG;EACE,Y7BqkBoC;CFw0FzC;AG1qHC;E4BgSM,Y7BkkBkC;CF20FzC;;AgC3rHD;EACE,mBAAkB;EAClB,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;EACtB,aAAY;EACZ,sBAAqB;EACrB,uB9B02BwC;E8Bz2BxC,4BAA2B;EAC3B,uCAAmD;ExBRjD,uBNgpB8C;CFujGjD;AgC5rHC;EACE,gBAAe;EACf,eAAc;ChC8rHjB;AgC1rHG;ExBXA,gCN0oB8C;EMzoB9C,iCNyoB8C;CF+jGjD;AgCxrHG;ExBHA,oCN4nB8C;EM3nB9C,mCN2nB8C;CFmkGjD;;AgCtrHD;EAGE,oBAAc;MAAd,mBAAc;UAAd,eAAc;EACd,iB9B6mByC;CF0kG1C;;AgCprHD;EACE,uB9BwmBwC;CF+kGzC;;AgCprHD;EACE,sBAAiC;EACjC,iBAAgB;ChCurHjB;;AgCprHD;EACE,iBAAgB;ChCurHjB;;AG3tHC;E6ByCE,sBAAqB;ChCsrHxB;AgCnrHC;EACE,qB9BulBuC;CF8lG1C;;AgC7qHD;EACE,yBAAsC;EACtC,iBAAgB;EAChB,sC9BilBmD;E8BhlBnD,8CAA0D;ChCgrH3D;AgC9qHC;ExBrEE,2DwBsE8E;ChCgrHjF;AgC5qHG;EACE,cAAa;ChC8qHlB;;AgCzqHD;EACE,yBAAsC;EACtC,sC9BikBmD;E8BhkBnD,2CAAuD;ChC4qHxD;AgC1qHC;ExBrFE,2DwBsF8E;ChC4qHjF;;AgCnqHD;EACE,wBAAmC;EACnC,wBAA8B;EAC9B,uBAAkC;EAClC,iBAAgB;ChCsqHjB;;AgCnqHD;EACE,wBAAmC;EACnC,uBAAkC;ChCsqHnC;;AgClqHD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,iB9BoiByC;CFioG1C;;AgClqHD;EACE,YAAW;ExBtHT,mCNkpBqF;CF0oGxF;;AgCjqHD;EACE,YAAW;ExBtHT,4CN4oBqF;EM3oBrF,6CN2oBqF;CFgpGxF;;AgClqHD;EACE,YAAW;ExB7GT,gDN8nBqF;EM7nBrF,+CN6nBqF;CFspGxF;;AgChqHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;ChCmqHvB;AgCjqHC;EACE,oB9B4gBkD;CFupGrD;AYxvHG;EoBgFJ;IASI,+BAAmB;IAAnB,8BAAmB;QAAnB,wBAAmB;YAAnB,oBAAmB;IACnB,oBAAgC;IAChC,mBAA+B;GhCmqHhC;EgCjqHC;IACE,qBAAa;IAAb,qBAAa;IAAb,cAAa;IAEb,oBAAY;QAAZ,iBAAY;YAAZ,aAAY;IACZ,6BAAsB;IAAtB,8BAAsB;QAAtB,2BAAsB;YAAtB,uBAAsB;IACtB,mB9B+fgD;I8B9fhD,iBAAgB;IAChB,kB9B6fgD;GFqqGnD;CACF;;AgCzpHD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,6BAAsB;EAAtB,8BAAsB;MAAtB,2BAAsB;UAAtB,uBAAsB;ChC4pHvB;AgCxpHC;EACE,oB9B4ekD;CF8qGrD;AY/wHG;EoB8GJ;IAWI,+BAAmB;IAAnB,8BAAmB;QAAnB,wBAAmB;YAAnB,oBAAmB;GhC0pHpB;EgCvpHC;IAEE,oBAAY;QAAZ,iBAAY;YAAZ,aAAY;IACZ,iBAAgB;GhCwpHnB;EgCtpHG;IACE,eAAc;IACd,eAAc;GhCwpHnB;EgCnpHK;IxBnLJ,2BwBoLoC;IxBnLpC,8BwBmLoC;GhCspHrC;EgCppHO;;IAEE,2BAA0B;GhCspHnC;EgCppHO;;IAEE,8BAA6B;GhCspHtC;EgClpHK;IxBlLJ,0BwBmLmC;IxBlLnC,6BwBkLmC;GhCqpHpC;EgCnpHO;;IAEE,0BAAyB;GhCqpHlC;EgCnpHO;;IAEE,6BAA4B;GhCqpHrC;EgCjpHK;IxB1NJ,uBNgpB8C;GF8tG/C;EgCjpHO;;IxBvNN,gCN0oB8C;IMzoB9C,iCNyoB8C;GFmuG/C;EgClpHO;;IxB7MN,oCN4nB8C;IM3nB9C,mCN2nB8C;GFwuG/C;EgCjpHK;IxBvOJ,iBwBwO8B;GhCmpH/B;EgCjpHO;;;;IxB1ON,iBwB8OgC;GhCmpHjC;CACF;;AgCtoHC;EACE,uB9Bga8C;CFyuGjD;AY90HG;EoBmMJ;IAMI,wB9B0ZiC;Y8B1ZjC,gB9B0ZiC;I8BzZjC,4B9B0ZuC;Y8B1ZvC,oB9B0ZuC;GF+uGxC;EgCvoHC;IACE,sBAAqB;IACrB,YAAW;GhCyoHd;CACF;;AiCp5HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;EACb,oBAAe;MAAf,gBAAe;EACf,sBAAoD;EACpD,oB/Bm0BsC;E+Bl0BtC,iBAAgB;EAChB,0B/Bm0B2C;EMr0BzC,uBN6MgC;CF6sHnC;;AiCl5HC;EACE,sBAAqB;EACrB,sB/BuzBqC;E+BtzBrC,qB/BszBqC;E+BrzBrC,epBgE8B;EoB/D9B,aAAiC;CjCq5HpC;AiC54HC;EACE,2BAA0B;CjC84H7B;AiC34HC;EACE,sBAAqB;CjC64HxB;AiC14HC;EACE,epB6C8B;Cb+1HjC;;AkC/6HD;EACE,qBAAa;EAAb,qBAAa;EAAb,cAAa;E7BGb,gBAAe;EACf,iBAAgB;EGDd,uBN6MgC;CFquHnC;;AkCh7HD;EACE,mBAAkB;EAClB,eAAc;EACd,wBAAoD;EACpD,kBAAsC;EACtC,kBhCwmBsC;EgCvmBtC,erBoEgC;EqBnEhC,uBhCu2BwC;EgCt2BxC,0BAA+D;ClCm7HhE;AkCj7HC;EACE,ehC2mBiD;EgC1mBjD,sBAAqB;EACrB,0BhCszByC;EgCrzBzC,sBhCkyByC;CFipG5C;AkCh7HC;EACE,WAAU;EACV,WAAU;EACV,yDhCgmB2D;UgChmB3D,iDhCgmB2D;CFk1G9D;AkC96HC;EACE,gBAAe;ClCg7HlB;;AkC16HG;EACE,eAAc;E1BPhB,gCNkLgC;EMjLhC,mCNiLgC;CFowHnC;AkC16HG;E1B1BA,iCNgMgC;EM/LhC,oCN+LgC;CFwwHnC;AkCz6HC;EACE,WAAU;EACV,YhCk0BsC;EgCj0BtC,0BrB6B8B;EqB5B9B,sBrB4B8B;Cb+4HjC;AkCx6HC;EACE,erBwB8B;EqBvB9B,qBAAoB;EAEpB,aAAY;EACZ,uBhCwzBsC;EgCvzBtC,sBhCyvByC;CFgrG5C;;AmCn+HC;EACE,wBAA8B;EAC9B,mBjCqlB6C;EiCplB7C,iBjCqM6B;CFiyHhC;AmCj+HK;E3BoBF,+BNmL+B;EMlL/B,kCNkL+B;CF8xHlC;AmCh+HK;E3BCF,gCNiM+B;EMhM/B,mCNgM+B;CFkyHlC;;AmCj/HC;EACE,wBAA8B;EAC9B,oBjCkrB6C;EiCjrB7C,iBjCsM6B;CF8yHhC;AmC/+HK;E3BoBF,+BNoL+B;EMnL/B,kCNmL+B;CF2yHlC;AmC9+HK;E3BCF,gCNkM+B;EMjM/B,mCNiM+B;CF+yHlC;;AoC7/HD;EACE,sBAAqB;EACrB,sBAA0C;EAC1C,elCysBqC;EkCxsBrC,iBlCysBmD;EkCxsBnD,eAAc;EACd,mBAAkB;EAClB,oBAAmB;EACnB,yBAAwB;E5BTtB,uBNitB8C;CFyzGjD;AoC7/HC;EACE,cAAa;CpC+/HhB;;AoC1/HD;EACE,mBAAkB;EAClB,UAAS;CpC6/HV;;AoCt/HD;EACE,qBlCsrBsC;EkCrrBtC,oBlCqrBsC;EMntBpC,qBNstBqC;CFk0GxC;;AoCj/HC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cbi9HjC;AG/gIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrC8hIvC;;AoC3/HC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cb29HjC;AGzhIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCwiIvC;;AoCrgIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cbq+HjC;AGniIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCkjIvC;;AoC/gIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;Cb++HjC;AG7iIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrC4jIvC;;AoCzhIC;EC1CA,enCs3B2C;EmCr3B3C,0BxB8EgC;Cby/HjC;AGvjIC;EkCZI,enCi3BuC;EmCh3BvC,sBAAqB;EACrB,0BAAkC;CrCskIvC;;AoCniIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;CbmgIjC;AGjkIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrCglIvC;;AoC7iIC;EC1CA,enCs3B2C;EmCr3B3C,0BxB8EgC;Cb6gIjC;AG3kIC;EkCZI,enCi3BuC;EmCh3BvC,sBAAqB;EACrB,0BAAkC;CrC0lIvC;;AoCvjIC;EC1CA,YnCm3BwC;EmCl3BxC,0BxB8EgC;CbuhIjC;AGrlIC;EkCZI,YnC82BoC;EmC72BpC,sBAAqB;EACrB,0BAAkC;CrComIvC;;AsC5mID;EACE,mBAAoD;EACpD,oBpCyoBsC;EoCxoBtC,0BpCs0B2C;EMr0BzC,sBN8M+B;CFi6HlC;AYvjIG;E0B5DJ;IAOI,mBAAoD;GtCgnIrD;CACF;;AsC7mID;EACE,iBAAgB;EAChB,gBAAe;E9BTb,iB8BUsB;CtCgnIzB;;AuC1nID;EACE,mBAAkB;EAClB,yBAA0C;EAC1C,oBrC2vBsC;EqC1vBtC,8BAA6C;E/BJ3C,uBN+vB8C;CFm4GjD;;AuCznID;EAEE,eAAc;CvC2nIf;;AuCvnID;EACE,iBrCgvBmD;CF04GpD;;AuClnID;EACE,oBAAwD;CvCqnIzD;AuClnIC;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,yBAA0C;EAC1C,eAAc;CvConIjB;;AuC1mIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxC4pItB;AwC1pIC;EACE,0BAAqC;CxC4pIxC;AwCzpIC;EACE,eAA0B;CxC2pI7B;;AuCtnIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCwqItB;AwCtqIC;EACE,0BAAqC;CxCwqIxC;AwCrqIC;EACE,eAA0B;CxCuqI7B;;AuCloIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCorItB;AwClrIC;EACE,0BAAqC;CxCorIxC;AwCjrIC;EACE,eAA0B;CxCmrI7B;;AuC9oIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCgsItB;AwC9rIC;EACE,0BAAqC;CxCgsIxC;AwC7rIC;EACE,eAA0B;CxC+rI7B;;AuC1pIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxC4sItB;AwC1sIC;EACE,0BAAqC;CxC4sIxC;AwCzsIC;EACE,eAA0B;CxC2sI7B;;AuCtqIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCwtItB;AwCttIC;EACE,0BAAqC;CxCwtIxC;AwCrtIC;EACE,eAA0B;CxCutI7B;;AuClrIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCouItB;AwCluIC;EACE,0BAAqC;CxCouIxC;AwCjuIC;EACE,eAA0B;CxCmuI7B;;AuC9rIC;EC9CA,eAAa;EpBKX,0BAAwB;EoBH1B,sBAAqB;CxCgvItB;AwC9uIC;EACE,0BAAqC;CxCgvIxC;AwC7uIC;EACE,eAA0B;CxC+uI7B;;AyCzvID;EACE;IAAO,4BAAuC;GzC6vI7C;EyC5vID;IAAK,yBAAwB;GzC+vI5B;CACF;;AyClwID;EACE;IAAO,4BAAuC;GzC6vI7C;EyC5vID;IAA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AiDluJD;EACE,sB/CmqBuC;CFkkIxC;AiDnuJC;EACE,kCAAwE;CjDquJ3E;AiDluJC;;;EAEE,8BAAgE;CjDquJnE;AiDluJC;EACE,UAAS;EACT,sC/CypBmE;CF2kItE;AiDjuJC;EACE,Y/CmoB6C;E+CloB7C,uB/C4zBsC;CFu6HzC;;AiD/tJD;EACE,oB/C4oBuC;CFslIxC;AiDhuJC;EACE,gCAAsE;EACtE,c/CwoBqC;E+CvoBrC,a/CsoBoC;E+CroBpC,iBAA2B;CjDkuJ9B;AiD/tJC;;;EAEE,qCAA2F;CjDkuJ9F;AiD/tJC;EACE,QAAO;EACP,wC/C+nBmE;CFkmItE;AiD9tJC;EACE,U/CymB6C;E+CxmB7C,yB/CkyBsC;CF87HzC;;AiD5tJD;EACE,mB/CknBuC;CF6mIxC;AiD7tJC;EACE,+BAAqE;CjD+tJxE;AiD5tJC;;;EAEE,qCAA2F;CjD+tJ9F;AiD5tJC;EACE,OAAM;EACN,yC/CwmBmE;CFsnItE;AiD3tJC;EACE,S/CklB6C;E+CjlB7C,0B/C2wBsC;CFk9HzC;AiDztJC;EACE,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,eAAc;EACd,Y/CslBoC;E+CrlBpC,qBAAwC;EACxC,YAAW;EACX,iCAA6D;CjD2tJhE;;AiDvtJD;EACE,qB/C+kBuC;CF2oIxC;AiDxtJC;EACE,iCAAuE;EACvE,c/C2kBqC;E+C1kBrC,a/CykBoC;E+CxkBpC,iBAA2B;CjD0tJ9B;AiDvtJC;;;EAEE,qCAA2F;CjD0tJ9F;AiDvtJC;EACE,SAAQ;EACR,uC/CkkBmE;CFupItE;AiDttJC;EACE,W/C4iB6C;E+C3iB7C,wB/CquBsC;CFm/HzC;;AiDnsJD;EACE,wBAA4D;EAC5D,iBAAgB;EAChB,gB/CkEgC;E+CjEhC,e/CwhBiD;E+CvhBjD,0B/CshByD;E+CrhBzD,iCAAyE;EzChKvE,2CyCiKyE;EzChKzE,4CyCgKyE;CjDusJ5E;AiDpsJC;EACE,cAAa;CjDssJhB;;AiDlsJD;EACE,wBAAwD;EACxD,e/CksB2C;CFmgI5C;;AkDz3JD;EACE,mBAAkB;ClD43JnB;;AkDz3JD;EACE,mBA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EAEE,8BAAkC;CjEi3M3C;;AiE/2MO;;EAEE,+BAAmC;CjEk3M5C;;AiEh3MO;;EAEE,6BAAiC;CjEm3M1C;;AiEl4MO;EAAgC,sBAA4B;CjEs4MnE;;AiEr4MO;;EAEE,0BAAgC;CjEw4MzC;;AiEt4MO;;EAEE,4BAAkC;CjEy4M3C;;AiEv4MO;;EAEE,6BAAmC;CjE04M5C;;AiEx4MO;;EAEE,2BAAiC;CjE24M1C;;AiE15MO;EAAgC,4BAA4B;CjE85MnE;;AiE75MO;;EAEE,gCAAgC;CjEg6MzC;;AiE95MO;;EAEE,kCAAkC;CjEi6M3C;;AiE/5MO;;EAEE,mCAAmC;CjEk6M5C;;AiEh6MO;;EAEE,iCAAiC;CjEm6M1C;;AiEl7MO;EAAgC,2BAA4B;CjEs7MnE;;AiEr7MO;;EAEE,+BAAgC;CjEw7MzC;;AiEt7MO;;EAEE,iCAAkC;CjEy7M3C;;AiEv7MO;;EAEE,kCAAmC;CjE07M5C;;AiEx7MO;;EAEE,gCAAiC;CjE27M1C;;AiE18MO;EAAgC,yBAA4B;CjE88MnE;;AiE78MO;;EAEE,6BAAgC;CjEg9MzC;;AiE98MO;;EAEE,+BAAkC;CjEi9M3C;;AiE/8MO;;EAEE,gCAAmC;CjEk9M5C;;AiEh9MO;;EAEE,8BAAiC;CjEm9M1C;;AiEl+MO;EAAgC,2BAA4B;CjEs+MnE;;AiEr+MO;;EAEE,+BAAgC;CjEw+MzC;;AiEt+MO;;EAEE,iCAAkC;CjEy+M3C;;AiEv+MO;;EAEE,kCAAmC;CjE0+M5C;;AiEx+MO;;EAEE,gCAAiC;CjE2+M1C;;AiE1/MO;EAAgC,yBAA4B;CjE8/MnE;;AiE7/MO;;EAEE,6BAAgC;CjEggNzC;;AiE9/MO;;EAEE,+BAAkC;CjEigN3C;;AiE//MO;;EAEE,gCAAmC;CjEkgN5C;;AiEhgNO;;EAEE,8BAAiC;CjEmgN1C;;AiE7/MG;EAAmB,wBAAuB;CjEigN7C;;AiEhgNG;;EAEE,4BAA2B;CjEmgNhC;;AiEjgNG;;EAEE,8BAA6B;CjEogNlC;;AiElgNG;;EAEE,+BAA8B;CjEqgNnC;;AiEngNG;;EAEE,6BAA4B;CjEsgNjC;;AYz/MG;EqDjDI;IAAgC,qBAA4B;GjE+iNjE;;EiE9iNK;;IAEE,yBAAgC;GjEijNvC;;EiE/iNK;;IAEE,2BAAkC;GjEkjNzC;;EiEhjNK;;IAEE,4BAAmC;GjEmjN1C;;EiEjjNK;;IAEE,0BAAiC;GjEojNxC;;EiEnkNK;IAAgC,2BAA4B;GjEukNjE;;EiEtkNK;;IAEE,+BAAgC;GjEykNvC;;EiEvkNK;;IAEE,iCAAkC;GjE0kNzC;;EiExkNK;;IAEE,kCAAmC;GjE2kN1C;;EiEzkNK;;IAEE,gCAAiC;GjE4kNxC;;EiE3lNK;IAAgC,0BAA4B;GjE+lNjE;;EiE9lNK;;IAEE,8BAAgC;GjEimNvC;;EiE/lNK;;IAEE,gCAAkC;GjEkmNzC;;EiEhmNK;;IAEE,iCAAmC;GjEmmN1C;;EiEjmNK;;IAEE,+BAAiC;GjEomNxC;;EiEnnNK;IAAgC,wBAA4B;GjEunNjE;;EiEtnNK;;IAEE,4BAAgC;GjEynNvC;;EiEvnNK;;IAEE,8BAAkC;GjE0nNzC;;EiExnNK;;IAEE,+BAAmC;GjE2nN1C;;EiEznNK;;IAEE,6BAAiC;GjE4nNxC;;EiE3oNK;IAAgC,0BAA4B;GjE+oNjE;;EiE9oNK;;IAEE,8BAAgC;GjEipNvC;;EiE/oNK;;IAEE,gCAAkC;GjEkpNzC;;EiEhpNK;;IAEE,iCAAmC;GjEmpN1C;;EiEjpNK;;IAEE,+BAAiC;GjEopNxC;;EiEnqNK;IAAgC,wBAA4B;GjEuqNjE;;EiEtqNK;;IAEE,4BAAgC;GjEyqNvC;;EiEvqNK;;IAEE,8BAAkC;GjE0qNzC;;EiExqNK;;IAEE,+BAAmC;GjE2qN1C;;EiEzqNK;;IAEE,6BAAiC;GjE4qNxC;;EiE3rNK;IAAgC,sBAA4B;GjE+rNjE;;EiE9rNK;;IAEE,0BAAgC;GjEisNvC;;EiE/rNK;;IAEE,4BAAkC;GjEksNzC;;EiEhsNK;;IAEE,6BAAmC;GjEmsN1C;;EiEjsNK;;IAEE,2BAAiC;GjEosNxC;;EiEntNK;IAAgC,4BAA4B;GjEutNjE;;EiEttNK;;IAEE,gCAAgC;GjEytNvC;;EiEvtNK;;IAEE,kCAAkC;GjE0tNzC;;EiExtNK;;IAEE,mCAAmC;GjE2tN1C;;EiEztNK;;IAEE,iCAAiC;GjE4tNxC;;EiE3uNK;IAAgC,2BAA4B;GjE+uNjE;;EiE9uNK;;IAEE,+BAAgC;GjEivNvC;;EiE/uNK;;IAEE,iCAAkC;GjEkvNzC;;EiEhvNK;;IAEE,kCAAmC;GjEmvN1C;;EiEjvNK;;IAEE,gCAAiC;GjEovNxC;;EiEnwNK;IAAgC,yBAA4B;GjEuwNjE;;EiEtwNK;;IAEE,6BAAgC;GjEywNvC;;EiEvwNK;;IAEE,+BAAkC;GjE0wNzC;;EiExwNK;;IAEE,gCAAmC;GjE2wN1C;;EiEzwNK;;IAEE,8BAAiC;GjE4wNxC;;EiE3xNK;IAAgC,2BAA4B;GjE+xNjE;;EiE9xNK;;IAEE,+BAAgC;GjEiyNvC;;EiE/xNK;;IAEE,iCAAkC;GjEkyNzC;;EiEhyNK;;IAEE,kCAAmC;GjEmyN1C;;EiEjyNK;;IAEE,gCAAiC;GjEoyNxC;;EiEnzNK;IAAgC,yBAA4B;GjEuzNjE;;EiEtzNK;;IAEE,6BAAgC;GjEyzNvC;;EiEvzNK;;IAEE,+BAAkC;GjE0zNzC;;EiExzNK;;IAEE,gCAAmC;GjE2zN1C;;EiEzzNK;;IAEE,8BAAiC;GjE4zNxC;;EiEtzNC;IAAmB,wBAAuB;GjE0zN3C;;EiEzzNC;;IAEE,4BAA2B;GjE4zN9B;;EiE1zNC;;IAEE,8BAA6B;GjE6zNhC;;EiE3zNC;;IAEE,+BAA8B;GjE8zNjC;;EiE5zNC;;IAEE,6BAA4B;GjE+zN/B;CACF;AYnzNG;EqDjDI;IAAgC,qBAA4B;GjEw2NjE;;EiEv2NK;;IAEE,yBAAgC;GjE02NvC;;EiEx2NK;;IAEE,2BAAkC;GjE22NzC;;EiEz2NK;;IAEE,4BAAmC;GjE42N1C;;EiE12NK;;IAEE,0BAAiC;GjE62NxC;;EiE53NK;IAAgC,2BAA4B;GjEg4NjE;;EiE/3NK;;IAEE,+BAAgC;GjEk4NvC;;EiEh4NK;;IAEE,iCAAkC;GjEm4NzC;;EiEj4NK;;IAEE,kCAAmC;GjEo4N1C;;EiEl4NK;;IAEE,gCAAiC;GjEq4NxC;;EiEp5NK;IAAgC,0BAA4B;GjEw5NjE;;EiEv5NK;;IAEE,8BAAgC;GjE05NvC;;EiEx5NK;;IAEE,gCAAkC;GjE25NzC;;EiEz5NK;;IAEE,iCAAmC;GjE45N1C;;EiE15NK;;IAEE,+BAAiC;GjE65NxC;;EiE56NK;IAAgC,wBAA4B;GjEg7NjE;;EiE/6NK;;IAEE,4BAAgC;GjEk7NvC;;EiEh7NK;;IAEE,8BAAkC;GjEm7NzC;;EiEj7NK;;IAEE,+BAAmC;GjEo7N1C;;EiEl7NK;;IAEE,6BAAiC;GjEq7NxC;;EiEp8NK;IAAgC,0BAA4B;GjEw8NjE;;EiEv8NK;;IAEE,8BAAgC;GjE08NvC;;EiEx8NK;;IAEE,gCAAkC;GjE28NzC;;EiEz8NK;;IAEE,iCAAmC;GjE48N1C;;EiE18NK;;IAEE,+BAAiC;GjE68NxC;;EiE59NK;IAAgC,wBAA4B;GjEg+NjE;;EiE/9NK;;IAEE,4BAAgC;GjEk+NvC;;EiEh+NK;;IAEE,8BAAkC;GjEm+NzC;;EiEj+NK;;IAEE,+BAAmC;GjEo+N1C;;EiEl+NK;;IAEE,6BAAiC;GjEq+NxC;;EiEp/NK;IAAgC,sBAA4B;GjEw/NjE;;EiEv/NK;;IAEE,0BAAgC;GjE0/NvC;;EiEx/NK;;IAEE,4BAAkC;GjE2/NzC;;EiEz/NK;;IAEE,6BAAmC;GjE4/N1C;;EiE1/NK;;IAEE,2BAAiC;GjE6/NxC;;EiE5gOK;IAAgC,4BAA4B;GjEghOjE;;EiE/gOK;;IAEE,gCAAgC;GjEkhOvC;;EiEhhOK;;IAEE,kCAAkC;GjEmhOzC;;EiEjhOK;;IAEE,mCAAmC;GjEohO1C;;EiElhOK;;IAEE,iCAAiC;GjEqhOxC;;EiEpiOK;IAAgC,2BAA4B;GjEwiOjE;;EiEviOK;;IAEE,+BAAgC;GjE0iOvC;;EiExiOK;;IAEE,iCAAkC;GjE2iOzC;;EiEziOK;;IAEE,kCAAmC;GjE4iO1C;;EiE1iOK;;IAEE,gCAAiC;GjE6iOxC;;EiE5jOK;IAAgC,yBAA4B;GjEgkOjE;;EiE/jOK;;IAEE,6BAAgC;GjEkkOvC;;EiEhkOK;;IAEE,+BAAkC;GjEmkOzC;;EiEjkOK;;IAEE,gCAAmC;GjEokO1C;;EiElkOK;;IAEE,8BAAiC;GjEqkOxC;;EiEplOK;IAAgC,2BAA4B;GjEwlOjE;;EiEvlOK;;IAEE,+BAAgC;GjE0lOvC;;EiExlOK;;IAEE,iCAAkC;GjE2lOzC;;EiEzlOK;;IAEE,kCAAmC;GjE4lO1C;;EiE1lOK;;IAEE,gCAAiC;GjE6lOxC;;EiE5mOK;IAAgC,yBAA4B;GjEgnOjE;;EiE/mOK;;IAEE,6BAAgC;GjEknOvC;;EiEhnOK;;IAEE,+BAAkC;GjEmnOzC;;EiEjnOK;;IAEE,gCAAmC;GjEonO1C;;EiElnOK;;IAEE,8BAAiC;GjEqnOxC;;EiE/mOC;IAAmB,wBAAuB;GjEmnO3C;;EiElnOC;;IAEE,4BAA2B;GjEqnO9B;;EiEnnOC;;IAEE,8BAA6B;GjEsnOhC;;EiEpnOC;;IAEE,+BAA8B;GjEunOjC;;EiErnOC;;IAEE,6BAA4B;GjEwnO/B;CACF;AY5mOG;EqDjDI;IAAgC,qBAA4B;GjEiqOjE;;EiEhqOK;;IAEE,yBAAgC;GjEmqOvC;;EiEjqOK;;IAEE,2BAAkC;GjEoqOzC;;EiElqOK;;IAEE,4BAAmC;GjEqqO1C;;EiEnqOK;;IAEE,0BAAiC;GjEsqOxC;;EiErrOK;IAAgC,2BAA4B;GjEyrOjE;;EiExrOK;;IAEE,+BAAgC;GjE2rOvC;;EiEzrOK;;IAEE,iCAAkC;GjE4rOzC;;EiE1rOK;;IAEE,kCAAmC;GjE6rO1C;;EiE3rOK;;IAEE,gCAAiC;GjE8rOxC;;EiE7sOK;IAAgC,0BAA4B;GjEitOjE;;EiEhtOK;;IAEE,8BAAgC;GjEmtOvC;;EiEjtOK;;IAEE,gCAAkC;GjEotOzC;;EiEltOK;;IAEE,iCAAmC;GjEqtO1C;;EiEntOK;;IAEE,+BAAiC;GjEstOxC;;EiEruOK;IAAgC,wBAA4B;GjEyuOjE;;EiExuOK;;IAEE,4BAAgC;GjE2uOvC;;EiEzuOK;;IAEE,8BAAkC;GjE4uOzC;;EiE1uOK;;IAEE,+BAAmC;GjE6uO1C;;EiE3uOK;;IAEE,6BAAiC;GjE8uOxC;;EiE7vOK;IAAgC,0BAA4B;GjEiwOjE;;EiEhwOK;;IAEE,8BAAgC;GjEmwOvC;;EiEjwOK;;IAEE,gCAAkC;GjEowOzC;;EiElwOK;;IAEE,iCAAmC;GjEqwO1C;;EiEnwOK;;IAEE,+BAAiC;GjEswOxC;;EiErxOK;IAAgC,wBAA4B;GjEyxOjE;;EiExxOK;;IAEE,4BAAgC;GjE2xOvC;;EiEzxOK;;IAEE,8BAAkC;GjE4xOzC;;EiE1xOK;;IAEE,+BAAmC;GjE6xO1C;;EiE3xOK;;IAEE,6BAAiC;GjE8xOxC;;EiE7yOK;IAAgC,sBAA4B;GjEizOjE;;EiEhzOK;;IAEE,0BAAgC;GjEmzOvC;;EiEjzOK;;IAEE,4BAAkC;GjEozOzC;;EiElzOK;;IAEE,6BAAmC;GjEqzO1C;;EiEnzOK;;IAEE,2BAAiC;GjEszOxC;;EiEr0OK;IAAgC,4BAA4B;GjEy0OjE;;EiEx0OK;;IAEE,gCAAgC;GjE20OvC;;EiEz0OK;;IAEE,kCAAkC;GjE40OzC;;EiE10OK;;IAEE,mCAAmC;GjE60O1C;;EiE30OK;;IAEE,iCAAiC;GjE80OxC;;EiE71OK;IAAgC,2BAA4B;GjEi2OjE;;EiEh2OK;;IAEE,+BAAgC;GjEm2OvC;;EiEj2OK;;IAEE,iCAAkC;GjEo2OzC;;EiEl2OK;;IAEE,kCAAmC;GjEq2O1C;;EiEn2OK;;IAEE,gCAAiC;GjEs2OxC;;EiEr3OK;IAAgC,yBAA4B;GjEy3OjE;;EiEx3OK;;IAEE,6BAAgC;GjE23OvC;;EiEz3OK;;IAEE,+BAAkC;GjE43OzC;;EiE13OK;;IAEE,gCAAmC;GjE63O1C;;EiE33OK;;IAEE,8BAAiC;GjE83OxC;;EiE74OK;IAAgC,2BAA4B;GjEi5OjE;;EiEh5OK;;IAEE,+BAAgC;GjEm5OvC;;EiEj5OK;;IAEE,iCAAkC;GjEo5OzC;;EiEl5OK;;IAEE,kCAAmC;GjEq5O1C;;EiEn5OK;;IAEE,gCAAiC;GjEs5OxC;;EiEr6OK;IAAgC,yBAA4B;GjEy6OjE;;EiEx6OK;;IAEE,6BAAgC;GjE26OvC;;EiEz6OK;;IAEE,+BAAkC;GjE46OzC;;EiE16OK;;IAEE,gCAAmC;GjE66O1C;;EiE36OK;;IAEE,8BAAiC;GjE86OxC;;EiEx6OC;IAAmB,wBAAuB;GjE46O3C;;EiE36OC;;IAEE,4BAA2B;GjE86O9B;;EiE56OC;;IAEE,8BAA6B;GjE+6OhC;;EiE76OC;;IAEE,+BAA8B;GjEg7OjC;;EiE96OC;;IAEE,6BAA4B;GjEi7O/B;CACF;AYr6OG;EqDjDI;IAAgC,qBAA4B;GjE09OjE;;EiEz9OK;;IAEE,yBAAgC;GjE49OvC;;EiE19OK;;IAEE,2BAAkC;GjE69OzC;;EiE39OK;;IAEE,4BAAmC;GjE89O1C;;EiE59OK;;IAEE,0BAAiC;GjE+9OxC;;EiE9+OK;IAAgC,2BAA4B;GjEk/OjE;;EiEj/OK;;IAEE,+BAAgC;GjEo/OvC;;EiEl/OK;;IAEE,iCAAkC;GjEq/OzC;;EiEn/OK;;IAEE,kCAAmC;GjEs/O1C;;EiEp/OK;;IAEE,gCAAiC;GjEu/OxC;;EiEtgPK;IAAgC,0BAA4B;GjE0gPjE;;EiEzgPK;;IAEE,8BAAgC;GjE4gPvC;;EiE1gPK;;IAEE,gCAAkC;GjE6gPzC;;EiE3gPK;;IAEE,iCAAmC;GjE8gP1C;;EiE5gPK;;IAEE,+BAAiC;GjE+gPxC;;EiE9hPK;IAAgC,wBAA4B;GjEkiPjE;;EiEjiPK;;IAEE,4BAAgC;GjEoiPvC;;EiEliPK;;IAEE,8BAAkC;GjEqiPzC;;EiEniPK;;IAEE,+BAAmC;GjEsiP1C;;EiEpiPK;;IAEE,6BAAiC;GjEuiPxC;;EiEtjPK;IAAgC,0BAA4B;GjE0jPjE;;EiEzjPK;;IAEE,8BAAgC;GjE4jPvC;;EiE1jPK;;IAEE,gCAAkC;GjE6jPzC;;EiE3jPK;;IAEE,iCAAmC;GjE8jP1C;;EiE5jPK;;IAEE,+BAAiC;GjE+jPxC;;EiE9kPK;IAAgC,wBAA4B;GjEklPjE;;EiEjlPK;;IAEE,4BAAgC;GjEolPvC;;EiEllPK;;IAEE,8BAAkC;GjEqlPzC;;EiEnlPK;;IAEE,+BAAmC;GjEslP1C;;EiEplPK;;IAEE,6BAAiC;GjEulPxC;;EiEtmPK;IAAgC,sBAA4B;GjE0mPjE;;EiEzmPK;;IAEE,0BAAgC;GjE4mPvC;;EiE1mPK;;IAEE,4BAAkC;GjE6mPzC;;EiE3mPK;;IAEE,6BAAmC;GjE8mP1C;;EiE5mPK;;IAEE,2BAAiC;GjE+mPxC;;EiE9nPK;IAAgC,4BAA4B;GjEkoPjE;;EiEjoPK;;IAEE,gCAAgC;GjEooPvC;;EiEloPK;;IAEE,kCAAkC;GjEqoPzC;;EiEnoPK;;IAEE,mCAAmC;GjEsoP1C;;EiEpoPK;;IAEE,iCAAiC;GjEuoPxC;;EiEtpPK;IAAgC,2BAA4B;GjE0pPjE;;EiEzpPK;;IAEE,+BAAgC;GjE4pPvC;;EiE1pPK;;IAEE,iCAAkC;GjE6pPzC;;EiE3pPK;;IAEE,kCAAmC;GjE8pP1C;;EiE5pPK;;IAEE,gCAAiC;GjE+pPxC;;EiE9qPK;IAAgC,yBAA4B;GjEkrPjE;;EiEjrPK;;IAEE,6BAAgC;GjEorPvC;;EiElrPK;;IAEE,+BAAkC;GjEqrPzC;;EiEnrPK;;IAEE,gCAAmC;GjEsrP1C;;EiEprPK;;IAEE,8BAAiC;GjEurPxC;;EiEtsPK;IAAgC,2BAA4B;GjE0sPjE;;EiEzsPK;;IAEE,+BAAgC;GjE4sPvC;;EiE1sPK;;IAEE,iCAAkC;GjE6sPzC;;EiE3sPK;;IAEE,kCAAmC;GjE8sP1C;;EiE5sPK;;IAEE,gCAAiC;GjE+sPxC;;EiE9tPK;IAAgC,yBAA4B;GjEkuPjE;;EiEjuPK;;IAEE,6BAAgC;GjEouPvC;;EiEluPK;;IAEE,+BAAkC;GjEquPzC;;EiEnuPK;;IAEE,gCAAmC;GjEsuP1C;;EiEpuPK;;IAEE,8BAAiC;GjEuuPxC;;EiEjuPC;IAAmB,wBAAuB;GjEquP3C;;EiEpuPC;;IAEE,4BAA2B;GjEuuP9B;;EiEruPC;;IAEE,8BAA6B;GjEwuPhC;;EiEtuPC;;IAEE,+BAA8B;GjEyuPjC;;EiEvuPC;;IAEE,6BAA4B;GjE0uP/B;CACF;AkElxPD;EAAiB,+BAA8B;ClEqxP9C;;AkEpxPD;EAAiB,+BAA8B;ClEwxP9C;;AkEvxPD;ECNE,iBAAgB;EAChB,wBAAuB;EACvB,oBAAmB;CnEiyPpB;;AkErxPG;EAAwB,4BAA2B;ClEyxPtD;;AkExxPG;EAAwB,6BAA4B;ClE4xPvD;;AkE3xPG;EAAwB,8BAA6B;ClE+xPxD;;AYvvPG;EsD1CA;IAAwB,4BAA2B;GlEsyPpD;;EkEryPC;IAAwB,6BAA4B;GlEyyPrD;;EkExyPC;IAAwB,8BAA6B;GlE4yPtD;CACF;AYrwPG;EsD1CA;IAAwB,4BAA2B;GlEmzPpD;;EkElzPC;IAAwB,6BAA4B;GlEszPrD;;EkErzPC;IAAwB,8BAA6B;GlEyzPtD;CACF;AYlxPG;EsD1CA;IAAwB,4BAA2B;GlEg0PpD;;EkE/zPC;IAAwB,6BAA4B;GlEm0PrD;;EkEl0PC;IAAwB,8BAA6B;GlEs0PtD;CACF;AY/xPG;EsD1CA;IAAwB,4BAA2B;GlE60PpD;;EkE50PC;IAAwB,6BAA4B;GlEg1PrD;;EkE/0PC;IAAwB,8BAA6B;GlEm1PtD;CACF;AkE90PD;EAAmB,qCAAoC;ClEi1PtD;;AkEh1PD;EAAmB,qCAAoC;ClEo1PtD;;AkEn1PD;EAAmB,sCAAqC;ClEu1PvD;;AkEn1PD;EAAsB,4BAA0C;ClEu1P/D;;AkEt1PD;EAAsB,4BAA2C;ClE01PhE;;AkEz1PD;EAAsB,4BAAyC;ClE61P9D;;AkE51PD;EAAsB,8BAA6B;ClEg2PlD;;AkE51PD;EAAc,uBAAsB;ClEg2PnC;;AoEl4PC;EACE,0BAAwB;CpEq4P3B;;AGz3PC;EiERI,0BAAqC;CpEq4P1C;;AoE14PC;EACE,0BAAwB;CpE64P3B;;AGj4PC;EiERI,0BAAqC;CpE64P1C;;AoEl5PC;EACE,0BAAwB;CpEq5P3B;;AGz4PC;EiERI,0BAAqC;CpEq5P1C;;AoE15PC;EACE,0BAAwB;CpE65P3B;;AGj5PC;EiERI,0BAAqC;CpE65P1C;;AoEl6PC;EACE,0BAAwB;CpEq6P3B;;AGz5PC;EiERI,0BAAqC;CpEq6P1C;;AoE16PC;EACE,0BAAwB;CpE66P3B;;AGj6PC;EiERI,0BAAqC;CpE66P1C;;AoEl7PC;EACE,0BAAwB;CpEq7P3B;;AGz6PC;EiERI,0BAAqC;CpEq7P1C;;AoE17PC;EACE,0BAAwB;CpE67P3B;;AGj7PC;EiERI,0BAAqC;CpE67P1C;;AkE15PD;EAAc,0BAA6B;ClE85P1C;;AkE15PD;EG9CE,YAAW;EACX,mBAAkB;EAClB,kBAAiB;EACjB,8BAA6B;EAC7B,UAAS;CrE48PV;;AsE/8PD;ECCE,+BAAkC;CvEk9PnC;;AsE/8PD;ECHE,8BAAkC;CvEs9PnC;;AwEh9PC;EACE;;;IAKE,6BAA4B;IAE5B,oCAA2B;YAA3B,4BAA2B;GxEg9P9B;;EwE58PG;IACE,2BAA0B;GxE+8P/B;;EwEt8PC;IACE,8BAA6B;GxEy8PhC;;EwE37PC;IACE,iCAAgC;GxE87PnC;;EwE57PC;;IAEE,uBAAgC;IAChC,yBAAwB;GxE+7P3B;;EwEv7PC;IACE,4BAA2B;GxE07P9B;;EwEv7PC;;IAEE,yBAAwB;GxE07P3B;;EwEv7PC;;;IAGE,WAAU;IACV,UAAS;GxE07PZ;;EwEv7PC;;IAEE,wBAAuB;GxE07P1B;;EwEl7PC;IACE,StEmyBgC;GFkpOnC;EwEn7PC;IACE,4BAA2C;GxEq7P9C;;EwEn7PC;IACE,4BAA2C;GxEs7P9C;;EwEl7PC;IACE,cAAa;GxEq7PhB;;EwEn7PC;IACE,uBAAgC;GxEs7PnC;;EwEn7PC;IACE,qCAAoC;GxEs7PvC;EwEp7PG;;IAEE,kCAAiC;GxEs7PtC;;EwEl7PG;;IAEE,kCAAiC;GxEq7PtC;CACF;AyE3iQD,8CAA8C;AAE9C;EAAsB,aAAY;CzE6iQjC;;AyE5iQD;EAAuB,UAAS;CzEgjQ/B;;AyE/iQD;EACE,eAAc;EACd,mBAAkB;CzEkjQnB;;AyEhjQD;EACE,eAAc;EACd,kBAAiB;CzEmjQlB;;AyEjjQD;EACE,eAAc;EACd,mBAAkB;CzEojQnB;;AyEljQD;EACE,eAAc;EACd,kBAAiB;EACjB,mBAAkB;CzEqjQnB;;AyEnjQD;EACE,eAAc;EACd,mBAAkB;CzEsjQnB;;AyEpjQD;EACE,eAAc;EACd,0BAAyB;CzEujQ1B;;AyErjQD;EACE,eAAc;EACd,0BAAyB;CzEwjQ1B;;AyEtjQD;EACE,eAAc;EACd,mBAAkB;CzEyjQnB;;AyEvjQD;EACE,eAAc;CzE0jQf;;AyExjQD;EACE,eAAc;CzE2jQf;;AyEzjQD;EACE,eAAc;EACd,0BAAyB;CzE4jQ1B;;AyE1jQD;EACE,eAAc;CzE6jQf;;AyE3jQD;EACE,eAAc;CzE8jQf;;AyE5jQD;EACE,kBAAiB;CzE+jQlB;;AyE7jQD;EACE,eAAc;CzEgkQf;;AyE9jQD;EACE,eAAc;CzEikQf;;AyE/jQD;EACE,eAAc;EACd,kBAAiB;CzEkkQlB;;AyEhkQD;EACE,eAAc;EACd,kBAAiB;CzEmkQlB;;AyEjkQD;EACE,eAAc;EACd,kBAAiB;CzEokQlB;;AyElkQD;EACE,eAAc;EACd,kBAAiB;CzEqkQlB;;AyEnkQD;EACE,eAAc;EACd,kBAAiB;CzEskQlB;;AyEpkQD;EACE,eAAc;EACd,kBAAiB;CzEukQlB;;AyErkQD;EACE,eAAc;EACd,kBAAiB;CzEwkQlB;;AyEtkQD;EACE,eAAc;CzEykQf;;AyEvkQD;EACE,eAAc;CzE0kQf;;AyExkQD;EACE,eAAc;CzE2kQf;;AyEzkQD;EACE,eAAc;CzE4kQf;;AyE1kQD;EACE,eAAc;CzE6kQf;;AyE3kQD;EACE,eAAc;CzE8kQf;;AyE5kQD;EACE,YAAW;CzE+kQZ;;AyE7kQD;EACE,YAAW;CzEglQZ;;AyE9kQD;EACE,YAAW;CzEilQZ;;AyE/kQD;EACE,YAAW;CzEklQZ;;AyEhlQD;EACE,YAAW;CzEmlQZ;;AyEjlQD;EACE,YAAW;CzEolQZ;;AyEllQD;EACE,YAAW;CzEqlQZ;;AyEnlQD;EACE,YAAW;CzEslQZ;;AyEplQD;EACE,eAAc;CzEulQf;;AyErlQD;EACE,YAAW;CzEwlQZ;;AyEtlQD;EACE,eAAc;CzEylQf;;AyEvlQD;EACE,YAAW;CzE0lQZ;;AyExlQD;EACE,eAAc;CzE2lQf;;AyEzlQD;EACE,eAAc;CzE4lQf;;AyE1lQD;EACE,eAAc;CzE6lQf;;AyE3lQD;EACE,eAAc;EACd,kBAAiB;CzE8lQlB;;AyE5lQD;EACE,eAAc;CzE+lQf;;AyE7lQD;EACE,eAAc;EACd,kBAAiB;CzEgmQlB;;AyE9lQD;EACE,eAAc;CzEimQf;;AyE/lQD;EACE,eAAc;EACd,kBAAiB;CzEkmQlB;;AyEhmQD;EACE,eAAc;EACd,kBAAiB;CzEmmQlB;;AyEjmQD;EACE,eAAc;EACd,kBAAiB;CzEomQlB;;AyElmQD;EACE,eAAc;CzEqmQf;;AyEnmQD;EACE,eAAc;CzEsmQf;;AyEpmQD;EACE,eAAc;CzEumQf;;AyErmQD;EACE,eAAc;CzEwmQf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","file":"theme.css"} \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/doctools.js b/docs/src/_build/html/static/_static/doctools.js deleted file mode 100644 index 61ac9d2..0000000 --- a/docs/src/_build/html/static/_static/doctools.js +++ /dev/null @@ -1,321 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - * - * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL - */ -jQuery.urldecode = function(x) { - if (!x) { - return x - } - return decodeURIComponent(x.replace(/\+/g, ' ')); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s === 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node, addItems) { - if (node.nodeType === 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keydown(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box, textarea, dropdown or button - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey - && !event.shiftKey) { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/docs/src/_build/html/static/_static/documentation_options.js b/docs/src/_build/html/static/_static/documentation_options.js deleted file mode 100644 index 2fa8c97..0000000 --- a/docs/src/_build/html/static/_static/documentation_options.js +++ /dev/null @@ -1,12 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - BUILDER: 'html', - FILE_SUFFIX: '.html', - LINK_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: false -}; \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/file.png b/docs/src/_build/html/static/_static/file.png deleted file mode 100644 index a858a41..0000000 Binary files a/docs/src/_build/html/static/_static/file.png and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold-italic.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold-italic.woff deleted file mode 100644 index e317248..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 deleted file mode 100644 index cec2dc9..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold.woff deleted file mode 100644 index de46625..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold.woff2 deleted file mode 100644 index dc05cd8..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-bold.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book-italic.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book-italic.woff deleted file mode 100644 index a50e503..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book-italic.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book-italic.woff2 deleted file mode 100644 index fe284db..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book.woff deleted file mode 100644 index 6ab8775..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book.woff2 deleted file mode 100644 index 2688739..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-book.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light-italic.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light-italic.woff deleted file mode 100644 index beda58d..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light-italic.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light-italic.woff2 deleted file mode 100644 index e2fa013..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light.woff deleted file mode 100644 index 226a0bf..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light.woff2 deleted file mode 100644 index 6d8ff2c..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-light.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium-italic.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium-italic.woff deleted file mode 100644 index a42115d..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium-italic.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 deleted file mode 100644 index 16a7713..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium-italic.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium.woff b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium.woff deleted file mode 100644 index 5ea3453..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium.woff2 b/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium.woff2 deleted file mode 100644 index c58b6a5..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/FreightSans/freight-sans-medium.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff deleted file mode 100644 index cf37a5c..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 deleted file mode 100644 index 955a6ea..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff deleted file mode 100644 index fc65a67..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 deleted file mode 100644 index c352e40..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff deleted file mode 100644 index 7d63d89..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 deleted file mode 100644 index d0d7ded..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff deleted file mode 100644 index 1da7753..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff and /dev/null differ diff --git a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 b/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 deleted file mode 100644 index 79dffdb..0000000 Binary files a/docs/src/_build/html/static/_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 and /dev/null differ diff --git a/docs/src/_build/html/static/_static/images/arrow-down-orange.svg b/docs/src/_build/html/static/_static/images/arrow-down-orange.svg deleted file mode 100644 index e9d8e9e..0000000 --- a/docs/src/_build/html/static/_static/images/arrow-down-orange.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Group 5 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/images/arrow-right-with-tail.svg b/docs/src/_build/html/static/_static/images/arrow-right-with-tail.svg deleted file mode 100644 index 5843588..0000000 --- a/docs/src/_build/html/static/_static/images/arrow-right-with-tail.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/images/asteroid_logo_dark.png b/docs/src/_build/html/static/_static/images/asteroid_logo_dark.png deleted file mode 100644 index 1eb1d71..0000000 Binary files a/docs/src/_build/html/static/_static/images/asteroid_logo_dark.png and /dev/null differ diff --git a/docs/src/_build/html/static/_static/images/asteroid_logo_dark.svg b/docs/src/_build/html/static/_static/images/asteroid_logo_dark.svg deleted file mode 100644 index 7d1ba92..0000000 --- a/docs/src/_build/html/static/_static/images/asteroid_logo_dark.svg +++ /dev/null @@ -1,1430 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/chevron-down-grey.svg b/docs/src/_build/html/static/_static/images/chevron-down-grey.svg deleted file mode 100644 index 82d6514..0000000 --- a/docs/src/_build/html/static/_static/images/chevron-down-grey.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - -Created with Sketch. - - - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/chevron-right-orange.svg b/docs/src/_build/html/static/_static/images/chevron-right-orange.svg deleted file mode 100644 index 7033fc9..0000000 --- a/docs/src/_build/html/static/_static/images/chevron-right-orange.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Page 1 -Created with Sketch. - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/chevron-right-white.svg b/docs/src/_build/html/static/_static/images/chevron-right-white.svg deleted file mode 100644 index dd9e77f..0000000 --- a/docs/src/_build/html/static/_static/images/chevron-right-white.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Page 1 -Created with Sketch. - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/images/dark_asteroid_logo.svg b/docs/src/_build/html/static/_static/images/dark_asteroid_logo.svg deleted file mode 100644 index e2251aa..0000000 --- a/docs/src/_build/html/static/_static/images/dark_asteroid_logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/images/home-footer-background.jpg b/docs/src/_build/html/static/_static/images/home-footer-background.jpg deleted file mode 100644 index b307bb5..0000000 Binary files a/docs/src/_build/html/static/_static/images/home-footer-background.jpg and /dev/null differ diff --git a/docs/src/_build/html/static/_static/images/icon-close.svg b/docs/src/_build/html/static/_static/images/icon-close.svg deleted file mode 100644 index 348964e..0000000 --- a/docs/src/_build/html/static/_static/images/icon-close.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/images/icon-menu-dots-dark.svg b/docs/src/_build/html/static/_static/images/icon-menu-dots-dark.svg deleted file mode 100644 index fa2ad04..0000000 --- a/docs/src/_build/html/static/_static/images/icon-menu-dots-dark.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - Page 1 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/_static/images/logo-facebook-dark.svg b/docs/src/_build/html/static/_static/images/logo-facebook-dark.svg deleted file mode 100644 index cff1791..0000000 --- a/docs/src/_build/html/static/_static/images/logo-facebook-dark.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/docs/src/_build/html/static/_static/images/logo-lightning-large.svg b/docs/src/_build/html/static/_static/images/logo-lightning-large.svg deleted file mode 100644 index 4a6cd73..0000000 --- a/docs/src/_build/html/static/_static/images/logo-lightning-large.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/logo-lightning.svg b/docs/src/_build/html/static/_static/images/logo-lightning.svg deleted file mode 100644 index f65f84f..0000000 --- a/docs/src/_build/html/static/_static/images/logo-lightning.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - long - Created with Sketch. - - - - PyTorch Lightning - - - diff --git a/docs/src/_build/html/static/_static/images/logo-pytorch-dark.svg b/docs/src/_build/html/static/_static/images/logo-pytorch-dark.svg deleted file mode 100644 index 9b4c1a5..0000000 --- a/docs/src/_build/html/static/_static/images/logo-pytorch-dark.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/logo-pytorch-icon.svg b/docs/src/_build/html/static/_static/images/logo-pytorch-icon.svg deleted file mode 100644 index 575f682..0000000 --- a/docs/src/_build/html/static/_static/images/logo-pytorch-icon.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/logo-pytorch.svg b/docs/src/_build/html/static/_static/images/logo-pytorch.svg deleted file mode 100644 index f8d44b9..0000000 --- a/docs/src/_build/html/static/_static/images/logo-pytorch.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/logo-twitter-dark.svg b/docs/src/_build/html/static/_static/images/logo-twitter-dark.svg deleted file mode 100644 index 1572570..0000000 --- a/docs/src/_build/html/static/_static/images/logo-twitter-dark.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/pytorch-colab.svg b/docs/src/_build/html/static/_static/images/pytorch-colab.svg deleted file mode 100644 index 2ab15e2..0000000 --- a/docs/src/_build/html/static/_static/images/pytorch-colab.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/pytorch-download.svg b/docs/src/_build/html/static/_static/images/pytorch-download.svg deleted file mode 100644 index cc37d63..0000000 --- a/docs/src/_build/html/static/_static/images/pytorch-download.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - diff --git a/docs/src/_build/html/static/_static/images/pytorch-github.svg b/docs/src/_build/html/static/_static/images/pytorch-github.svg deleted file mode 100644 index 2c2570d..0000000 --- a/docs/src/_build/html/static/_static/images/pytorch-github.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - diff --git a/docs/src/_build/html/static/_static/images/pytorch-x.svg b/docs/src/_build/html/static/_static/images/pytorch-x.svg deleted file mode 100644 index 74856ea..0000000 --- a/docs/src/_build/html/static/_static/images/pytorch-x.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/search-icon.svg b/docs/src/_build/html/static/_static/images/search-icon.svg deleted file mode 100644 index ebb0df8..0000000 --- a/docs/src/_build/html/static/_static/images/search-icon.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - Created with Sketch. - - - - - - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/images/view-page-source-icon.svg b/docs/src/_build/html/static/_static/images/view-page-source-icon.svg deleted file mode 100644 index 6f5bbe0..0000000 --- a/docs/src/_build/html/static/_static/images/view-page-source-icon.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/docs/src/_build/html/static/_static/jquery-3.5.1.js b/docs/src/_build/html/static/_static/jquery-3.5.1.js deleted file mode 100644 index 5093733..0000000 --- a/docs/src/_build/html/static/_static/jquery-3.5.1.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - 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" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
- - -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/modules/mmic_cmd/components/cmd_component.html b/docs/src/_build/html/static/modules/mmic_cmd/components/cmd_component.html deleted file mode 100644 index 414db56..0000000 --- a/docs/src/_build/html/static/modules/mmic_cmd/components/cmd_component.html +++ /dev/null @@ -1,553 +0,0 @@ - - - - - - - - - - - - mmic_cmd.components.cmd_component — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.components.cmd_component

-from qcengine.util import execute
-from mmic.components.blueprints import GenericComponent
-from typing import Any, Dict, Tuple
-from ..models import CmdOutput, CmdInput
-import ntpath
-import os
-
-__all__ = ["CmdComponent"]
-
-
-
[docs]class CmdComponent(GenericComponent): - @classmethod - def input(cls): - return CmdInput - - @classmethod - def output(cls): - return CmdOutput - - def execute( - self, - inputs: Dict[str, Any], - ) -> Tuple[bool, Dict[str, Any]]: - - if isinstance(inputs, dict): - inputs = self.input()(**inputs) - - env = os.environ.copy() - scratch_directory = inputs.scratch_directory - - if inputs.config: - env["MKL_NUM_THREADS"] = str(config.ncores) - env["OMP_NUM_THREADS"] = str(config.ncores) - - scratch_directory = config.scratch_directory - - infiles = {} - if inputs.infiles: - flag = inputs.as_binary or "r" - for fpath in inputs.infiles: - fname = ntpath.basename(fpath) - with open(fpath, flag) as fp: - infiles[fname] = fp.read() - - exe_success, proc = execute( - command=inputs.command, - infiles=infiles, - outfiles=inputs.outfiles, - outfiles_load=inputs.outfiles_load, - scratch_directory=scratch_directory, - scratch_name=inputs.scratch_name, - scratch_messy=inputs.scratch_messy, - timeout=inputs.timeout, - environment=env, - ) - - if exe_success: - if proc.get("stderr"): - if inputs.raise_err: - raise RuntimeError(proc.get("stderr")) - return exe_success, self.output()( - outfiles=proc.get("outfiles"), - stdout=proc.get("stdout"), - stderr=proc.get("stderr"), - scratch_directory=proc.get("scratch_directory"), - ) - else: - raise RuntimeError(proc.get("stderr"))
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/modules/mmic_cmd/models/input.html b/docs/src/_build/html/static/modules/mmic_cmd/models/input.html deleted file mode 100644 index c8e61d1..0000000 --- a/docs/src/_build/html/static/modules/mmic_cmd/models/input.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.input — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.input

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, List, Dict
-
-__all__ = ["CmdInput"]
-
-
-
[docs]class CmdInput(ProtoModel): - """ Input model for command-line execution. """ - - command: List[str] = Field(..., description=".") - infiles: List[str] = Field( - None, - description="Input files (abs paths) to be written in scratch dir. May be {}.", - ) - outfiles: Optional[List[str]] = Field( - None, - description="Output file name(s).", - ) - outfiles_load: Optional[bool] = Field( - True, - description="If set to True, output files are loaded in memory. Otherwise, the posix paths " - "are returned instead (default).", - ) - raise_err: Optional[bool] = Field( - False, - description="If set to True, a runtime exception is raised when stderr is not empty.", - ) - as_binary: Optional[List[str]] = Field( - None, description="Keys of `infiles` or `outfiles` to be treated as bytes." - ) - scratch_name: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_directory: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_suffix: Optional[str] = Field( - None, description="Passed to temporary_directory." - ) - scratch_messy: bool = Field(False, description="Passed to temporary_directory") - scratch_exist_ok: bool = Field(False, description="Passed to temporary_directory.") - blocking_files: Optional[List[str]] = Field( - None, description="Files which should stop execution if present beforehand." - ) - timeout: Optional[int] = Field( - None, description="Stop the process after n seconds." - ) - interupt_after: Optional[int] = Field( - None, description="Interupt the process (not hard kill) after n seconds." - ) - environment: Optional[Dict[str, str]] = Field( - None, description="The environment to run in." - ) - shell: Optional[bool] = Field(False, description="Run command through the shell.") - exit_code: Optional[int] = Field( - 0, description="The exit code above which the process is considered failure." - ) - config: Optional["TaskConfig"] = Field( - None, - description="Config class for executing tasks. See :class:`mmic.components.base.config.TaskConfig`.", - )
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/modules/mmic_cmd/models/output.html b/docs/src/_build/html/static/modules/mmic_cmd/models/output.html deleted file mode 100644 index fc77d5a..0000000 --- a/docs/src/_build/html/static/modules/mmic_cmd/models/output.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - mmic_cmd.models.output — mmic_cmd documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - -
- - - - -
-
- -
- Shortcuts -
-
- -
-
- - - -
- -
-
- -

Source code for mmic_cmd.models.output

-from mmelemental.models import ProtoModel
-from pydantic import Field
-from typing import Optional, Dict, Union, Any
-from pathlib import PosixPath
-from subprocess import Popen
-
-__all__ = ["CmdOutput"]
-
-
-
[docs]class CmdOutput(ProtoModel): - """ Output model for commend-line execution. """ - - stdout: str = Field(..., description="Standard output.") - stderr: Optional[str] = Field(None, description="Standard error.") - log: Optional[str] = Field(None, description="Logging output.") - outfiles: Optional[Union[Dict[str, Any], None]] = Field( - None, - description="List of FileOutput objects. See the :class: ``mmelemental.models.FileOutput``.", - ) - proc: Optional[Popen] - scratch_directory: Optional[PosixPath] - - class Config(ProtoModel.Config): - arbitrary_types_allowed = True
-
- -
- -
-
- - - - -
- - - -
-

- © Copyright 2021, MolSSI. Project structure based on the Computational Molecular Science Python Cookiecutter version 1.5. - -

-
- -
- Built with Sphinx using a theme provided by Read the Docs. -
- - -
- -
-
- -
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-
-
- - - - - - - - - -
-
-
-
- - -
-
-
- - -
- - - - - - - - \ No newline at end of file diff --git a/docs/src/_build/html/static/objects.inv b/docs/src/_build/html/static/objects.inv deleted file mode 100644 index f849308..0000000 --- a/docs/src/_build/html/static/objects.inv +++ /dev/null @@ -1,6 +0,0 @@ -# Sphinx inventory version 2 -# Project: mmic_cmd -# Version: 0+untagged.106.gbdca864 -# The remainder of this file is compressed using zlib. -xڅn0w?UeMDW6Ĕj$ȵO$϶#5$qBlQf:^ZF!#nӤZA葩w$w/ŝ/` JY>4EF>a -EyF@m۰#^K A%4dlߨ|qqƦdYUFv]eX;vO+4K>[~D2ҹ \ No newline at end of file diff --git a/docs/src/_build/html/static/plus.png b/docs/src/_build/html/static/plus.png deleted file mode 100644 index 7107cec..0000000 Binary files a/docs/src/_build/html/static/plus.png and /dev/null differ diff --git a/docs/src/_build/html/static/py-modindex.html b/docs/src/_build/html/static/py-modindex.html deleted file mode 100644 index 2c87392..0000000 --- a/docs/src/_build/html/static/py-modindex.html +++ /dev/null @@ -1,513 +0,0 @@ -* -* -* -*<*!*D*O*C*T*Y*P*E* *h*t*m*l*>* -*<*!*-*-*[*i*f* *I*E* *8*]*>*<*h*t*m*l* *c*l*a*s*s*=*"*n*o*-*j*s* *l*t*-*i*e*9*"* *l*a*n*g*=*"*e*n*"* *>* *<*!*[*e*n*d*i*f*]*-*-*>* -*<*!*-*-*[*i*f* *g*t* *I*E* *8*]*>*<*!*-*-*>* *<*h*t*m*l* *c*l*a*s*s*=*"*n*o*-*j*s*"* *l*a*n*g*=*"*e*n*"* *>* *<*!*-*-*<*!*[*e*n*d*i*f*]*-*-*>* -*<*h*e*a*d*>* -* * *<*m*e*t*a* *c*h*a*r*s*e*t*=*"*u*t*f*-*8*"*>* -* * * -* * *<*m*e*t*a* *n*a*m*e*=*"*v*i*e*w*p*o*r*t*"* *c*o*n*t*e*n*t*=*"*w*i*d*t*h*=*d*e*v*i*c*e*-*w*i*d*t*h*,* *i*n*i*t*i*a*l*-*s*c*a*l*e*=*1*.*0*"*>* -* * * -* * *<*t*i*t*l*e*>*P*y*t*h*o*n* *M*o*d*u*l*e* *I*n*d*e*x* *&*m*d*a*s*h*;* *m*m*i*c*c*m*d* * *d*o*c*u*m*e*n*t*a*t*i*o*n*<*/*t*i*t*l*e*>* -* * * -* -* * * -* * * -* * * -* * * -* -* * * -* -* * * -* * * -* * * * * -* -* * * -* -* * *<*l*i*n*k* *r*e*l*=*"*s*t*y*l*e*s*h*e*e*t*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*c*s*s*/*t*h*e*m*e*.*c*s*s*"* *t*y*p*e*=*"*t*e*x*t*/*c*s*s*"* */*>* -* * *<*!*-*-* *<*l*i*n*k* *r*e*l*=*"*s*t*y*l*e*s*h*e*e*t*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*p*y*g*m*e*n*t*s*.*c*s*s*"* *t*y*p*e*=*"*t*e*x*t*/*c*s*s*"* */*>* *-*-*>* -* * * * *<*l*i*n*k* *r*e*l*=*"*i*n*d*e*x*"* *t*i*t*l*e*=*"*I*n*d*e*x*"* *h*r*e*f*=*"*g*e*n*i*n*d*e*x*.*h*t*m*l*"* */*>* -* * * * *<*l*i*n*k* *r*e*l*=*"*s*e*a*r*c*h*"* *t*i*t*l*e*=*"*S*e*a*r*c*h*"* *h*r*e*f*=*"*s*e*a*r*c*h*.*h*t*m*l*"* */*>* -* * -* -* -* -* * * -* * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*m*o*d*e*r*n*i*z*r*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* -* * *<*!*-*-* *P*r*e*l*o*a*d* *t*h*e* *t*h*e*m*e* *f*o*n*t*s* *-*-*>* -* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*b*o*o*k*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*m*e*d*i*u*m*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*I*B*M*P*l*e*x*M*o*n*o*/*I*B*M*P*l*e*x*M*o*n*o*-*M*e*d*i*u*m*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*b*o*l*d*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*m*e*d*i*u*m*-*i*t*a*l*i*c*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*I*B*M*P*l*e*x*M*o*n*o*/*I*B*M*P*l*e*x*M*o*n*o*-*S*e*m*i*B*o*l*d*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -* -*<*!*-*-* *P*r*e*l*o*a*d* *t*h*e* *k*a*t*e*x* *f*o*n*t*s* *-*-*>* -* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*M*a*t*h*-*I*t*a*l*i*c*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*M*a*i*n*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*M*a*i*n*-*B*o*l*d*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*1*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*4*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*2*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*3*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*C*a*l*i*g*r*a*p*h*i*c*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*/*h*e*a*d*>* -* -*<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*-*f*l*u*i*d* *h*e*a*d*e*r*-*h*o*l*d*e*r* *t*u*t*o*r*i*a*l*s*-*h*e*a*d*e*r*"* *i*d*=*"*h*e*a*d*e*r*-*h*o*l*d*e*r*"*>* -* * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*h*e*a*d*e*r*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*a* *c*l*a*s*s*=*"*h*e*a*d*e*r*-*l*o*g*o*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"* *a*r*i*a*-*l*a*b*e*l*=*"*P*y*T*o*r*c*h*"*>* -* * * * * * * *<*!*-*-* *<*i*m*g* *c*l*a*s*s*=*"*c*a*l*l*-*t*o*-*a*c*t*i*o*n*-*i*m*g*"* *s*r*c*=*"*s*t*a*t*i*c*/*i*m*a*g*e*s*/*a*s*t*e*r*o*i*d*l*o*g*o*d*a*r*k*.*p*n*g*"*/*>* *-*-*>* -* * * * * * *<*/*a*>* -* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*"*>* -* * * * * * * * *<*u*l*>* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*g*e*t*-*s*t*a*r*t*e*d*"*>*G*e*t* *S*t*a*r*t*e*d*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*b*l*o*g*/*"*>*B*l*o*g*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*T*u*t*o*r*i*a*l*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*D*o*c*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*o*u*r*c*e*s*-*d*r*o*p*d*o*w*n*"*>* -* * * * * * * * * * * * * * *<*a* *i*d*=*"*r*e*s*o*u*r*c*e*s*D*r*o*p*d*o*w*n*B*u*t*t*o*n*"* *d*a*t*a*-*t*o*g*g*l*e*=*"*r*e*s*o*u*r*c*e*s*-*d*r*o*p*d*o*w*n*"*>* -* * * * * * * * * * * * * * * * *R*e*s*o*u*r*c*e*s* -* * * * * * * * * * * * * * *<*/*a*>* -* * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*o*u*r*c*e*s*-*d*r*o*p*d*o*w*n*-*m*e*n*u*"*>* -* * * * * * * * * * * * * * * * *<*a* *c*l*a*s*s*=*"*n*a*v*-*d*r*o*p*d*o*w*n*-*i*t*e*m*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*"*>* -* * * * * * * * * * * * * * * * * * *<*s*p*a*n* *c*l*a*s*s*=*d*r*o*p*d*o*w*n*-*t*i*t*l*e*>*D*e*v*e*l*o*p*e*r* *R*e*s*o*u*r*c*e*s*<*/*s*p*a*n*>* -* * * * * * * * * * * * * * * * * * *<*p*>*F*i*n*d* *r*e*s*o*u*r*c*e*s* *a*n*d* *g*e*t* *q*u*e*s*t*i*o*n*s* *a*n*s*w*e*r*e*d*<*/*p*>* -* * * * * * * * * * * * * * * * *<*/*a*>* -* * * * * * * * * * * * * * * * *<*!*-*-* -* * * * * * * * * * * * * * * * *<*a* *c*l*a*s*s*=*"*n*a*v*-*d*r*o*p*d*o*w*n*-*i*t*e*m*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*f*e*a*t*u*r*e*s*"*>* -* * * * * * * * * * * * * * * * * * *<*s*p*a*n* *c*l*a*s*s*=*d*r*o*p*d*o*w*n*-*t*i*t*l*e*>*A*b*o*u*t*<*/*s*p*a*n*>* -* * * * * * * * * * * * * * * * * * *<*p*>*L*e*a*r*n* *a*b*o*u*t* *P*y*T*o*r*c*h****s* *f*e*a*t*u*r*e*s* *a*n*d* *c*a*p*a*b*i*l*i*t*i*e*s*<*/*p*>* -* * * * * * * * * * * * * * * * *<*/*a*>* -* * * * * * * * * * * * * * * * *-*-*>* -* * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"*>*G*i*t*h*u*b*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* * * * * * * * *<*/*u*l*>* -* * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*a* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*-*o*p*e*n*-*b*u*t*t*o*n*"* *h*r*e*f*=*"*#*"* *d*a*t*a*-*b*e*h*a*v*i*o*r*=*"*o*p*e*n*-*m*o*b*i*l*e*-*m*e*n*u*"*>*<*/*a*>* -* * * * *<*/*d*i*v*>* -* -* * *<*/*d*i*v*>* -*<*/*d*i*v*>* -* -* -*<*b*o*d*y* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*o*d*y*"*>* -* -* * * * -* -* * * * * -* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*t*a*b*l*e*-*o*f*-*c*o*n*t*e*n*t*s*-*l*i*n*k*-*w*r*a*p*p*e*r*"*>* -* * * * * * *<*s*p*a*n*>*T*a*b*l*e* *o*f* *C*o*n*t*e*n*t*s*<*/*s*p*a*n*>* -* * * * * * *<*a* *h*r*e*f*=*"*#*"* *c*l*a*s*s*=*"*t*o*g*g*l*e*-*t*a*b*l*e*-*o*f*-*c*o*n*t*e*n*t*s*"* *d*a*t*a*-*b*e*h*a*v*i*o*r*=*"*t*o*g*g*l*e*-*t*a*b*l*e*-*o*f*-*c*o*n*t*e*n*t*s*"*>*<*/*a*>* -* * * * *<*/*d*i*v*>* -* -* * * * *<*n*a*v* *d*a*t*a*-*t*o*g*g*l*e*=*"*w*y*-*n*a*v*-*s*h*i*f*t*"* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*l*e*f*t*-*m*e*n*u*"* *i*d*=*"*p*y*t*o*r*c*h*-*l*e*f*t*-*m*e*n*u*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*s*i*d*e*-*s*c*r*o*l*l*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*m*e*n*u* *p*y*t*o*r*c*h*-*m*e*n*u*-*v*e*r*t*i*c*a*l*"* *d*a*t*a*-*s*p*y*=*"*a*f*f*i*x*"* *r*o*l*e*=*"*n*a*v*i*g*a*t*i*o*n*"* *a*r*i*a*-*l*a*b*e*l*=*"*m*a*i*n* *n*a*v*i*g*a*t*i*o*n*"*>* -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*l*e*f*t*-*m*e*n*u*-*s*e*a*r*c*h*"*>* -* * * * * * * * * * * * * -* -* * * * * * * * * * * * * -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*v*e*r*s*i*o*n*"*>* -* * * * * * * * * * * * * * * * * * *0*+*u*n*t*a*g*g*e*d*.*1*0*6*.*g*b*d*c*a*8*6*4* -* * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * -* -* * * * * * * * * * * * * -* -* -* * * -* -* -*<*d*i*v* *r*o*l*e*=*"*s*e*a*r*c*h*"*>* -* * *<*f*o*r*m* *i*d*=*"*r*t*d*-*s*e*a*r*c*h*-*f*o*r*m*"* *c*l*a*s*s*=*"*w*y*-*f*o*r*m*"* *a*c*t*i*o*n*=*"*s*e*a*r*c*h*.*h*t*m*l*"* *m*e*t*h*o*d*=*"*g*e*t*"*>* -* * * * *<*i*n*p*u*t* *t*y*p*e*=*"*t*e*x*t*"* *n*a*m*e*=*"*q*"* *p*l*a*c*e*h*o*l*d*e*r*=*"*S*e*a*r*c*h* *D*o*c*s*"* */*>* -* * * * *<*i*n*p*u*t* *t*y*p*e*=*"*h*i*d*d*e*n*"* *n*a*m*e*=*"*c*h*e*c*k*k*e*y*w*o*r*d*s*"* *v*a*l*u*e*=*"*y*e*s*"* */*>* -* * * * *<*i*n*p*u*t* *t*y*p*e*=*"*h*i*d*d*e*n*"* *n*a*m*e*=*"*a*r*e*a*"* *v*a*l*u*e*=*"*d*e*f*a*u*l*t*"* */*>* -* * *<*/*f*o*r*m*>* -*<*/*d*i*v*>* -* -* * * * * * * * * * * * * -* * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * * *<*p* *c*l*a*s*s*=*"*c*a*p*t*i*o*n*"*>*<*s*p*a*n* *c*l*a*s*s*=*"*c*a*p*t*i*o*n*-*t*e*x*t*"*>*C*o*n*t*e*n*t*s*:*<*/*s*p*a*n*>*<*/*p*>* -*<*u*l*>* -*<*l*i* *c*l*a*s*s*=*"*t*o*c*t*r*e*e*-*l*1*"*>*<*a* *c*l*a*s*s*=*"*r*e*f*e*r*e*n*c*e* *i*n*t*e*r*n*a*l*"* *h*r*e*f*=*"*a*p*i*.*h*t*m*l*"*>*A*P*I*<*/*a*>*<*/*l*i*>* -*<*l*i* *c*l*a*s*s*=*"*t*o*c*t*r*e*e*-*l*1*"*>*<*a* *c*l*a*s*s*=*"*r*e*f*e*r*e*n*c*e* *i*n*t*e*r*n*a*l*"* *h*r*e*f*=*"*m*o*d*e*l*s*.*h*t*m*l*"*>*M*o*d*e*l*s*<*/*a*>*<*/*l*i*>* -*<*/*u*l*>* -* -* * * * * * * * * * * * * -* * * * * * * * * * * -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*n*a*v*>* -* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*p*a*g*e*-*l*e*v*e*l*-*b*a*r*"* *i*d*=*"*p*y*t*o*r*c*h*-*p*a*g*e*-*l*e*v*e*l*-*b*a*r*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*r*e*a*d*c*r*u*m*b*s*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * * * * -* -* -* -* -* -* -* -* -* -* -* -* -* -* -* -*<*d*i*v* *r*o*l*e*=*"*n*a*v*i*g*a*t*i*o*n*"* *a*r*i*a*-*l*a*b*e*l*=*"*b*r*e*a*d*c*r*u*m*b*s* *n*a*v*i*g*a*t*i*o*n*"*>* -* -* * *<*u*l* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*r*e*a*d*c*r*u*m*b*s*"*>* -* * * * * -* * * * * * *<*l*i*>* -* * * * * * * * *<*a* *h*r*e*f*=*"*i*n*d*e*x*.*h*t*m*l*"*>* -* * * * * * * * * * * -* * * * * * * * * * * * *D*o*c*s* -* * * * * * * * * * * -* * * * * * * * *<*/*a*>* *&*g*t*;* -* * * * * * *<*/*l*i*>* -* -* * * * * * * * * -* * * * * * *<*l*i*>*P*y*t*h*o*n* *M*o*d*u*l*e* *I*n*d*e*x*<*/*l*i*>* -* * * * * -* * * * * -* * * * * * *<*l*i* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*r*e*a*d*c*r*u*m*b*s*-*a*s*i*d*e*"*>* -* * * * * * * * * -* * * * * * *<*/*l*i*>* -* * * * * -* * *<*/*u*l*>* -* -* * * -*<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*s*h*o*r*t*c*u*t*s*-*w*r*a*p*p*e*r*"* *i*d*=*"*p*y*t*o*r*c*h*-*s*h*o*r*t*c*u*t*s*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * * * *S*h*o*r*t*c*u*t*s* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*s*e*c*t*i*o*n* *d*a*t*a*-*t*o*g*g*l*e*=*"*w*y*-*n*a*v*-*s*h*i*f*t*"* *i*d*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*w*r*a*p*"* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*w*r*a*p*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*l*e*f*t*"*>* -* -* * * * * * * * * -* * * * * * * * * * * -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*s*t*-*c*o*n*t*e*n*t*"*>* -* * * * * * * * * * * -* * * * * * * * * * * * *<*d*i*v* *r*o*l*e*=*"*m*a*i*n*"* *c*l*a*s*s*=*"*m*a*i*n*-*c*o*n*t*e*n*t*"* *i*t*e*m*s*c*o*p*e*=*"*i*t*e*m*s*c*o*p*e*"* *i*t*e*m*t*y*p*e*=*"*h*t*t*p*:*/*/*s*c*h*e*m*a*.*o*r*g*/*A*r*t*i*c*l*e*"*>* -* * * * * * * * * * * * * *<*a*r*t*i*c*l*e* *i*t*e*m*p*r*o*p*=*"*a*r*t*i*c*l*e*B*o*d*y*"* *i*d*=*"*p*y*t*o*r*c*h*-*a*r*t*i*c*l*e*"* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*a*r*t*i*c*l*e*"*>* -* * * * * * * * * * * * * * * -* -* * * *<*h*1*>*P*y*t*h*o*n* *M*o*d*u*l*e* *I*n*d*e*x*<*/*h*1*>* -* -* * * *<*d*i*v* *c*l*a*s*s*=*"*m*o*d*i*n*d*e*x*-*j*u*m*p*b*o*x*"*>* -* * * *<*a* *h*r*e*f*=*"*#*c*a*p*-*m*"*>*<*s*t*r*o*n*g*>*m*<*/*s*t*r*o*n*g*>*<*/*a*>* -* * * *<*/*d*i*v*>* -* -* * * *<*t*a*b*l*e* *c*l*a*s*s*=*"*i*n*d*e*x*t*a*b*l*e* *m*o*d*i*n*d*e*x*t*a*b*l*e*"*>* -* * * * * *<*t*r* *c*l*a*s*s*=*"*p*c*a*p*"*>*<*t*d*>*<*/*t*d*>*<*t*d*>*&*#*1*6*0*;*<*/*t*d*>*<*t*d*>*<*/*t*d*>*<*/*t*r*>* -* * * * * *<*t*r* *c*l*a*s*s*=*"*c*a*p*"* *i*d*=*"*c*a*p*-*m*"*>*<*t*d*>*<*/*t*d*>*<*t*d*>* -* * * * * * * *<*s*t*r*o*n*g*>*m*<*/*s*t*r*o*n*g*>*<*/*t*d*>*<*t*d*>*<*/*t*d*>*<*/*t*r*>* -* * * * * *<*t*r*>* -* * * * * * * *<*t*d*>*<*i*m*g* *s*r*c*=*"*s*t*a*t*i*c*/*m*i*n*u*s*.*p*n*g*"* *c*l*a*s*s*=*"*t*o*g*g*l*e*r*"* -* * * * * * * * * * * * * * *i*d*=*"*t*o*g*g*l*e*-*1*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:* *n*o*n*e*"* *a*l*t*=*"*-*"* */*>*<*/*t*d*>* -* * * * * * * *<*t*d*>* -* * * * * * * *<*c*o*d*e* *c*l*a*s*s*=*"*x*r*e*f*"*>*m*m*i*c*c*m*d*<*/*c*o*d*e*>*<*/*t*d*>*<*t*d*>* -* * * * * * * *<*e*m*>*<*/*e*m*>*<*/*t*d*>*<*/*t*r*>* -* * * * * *<*t*r* *c*l*a*s*s*=*"*c*g*-*1*"*>* -* * * * * * * *<*t*d*>*<*/*t*d*>* -* * * * * * * *<*t*d*>*&*#*1*6*0*;*&*#*1*6*0*;*&*#*1*6*0*;* -* * * * * * * *<*a* *h*r*e*f*=*"*a*p*i*.*h*t*m*l*#*m*o*d*u*l*e*-*m*m*i*c*c*m*d*.*c*o*m*p*o*n*e*n*t*s*"*>*<*c*o*d*e* *c*l*a*s*s*=*"*x*r*e*f*"*>*m*m*i*c*c*m*d*.*c*o*m*p*o*n*e*n*t*s*<*/*c*o*d*e*>*<*/*a*>*<*/*t*d*>*<*t*d*>* -* * * * * * * *<*e*m*>*<*/*e*m*>*<*/*t*d*>*<*/*t*r*>* -* * * * * *<*t*r* *c*l*a*s*s*=*"*c*g*-*1*"*>* -* * * * * * * *<*t*d*>*<*/*t*d*>* -* * * * * * * *<*t*d*>*&*#*1*6*0*;*&*#*1*6*0*;*&*#*1*6*0*;* -* * * * * * * *<*a* *h*r*e*f*=*"*m*o*d*e*l*s*.*h*t*m*l*#*m*o*d*u*l*e*-*m*m*i*c*c*m*d*.*m*o*d*e*l*s*"*>*<*c*o*d*e* *c*l*a*s*s*=*"*x*r*e*f*"*>*m*m*i*c*c*m*d*.*m*o*d*e*l*s*<*/*c*o*d*e*>*<*/*a*>*<*/*t*d*>*<*t*d*>* -* * * * * * * *<*e*m*>*<*/*e*m*>*<*/*t*d*>*<*/*t*r*>* -* * * *<*/*t*a*b*l*e*>* -* -* -* * * * * * * * * * * * * *<*/*a*r*t*i*c*l*e*>* -* * * * * * * * * * * * * * -* * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * *<*f*o*o*t*e*r*>* -* * * -* -* * * -* -* * * * *<*h*r*>* -* -* * * -* -* * *<*d*i*v* *r*o*l*e*=*"*c*o*n*t*e*n*t*i*n*f*o*"*>* -* * * * *<*p*>* -* * * * * * * * *&*c*o*p*y*;* *C*o*p*y*r*i*g*h*t* *2*0*2*1*,* *M*o*l*S*S*I*.* *P*r*o*j*e*c*t* *s*t*r*u*c*t*u*r*e* *b*a*s*e*d* *o*n* *t*h*e* *C*o*m*p*u*t*a*t*i*o*n*a*l* *M*o*l*e*c*u*l*a*r* *S*c*i*e*n*c*e* *P*y*t*h*o*n* *C*o*o*k*i*e*c*u*t*t*e*r* *v*e*r*s*i*o*n* *1*.*5*.* -* -* * * * *<*/*p*>* -* * *<*/*d*i*v*>* -* * * * * -* * * * * * *<*d*i*v*>* -* * * * * * * * *B*u*i*l*t* *w*i*t*h* *<*a* *h*r*e*f*=*"*h*t*t*p*:*/*/*s*p*h*i*n*x*-*d*o*c*.*o*r*g*/*"*>*S*p*h*i*n*x*<*/*a*>* *u*s*i*n*g* *a* *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*r*t*f*d*/*s*p*h*i*n*x*r*t*d*t*h*e*m*e*"*>*t*h*e*m*e*<*/*a*>* *p*r*o*v*i*d*e*d* *b*y* *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*r*e*a*d*t*h*e*d*o*c*s*.*o*r*g*"*>*R*e*a*d* *t*h*e* *D*o*c*s*<*/*a*>*.* -* * * * * * *<*/*d*i*v*>* -* * * * * * -* -*<*/*f*o*o*t*e*r*>* -* -* * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*r*i*g*h*t*"* *i*d*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*r*i*g*h*t*"*>* -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*r*i*g*h*t*-*m*e*n*u*"* *i*d*=*"*p*y*t*o*r*c*h*-*r*i*g*h*t*-*m*e*n*u*"*>* -* * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*s*i*d*e*-*s*c*r*o*l*l*"* *i*d*=*"*p*y*t*o*r*c*h*-*s*i*d*e*-*s*c*r*o*l*l*-*r*i*g*h*t*"*>* -* * * * * * * * * * * * * * * -* * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*s*e*c*t*i*o*n*>* -* * * * *<*/*d*i*v*>* -* -* * * -* -* -* * * -* -* * * * * * -* * * * * * * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *i*d*=*"*d*o*c*u*m*e*n*t*a*t*i*o*n*o*p*t*i*o*n*s*"* *d*a*t*a*-*u*r*l*r*o*o*t*=*"*.*/*"* *s*r*c*=*"*s*t*a*t*i*c*/*d*o*c*u*m*e*n*t*a*t*i*o*n*o*p*t*i*o*n*s*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*j*q*u*e*r*y*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*u*n*d*e*r*s*c*o*r*e*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*d*o*c*t*o*o*l*s*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * -* -* * * -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*v*e*n*d*o*r*/*p*o*p*p*e*r*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*v*e*n*d*o*r*/*b*o*o*t*s*t*r*a*p*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*t*h*e*m*e*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"*>* -* * * * * * *j*Q*u*e*r*y*(*f*u*n*c*t*i*o*n* *(*)* *{* -* * * * * * * * * * *S*p*h*i*n*x*R*t*d*T*h*e*m*e*.*N*a*v*i*g*a*t*i*o*n*.*e*n*a*b*l*e*(*t*r*u*e*)*;* -* * * * * * *}*)*;* -* * *<*/*s*c*r*i*p*t*>* * -* -* * *<*!*-*-* *B*e*g*i*n* *F*o*o*t*e*r* *-*-*>* -* -* * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*-*f*l*u*i*d*"* *i*d*=*"*d*o*c*s*-*t*u*t*o*r*i*a*l*s*-*r*e*s*o*u*r*c*e*s*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*o*w*"*>* -* * * * * * * * *<*!*-*-* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*l*-*m*d*-*4* *t*e*x*t*-*c*e*n*t*e*r*"*>* -* * * * * * * * * * *<*h*2*>*D*o*c*s*<*/*h*2*>* -* * * * * * * * * * *<*p*>*A*c*c*e*s*s* *c*o*m*p*r*e*h*e*n*s*i*v*e* *d*e*v*e*l*o*p*e*r* *d*o*c*u*m*e*n*t*a*t*i*o*n* *f*o*r* *P*y*T*o*r*c*h*<*/*p*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*w*i*t*h*-*r*i*g*h*t*-*a*r*r*o*w*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*V*i*e*w* *D*o*c*s*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*l*-*m*d*-*4* *t*e*x*t*-*c*e*n*t*e*r*"*>* -* * * * * * * * * * *<*h*2*>*T*u*t*o*r*i*a*l*s*<*/*h*2*>* -* * * * * * * * * * *<*p*>*G*e*t* *i*n*-*d*e*p*t*h* *t*u*t*o*r*i*a*l*s* *f*o*r* *b*e*g*i*n*n*e*r*s* *a*n*d* *a*d*v*a*n*c*e*d* *d*e*v*e*l*o*p*e*r*s*<*/*p*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*w*i*t*h*-*r*i*g*h*t*-*a*r*r*o*w*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*V*i*e*w* *T*u*t*o*r*i*a*l*s*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*l*-*m*d*-*4* *t*e*x*t*-*c*e*n*t*e*r*"*>* -* * * * * * * * * * *<*h*2*>*R*e*s*o*u*r*c*e*s*<*/*h*2*>* -* * * * * * * * * * *<*p*>*F*i*n*d* *d*e*v*e*l*o*p*m*e*n*t* *r*e*s*o*u*r*c*e*s* *a*n*d* *g*e*t* *y*o*u*r* *q*u*e*s*t*i*o*n*s* *a*n*s*w*e*r*e*d*<*/*p*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*w*i*t*h*-*r*i*g*h*t*-*a*r*r*o*w*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*>*V*i*e*w* *R*e*s*o*u*r*c*e*s*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *-*-*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* * *<*/*d*i*v*>* -* -* -* * *<*!*-*-* *<*f*o*o*t*e*r* *c*l*a*s*s*=*"*s*i*t*e*-*f*o*o*t*e*r*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r* *f*o*o*t*e*r*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*"*>*<*/*a*>* -* * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*w*r*a*p*p*e*r*"*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*-*c*o*l*"*>* -* * * * * * * * * * *<*i*m*g* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*-*i*m*g*"* *s*r*c*=*"*s*t*a*t*i*c*/*i*m*a*g*e*s*/*d*a*r*k*a*s*t*e*r*o*i*d*l*o*g*o*.*s*v*g*"*/*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*c*o*l*"*>* -* * * * * * * * * * *<*u*l*>* -* * * * * * * * * * * * *<*l*i* *c*l*a*s*s*=*"*l*i*s*t*-*t*i*t*l*e*"*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"*>*A*s*t*e*r*o*i*d*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*g*e*t*-*s*t*a*r*t*e*d*"*>*G*e*t* *S*t*a*r*t*e*d*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*f*e*a*t*u*r*e*s*"*>*F*e*a*t*u*r*e*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*"*>*E*c*o*s*y*s*t*e*m*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*b*l*o*g*/*"*>*B*l*o*g*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*>*R*e*s*o*u*r*c*e*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * *<*/*u*l*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*c*o*l*"*>* -* * * * * * * * * * *<*u*l*>* -* * * * * * * * * * * * *<*l*i* *c*l*a*s*s*=*"*l*i*s*t*-*t*i*t*l*e*"*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*s*u*p*p*o*r*t*"*>*S*u*p*p*o*r*t*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*T*u*t*o*r*i*a*l*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*D*o*c*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*d*i*s*c*u*s*s*.*p*y*t*o*r*c*h*.*o*r*g*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*D*i*s*c*u*s*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*/*i*s*s*u*e*s*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*G*i*t*h*u*b* *I*s*s*u*e*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*S*l*a*c*k*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*/*b*l*o*b*/*m*a*s*t*e*r*/*C*O*N*T*R*I*B*U*T*I*N*G*.*m*d*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*C*o*n*t*r*i*b*u*t*i*n*g*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * *<*/*u*l*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*c*o*l* *f*o*l*l*o*w*-*u*s*-*c*o*l*"*>* -* * * * * * * * * * *<*u*l*>* -* * * * * * * * * * * * *<*l*i* *c*l*a*s*s*=*"*l*i*s*t*-*t*i*t*l*e*"*>*F*o*l*l*o*w* *U*s*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * * * *<*d*i*v* *i*d*=*"*m*c*e*m*b*e*d*s*i*g*n*u*p*"*>* -* * * * * * * * * * * * * * * * *<*f*o*r*m* -* * * * * * * * * * * * * * * * * * *a*c*t*i*o*n*=*"*h*t*t*p*s*:*/*/*t*w*i*t*t*e*r*.*u*s*1*4*.*l*i*s*t*-*m*a*n*a*g*e*.*c*o*m*/*s*u*b*s*c*r*i*b*e*/*p*o*s*t*?*u*=*7*5*4*1*9*c*7*1*f*e*0*a*9*3*5*e*5*3*d*f*a*4*a*3*f*&*i*d*=*9*1*d*0*d*c*c*d*3*9*"* -* * * * * * * * * * * * * * * * * * *m*e*t*h*o*d*=*"*p*o*s*t*"* -* * * * * * * * * * * * * * * * * * *i*d*=*"*m*c*-*e*m*b*e*d*d*e*d*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m*"* -* * * * * * * * * * * * * * * * * * *n*a*m*e*=*"*m*c*-*e*m*b*e*d*d*e*d*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m*"* -* * * * * * * * * * * * * * * * * * *c*l*a*s*s*=*"*e*m*a*i*l*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m* *v*a*l*i*d*a*t*e*"* -* * * * * * * * * * * * * * * * * * *t*a*r*g*e*t*=*"*b*l*a*n*k*"* -* * * * * * * * * * * * * * * * * * *n*o*v*a*l*i*d*a*t*e*>* -* * * * * * * * * * * * * * * * * * *<*d*i*v* *i*d*=*"*m*c*e*m*b*e*d*s*i*g*n*u*p*s*c*r*o*l*l*"* *c*l*a*s*s*=*"*e*m*a*i*l*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m*-*f*i*e*l*d*s*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*c*-*f*i*e*l*d*-*g*r*o*u*p*"*>* -* * * * * * * * * * * * * * * * * * * * * * *<*l*a*b*e*l* *f*o*r*=*"*m*c*e*-*E*M*A*I*L*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:*n*o*n*e*;*"*>*E*m*a*i*l* *A*d*d*r*e*s*s*<*/*l*a*b*e*l*>* -* * * * * * * * * * * * * * * * * * * * * * *<*i*n*p*u*t* *t*y*p*e*=*"*e*m*a*i*l*"* *v*a*l*u*e*=*"*"* *n*a*m*e*=*"*E*M*A*I*L*"* *c*l*a*s*s*=*"*r*e*q*u*i*r*e*d* *e*m*a*i*l*"* *i*d*=*"*m*c*e*-*E*M*A*I*L*"* *p*l*a*c*e*h*o*l*d*e*r*=*"*E*m*a*i*l* *A*d*d*r*e*s*s*"*>* -* * * * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *i*d*=*"*m*c*e*-*r*e*s*p*o*n*s*e*s*"* *c*l*a*s*s*=*"*c*l*e*a*r*"*>* -* * * * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*p*o*n*s*e*"* *i*d*=*"*m*c*e*-*e*r*r*o*r*-*r*e*s*p*o*n*s*e*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:*n*o*n*e*"*>*<*/*d*i*v*>* -* * * * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*p*o*n*s*e*"* *i*d*=*"*m*c*e*-*s*u*c*c*e*s*s*-*r*e*s*p*o*n*s*e*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:*n*o*n*e*"*>*<*/*d*i*v*>* -* * * * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *s*t*y*l*e*=*"*p*o*s*i*t*i*o*n*:* *a*b*s*o*l*u*t*e*;* *l*e*f*t*:* *-*5*0*0*0*p*x*;*"* *a*r*i*a*-*h*i*d*d*e*n*=*"*t*r*u*e*"*>*<*i*n*p*u*t* *t*y*p*e*=*"*t*e*x*t*"* *n*a*m*e*=*"*b*7*5*4*1*9*c*7*1*f*e*0*a*9*3*5*e*5*3*d*f*a*4*a*3*f*9*1*d*0*d*c*c*d*3*9*"* *t*a*b*i*n*d*e*x*=*"*-*1*"* *v*a*l*u*e*=*"*"*>*<*/*d*i*v*>* -* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*l*e*a*r*"*>* -* * * * * * * * * * * * * * * * * * * * * * *<*i*n*p*u*t* *t*y*p*e*=*"*s*u*b*m*i*t*"* *v*a*l*u*e*=*"*"* *n*a*m*e*=*"*s*u*b*s*c*r*i*b*e*"* *i*d*=*"*m*c*-*e*m*b*e*d*d*e*d*-*s*u*b*s*c*r*i*b*e*"* *c*l*a*s*s*=*"*b*u*t*t*o*n* *e*m*a*i*l*-*s*u*b*s*c*r*i*b*e*-*b*u*t*t*o*n*"*>* -* * * * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * * * * * *<*/*f*o*r*m*>* -* * * * * * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * * *<*/*l*i*>* -* * * * * * * * * * *<*/*u*l*>* -* -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*s*o*c*i*a*l*-*i*c*o*n*s*"*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"* *c*l*a*s*s*=*"*f*a*c*e*b*o*o*k*"*>*<*/*a*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*t*w*i*t*t*e*r*.*c*o*m*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"* *c*l*a*s*s*=*"*t*w*i*t*t*e*r*"*>*<*/*a*>* -* * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* * *<*/*f*o*o*t*e*r*>* *-*-*>* -* -* -* * *<*!*-*-* *E*n*d* *F*o*o*t*e*r* *-*-*>* -* -* * *<*!*-*-* *B*e*g*i*n* *M*o*b*i*l*e* *M*e*n*u* *-*-*>* -* -* * *<*d*i*v* *c*l*a*s*s*=*"*m*o*b*i*l*e*-*m*a*i*n*-*m*e*n*u*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*-*f*l*u*i*d*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*o*b*i*l*e*-*m*a*i*n*-*m*e*n*u*-*h*e*a*d*e*r*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*h*e*a*d*e*r*-*l*o*g*o*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"* *a*r*i*a*-*l*a*b*e*l*=*"*P*y*T*o*r*c*h* *L*i*g*h*t*n*i*n*g*"*>*<*/*a*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*-*c*l*o*s*e*-*b*u*t*t*o*n*"* *h*r*e*f*=*"*#*"* *d*a*t*a*-*b*e*h*a*v*i*o*r*=*"*c*l*o*s*e*-*m*o*b*i*l*e*-*m*e*n*u*"*>*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*m*o*b*i*l*e*-*m*a*i*n*-*m*e*n*u*-*l*i*n*k*s*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*"*>* -* * * * * * * * *<*u*l*>* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*g*e*t*-*s*t*a*r*t*e*d*"*>*G*e*t* *S*t*a*r*t*e*d*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*f*e*a*t*u*r*e*s*"*>*F*e*a*t*u*r*e*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*b*l*o*g*/*"*>*B*l*o*g*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*T*u*t*o*r*i*a*l*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*D*o*c*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*>*R*e*s*o*u*r*c*e*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"*>*G*i*t*h*u*b*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* * * * * * * * *<*/*u*l*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* * *<*/*d*i*v*>* -* -* * *<*!*-*-* *E*n*d* *M*o*b*i*l*e* *M*e*n*u* *-*-*>* -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*v*e*n*d*o*r*/*a*n*c*h*o*r*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"*>* -* * * * *$*(*d*o*c*u*m*e*n*t*)*.*r*e*a*d*y*(*f*u*n*c*t*i*o*n*(*)* *{* -* * * * * * *m*o*b*i*l*e*M*e*n*u*.*b*i*n*d*(*)*;* -* * * * * * *m*o*b*i*l*e*T*O*C*.*b*i*n*d*(*)*;* -* * * * * * *p*y*t*o*r*c*h*A*n*c*h*o*r*s*.*b*i*n*d*(*)*;* -* * * * * * *s*i*d*e*M*e*n*u*s*.*b*i*n*d*(*)*;* -* * * * * * *s*c*r*o*l*l*T*o*A*n*c*h*o*r*.*b*i*n*d*(*)*;* -* * * * * * *h*i*g*h*l*i*g*h*t*N*a*v*i*g*a*t*i*o*n*.*b*i*n*d*(*)*;* -* * * * * * *m*a*i*n*M*e*n*u*D*r*o*p*d*o*w*n*.*b*i*n*d*(*)*;* -* -* * * * * * */*/* *A*d*d* *c*l*a*s*s* *t*o* *l*i*n*k*s* *t*h*a*t* *h*a*v*e* *c*o*d*e* *b*l*o*c*k*s*,* *s*i*n*c*e* *w*e* *c*a*n*n*o*t* *c*r*e*a*t*e* *l*i*n*k*s* *i*n* *c*o*d*e* *b*l*o*c*k*s* -* * * * * * *$*(*"*a*r*t*i*c*l*e*.*p*y*t*o*r*c*h*-*a*r*t*i*c*l*e* *a* *s*p*a*n*.*p*r*e*"*)*.*e*a*c*h*(*f*u*n*c*t*i*o*n*(*e*)* *{* -* * * * * * * * *$*(*t*h*i*s*)*.*c*l*o*s*e*s*t*(*"*a*"*)*.*a*d*d*C*l*a*s*s*(*"*h*a*s*-*c*o*d*e*"*)*;* -* * * * * * *}*)*;* -* * * * *}*)* -* * *<*/*s*c*r*i*p*t*>* -*<*/*b*o*d*y*>* -*<*/*h*t*m*l*>* \ No newline at end of file diff --git a/docs/src/_build/html/static/pygments.css b/docs/src/_build/html/static/pygments.css deleted file mode 100644 index 582d5c3..0000000 --- a/docs/src/_build/html/static/pygments.css +++ /dev/null @@ -1,74 +0,0 @@ -pre { line-height: 125%; } -td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } -span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } -td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } -span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } -.highlight .hll { background-color: #ffffcc } -.highlight { background: #f8f8f8; } -.highlight .c { color: #408080; font-style: italic } /* Comment */ -.highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #008000; font-weight: bold } /* Keyword */ -.highlight .o { color: #666666 } /* Operator */ -.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */ -.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ -.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ -.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #888888 } /* Generic.Output */ -.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0044DD } /* Generic.Traceback */ -.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #008000 } /* Keyword.Pseudo */ -.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #B00040 } /* Keyword.Type */ -.highlight .m { color: #666666 } /* Literal.Number */ -.highlight .s { color: #BA2121 } /* Literal.String */ -.highlight .na { color: #7D9029 } /* Name.Attribute */ -.highlight .nb { color: #008000 } /* Name.Builtin */ -.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ -.highlight .no { color: #880000 } /* Name.Constant */ -.highlight .nd { color: #AA22FF } /* Name.Decorator */ -.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ -.highlight .nf { color: #0000FF } /* Name.Function */ -.highlight .nl { color: #A0A000 } /* Name.Label */ -.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #19177C } /* Name.Variable */ -.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ -.highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mb { color: #666666 } /* Literal.Number.Bin */ -.highlight .mf { color: #666666 } /* Literal.Number.Float */ -.highlight .mh { color: #666666 } /* Literal.Number.Hex */ -.highlight .mi { color: #666666 } /* Literal.Number.Integer */ -.highlight .mo { color: #666666 } /* Literal.Number.Oct */ -.highlight .sa { color: #BA2121 } /* Literal.String.Affix */ -.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ -.highlight .sc { color: #BA2121 } /* Literal.String.Char */ -.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */ -.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ -.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ -.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ -.highlight .sx { color: #008000 } /* Literal.String.Other */ -.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ -.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ -.highlight .ss { color: #19177C } /* Literal.String.Symbol */ -.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ -.highlight .fm { color: #0000FF } /* Name.Function.Magic */ -.highlight .vc { color: #19177C } /* Name.Variable.Class */ -.highlight .vg { color: #19177C } /* Name.Variable.Global */ -.highlight .vi { color: #19177C } /* Name.Variable.Instance */ -.highlight .vm { color: #19177C } /* Name.Variable.Magic */ -.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/docs/src/_build/html/static/search.html b/docs/src/_build/html/static/search.html deleted file mode 100644 index a0282fe..0000000 --- a/docs/src/_build/html/static/search.html +++ /dev/null @@ -1,500 +0,0 @@ -* -* -* -*<*!*D*O*C*T*Y*P*E* *h*t*m*l*>* -*<*!*-*-*[*i*f* *I*E* *8*]*>*<*h*t*m*l* *c*l*a*s*s*=*"*n*o*-*j*s* *l*t*-*i*e*9*"* *l*a*n*g*=*"*e*n*"* *>* *<*!*[*e*n*d*i*f*]*-*-*>* -*<*!*-*-*[*i*f* *g*t* *I*E* *8*]*>*<*!*-*-*>* *<*h*t*m*l* *c*l*a*s*s*=*"*n*o*-*j*s*"* *l*a*n*g*=*"*e*n*"* *>* *<*!*-*-*<*!*[*e*n*d*i*f*]*-*-*>* -*<*h*e*a*d*>* -* * *<*m*e*t*a* *c*h*a*r*s*e*t*=*"*u*t*f*-*8*"*>* -* * * -* * *<*m*e*t*a* *n*a*m*e*=*"*v*i*e*w*p*o*r*t*"* *c*o*n*t*e*n*t*=*"*w*i*d*t*h*=*d*e*v*i*c*e*-*w*i*d*t*h*,* *i*n*i*t*i*a*l*-*s*c*a*l*e*=*1*.*0*"*>* -* * * -* * *<*t*i*t*l*e*>*S*e*a*r*c*h* *&*m*d*a*s*h*;* *m*m*i*c*c*m*d* * *d*o*c*u*m*e*n*t*a*t*i*o*n*<*/*t*i*t*l*e*>* -* * * -* -* * * -* * * -* * * -* * * -* -* * * -* -* * * -* * * -* * * * * -* -* * * -* -* * *<*l*i*n*k* *r*e*l*=*"*s*t*y*l*e*s*h*e*e*t*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*c*s*s*/*t*h*e*m*e*.*c*s*s*"* *t*y*p*e*=*"*t*e*x*t*/*c*s*s*"* */*>* -* * *<*!*-*-* *<*l*i*n*k* *r*e*l*=*"*s*t*y*l*e*s*h*e*e*t*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*p*y*g*m*e*n*t*s*.*c*s*s*"* *t*y*p*e*=*"*t*e*x*t*/*c*s*s*"* */*>* *-*-*>* -* * * * *<*l*i*n*k* *r*e*l*=*"*i*n*d*e*x*"* *t*i*t*l*e*=*"*I*n*d*e*x*"* *h*r*e*f*=*"*g*e*n*i*n*d*e*x*.*h*t*m*l*"* */*>* -* * * * *<*l*i*n*k* *r*e*l*=*"*s*e*a*r*c*h*"* *t*i*t*l*e*=*"*S*e*a*r*c*h*"* *h*r*e*f*=*"*#*"* */*>* * -* -* * * -* * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*m*o*d*e*r*n*i*z*r*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* -* * *<*!*-*-* *P*r*e*l*o*a*d* *t*h*e* *t*h*e*m*e* *f*o*n*t*s* *-*-*>* -* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*b*o*o*k*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*m*e*d*i*u*m*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*I*B*M*P*l*e*x*M*o*n*o*/*I*B*M*P*l*e*x*M*o*n*o*-*M*e*d*i*u*m*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*b*o*l*d*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*F*r*e*i*g*h*t*S*a*n*s*/*f*r*e*i*g*h*t*-*s*a*n*s*-*m*e*d*i*u*m*-*i*t*a*l*i*c*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*s*t*a*t*i*c*/*f*o*n*t*s*/*I*B*M*P*l*e*x*M*o*n*o*/*I*B*M*P*l*e*x*M*o*n*o*-*S*e*m*i*B*o*l*d*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -* -*<*!*-*-* *P*r*e*l*o*a*d* *t*h*e* *k*a*t*e*x* *f*o*n*t*s* *-*-*>* -* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*M*a*t*h*-*I*t*a*l*i*c*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*M*a*i*n*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*M*a*i*n*-*B*o*l*d*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*1*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*4*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*2*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*S*i*z*e*3*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*l*i*n*k* *r*e*l*=*"*p*r*e*l*o*a*d*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*c*d*n*.*j*s*d*e*l*i*v*r*.*n*e*t*/*n*p*m*/*k*a*t*e*x*@*0*.*1*0*.*0*/*d*i*s*t*/*f*o*n*t*s*/*K*a*T*e*X*C*a*l*i*g*r*a*p*h*i*c*-*R*e*g*u*l*a*r*.*w*o*f*f*2*"* *a*s*=*"*f*o*n*t*"* *t*y*p*e*=*"*f*o*n*t*/*w*o*f*f*2*"* *c*r*o*s*s*o*r*i*g*i*n*=*"*a*n*o*n*y*m*o*u*s*"*>* -*<*/*h*e*a*d*>* -* -*<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*-*f*l*u*i*d* *h*e*a*d*e*r*-*h*o*l*d*e*r* *t*u*t*o*r*i*a*l*s*-*h*e*a*d*e*r*"* *i*d*=*"*h*e*a*d*e*r*-*h*o*l*d*e*r*"*>* -* * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*h*e*a*d*e*r*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*a* *c*l*a*s*s*=*"*h*e*a*d*e*r*-*l*o*g*o*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"* *a*r*i*a*-*l*a*b*e*l*=*"*P*y*T*o*r*c*h*"*>* -* * * * * * * *<*!*-*-* *<*i*m*g* *c*l*a*s*s*=*"*c*a*l*l*-*t*o*-*a*c*t*i*o*n*-*i*m*g*"* *s*r*c*=*"*s*t*a*t*i*c*/*i*m*a*g*e*s*/*a*s*t*e*r*o*i*d*l*o*g*o*d*a*r*k*.*p*n*g*"*/*>* *-*-*>* -* * * * * * *<*/*a*>* -* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*"*>* -* * * * * * * * *<*u*l*>* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*g*e*t*-*s*t*a*r*t*e*d*"*>*G*e*t* *S*t*a*r*t*e*d*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*b*l*o*g*/*"*>*B*l*o*g*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*T*u*t*o*r*i*a*l*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*D*o*c*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*o*u*r*c*e*s*-*d*r*o*p*d*o*w*n*"*>* -* * * * * * * * * * * * * * *<*a* *i*d*=*"*r*e*s*o*u*r*c*e*s*D*r*o*p*d*o*w*n*B*u*t*t*o*n*"* *d*a*t*a*-*t*o*g*g*l*e*=*"*r*e*s*o*u*r*c*e*s*-*d*r*o*p*d*o*w*n*"*>* -* * * * * * * * * * * * * * * * *R*e*s*o*u*r*c*e*s* -* * * * * * * * * * * * * * *<*/*a*>* -* * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*o*u*r*c*e*s*-*d*r*o*p*d*o*w*n*-*m*e*n*u*"*>* -* * * * * * * * * * * * * * * * *<*a* *c*l*a*s*s*=*"*n*a*v*-*d*r*o*p*d*o*w*n*-*i*t*e*m*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*"*>* -* * * * * * * * * * * * * * * * * * *<*s*p*a*n* *c*l*a*s*s*=*d*r*o*p*d*o*w*n*-*t*i*t*l*e*>*D*e*v*e*l*o*p*e*r* *R*e*s*o*u*r*c*e*s*<*/*s*p*a*n*>* -* * * * * * * * * * * * * * * * * * *<*p*>*F*i*n*d* *r*e*s*o*u*r*c*e*s* *a*n*d* *g*e*t* *q*u*e*s*t*i*o*n*s* *a*n*s*w*e*r*e*d*<*/*p*>* -* * * * * * * * * * * * * * * * *<*/*a*>* -* * * * * * * * * * * * * * * * *<*!*-*-* -* * * * * * * * * * * * * * * * *<*a* *c*l*a*s*s*=*"*n*a*v*-*d*r*o*p*d*o*w*n*-*i*t*e*m*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*f*e*a*t*u*r*e*s*"*>* -* * * * * * * * * * * * * * * * * * *<*s*p*a*n* *c*l*a*s*s*=*d*r*o*p*d*o*w*n*-*t*i*t*l*e*>*A*b*o*u*t*<*/*s*p*a*n*>* -* * * * * * * * * * * * * * * * * * *<*p*>*L*e*a*r*n* *a*b*o*u*t* *P*y*T*o*r*c*h****s* *f*e*a*t*u*r*e*s* *a*n*d* *c*a*p*a*b*i*l*i*t*i*e*s*<*/*p*>* -* * * * * * * * * * * * * * * * *<*/*a*>* -* * * * * * * * * * * * * * * * *-*-*>* -* * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"*>*G*i*t*h*u*b*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* * * * * * * * *<*/*u*l*>* -* * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*a* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*-*o*p*e*n*-*b*u*t*t*o*n*"* *h*r*e*f*=*"*#*"* *d*a*t*a*-*b*e*h*a*v*i*o*r*=*"*o*p*e*n*-*m*o*b*i*l*e*-*m*e*n*u*"*>*<*/*a*>* -* * * * *<*/*d*i*v*>* -* -* * *<*/*d*i*v*>* -*<*/*d*i*v*>* -* -* -*<*b*o*d*y* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*o*d*y*"*>* -* -* * * * -* -* * * * * -* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*t*a*b*l*e*-*o*f*-*c*o*n*t*e*n*t*s*-*l*i*n*k*-*w*r*a*p*p*e*r*"*>* -* * * * * * *<*s*p*a*n*>*T*a*b*l*e* *o*f* *C*o*n*t*e*n*t*s*<*/*s*p*a*n*>* -* * * * * * *<*a* *h*r*e*f*=*"*#*"* *c*l*a*s*s*=*"*t*o*g*g*l*e*-*t*a*b*l*e*-*o*f*-*c*o*n*t*e*n*t*s*"* *d*a*t*a*-*b*e*h*a*v*i*o*r*=*"*t*o*g*g*l*e*-*t*a*b*l*e*-*o*f*-*c*o*n*t*e*n*t*s*"*>*<*/*a*>* -* * * * *<*/*d*i*v*>* -* -* * * * *<*n*a*v* *d*a*t*a*-*t*o*g*g*l*e*=*"*w*y*-*n*a*v*-*s*h*i*f*t*"* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*l*e*f*t*-*m*e*n*u*"* *i*d*=*"*p*y*t*o*r*c*h*-*l*e*f*t*-*m*e*n*u*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*s*i*d*e*-*s*c*r*o*l*l*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*m*e*n*u* *p*y*t*o*r*c*h*-*m*e*n*u*-*v*e*r*t*i*c*a*l*"* *d*a*t*a*-*s*p*y*=*"*a*f*f*i*x*"* *r*o*l*e*=*"*n*a*v*i*g*a*t*i*o*n*"* *a*r*i*a*-*l*a*b*e*l*=*"*m*a*i*n* *n*a*v*i*g*a*t*i*o*n*"*>* -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*l*e*f*t*-*m*e*n*u*-*s*e*a*r*c*h*"*>* -* * * * * * * * * * * * * -* -* * * * * * * * * * * * * -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*v*e*r*s*i*o*n*"*>* -* * * * * * * * * * * * * * * * * * *0*+*u*n*t*a*g*g*e*d*.*1*0*6*.*g*b*d*c*a*8*6*4* -* * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * -* -* * * * * * * * * * * * * -* -* -* * * -* -* -*<*d*i*v* *r*o*l*e*=*"*s*e*a*r*c*h*"*>* -* * *<*f*o*r*m* *i*d*=*"*r*t*d*-*s*e*a*r*c*h*-*f*o*r*m*"* *c*l*a*s*s*=*"*w*y*-*f*o*r*m*"* *a*c*t*i*o*n*=*"*#*"* *m*e*t*h*o*d*=*"*g*e*t*"*>* -* * * * *<*i*n*p*u*t* *t*y*p*e*=*"*t*e*x*t*"* *n*a*m*e*=*"*q*"* *p*l*a*c*e*h*o*l*d*e*r*=*"*S*e*a*r*c*h* *D*o*c*s*"* */*>* -* * * * *<*i*n*p*u*t* *t*y*p*e*=*"*h*i*d*d*e*n*"* *n*a*m*e*=*"*c*h*e*c*k*k*e*y*w*o*r*d*s*"* *v*a*l*u*e*=*"*y*e*s*"* */*>* -* * * * *<*i*n*p*u*t* *t*y*p*e*=*"*h*i*d*d*e*n*"* *n*a*m*e*=*"*a*r*e*a*"* *v*a*l*u*e*=*"*d*e*f*a*u*l*t*"* */*>* -* * *<*/*f*o*r*m*>* -*<*/*d*i*v*>* -* -* * * * * * * * * * * * * -* * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * * * * * * *<*p* *c*l*a*s*s*=*"*c*a*p*t*i*o*n*"*>*<*s*p*a*n* *c*l*a*s*s*=*"*c*a*p*t*i*o*n*-*t*e*x*t*"*>*C*o*n*t*e*n*t*s*:*<*/*s*p*a*n*>*<*/*p*>* -*<*u*l*>* -*<*l*i* *c*l*a*s*s*=*"*t*o*c*t*r*e*e*-*l*1*"*>*<*a* *c*l*a*s*s*=*"*r*e*f*e*r*e*n*c*e* *i*n*t*e*r*n*a*l*"* *h*r*e*f*=*"*a*p*i*.*h*t*m*l*"*>*A*P*I*<*/*a*>*<*/*l*i*>* -*<*l*i* *c*l*a*s*s*=*"*t*o*c*t*r*e*e*-*l*1*"*>*<*a* *c*l*a*s*s*=*"*r*e*f*e*r*e*n*c*e* *i*n*t*e*r*n*a*l*"* *h*r*e*f*=*"*m*o*d*e*l*s*.*h*t*m*l*"*>*M*o*d*e*l*s*<*/*a*>*<*/*l*i*>* -*<*/*u*l*>* -* -* * * * * * * * * * * * * -* * * * * * * * * * * -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*n*a*v*>* -* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*p*a*g*e*-*l*e*v*e*l*-*b*a*r*"* *i*d*=*"*p*y*t*o*r*c*h*-*p*a*g*e*-*l*e*v*e*l*-*b*a*r*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*r*e*a*d*c*r*u*m*b*s*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * * * * -* -* -* -* -* -* -* -* -* -* -* -* -* -* -* -*<*d*i*v* *r*o*l*e*=*"*n*a*v*i*g*a*t*i*o*n*"* *a*r*i*a*-*l*a*b*e*l*=*"*b*r*e*a*d*c*r*u*m*b*s* *n*a*v*i*g*a*t*i*o*n*"*>* -* -* * *<*u*l* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*r*e*a*d*c*r*u*m*b*s*"*>* -* * * * * -* * * * * * *<*l*i*>* -* * * * * * * * *<*a* *h*r*e*f*=*"*i*n*d*e*x*.*h*t*m*l*"*>* -* * * * * * * * * * * -* * * * * * * * * * * * *D*o*c*s* -* * * * * * * * * * * -* * * * * * * * *<*/*a*>* *&*g*t*;* -* * * * * * *<*/*l*i*>* -* -* * * * * * * * * -* * * * * * *<*l*i*>*S*e*a*r*c*h*<*/*l*i*>* -* * * * * -* * * * * -* * * * * * *<*l*i* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*b*r*e*a*d*c*r*u*m*b*s*-*a*s*i*d*e*"*>* -* * * * * * * * * -* * * * * * * * * * * * * -* * * * * * * * * -* * * * * * *<*/*l*i*>* -* * * * * -* * *<*/*u*l*>* -* -* * * -*<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*s*h*o*r*t*c*u*t*s*-*w*r*a*p*p*e*r*"* *i*d*=*"*p*y*t*o*r*c*h*-*s*h*o*r*t*c*u*t*s*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * * * *S*h*o*r*t*c*u*t*s* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*s*e*c*t*i*o*n* *d*a*t*a*-*t*o*g*g*l*e*=*"*w*y*-*n*a*v*-*s*h*i*f*t*"* *i*d*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*w*r*a*p*"* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*w*r*a*p*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*l*e*f*t*"*>* -* -* * * * * * * * * -* * * * * * * * * * * -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*s*t*-*c*o*n*t*e*n*t*"*>* -* * * * * * * * * * * -* * * * * * * * * * * * *<*d*i*v* *r*o*l*e*=*"*m*a*i*n*"* *c*l*a*s*s*=*"*m*a*i*n*-*c*o*n*t*e*n*t*"* *i*t*e*m*s*c*o*p*e*=*"*i*t*e*m*s*c*o*p*e*"* *i*t*e*m*t*y*p*e*=*"*h*t*t*p*:*/*/*s*c*h*e*m*a*.*o*r*g*/*A*r*t*i*c*l*e*"*>* -* * * * * * * * * * * * * *<*a*r*t*i*c*l*e* *i*t*e*m*p*r*o*p*=*"*a*r*t*i*c*l*e*B*o*d*y*"* *i*d*=*"*p*y*t*o*r*c*h*-*a*r*t*i*c*l*e*"* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*a*r*t*i*c*l*e*"*>* -* * * * * * * * * * * * * * * -* * *<*n*o*s*c*r*i*p*t*>* -* * *<*d*i*v* *i*d*=*"*f*a*l*l*b*a*c*k*"* *c*l*a*s*s*=*"*a*d*m*o*n*i*t*i*o*n* *w*a*r*n*i*n*g*"*>* -* * * * *<*p* *c*l*a*s*s*=*"*l*a*s*t*"*>* -* * * * * * *P*l*e*a*s*e* *a*c*t*i*v*a*t*e* *J*a*v*a*S*c*r*i*p*t* *t*o* *e*n*a*b*l*e* *t*h*e* *s*e*a*r*c*h* -* * * * * * *f*u*n*c*t*i*o*n*a*l*i*t*y*.* -* * * * *<*/*p*>* -* * *<*/*d*i*v*>* -* * *<*/*n*o*s*c*r*i*p*t*>* -* -* * * -* * *<*d*i*v* *i*d*=*"*s*e*a*r*c*h*-*r*e*s*u*l*t*s*"*>* -* * * -* * *<*/*d*i*v*>* -* -* * * * * * * * * * * * * *<*/*a*r*t*i*c*l*e*>* -* * * * * * * * * * * * * * -* * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * *<*f*o*o*t*e*r*>* -* * * -* -* * * -* -* * * * *<*h*r*>* -* -* * * -* -* * *<*d*i*v* *r*o*l*e*=*"*c*o*n*t*e*n*t*i*n*f*o*"*>* -* * * * *<*p*>* -* * * * * * * * *&*c*o*p*y*;* *C*o*p*y*r*i*g*h*t* *2*0*2*1*,* *M*o*l*S*S*I*.* *P*r*o*j*e*c*t* *s*t*r*u*c*t*u*r*e* *b*a*s*e*d* *o*n* *t*h*e* *C*o*m*p*u*t*a*t*i*o*n*a*l* *M*o*l*e*c*u*l*a*r* *S*c*i*e*n*c*e* *P*y*t*h*o*n* *C*o*o*k*i*e*c*u*t*t*e*r* *v*e*r*s*i*o*n* *1*.*5*.* -* -* * * * *<*/*p*>* -* * *<*/*d*i*v*>* -* * * * * -* * * * * * *<*d*i*v*>* -* * * * * * * * *B*u*i*l*t* *w*i*t*h* *<*a* *h*r*e*f*=*"*h*t*t*p*:*/*/*s*p*h*i*n*x*-*d*o*c*.*o*r*g*/*"*>*S*p*h*i*n*x*<*/*a*>* *u*s*i*n*g* *a* *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*r*t*f*d*/*s*p*h*i*n*x*r*t*d*t*h*e*m*e*"*>*t*h*e*m*e*<*/*a*>* *p*r*o*v*i*d*e*d* *b*y* *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*r*e*a*d*t*h*e*d*o*c*s*.*o*r*g*"*>*R*e*a*d* *t*h*e* *D*o*c*s*<*/*a*>*.* -* * * * * * *<*/*d*i*v*>* -* * * * * * -* -*<*/*f*o*o*t*e*r*>* -* -* * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*r*i*g*h*t*"* *i*d*=*"*p*y*t*o*r*c*h*-*c*o*n*t*e*n*t*-*r*i*g*h*t*"*>* -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*r*i*g*h*t*-*m*e*n*u*"* *i*d*=*"*p*y*t*o*r*c*h*-*r*i*g*h*t*-*m*e*n*u*"*>* -* * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*p*y*t*o*r*c*h*-*s*i*d*e*-*s*c*r*o*l*l*"* *i*d*=*"*p*y*t*o*r*c*h*-*s*i*d*e*-*s*c*r*o*l*l*-*r*i*g*h*t*"*>* -* * * * * * * * * * * * * * * -* * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*s*e*c*t*i*o*n*>* -* * * * *<*/*d*i*v*>* -* -* * * -* -* -* * * -* -* * * * * * -* * * * * * * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *i*d*=*"*d*o*c*u*m*e*n*t*a*t*i*o*n*o*p*t*i*o*n*s*"* *d*a*t*a*-*u*r*l*r*o*o*t*=*"*.*/*"* *s*r*c*=*"*s*t*a*t*i*c*/*d*o*c*u*m*e*n*t*a*t*i*o*n*o*p*t*i*o*n*s*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*j*q*u*e*r*y*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*u*n*d*e*r*s*c*o*r*e*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*d*o*c*t*o*o*l*s*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * * * * *<*s*c*r*i*p*t* *s*r*c*=*"*s*t*a*t*i*c*/*s*e*a*r*c*h*t*o*o*l*s*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * * * * * -* -* * * -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*v*e*n*d*o*r*/*p*o*p*p*e*r*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*v*e*n*d*o*r*/*b*o*o*t*s*t*r*a*p*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*t*h*e*m*e*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"*>* -* * * * * * *j*Q*u*e*r*y*(*f*u*n*c*t*i*o*n* *(*)* *{* -* * * * * * * * * * *S*p*h*i*n*x*R*t*d*T*h*e*m*e*.*N*a*v*i*g*a*t*i*o*n*.*e*n*a*b*l*e*(*t*r*u*e*)*;* -* * * * * * *}*)*;* -* * *<*/*s*c*r*i*p*t*>* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*e*a*r*c*h*i*n*d*e*x*.*j*s*"* *d*e*f*e*r*>*<*/*s*c*r*i*p*t*>* -* * * * -* -* -* * *<*!*-*-* *B*e*g*i*n* *F*o*o*t*e*r* *-*-*>* -* -* * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*-*f*l*u*i*d*"* *i*d*=*"*d*o*c*s*-*t*u*t*o*r*i*a*l*s*-*r*e*s*o*u*r*c*e*s*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*o*w*"*>* -* * * * * * * * *<*!*-*-* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*l*-*m*d*-*4* *t*e*x*t*-*c*e*n*t*e*r*"*>* -* * * * * * * * * * *<*h*2*>*D*o*c*s*<*/*h*2*>* -* * * * * * * * * * *<*p*>*A*c*c*e*s*s* *c*o*m*p*r*e*h*e*n*s*i*v*e* *d*e*v*e*l*o*p*e*r* *d*o*c*u*m*e*n*t*a*t*i*o*n* *f*o*r* *P*y*T*o*r*c*h*<*/*p*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*w*i*t*h*-*r*i*g*h*t*-*a*r*r*o*w*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*V*i*e*w* *D*o*c*s*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*l*-*m*d*-*4* *t*e*x*t*-*c*e*n*t*e*r*"*>* -* * * * * * * * * * *<*h*2*>*T*u*t*o*r*i*a*l*s*<*/*h*2*>* -* * * * * * * * * * *<*p*>*G*e*t* *i*n*-*d*e*p*t*h* *t*u*t*o*r*i*a*l*s* *f*o*r* *b*e*g*i*n*n*e*r*s* *a*n*d* *a*d*v*a*n*c*e*d* *d*e*v*e*l*o*p*e*r*s*<*/*p*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*w*i*t*h*-*r*i*g*h*t*-*a*r*r*o*w*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*V*i*e*w* *T*u*t*o*r*i*a*l*s*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*l*-*m*d*-*4* *t*e*x*t*-*c*e*n*t*e*r*"*>* -* * * * * * * * * * *<*h*2*>*R*e*s*o*u*r*c*e*s*<*/*h*2*>* -* * * * * * * * * * *<*p*>*F*i*n*d* *d*e*v*e*l*o*p*m*e*n*t* *r*e*s*o*u*r*c*e*s* *a*n*d* *g*e*t* *y*o*u*r* *q*u*e*s*t*i*o*n*s* *a*n*s*w*e*r*e*d*<*/*p*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*w*i*t*h*-*r*i*g*h*t*-*a*r*r*o*w*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*>*V*i*e*w* *R*e*s*o*u*r*c*e*s*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *-*-*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* * *<*/*d*i*v*>* -* -* -* * *<*!*-*-* *<*f*o*o*t*e*r* *c*l*a*s*s*=*"*s*i*t*e*-*f*o*o*t*e*r*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r* *f*o*o*t*e*r*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*"*>*<*/*a*>* -* * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*w*r*a*p*p*e*r*"*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*-*c*o*l*"*>* -* * * * * * * * * * *<*i*m*g* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*o*g*o*-*i*m*g*"* *s*r*c*=*"*s*t*a*t*i*c*/*i*m*a*g*e*s*/*d*a*r*k*a*s*t*e*r*o*i*d*l*o*g*o*.*s*v*g*"*/*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*c*o*l*"*>* -* * * * * * * * * * *<*u*l*>* -* * * * * * * * * * * * *<*l*i* *c*l*a*s*s*=*"*l*i*s*t*-*t*i*t*l*e*"*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"*>*A*s*t*e*r*o*i*d*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*g*e*t*-*s*t*a*r*t*e*d*"*>*G*e*t* *S*t*a*r*t*e*d*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*f*e*a*t*u*r*e*s*"*>*F*e*a*t*u*r*e*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*"*>*E*c*o*s*y*s*t*e*m*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*b*l*o*g*/*"*>*B*l*o*g*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*>*R*e*s*o*u*r*c*e*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * *<*/*u*l*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*c*o*l*"*>* -* * * * * * * * * * *<*u*l*>* -* * * * * * * * * * * * *<*l*i* *c*l*a*s*s*=*"*l*i*s*t*-*t*i*t*l*e*"*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*s*u*p*p*o*r*t*"*>*S*u*p*p*o*r*t*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*T*u*t*o*r*i*a*l*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*D*o*c*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*d*i*s*c*u*s*s*.*p*y*t*o*r*c*h*.*o*r*g*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*D*i*s*c*u*s*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*/*i*s*s*u*e*s*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*G*i*t*h*u*b* *I*s*s*u*e*s*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*S*l*a*c*k*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>*<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*/*b*l*o*b*/*m*a*s*t*e*r*/*C*O*N*T*R*I*B*U*T*I*N*G*.*m*d*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"*>*C*o*n*t*r*i*b*u*t*i*n*g*<*/*a*>*<*/*l*i*>* -* * * * * * * * * * *<*/*u*l*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*l*i*n*k*s*-*c*o*l* *f*o*l*l*o*w*-*u*s*-*c*o*l*"*>* -* * * * * * * * * * *<*u*l*>* -* * * * * * * * * * * * *<*l*i* *c*l*a*s*s*=*"*l*i*s*t*-*t*i*t*l*e*"*>*F*o*l*l*o*w* *U*s*<*/*l*i*>* -* * * * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * * * *<*d*i*v* *i*d*=*"*m*c*e*m*b*e*d*s*i*g*n*u*p*"*>* -* * * * * * * * * * * * * * * * *<*f*o*r*m* -* * * * * * * * * * * * * * * * * * *a*c*t*i*o*n*=*"*h*t*t*p*s*:*/*/*t*w*i*t*t*e*r*.*u*s*1*4*.*l*i*s*t*-*m*a*n*a*g*e*.*c*o*m*/*s*u*b*s*c*r*i*b*e*/*p*o*s*t*?*u*=*7*5*4*1*9*c*7*1*f*e*0*a*9*3*5*e*5*3*d*f*a*4*a*3*f*&*i*d*=*9*1*d*0*d*c*c*d*3*9*"* -* * * * * * * * * * * * * * * * * * *m*e*t*h*o*d*=*"*p*o*s*t*"* -* * * * * * * * * * * * * * * * * * *i*d*=*"*m*c*-*e*m*b*e*d*d*e*d*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m*"* -* * * * * * * * * * * * * * * * * * *n*a*m*e*=*"*m*c*-*e*m*b*e*d*d*e*d*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m*"* -* * * * * * * * * * * * * * * * * * *c*l*a*s*s*=*"*e*m*a*i*l*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m* *v*a*l*i*d*a*t*e*"* -* * * * * * * * * * * * * * * * * * *t*a*r*g*e*t*=*"*b*l*a*n*k*"* -* * * * * * * * * * * * * * * * * * *n*o*v*a*l*i*d*a*t*e*>* -* * * * * * * * * * * * * * * * * * *<*d*i*v* *i*d*=*"*m*c*e*m*b*e*d*s*i*g*n*u*p*s*c*r*o*l*l*"* *c*l*a*s*s*=*"*e*m*a*i*l*-*s*u*b*s*c*r*i*b*e*-*f*o*r*m*-*f*i*e*l*d*s*-*w*r*a*p*p*e*r*"*>* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*c*-*f*i*e*l*d*-*g*r*o*u*p*"*>* -* * * * * * * * * * * * * * * * * * * * * * *<*l*a*b*e*l* *f*o*r*=*"*m*c*e*-*E*M*A*I*L*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:*n*o*n*e*;*"*>*E*m*a*i*l* *A*d*d*r*e*s*s*<*/*l*a*b*e*l*>* -* * * * * * * * * * * * * * * * * * * * * * *<*i*n*p*u*t* *t*y*p*e*=*"*e*m*a*i*l*"* *v*a*l*u*e*=*"*"* *n*a*m*e*=*"*E*M*A*I*L*"* *c*l*a*s*s*=*"*r*e*q*u*i*r*e*d* *e*m*a*i*l*"* *i*d*=*"*m*c*e*-*E*M*A*I*L*"* *p*l*a*c*e*h*o*l*d*e*r*=*"*E*m*a*i*l* *A*d*d*r*e*s*s*"*>* -* * * * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *i*d*=*"*m*c*e*-*r*e*s*p*o*n*s*e*s*"* *c*l*a*s*s*=*"*c*l*e*a*r*"*>* -* * * * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*p*o*n*s*e*"* *i*d*=*"*m*c*e*-*e*r*r*o*r*-*r*e*s*p*o*n*s*e*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:*n*o*n*e*"*>*<*/*d*i*v*>* -* * * * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*r*e*s*p*o*n*s*e*"* *i*d*=*"*m*c*e*-*s*u*c*c*e*s*s*-*r*e*s*p*o*n*s*e*"* *s*t*y*l*e*=*"*d*i*s*p*l*a*y*:*n*o*n*e*"*>*<*/*d*i*v*>* -* * * * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *s*t*y*l*e*=*"*p*o*s*i*t*i*o*n*:* *a*b*s*o*l*u*t*e*;* *l*e*f*t*:* *-*5*0*0*0*p*x*;*"* *a*r*i*a*-*h*i*d*d*e*n*=*"*t*r*u*e*"*>*<*i*n*p*u*t* *t*y*p*e*=*"*t*e*x*t*"* *n*a*m*e*=*"*b*7*5*4*1*9*c*7*1*f*e*0*a*9*3*5*e*5*3*d*f*a*4*a*3*f*9*1*d*0*d*c*c*d*3*9*"* *t*a*b*i*n*d*e*x*=*"*-*1*"* *v*a*l*u*e*=*"*"*>*<*/*d*i*v*>* -* -* * * * * * * * * * * * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*l*e*a*r*"*>* -* * * * * * * * * * * * * * * * * * * * * * *<*i*n*p*u*t* *t*y*p*e*=*"*s*u*b*m*i*t*"* *v*a*l*u*e*=*"*"* *n*a*m*e*=*"*s*u*b*s*c*r*i*b*e*"* *i*d*=*"*m*c*-*e*m*b*e*d*d*e*d*-*s*u*b*s*c*r*i*b*e*"* *c*l*a*s*s*=*"*b*u*t*t*o*n* *e*m*a*i*l*-*s*u*b*s*c*r*i*b*e*-*b*u*t*t*o*n*"*>* -* * * * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * * * * * * * * * *<*/*f*o*r*m*>* -* * * * * * * * * * * * * * *<*/*d*i*v*>* -* -* * * * * * * * * * * * *<*/*l*i*>* -* * * * * * * * * * *<*/*u*l*>* -* -* * * * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*f*o*o*t*e*r*-*s*o*c*i*a*l*-*i*c*o*n*s*"*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"* *c*l*a*s*s*=*"*f*a*c*e*b*o*o*k*"*>*<*/*a*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*t*w*i*t*t*e*r*.*c*o*m*"* *t*a*r*g*e*t*=*"*b*l*a*n*k*"* *c*l*a*s*s*=*"*t*w*i*t*t*e*r*"*>*<*/*a*>* -* * * * * * * * * * *<*/*d*i*v*>* -* * * * * * * * *<*/*d*i*v*>* -* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* * *<*/*f*o*o*t*e*r*>* *-*-*>* -* -* -* * *<*!*-*-* *E*n*d* *F*o*o*t*e*r* *-*-*>* -* -* * *<*!*-*-* *B*e*g*i*n* *M*o*b*i*l*e* *M*e*n*u* *-*-*>* -* -* * *<*d*i*v* *c*l*a*s*s*=*"*m*o*b*i*l*e*-*m*a*i*n*-*m*e*n*u*"*>* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*-*f*l*u*i*d*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*o*b*i*l*e*-*m*a*i*n*-*m*e*n*u*-*h*e*a*d*e*r*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*h*e*a*d*e*r*-*l*o*g*o*"* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"* *a*r*i*a*-*l*a*b*e*l*=*"*P*y*T*o*r*c*h* *L*i*g*h*t*n*i*n*g*"*>*<*/*a*>* -* * * * * * * * * * *<*a* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*-*c*l*o*s*e*-*b*u*t*t*o*n*"* *h*r*e*f*=*"*#*"* *d*a*t*a*-*b*e*h*a*v*i*o*r*=*"*c*l*o*s*e*-*m*o*b*i*l*e*-*m*e*n*u*"*>*<*/*a*>* -* * * * * * * * *<*/*d*i*v*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* -* * * * *<*d*i*v* *c*l*a*s*s*=*"*m*o*b*i*l*e*-*m*a*i*n*-*m*e*n*u*-*l*i*n*k*s*-*c*o*n*t*a*i*n*e*r*"*>* -* * * * * * *<*d*i*v* *c*l*a*s*s*=*"*m*a*i*n*-*m*e*n*u*"*>* -* * * * * * * * *<*u*l*>* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*g*e*t*-*s*t*a*r*t*e*d*"*>*G*e*t* *S*t*a*r*t*e*d*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*f*e*a*t*u*r*e*s*"*>*F*e*a*t*u*r*e*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*b*l*o*g*/*"*>*B*l*o*g*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*t*u*t*o*r*i*a*l*s*"*>*T*u*t*o*r*i*a*l*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*d*o*c*s*/*s*t*a*b*l*e*/*i*n*d*e*x*.*h*t*m*l*"*>*D*o*c*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*p*y*t*o*r*c*h*.*o*r*g*/*r*e*s*o*u*r*c*e*s*"*>*R*e*s*o*u*r*c*e*s*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* -* * * * * * * * * * *<*l*i*>* -* * * * * * * * * * * * *<*a* *h*r*e*f*=*"*h*t*t*p*s*:*/*/*g*i*t*h*u*b*.*c*o*m*/*m*p*a*r*i*e*n*t*e*/*a*s*t*e*r*o*i*d*"*>*G*i*t*h*u*b*<*/*a*>* -* * * * * * * * * * *<*/*l*i*>* -* * * * * * * * *<*/*u*l*>* -* * * * * * *<*/*d*i*v*>* -* * * * *<*/*d*i*v*>* -* * *<*/*d*i*v*>* -* -* * *<*!*-*-* *E*n*d* *M*o*b*i*l*e* *M*e*n*u* *-*-*>* -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"* *s*r*c*=*"*s*t*a*t*i*c*/*j*s*/*v*e*n*d*o*r*/*a*n*c*h*o*r*.*m*i*n*.*j*s*"*>*<*/*s*c*r*i*p*t*>* -* -* * *<*s*c*r*i*p*t* *t*y*p*e*=*"*t*e*x*t*/*j*a*v*a*s*c*r*i*p*t*"*>* -* * * * *$*(*d*o*c*u*m*e*n*t*)*.*r*e*a*d*y*(*f*u*n*c*t*i*o*n*(*)* *{* -* * * * * * *m*o*b*i*l*e*M*e*n*u*.*b*i*n*d*(*)*;* -* * * * * * *m*o*b*i*l*e*T*O*C*.*b*i*n*d*(*)*;* -* * * * * * *p*y*t*o*r*c*h*A*n*c*h*o*r*s*.*b*i*n*d*(*)*;* -* * * * * * *s*i*d*e*M*e*n*u*s*.*b*i*n*d*(*)*;* -* * * * * * *s*c*r*o*l*l*T*o*A*n*c*h*o*r*.*b*i*n*d*(*)*;* -* * * * * * *h*i*g*h*l*i*g*h*t*N*a*v*i*g*a*t*i*o*n*.*b*i*n*d*(*)*;* -* * * * * * *m*a*i*n*M*e*n*u*D*r*o*p*d*o*w*n*.*b*i*n*d*(*)*;* -* -* * * * * * */*/* *A*d*d* *c*l*a*s*s* *t*o* *l*i*n*k*s* *t*h*a*t* *h*a*v*e* *c*o*d*e* *b*l*o*c*k*s*,* *s*i*n*c*e* *w*e* *c*a*n*n*o*t* *c*r*e*a*t*e* *l*i*n*k*s* *i*n* *c*o*d*e* *b*l*o*c*k*s* -* * * * * * *$*(*"*a*r*t*i*c*l*e*.*p*y*t*o*r*c*h*-*a*r*t*i*c*l*e* *a* *s*p*a*n*.*p*r*e*"*)*.*e*a*c*h*(*f*u*n*c*t*i*o*n*(*e*)* *{* -* * * * * * * * *$*(*t*h*i*s*)*.*c*l*o*s*e*s*t*(*"*a*"*)*.*a*d*d*C*l*a*s*s*(*"*h*a*s*-*c*o*d*e*"*)*;* -* * * * * * *}*)*;* -* * * * *}*)* -* * *<*/*s*c*r*i*p*t*>* -*<*/*b*o*d*y*>* -*<*/*h*t*m*l*>* \ No newline at end of file diff --git a/docs/src/_build/html/static/searchindex.js b/docs/src/_build/html/static/searchindex.js deleted file mode 100644 index 1db6139..0000000 --- a/docs/src/_build/html/static/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["api","index","models"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["api.rst","index.rst","models.rst"],objects:{"mmic_cmd.components":{CmdComponent:[0,1,1,""]},"mmic_cmd.models":{CmdInput:[2,1,1,""],CmdOutput:[2,1,1,""]},mmic_cmd:{components:[0,0,0,"-"],models:[2,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"]},objtypes:{"0":"py:module","1":"py:class"},terms:{"byte":2,"class":[0,2],"default":2,"int":2,"return":2,"true":2,The:2,abov:2,abs:2,after:2,ani:[0,2],api:1,as_binari:2,base:2,beforehand:2,blocking_fil:2,bool:[0,2],cmdcompon:0,cmdinput:2,cmdoutput:2,code:2,command:2,commend:2,compon:[0,2],config:2,consid:2,dict:[0,2],dir:2,empti:2,environ:2,error:2,except:2,execut:2,exit:2,exit_cod:2,extra:0,failur:2,fals:2,file:2,fileoutput:2,hard:2,index:1,infil:2,input:2,instead:2,interupt:2,interupt_aft:2,kei:2,kill:2,line:2,list:2,load:2,log:2,mai:2,managed_memori:0,memori:2,mmelement:2,mmic:2,mmic_cmd:[0,2],model:1,modul:1,name:[0,2],node_parallel:0,none:[0,2],object:2,option:[0,2],otherwis:2,outfil:2,outfiles_load:2,output:2,page:1,paramet:[0,2],pass:2,path:2,pathlib:2,popen:2,posix:2,posixpath:2,present:2,proc:2,process:2,rais:2,raise_err:2,run:2,runtim:2,scratch:[0,2],scratch_directori:2,scratch_exist_ok:2,scratch_messi:2,scratch_nam:2,scratch_suffix:2,search:1,second:2,see:2,set:2,shell:2,should:2,sourc:[0,2],standard:2,stderr:2,stdout:2,stop:2,str:[0,2],subprocess:2,task:2,taskconfig:2,temporary_directori:2,thread_parallel:0,thread_saf:0,through:2,timeout:2,treat:2,when:2,which:2,written:2},titles:["API","Welcome to mmic_cmd\u2019s documentation!","Models"],titleterms:{api:0,content:1,document:1,indic:1,mmic_cmd:1,model:2,tabl:1,welcom:1}}) \ No newline at end of file diff --git a/docs/src/_build/html/static/searchtools.js b/docs/src/_build/html/static/searchtools.js deleted file mode 100644 index 1a90152..0000000 --- a/docs/src/_build/html/static/searchtools.js +++ /dev/null @@ -1,522 +0,0 @@ -/* - * searchtools.js - * ~~~~~~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for the full-text search. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -if (!Scorer) { - /** - * Simple result scoring code. - */ - var Scorer = { - // Implement the following function to further tweak the score for each result - // The function takes a result array [filename, title, anchor, descr, score] - // and returns the new score. - /* - score: function(result) { - return result[4]; - }, - */ - - // query matches the full name of an object - objNameMatch: 11, - // or matches in the last dotted part of the object name - objPartialMatch: 6, - // Additive scores depending on the priority of the object - objPrio: {0: 15, // used to be importantResults - 1: 5, // used to be objectResults - 2: -5}, // used to be unimportantResults - // Used when the priority is not in the mapping. - objPrioDefault: 0, - - // query found in title - title: 15, - partialTitle: 7, - // query found in terms - term: 5, - partialTerm: 2 - }; -} - -if (!splitQuery) { - function splitQuery(query) { - return query.split(/\s+/); - } -} - -/** - * Search Module - */ -var Search = { - - _index : null, - _queued_query : null, - _pulse_status : -1, - - htmlToText : function(htmlString) { - var virtualDocument = document.implementation.createHTMLDocument('virtual'); - var htmlElement = $(htmlString, virtualDocument); - htmlElement.find('.headerlink').remove(); - docContent = htmlElement.find('[role=main]')[0]; - if(docContent === undefined) { - console.warn("Content block not found. Sphinx search tries to obtain it " + - "via '[role=main]'. Could you check your theme or template."); - return ""; - } - return docContent.textContent || docContent.innerText; - }, - - init : function() { - var params = $.getQueryParameters(); - if (params.q) { - var query = params.q[0]; - $('input[name="q"]')[0].value = query; - this.performSearch(query); - } - }, - - loadIndex : function(url) { - $.ajax({type: "GET", url: url, data: null, - dataType: "script", cache: true, - complete: function(jqxhr, textstatus) { - if (textstatus != "success") { - document.getElementById("searchindexloader").src = url; - } - }}); - }, - - setIndex : function(index) { - var q; - this._index = index; - if ((q = this._queued_query) !== null) { - this._queued_query = null; - Search.query(q); - } - }, - - hasIndex : function() { - return this._index !== null; - }, - - deferQuery : function(query) { - this._queued_query = query; - }, - - stopPulse : function() { - this._pulse_status = 0; - }, - - startPulse : function() { - if (this._pulse_status >= 0) - return; - function pulse() { - var i; - Search._pulse_status = (Search._pulse_status + 1) % 4; - var dotString = ''; - for (i = 0; i < Search._pulse_status; i++) - dotString += '.'; - Search.dots.text(dotString); - if (Search._pulse_status > -1) - window.setTimeout(pulse, 500); - } - pulse(); - }, - - /** - * perform a search for something (or wait until index is loaded) - */ - performSearch : function(query) { - // create the required interface elements - this.out = $('#search-results'); - this.title = $('

' + _('Searching') + '

').appendTo(this.out); - this.dots = $('').appendTo(this.title); - this.status = $('

 

').appendTo(this.out); - this.output = $('